Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManager.cs @ 3494

Last change on this file since 3494 was 3474, checked in by gkronber, 15 years ago

Incorporated review comments by swagner into plugin infrastructure. #989 (Implement review comments in plugin infrastructure)

File size: 7.3 KB
RevLine 
[2612]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2612]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;
[2513]23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.PluginInfrastructure.Manager;
27using System.IO;
[2517]28using System.ComponentModel;
[2688]29using System.Reflection;
[2922]30using ICSharpCode.SharpZipLib.Zip;
[3006]31using System.ServiceModel;
[2513]32
33namespace HeuristicLab.PluginInfrastructure.Advanced {
[2517]34  internal class InstallationManager {
[2513]35
[2517]36    internal event EventHandler<PluginInfrastructureCancelEventArgs> PreUpdatePlugin;
37    internal event EventHandler<PluginInfrastructureCancelEventArgs> PreRemovePlugin;
38    internal event EventHandler<PluginInfrastructureCancelEventArgs> PreInstallPlugin;
39
40    internal event EventHandler<PluginInfrastructureEventArgs> PluginUpdated;
41    internal event EventHandler<PluginInfrastructureEventArgs> PluginRemoved;
42    internal event EventHandler<PluginInfrastructureEventArgs> PluginInstalled;
43
[2513]44    private string pluginDir;
[2517]45    public InstallationManager(string pluginDir) {
46      this.pluginDir = pluginDir;
[2513]47    }
48
[2922]49    /// <summary>
50    /// Retrieves a list of plugins available at the remote server
51    /// </summary>
52    /// <returns></returns>
[3006]53    public IEnumerable<IPluginDescription> GetRemotePluginList() {
54      var client = DeploymentService.UpdateClientFactory.CreateClient();
55      try {
56        List<IPluginDescription> plugins = new List<IPluginDescription>(client.GetPlugins());
57        client.Close();
58        return plugins;
[2922]59      }
[3006]60      catch (FaultException) {
61        client.Abort();
62        return new IPluginDescription[] { };
63      }
[2517]64    }
65
[2922]66    /// <summary>
67    /// Retrieves the list of products available at the remote server
68    /// </summary>
69    /// <returns></returns>
[3006]70    public IEnumerable<DeploymentService.ProductDescription> GetRemoteProductList() {
71      var client = DeploymentService.UpdateClientFactory.CreateClient();
72      try {
73        List<DeploymentService.ProductDescription> products = new List<DeploymentService.ProductDescription>(client.GetProducts());
74        client.Close();
75        return products;
[2922]76      }
[3006]77      catch (FaultException) {
78        client.Abort();
79        return new DeploymentService.ProductDescription[] { };
80      }
[2513]81    }
82
[2922]83    /// <summary>
84    ///  Installs plugins from remote server
85    /// </summary>
[3092]86    /// <param name="plugins"></param>
[3006]87    public void Install(IEnumerable<IPluginDescription> plugins) {
88      var args = new PluginInfrastructureCancelEventArgs(plugins);
89      OnPreInstall(args);
90      if (!args.Cancel) {
91        var client = DeploymentService.UpdateClientFactory.CreateClient();
92        try {
93          foreach (DeploymentService.PluginDescription plugin in plugins) {
94            byte[] zippedPackage = client.GetPlugin(plugin);
95            Unpack(zippedPackage);
96            OnInstalled(new PluginInfrastructureEventArgs(plugin));
97          }
98          client.Close();
[2922]99        }
[3006]100        catch (FaultException) {
101          client.Abort();
102        }
[2922]103      }
[2517]104    }
105
[2922]106    /// <summary>
107    /// Updates plugins from remote server
108    /// </summary>
[3092]109    /// <param name="plugins"></param>
[3006]110    public void Update(IEnumerable<IPluginDescription> plugins) {
111      PluginInfrastructureCancelEventArgs args = new PluginInfrastructureCancelEventArgs(plugins);
[2922]112      OnPreUpdate(args);
113      if (!args.Cancel) {
[3006]114        var client = DeploymentService.UpdateClientFactory.CreateClient();
115        try {
[2922]116          foreach (DeploymentService.PluginDescription plugin in plugins) {
117            byte[] zippedPackage = client.GetPlugin(plugin);
118            Unpack(zippedPackage);
119            OnUpdated(new PluginInfrastructureEventArgs(plugin));
120          }
[3006]121          client.Close();
[2922]122        }
[3006]123        catch (FaultException) {
124          client.Abort();
125        }
[2922]126      }
[2513]127    }
128
[2922]129    /// <summary>
130    /// Deletes all plugin files from local installation
131    /// </summary>
[3092]132    /// <param name="plugins"></param>
[2922]133    public void Remove(IEnumerable<IPluginDescription> plugins) {
134      var fileNames = from pluginToDelete in plugins
[2688]135                      from file in pluginToDelete.Files
136                      select Path.Combine(pluginDir, file.Name);
[3006]137      var args = new PluginInfrastructureCancelEventArgs(plugins);
[2517]138      OnPreDelete(args);
139      if (!args.Cancel) {
140        foreach (string fileName in fileNames) {
[2922]141          File.Delete(fileName);
142          OnDeleted(new PluginInfrastructureEventArgs(fileName));
[2513]143        }
144      }
145    }
146
[2922]147    private void Unpack(byte[] zippedPackage) {
148      using (ZipInputStream s = new ZipInputStream(new MemoryStream(zippedPackage))) {
149        ZipEntry theEntry;
150        string tmpEntry = String.Empty;
151        while ((theEntry = s.GetNextEntry()) != null) {
152          string directoryName = pluginDir;
153          string fileName = Path.GetFileName(theEntry.Name);
154          // create directory
155          if (directoryName != "") {
156            Directory.CreateDirectory(directoryName);
[2527]157          }
[2922]158          if (fileName != String.Empty) {
159            string fullPath = Path.Combine(directoryName, fileName);
160            string fullDirPath = Path.GetDirectoryName(fullPath);
161            if (!Directory.Exists(fullDirPath)) Directory.CreateDirectory(fullDirPath);
162            FileStream streamWriter = File.Create(fullPath);
163            int size = 2048;
164            byte[] data = new byte[2048];
165            while (true) {
166              size = s.Read(data, 0, data.Length);
167              if (size > 0) {
168                streamWriter.Write(data, 0, size);
169              } else {
170                break;
171              }
[2527]172            }
[2922]173            streamWriter.Close();
[2527]174          }
175        }
176      }
[2513]177    }
[2517]178
[2527]179    private void OnPreUpdate(PluginInfrastructureCancelEventArgs args) {
180      if (PreUpdatePlugin != null) PreUpdatePlugin(this, args);
181    }
182
183    private void OnUpdated(PluginInfrastructureEventArgs args) {
184      if (PluginUpdated != null) PluginUpdated(this, args);
185    }
186
[2517]187    private void OnPreDelete(PluginInfrastructureCancelEventArgs args) {
188      if (PreRemovePlugin != null) PreRemovePlugin(this, args);
189    }
190
191    private void OnDeleted(PluginInfrastructureEventArgs args) {
192      if (PluginRemoved != null) PluginRemoved(this, args);
193    }
194
195    private void OnPreInstall(PluginInfrastructureCancelEventArgs args) {
196      if (PreInstallPlugin != null) PreInstallPlugin(this, args);
197    }
198
199    private void OnInstalled(PluginInfrastructureEventArgs args) {
200      if (PluginInstalled != null) PluginInstalled(this, args);
201    }
[2513]202  }
203}
Note: See TracBrowser for help on using the repository browser.