OSDN Git Service

na-get-lib,Fujitsu Scand Allがインストールされている環境下で例外が発生する問題を修正(レジストリのキーのタイプが想定しているのと異なるとき例外...
[applistation/AppliStation.git] / AppliStation / Program.cs
index 381deae..466944d 100644 (file)
@@ -16,8 +16,6 @@ namespace AppliStation
                /// </summary>\r
                Dictionary<string, object> appArgs;\r
                \r
-               string[] restAppArgs;\r
-               \r
                public Program()\r
                {\r
                        appArgs = new Dictionary<string, object>();\r
@@ -25,12 +23,11 @@ namespace AppliStation
                        appArgs["cmd"] = string.Empty;\r
                        appArgs["pkgsref"] = string.Empty;\r
                        appArgs["instsref"] = string.Empty;\r
-                       \r
-                       form = new PackageListViewForm();\r
                }\r
                \r
                void RunNormal()\r
                {\r
+                       form = new PackageListViewForm();\r
                        form.Load += delegate(object sender, EventArgs e) {\r
                                hideSplashScreen();\r
                                form.updateActionInvoke(((bool)appArgs["noupdate"]) != true);\r
@@ -45,6 +42,8 @@ namespace AppliStation
                        try {\r
                                NaGet.Packages.Install.Installation[] insts = NaGet.Utils.GetDeserializedObject<NaGet.Packages.Install.Installation[]>((string) appArgs["instsref"]);\r
                                \r
+                               form = new PackageListViewForm();\r
+                               form.UpdatePackageList();\r
                                hideSplashScreen();\r
                                form.installActionInvoke(insts);\r
                        } catch (UnauthorizedAccessException e) {\r
@@ -61,6 +60,8 @@ namespace AppliStation
                        try {\r
                                NaGet.Packages.Install.InstalledPackage[] pkgs = NaGet.Utils.GetDeserializedObject<NaGet.Packages.Install.InstalledPackage[]>((string) appArgs["pkgsref"]);\r
                                \r
+                               form = new PackageListViewForm();\r
+                               form.UpdatePackageList();\r
                                hideSplashScreen();\r
                                form.uninstallActionInvoke(pkgs);\r
                        } catch (UnauthorizedAccessException e) {\r
@@ -72,6 +73,71 @@ namespace AppliStation
                        }\r
                }\r
                \r
+               void RunUpdateAppliStation()\r
+               {\r
+                       if ( splashScreen == null ) {\r
+                               splashScreen = createAndOpenSplashScreen();\r
+                       }\r
+                       \r
+                       System.Threading.Thread.Sleep(5000); /* 5sec待って呼び出しもとの終了を待つ */\r
+                       \r
+                       string newAppliStationDir = Application.StartupPath;\r
+                       string targetDir = Environment.CurrentDirectory;\r
+                       \r
+                       foreach (string file in Directory.GetFiles(newAppliStationDir)) {\r
+                               string ext = Path.GetExtension(file).ToLower();\r
+                               if ((ext == ".exe") || (ext == ".dll") ||\r
+                                   (ext == ".pdb") || (ext == ".png")) {\r
+                                       while (true) { /* loop for retry */\r
+                                               try {           \r
+                                                       File.Copy(file, Path.Combine(targetDir, Path.GetFileName(file)), true);\r
+                                                       break;\r
+                                               } catch (IOException ex) {\r
+                                                       DialogResult result = MessageBox.Show(string.Format("AppliStationの更新に失敗しました。\r\n\r\n{0}", ex.Message),\r
+                                                                                             "AppliStation", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error);\r
+                                                       if (result == DialogResult.Retry) {\r
+                                                               continue; /* retry */\r
+                                                       } else {\r
+                                                               MessageBox.Show("AppliStationの更新は中断されました。", "AppliStation", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
+                                                               hideSplashScreen();\r
+                                                               return;\r
+                                                       }\r
+                                               }\r
+                                       }\r
+                               }\r
+                       }\r
+                       System.Threading.Thread.Sleep(10);\r
+                       System.Diagnostics.Process.Start(Path.Combine(targetDir, Path.GetFileName(Application.ExecutablePath)));\r
+                       hideSplashScreen();\r
+                       //Application.Exit(); // Do nothing = exit\r
+               }\r
+               \r
+               /// <summary>\r
+               /// AppliStationの自己更新を行う。アーカイブインストーラーによってあらかじめインストールされたファイルを、\r
+               /// カレントディレクトリにコピーするよう新しいAppliStation.exeを呼ぶ。\r
+               /// コピー元がないまたはそれが新しくないならば何もしない。\r
+               /// </summary>\r
+               /// <returns>更新をしたときtrueをかえす。</returns>\r
+               private bool autoUpdateAppliStation()\r
+               {\r
+                       if (string.IsNullOrEmpty(appArgs["cmd"].ToString())) {\r
+                               string newAppliStationDir = Path.Combine(NaGet.Env.ArchiveProgramFiles, "AppliStation");\r
+                               string thisAppliStation = Application.ExecutablePath;\r
+                               \r
+                               if (Directory.Exists(newAppliStationDir)) {\r
+                                       string newAppliStation = Path.Combine(newAppliStationDir, Path.GetFileName(thisAppliStation));\r
+                                                                               \r
+                                       if ( File.Exists(newAppliStation) &&\r
+                                           (File.GetLastWriteTime(thisAppliStation) != File.GetLastWriteTime(newAppliStation)) ) {\r
+                                               \r
+                                               System.Diagnostics.Process.Start(newAppliStation, "--cmd=updateAppliStation");\r
+                                               return true;\r
+                                       }\r
+                               }\r
+                       }\r
+                       return false;\r
+               }\r
+               \r
                private void hideSplashScreen()\r
                {\r
                        if (splashScreen != null && splashScreen.Visible) {\r
@@ -89,6 +155,16 @@ namespace AppliStation
                                return;\r
                        }\r
                        \r
+                       // cmd引数がないときに更新処理を試みる。\r
+                       // cmd引数があるときに更新しないのは、AppliStationから「管理者で実行」などで呼び出された場合に\r
+                       // 更新処理にならないようにするため。\r
+                       if ( string.IsNullOrEmpty((string) appArgs["cmd"]) &&\r
+                           autoUpdateAppliStation() ) {\r
+                               // アップデートしたときは起動しない\r
+                               return;\r
+                       }\r
+                       \r
+                       \r
                        switch ((string) appArgs["cmd"]) {\r
                                case "install":\r
                                        RunInstall();\r
@@ -96,6 +172,9 @@ namespace AppliStation
                                case "uninstall":\r
                                        RunUninstall();\r
                                        break;\r
+                               case "updateAppliStation":\r
+                                       RunUpdateAppliStation();\r
+                                       break;\r
                                default:\r
                                        RunNormal();\r
                                        break;\r
@@ -105,7 +184,21 @@ namespace AppliStation
                private void parseArgs(string[] args)\r
                {\r
                        NaGet.ArgParser parser = new NaGet.ArgParser(appArgs);\r
-                       restAppArgs = parser.Parse(args);\r
+                       string[] restAppArgs = parser.Parse(args);\r
+               }\r
+               \r
+               private static Form createAndOpenSplashScreen()\r
+               {\r
+                       System.Drawing.Bitmap bitmap;\r
+                       \r
+                       bitmap = new System.Drawing.Bitmap(Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "SplashScreen.png"));\r
+                       Form splashScreen = AppliStation.Util.SprashScreenLayered.CreateSprashScreenLayered(bitmap, System.Drawing.Color.Black);\r
+                       \r
+                       splashScreen.Text = "AppliStation";\r
+                       splashScreen.Icon = System.Drawing.Icon.ExtractAssociatedIcon(Application.ExecutablePath);\r
+                       splashScreen.Show();\r
+                       \r
+                       return splashScreen;\r
                }\r
                \r
                [STAThread]\r
@@ -115,14 +208,7 @@ namespace AppliStation
                        \r
                        try {\r
                                if (args.Length <= 0) { // HACK 引数パースの時間さえ待てないので引数の有無で表示を判断\r
-                                       splashScreen = new Form();\r
-                                       splashScreen.FormBorderStyle = FormBorderStyle.None;\r
-                                       splashScreen.BackgroundImage = System.Drawing.Bitmap.FromFile(Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "SplashScreen.png"));\r
-                                       splashScreen.Size = splashScreen.BackgroundImage.Size;\r
-                                       splashScreen.ShowIcon = false;\r
-                                       splashScreen.ShowInTaskbar = false;\r
-                                       splashScreen.StartPosition = FormStartPosition.CenterScreen;\r
-                                       splashScreen.Show();\r
+                                       splashScreen = createAndOpenSplashScreen();\r
                                }\r
                                \r
                                // アーカイブSYSTEM32をパスに足す\r
@@ -131,8 +217,11 @@ namespace AppliStation
                                ToolStripManager.VisualStylesEnabled = false; // ToolStripがLunaで青くならないように\r
                                Application.EnableVisualStyles(); // LunaやVistaのデザインを有効に\r
                                \r
-                               Application.ThreadException += AppliStation.Util.ExceptionDialogForm.Application_ThrowException;\r
-                               System.Threading.Thread.GetDomain().UnhandledException += AppliStation.Util.ExceptionDialogForm.Application_ThrowException;\r
+                               // デバッガがアタッチしていないなら、Exceptionを自力でハンドルする\r
+                               if (! System.Diagnostics.Debugger.IsAttached) {\r
+                                       Application.ThreadException += AppliStation.Util.ExceptionDialogForm.Application_ThrowException;\r
+                                       System.Threading.Thread.GetDomain().UnhandledException += AppliStation.Util.ExceptionDialogForm.Application_ThrowException;\r
+                               }\r
                                \r
                                Program prog = new Program();\r
                                prog.splashScreen = splashScreen;\r