Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.cs @ 9503

Last change on this file since 9503 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 13.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Diagnostics;
25using System.IO;
26using System.Linq;
27using System.Threading;
28using System.Threading.Tasks;
29using System.Windows.Forms;
30using HeuristicLab.PluginInfrastructure.Advanced;
31using HeuristicLab.PluginInfrastructure.Manager;
32
33namespace HeuristicLab.PluginInfrastructure.Starter {
34  /// <summary>
35  /// The starter form is responsible for initializing the plugin infrastructure
36  /// and shows a list of installed applications.
37  /// </summary>
38  public partial class StarterForm : Form {
39    private const string pluginManagerItemName = "Plugin Manager";
40    private const string updatePluginsItemName = "Updates Available";
41    private const string optimizerItemName = "Optimizer";
42
43    private readonly ICommandLineArgument[] arguments;
44
45    private ListViewItem pluginManagerListViewItem;
46    private bool abortRequested;
47    private PluginManager pluginManager;
48    private SplashScreen splashScreen;
49    private bool updatesAvailable = false;
50
51    /// <summary>
52    /// Initializes an instance of the starter form.
53    /// The starter form shows a splashscreen and initializes the plugin infrastructure.
54    /// </summary>
55    public StarterForm()
56      : base() {
57      InitializeComponent();
58      largeImageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.HeuristicLab.ToBitmap());
59      largeImageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.UpdateAvailable.ToBitmap());
60      smallImageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.HeuristicLab.ToBitmap());
61      smallImageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.UpdateAvailable.ToBitmap());
62      FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location);
63      Text = "HeuristicLab " + pluginInfrastructureVersion.FileVersion;
64
65      string pluginPath = Path.GetFullPath(Application.StartupPath);
66      pluginManager = new PluginManager(pluginPath);
67      splashScreen = new SplashScreen(pluginManager, 1000);
68      splashScreen.VisibleChanged += new EventHandler(splashScreen_VisibleChanged);
69      splashScreen.Show(this, "Loading HeuristicLab...");
70
71      pluginManager.DiscoverAndCheckPlugins();
72      UpdateApplicationsList();
73
74      CheckUpdatesAvailableAsync();
75    }
76
77    /// <summary>
78    /// Creates a new StarterForm and passes the arguments in <paramref name="args"/>.
79    /// </summary>
80    /// <param name="args">The arguments that should be processed</param>
81    public StarterForm(string[] args)
82      : this() {
83      arguments = CommandLineArgumentHandling.GetArguments(args);
84    }
85
86    protected override void SetVisibleCore(bool value) {
87      value &= !(arguments.OfType<HideStarterArgument>().Any() || arguments.OfType<OpenArgument>().Any());
88      if (!value) HandleArguments();
89      base.SetVisibleCore(value);
90    }
91
92    #region Events
93    private void StarterForm_Load(object sender, EventArgs e) {
94      HandleArguments();
95    }
96
97    private void StarterForm_FormClosing(object sender, FormClosingEventArgs e) {
98      splashScreen.Close();
99      abortRequested = true;
100    }
101
102    private void applicationsListView_SelectedIndexChanged(object sender, EventArgs e) {
103      startButton.Enabled = applicationsListView.SelectedItems.Count > 0;
104    }
105
106    private void applicationsListView_ItemActivate(object sender, EventArgs e) {
107      if (applicationsListView.SelectedItems.Count > 0) {
108        ListViewItem selected = applicationsListView.SelectedItems[0];
109        if (selected.Text == pluginManagerItemName) {
110          if (pluginManager.Plugins.Any(x => x.PluginState == PluginState.Loaded)) {
111            MessageBox.Show("Installation Manager cannot be started while another HeuristicLab application is active." + Environment.NewLine +
112              "Please stop all active HeuristicLab applications and try again.", "Plugin Manager",
113              MessageBoxButtons.OK, MessageBoxIcon.Information);
114          } else {
115            try {
116              Cursor = Cursors.AppStarting;
117              using (InstallationManagerForm form = new InstallationManagerForm(pluginManager)) {
118                form.ShowDialog(this);
119              }
120              UpdateApplicationsList();
121            }
122            finally {
123              Cursor = Cursors.Arrow;
124            }
125          }
126        } else if (selected.Text == updatePluginsItemName) {
127          if (pluginManager.Plugins.Any(x => x.PluginState == PluginState.Loaded)) {
128            MessageBox.Show("Updating is not possible while another HeuristicLab application is active." + Environment.NewLine +
129              "Please stop all active HeuristicLab applications and try again.", "Update plugins",
130              MessageBoxButtons.OK, MessageBoxIcon.Information);
131          } else {
132            try {
133              Cursor = Cursors.AppStarting;
134              using (PluginUpdaterForm form = new PluginUpdaterForm(pluginManager)) {
135                form.ShowDialog(this);
136              }
137              updatesAvailable = false;
138              CheckUpdatesAvailableAsync();
139              UpdateApplicationsList();
140            }
141            finally {
142              Cursor = Cursors.Arrow;
143            }
144          }
145        } else {
146          ApplicationDescription app = (ApplicationDescription)applicationsListView.SelectedItems[0].Tag;
147          StartApplication(app, arguments);
148        }
149      }
150    }
151
152    private void largeIconsButton_Click(object sender, EventArgs e) {
153      applicationsListView.View = View.LargeIcon;
154    }
155
156    private void detailsButton_Click(object sender, EventArgs e) {
157      applicationsListView.View = View.Details;
158      foreach (ColumnHeader column in applicationsListView.Columns) {
159        if (applicationsListView.Items.Count > 0)
160          column.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
161        else column.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
162      }
163    }
164
165    private void aboutButton_Click(object sender, EventArgs e) {
166      List<IPluginDescription> plugins = new List<IPluginDescription>(pluginManager.Plugins.OfType<IPluginDescription>());
167      using (var dialog = new AboutDialog(plugins)) {
168        dialog.ShowDialog();
169      }
170    }
171
172    private void splashScreen_VisibleChanged(object sender, EventArgs e) {
173      // close hidden starter form
174      if (!splashScreen.Visible && arguments != null &&
175           (arguments.OfType<HideStarterArgument>().Any() || arguments.OfType<OpenArgument>().Any()))
176        Close();
177    }
178    #endregion
179
180    #region Helpers
181    private void UpdateApplicationsList() {
182      if (InvokeRequired) Invoke((Action)UpdateApplicationsList);
183      else {
184        applicationsListView.Items.Clear();
185        AddPluginManagerItem();
186        AddUpdatePluginsItem();
187
188        foreach (ApplicationDescription info in pluginManager.Applications) {
189          ListViewItem item = new ListViewItem(info.Name, 0);
190          item.Tag = info;
191          item.Group = applicationsListView.Groups["Applications"];
192          item.SubItems.Add(new ListViewItem.ListViewSubItem(item, info.Version.ToString()));
193          item.SubItems.Add(new ListViewItem.ListViewSubItem(item, info.Description));
194          item.ToolTipText = info.Description;
195          applicationsListView.Items.Add(item);
196        }
197        foreach (ColumnHeader column in applicationsListView.Columns) {
198          if (applicationsListView.Items.Count > 0)
199            column.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
200          else column.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
201        }
202      }
203    }
204
205    private void AddPluginManagerItem() {
206      FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location);
207      pluginManagerListViewItem = new ListViewItem(pluginManagerItemName, 0);
208      pluginManagerListViewItem.Group = applicationsListView.Groups["Plugin Management"];
209      pluginManagerListViewItem.SubItems.Add(new ListViewItem.ListViewSubItem(pluginManagerListViewItem, pluginInfrastructureVersion.FileVersion));
210      pluginManagerListViewItem.SubItems.Add(new ListViewItem.ListViewSubItem(pluginManagerListViewItem, "Install, upgrade or delete plugins"));
211      pluginManagerListViewItem.ToolTipText = "Install, upgrade or delete plugins";
212
213      applicationsListView.Items.Add(pluginManagerListViewItem);
214    }
215
216    private void AddUpdatePluginsItem() {
217      if (updatesAvailable) {
218        var updateListViewItem = new ListViewItem(updatePluginsItemName, 1);
219        updateListViewItem.Group = applicationsListView.Groups["Plugin Management"];
220        updateListViewItem.SubItems.Add(new ListViewItem.ListViewSubItem(updateListViewItem, ""));
221        updateListViewItem.SubItems.Add(new ListViewItem.ListViewSubItem(updateListViewItem, "Download and install updates"));
222        updateListViewItem.ToolTipText = "Download and install updates";
223
224        applicationsListView.Items.Add(updateListViewItem);
225      }
226    }
227
228    private void CheckUpdatesAvailableAsync() {
229      string pluginPath = Path.GetFullPath(Application.StartupPath);
230      var task = Task.Factory.StartNew<bool>(() => {
231        var installationManager = new InstallationManager(pluginPath);
232        IEnumerable<IPluginDescription> installedPlugins = pluginManager.Plugins.OfType<IPluginDescription>();
233        var remotePlugins = installationManager.GetRemotePluginList();
234        // if there is a local plugin with same name and same major and minor version then it's an update
235        var pluginsToUpdate = from remotePlugin in remotePlugins
236                              let matchingLocalPlugins = from installedPlugin in installedPlugins
237                                                         where installedPlugin.Name == remotePlugin.Name
238                                                         where installedPlugin.Version.Major == remotePlugin.Version.Major
239                                                         where installedPlugin.Version.Minor == remotePlugin.Version.Minor
240                                                         where Util.IsNewerThan(remotePlugin, installedPlugin)
241                                                         select installedPlugin
242                              where matchingLocalPlugins.Count() > 0
243                              select remotePlugin;
244        return pluginsToUpdate.Count() > 0;
245      });
246      task.ContinueWith(t => {
247        try {
248          t.Wait();
249          updatesAvailable = t.Result;
250          UpdateApplicationsList();
251        }
252        catch (AggregateException ae) {
253          ae.Handle(ex => {
254            if (ex is InstallationManagerException) {
255              // this is expected when no internet connection is available => do nothing
256              return true;
257            } else {
258              return false;
259            }
260          });
261        }
262      });
263    }
264
265    private void HandleArguments() {
266      try {
267        if (arguments.OfType<OpenArgument>().Any() && !arguments.OfType<StartArgument>().Any()) {
268          InitiateApplicationStart(optimizerItemName);
269        }
270        foreach (var argument in arguments) {
271          if (argument is StartArgument) {
272            var arg = (StartArgument)argument;
273            InitiateApplicationStart(arg.Value);
274          }
275        }
276      }
277      catch (AggregateException ex) {
278        ErrorHandling.ShowErrorDialog(this, "One or more errors occurred while initializing the application.", ex);
279      }
280    }
281
282    private void InitiateApplicationStart(string appName) {
283      var appDesc = (from desc in pluginManager.Applications
284                     where desc.Name.Equals(appName)
285                     select desc).SingleOrDefault();
286      if (appDesc != null) {
287        StartApplication(appDesc, arguments);
288      } else {
289        MessageBox.Show("Cannot start application " + appName + ".",
290                        "HeuristicLab",
291                        MessageBoxButtons.OK,
292                        MessageBoxIcon.Warning);
293      }
294    }
295
296    private void StartApplication(ApplicationDescription app, ICommandLineArgument[] args) {
297      splashScreen.Show("Loading " + app.Name);
298      Thread t = new Thread(delegate() {
299        bool stopped = false;
300        do {
301          try {
302            if (!abortRequested) {
303              pluginManager.Run(app, args);
304            }
305            stopped = true;
306          }
307          catch (Exception ex) {
308            stopped = false;
309            ThreadPool.QueueUserWorkItem(delegate(object exception) { ErrorHandling.ShowErrorDialog(this, (Exception)exception); }, ex);
310            Thread.Sleep(5000); // sleep 5 seconds before autorestart
311          }
312        } while (!abortRequested && !stopped && app.AutoRestart);
313      });
314      t.SetApartmentState(ApartmentState.STA); // needed for the AdvancedOptimizationFrontent
315      t.Start();
316    }
317    #endregion
318  }
319}
Note: See TracBrowser for help on using the repository browser.