#region License Information
/* HeuristicLab
* Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HeuristicLab.PluginInfrastructure.Manager;
using System.IO;
using System.ComponentModel;
using System.Reflection;
using ICSharpCode.SharpZipLib.Zip;
using System.ServiceModel;
namespace HeuristicLab.PluginInfrastructure.Advanced {
internal class InstallationManager {
internal event EventHandler PreUpdatePlugin;
internal event EventHandler PreRemovePlugin;
internal event EventHandler PreInstallPlugin;
internal event EventHandler PluginUpdated;
internal event EventHandler PluginRemoved;
internal event EventHandler PluginInstalled;
private string pluginDir;
public InstallationManager(string pluginDir) {
this.pluginDir = pluginDir;
}
///
/// Retrieves a list of plugins available at the remote server
///
///
public IEnumerable GetRemotePluginList() {
var client = DeploymentService.UpdateClientFactory.CreateClient();
try {
List plugins = new List(client.GetPlugins());
client.Close();
return plugins;
}
catch (TimeoutException e) {
client.Abort();
throw new InstallationManagerException("Time out while connecting to server.", e);
}
catch (FaultException e) {
client.Abort();
throw new InstallationManagerException("Fault in connection to server.", e);
}
catch (CommunicationException e) {
client.Abort();
throw new InstallationManagerException("General communication exception in connection to server.", e);
}
}
///
/// Retrieves the list of products available at the remote server
///
///
public IEnumerable GetRemoteProductList() {
var client = DeploymentService.UpdateClientFactory.CreateClient();
try {
List products = new List(client.GetProducts());
client.Close();
return products;
}
catch (TimeoutException e) {
client.Abort();
throw new InstallationManagerException("Time out while connecting to server.", e);
}
catch (FaultException e) {
client.Abort();
throw new InstallationManagerException("Fault in connection to server.", e);
}
catch (CommunicationException e) {
client.Abort();
throw new InstallationManagerException("General communication exception in connection to server.", e);
}
}
///
/// Installs plugins from remote server
///
///
public void Install(IEnumerable plugins) {
var args = new PluginInfrastructureCancelEventArgs(plugins);
OnPreInstall(args);
if (!args.Cancel) {
var client = DeploymentService.UpdateClientFactory.CreateClient();
try {
foreach (DeploymentService.PluginDescription plugin in plugins) {
byte[] zippedPackage = client.GetPlugin(plugin);
Unpack(zippedPackage);
OnInstalled(new PluginInfrastructureEventArgs(plugin));
}
client.Close();
}
catch (TimeoutException e) {
client.Abort();
throw new InstallationManagerException("Time out while connecting to server.", e);
}
catch (FaultException e) {
client.Abort();
throw new InstallationManagerException("Fault in connection to server.", e);
}
catch (CommunicationException e) {
client.Abort();
throw new InstallationManagerException("General communication exception in connection to server.", e);
}
}
}
///
/// Updates plugins from remote server
///
///
public void Update(IEnumerable plugins) {
PluginInfrastructureCancelEventArgs args = new PluginInfrastructureCancelEventArgs(plugins);
OnPreUpdate(args);
if (!args.Cancel) {
var client = DeploymentService.UpdateClientFactory.CreateClient();
try {
foreach (DeploymentService.PluginDescription plugin in plugins) {
byte[] zippedPackage = client.GetPlugin(plugin);
Unpack(zippedPackage);
OnUpdated(new PluginInfrastructureEventArgs(plugin));
}
client.Close();
}
catch (TimeoutException e) {
client.Abort();
throw new InstallationManagerException("Time out while connecting to server.", e);
}
catch (FaultException e) {
client.Abort();
throw new InstallationManagerException("Fault in connection to server.", e);
}
catch (CommunicationException e) {
client.Abort();
throw new InstallationManagerException("General communication exception in connection to server.", e);
}
}
}
///
/// Deletes all plugin files from local installation
///
///
public void Remove(IEnumerable plugins) {
var fileNames = from pluginToDelete in plugins
from file in pluginToDelete.Files
select Path.Combine(pluginDir, file.Name);
var args = new PluginInfrastructureCancelEventArgs(plugins);
OnPreDelete(args);
if (!args.Cancel) {
foreach (string fileName in fileNames) {
File.Delete(fileName);
OnDeleted(new PluginInfrastructureEventArgs(fileName));
}
}
}
private void Unpack(byte[] zippedPackage) {
using (ZipInputStream s = new ZipInputStream(new MemoryStream(zippedPackage))) {
ZipEntry theEntry;
string tmpEntry = String.Empty;
while ((theEntry = s.GetNextEntry()) != null) {
string directoryName = pluginDir;
string fileName = Path.GetFileName(theEntry.Name);
// create directory
if (directoryName != "") {
Directory.CreateDirectory(directoryName);
}
if (fileName != String.Empty) {
string fullPath = Path.Combine(directoryName, fileName);
string fullDirPath = Path.GetDirectoryName(fullPath);
if (!Directory.Exists(fullDirPath)) Directory.CreateDirectory(fullDirPath);
FileStream streamWriter = File.Create(fullPath);
int size = 2048;
byte[] data = new byte[2048];
while (true) {
size = s.Read(data, 0, data.Length);
if (size > 0) {
streamWriter.Write(data, 0, size);
} else {
break;
}
}
streamWriter.Close();
}
}
}
}
private void OnPreUpdate(PluginInfrastructureCancelEventArgs args) {
if (PreUpdatePlugin != null) PreUpdatePlugin(this, args);
}
private void OnUpdated(PluginInfrastructureEventArgs args) {
if (PluginUpdated != null) PluginUpdated(this, args);
}
private void OnPreDelete(PluginInfrastructureCancelEventArgs args) {
if (PreRemovePlugin != null) PreRemovePlugin(this, args);
}
private void OnDeleted(PluginInfrastructureEventArgs args) {
if (PluginRemoved != null) PluginRemoved(this, args);
}
private void OnPreInstall(PluginInfrastructureCancelEventArgs args) {
if (PreInstallPlugin != null) PreInstallPlugin(this, args);
}
private void OnInstalled(PluginInfrastructureEventArgs args) {
if (PluginInstalled != null) PluginInstalled(this, args);
}
}
}