Ejemplo n.º 1
0
        public static void InitializeDatabase()
        {
            bool   isVet    = PatientUtilities.IsVetProduct;
            string initData = "InitCheckUpdateVersion";
            string rootPath = ServiceManager.RootPath;
            string filePath = Path.Combine(rootPath, "SqlUpgrade/Vinno.SqlRestore.exe");

            if (VinnoFile.Exists(filePath) && DigitalSignatureChecker.VerifySignature(filePath))
            {
                var startInfo = new ProcessStartInfo(filePath, $"\"{initData}\" {isVet}")
                {
                    WorkingDirectory       = rootPath,
                    UseShellExecute        = false,
                    CreateNoWindow         = true,
                    RedirectStandardError  = true,
                    RedirectStandardOutput = true
                };

                using (var proc = new Process {
                    StartInfo = startInfo
                })
                {
                    proc.Start();
                    proc.BeginOutputReadLine();

                    //Wait for the data updating process to end.
                    while (!proc.HasExited)
                    {
                        proc.WaitForExit(1000);
                    }

                    Initialize(proc.ExitCode, isVet);
                }
            }
        }
Ejemplo n.º 2
0
        private static void Initialize(int versionState, bool isVet)
        {
            string newArchFlag = Path.Combine(ServiceManager.ImageRepositoryPath, "NewSqliteArch.dat");

            int isCorrectUpdate = versionState;

            //If sql data not exist, then do no initialize.
            if (isCorrectUpdate == 2)
            {
                return;
            }

            //Cancel updating if flag exists.
            if (VinnoFile.Exists(newArchFlag))
            {
                return;
            }

            if (!isVet && isCorrectUpdate == 1)
            {
                //Human, same type, nothing to do.
                return;
            }

            if (isVet && isCorrectUpdate == 1)
            {
                //Vet, same type, at start, move all old vet files into clean vet folder.
                if (!VinnoDirectory.Exists(ImageRepository))
                {
                    return;
                }

                TryToMoveFiles(new VinnoDirectoryInfo(ImageRepository), new VinnoDirectoryInfo(VetImageRepository));

                try
                {
                    VinnoDirectory.Delete(ImageRepository, true);
                }
                catch (Exception e)
                {
                    Logger.ForceWriteLine("Delete UltrasoundImage file is failed, detailed log is {0}", e.InnerException?.Message);
                }

                return;
            }

            if (!isVet)
            {
                //SqlRestore can not show messageBox normally, so it is called outside in Main exe.
                UpdateNoVetNoCorrectInfo();
                return;
            }

            //SqlRestore can not show messageBox normally, so it is called outside in Main exe.
            UpdateIsVetNoCorrectInfo();
        }
Ejemplo n.º 3
0
        private static void UpdateIsVetNoCorrectDatabase(bool isTrue)
        {
            bool   isVet          = PatientUtilities.IsVetProduct;
            string deleteDataBase = "DeleteDatabase";
            string rootPath       = ServiceManager.RootPath;
            string filePath       = Path.Combine(rootPath, "SqlUpgrade/Vinno.SqlRestore.exe");

            if (VinnoFile.Exists(filePath) && DigitalSignatureChecker.VerifySignature(filePath))
            {
                ProcessStartInfo startInfo;
                if (isTrue)
                {
                    startInfo = new ProcessStartInfo(filePath, $"\"{deleteDataBase}\" {isVet}")
                    {
                        WorkingDirectory       = rootPath,
                        UseShellExecute        = false,
                        CreateNoWindow         = true,
                        RedirectStandardError  = true,
                        RedirectStandardOutput = true
                    };
                }
                else
                {
                    startInfo = new ProcessStartInfo(filePath, "IsVetSaveAndDeleteDatabase")
                    {
                        WorkingDirectory       = rootPath,
                        UseShellExecute        = false,
                        CreateNoWindow         = true,
                        RedirectStandardError  = true,
                        RedirectStandardOutput = true
                    };
                }

                using (var proc = new Process {
                    StartInfo = startInfo
                })
                {
                    proc.Start();
                    proc.BeginOutputReadLine();

                    //Wait for the data updating process to end.
                    while (!proc.HasExited)
                    {
                        proc.WaitForExit(1000);
                    }
                }
            }
        }
Ejemplo n.º 4
0
        //For those source files one by one:
        //First,try to move files into new target folder. If failed, then try to copy.
        //If copy is still failed, try to delete files directly. If delete is also failed, then do nothing, just leave it. (Log is written)
        private static void TryToMoveFiles(VinnoDirectoryInfo source, VinnoDirectoryInfo target)
        {
            if (string.Equals(source.FullName, target.FullName, StringComparison.CurrentCultureIgnoreCase))
            {
                return;
            }

            // Check if the target directory exists, if not, create it.
            VinnoDirectory.CreateDirectory(target.FullName);

            // Copy each file into it's new directory.
            foreach (var fi in source.GetFiles())
            {
                string targetFilePath = Path.Combine(target.ToString(), fi.Name);
                try
                {
                    Logger.ForceWriteLine(@"Try to move {0}\{1}", target.FullName, fi.Name);

                    //Try to move file.
                    if (!VinnoFile.Exists(targetFilePath))
                    {
                        fi.MoveTo(targetFilePath);
                    }
                }
                catch (Exception e)
                {
                    //Log the move failed message.
                    Logger.ForceWriteLine(@"File {0} move is failed, detailed exception is: {1}", fi.Name,
                                          e.InnerException?.Message);

                    try
                    {
                        Logger.ForceWriteLine(@"Try to copy {0}\{1}", target.FullName, fi.Name);

                        //Try to copy file if move is not working.
                        fi.CopyTo(targetFilePath, true);
                    }
                    catch (Exception exception)
                    {
                        //Log the copy failed message.
                        Logger.ForceWriteLine(@"File {0} copy is failed, detailed exception is: {1}", fi.Name,
                                              exception.InnerException?.Message);
                    }
                }
                finally
                {
                    try
                    {
                        //Delete file if move & copy are both failed.
                        fi.Delete();
                    }
                    catch (Exception e)
                    {
                        Logger.ForceWriteLine(@"File {0} delete is failed, detailed exception is: {1}", fi.Name,
                                              e.InnerException?.Message);
                    }
                }
            }

            // Copy each subdirectory using recursion.
            foreach (VinnoDirectoryInfo diSourceSubDir in source.GetDirectories())
            {
                VinnoDirectoryInfo nextTargetSubDir = target.CreateSubdirectory(diSourceSubDir.Name);
                TryToMoveFiles(diSourceSubDir, nextTargetSubDir);
            }
        }