Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginValidator.cs @ 3092

Last change on this file since 3092 was 3081, checked in by gkronber, 15 years ago

Integrated PluginAdministrator plugin into HL3.3 solution. #918 (Integrate deployment service into trunk and HL3.3 solution file)

File size: 26.9 KB
RevLine 
[2]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2]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.Text;
25using System.Reflection;
26using System.IO;
27using System.Diagnostics;
[2481]28using System.Linq;
[2527]29using System.Security;
[2]30
[2481]31
32namespace HeuristicLab.PluginInfrastructure.Manager {
[2503]33  /// <summary>
34  /// Discovers all installed plugins in the plugin directory. Checks correctness of plugin meta-data and if
35  /// all plugin files are available and checks plugin dependencies.
36  /// </summary>
37  internal sealed class PluginValidator : MarshalByRefObject {
[2750]38    // private class to store plugin dependency declarations while reflecting over plugins
39    private class PluginDependency {
40      public string Name { get; private set; }
41      public Version Version { get; private set; }
42
43      public PluginDependency(string name, Version version) {
44        this.Name = name;
45        this.Version = version;
46      }
47    }
48
49
[2489]50    internal event EventHandler<PluginInfrastructureEventArgs> PluginLoaded;
[2]51
[2750]52    private Dictionary<PluginDescription, IEnumerable<PluginDependency>> pluginDependencies;
[2]53
[2481]54    private List<ApplicationDescription> applications;
55    internal IEnumerable<ApplicationDescription> Applications {
[2]56      get {
[2503]57        if (string.IsNullOrEmpty(PluginDir)) throw new InvalidOperationException("PluginDir is not set.");
[2497]58        if (applications == null) DiscoverAndCheckPlugins();
[2481]59        return applications;
[2]60      }
61    }
62
[2481]63    private IEnumerable<PluginDescription> plugins;
64    internal IEnumerable<PluginDescription> Plugins {
[2]65      get {
[2503]66        if (string.IsNullOrEmpty(PluginDir)) throw new InvalidOperationException("PluginDir is not set.");
[2497]67        if (plugins == null) DiscoverAndCheckPlugins();
[2481]68        return plugins;
[29]69      }
70    }
71
[2504]72    internal string PluginDir { get; set; }
[2]73
[2504]74    internal PluginValidator() {
[2750]75      this.pluginDependencies = new Dictionary<PluginDescription, IEnumerable<PluginDependency>>();
[2488]76
[2497]77      // ReflectionOnlyAssemblyResolveEvent must be handled because we load assemblies from the plugin path
78      // (which is not listed in the default assembly lookup locations)
[2488]79      AppDomain.CurrentDomain.ReflectionOnlyAssemblyResolve += ReflectionOnlyAssemblyResolveEventHandler;
[2]80    }
81
[2690]82    private Dictionary<string, Assembly> reflectionOnlyAssemblies = new Dictionary<string, Assembly>();
[2488]83    private Assembly ReflectionOnlyAssemblyResolveEventHandler(object sender, ResolveEventArgs args) {
[2690]84      if (reflectionOnlyAssemblies.ContainsKey(args.Name))
85        return reflectionOnlyAssemblies[args.Name];
86      else
87        return Assembly.ReflectionOnlyLoad(args.Name);
[2488]88    }
[2]89
[2488]90
[2]91    /// <summary>
92    /// Init first clears all internal datastructures (including plugin lists)
93    /// 1. All assemblies in the plugins directory are loaded into the reflection only context.
[2503]94    /// 2. The validator checks if all necessary files for each plugin are available.
[2536]95    /// 3. The validator checks if all declared plugin assemblies can be loaded.
96    /// 4. The validator builds the tree of plugin descriptions (dependencies)
97    /// 5. The validator checks if there are any cycles in the plugin dependency graph and disables plugin with circular dependencies
98    /// 6. The validator checks for each plugin if any dependency is disabled.
99    /// 7. All plugins that are not disabled are loaded into the execution context.
100    /// 8. Each loaded plugin (all assemblies) is searched for a types that implement IPlugin
[2481]101    ///    then one instance of each IPlugin type is activated and the OnLoad hook is called.
[2536]102    /// 9. All types implementing IApplication are discovered
[2]103    /// </summary>
[2503]104    internal void DiscoverAndCheckPlugins() {
[2]105      pluginDependencies.Clear();
106
[2527]107      IEnumerable<Assembly> reflectionOnlyAssemblies = ReflectionOnlyLoadDlls(PluginDir);
[2481]108      IEnumerable<PluginDescription> pluginDescriptions = GatherPluginDescriptions(reflectionOnlyAssemblies);
109      CheckPluginFiles(pluginDescriptions);
[2]110
[2536]111      // check if all plugin assemblies can be loaded
[2527]112      CheckPluginAssemblies(pluginDescriptions);
113
[2481]114      // a full list of plugin descriptions is available now we can build the dependency tree
115      BuildDependencyTree(pluginDescriptions);
116
[2536]117      // check for dependency cycles
118      CheckPluginDependencyCycles(pluginDescriptions);
119
[2481]120      // recursively check if all necessary plugins are available and not disabled
121      // disable plugins with missing or disabled dependencies
122      CheckPluginDependencies(pluginDescriptions);
123
[2536]124      // mark all plugins as enabled that were not disabled in CheckPluginFiles, CheckPluginAssemblies,
125      // CheckCircularDependencies, or CheckPluginDependencies
[2488]126      foreach (var desc in pluginDescriptions)
127        if (desc.PluginState != PluginState.Disabled)
128          desc.Enable();
129
[2481]130      // test full loading (in contrast to reflection only loading) of plugins
131      // disables plugins that are not loaded correctly
132      LoadPlugins(pluginDescriptions);
133
134      plugins = pluginDescriptions;
135      DiscoverApplications();
136    }
137
138    private void DiscoverApplications() {
139      applications = new List<ApplicationDescription>();
[2]140
[2488]141      foreach (IApplication application in GetApplications()) {
[2504]142        Type appType = application.GetType();
143        ApplicationAttribute attr = (from x in appType.GetCustomAttributes(typeof(ApplicationAttribute), false)
144                                     select (ApplicationAttribute)x).Single();
[2481]145        ApplicationDescription info = new ApplicationDescription();
[2]146        info.Name = application.Name;
[2504]147        info.Version = appType.Assembly.GetName().Version;
[2]148        info.Description = application.Description;
[2504]149        info.AutoRestart = attr.RestartOnErrors;
150        info.DeclaringAssemblyName = appType.Assembly.GetName().Name;
151        info.DeclaringTypeName = appType.Namespace + "." + application.GetType().Name;
[2]152
[29]153        applications.Add(info);
[2]154      }
155    }
156
[2504]157    private static IEnumerable<IApplication> GetApplications() {
[2488]158      return from asm in AppDomain.CurrentDomain.GetAssemblies()
159             from t in asm.GetTypes()
160             where typeof(IApplication).IsAssignableFrom(t) &&
161               !t.IsAbstract && !t.IsInterface && !t.HasElementType
162             select (IApplication)Activator.CreateInstance(t);
163    }
164
[2690]165    private IEnumerable<Assembly> ReflectionOnlyLoadDlls(string baseDir) {
[2]166      List<Assembly> assemblies = new List<Assembly>();
[2527]167      // recursively load .dll files in subdirectories
168      foreach (string dirName in Directory.GetDirectories(baseDir)) {
169        assemblies.AddRange(ReflectionOnlyLoadDlls(dirName));
170      }
[2481]171      // try to load each .dll file in the plugin directory into the reflection only context
[2527]172      foreach (string filename in Directory.GetFiles(baseDir, "*.dll")) {
[535]173        try {
[2690]174          Assembly asm = Assembly.ReflectionOnlyLoadFrom(filename);
175          RegisterLoadedAssembly(asm);
176          assemblies.Add(asm);
[1229]177        }
[2503]178        catch (BadImageFormatException) { } // just ignore the case that the .dll file is not a CLR assembly (e.g. a native dll)
[2527]179        catch (FileLoadException) { }
180        catch (SecurityException) { }
[3081]181        catch (ReflectionTypeLoadException) { } // referenced assemblies are missing
[2]182      }
183      return assemblies;
184    }
185
[2527]186    /// <summary>
187    /// Checks if all plugin assemblies can be loaded. If an assembly can't be loaded the plugin is disabled.
188    /// </summary>
189    /// <param name="pluginDescriptions"></param>
190    private void CheckPluginAssemblies(IEnumerable<PluginDescription> pluginDescriptions) {
191      foreach (var desc in pluginDescriptions.Where(x => x.PluginState != PluginState.Disabled)) {
192        try {
[2779]193          var missingAssemblies = new List<string>();
[2690]194          foreach (var asmLocation in desc.AssemblyLocations) {
195            // the assembly must have been loaded in ReflectionOnlyDlls
196            // so we simply determine the name of the assembly and try to find it in the cache of loaded assemblies
197            var asmName = AssemblyName.GetAssemblyName(asmLocation);
198            if (!reflectionOnlyAssemblies.ContainsKey(asmName.FullName)) {
[2779]199              missingAssemblies.Add(asmName.FullName);
[2690]200            }
[2527]201          }
[2779]202          if (missingAssemblies.Count > 0) {
203            StringBuilder errorStrBuiler = new StringBuilder();
204            errorStrBuiler.AppendLine("Missing assemblies:");
205            foreach (string missingAsm in missingAssemblies) {
206              errorStrBuiler.AppendLine(missingAsm);
207            }
208            desc.Disable(errorStrBuiler.ToString());
209          }
[2527]210        }
[2779]211        catch (BadImageFormatException ex) {
[2527]212          // disable the plugin
[2779]213          desc.Disable("Problem while loading plugin assemblies:" + Environment.NewLine + "BadImageFormatException: " + ex.Message);
[2527]214        }
[2779]215        catch (FileNotFoundException ex) {
[2527]216          // disable the plugin
[2779]217          desc.Disable("Problem while loading plugin assemblies:" + Environment.NewLine + "FileNotFoundException: " + ex.Message);
[2527]218        }
[2779]219        catch (FileLoadException ex) {
[2527]220          // disable the plugin
[2779]221          desc.Disable("Problem while loading plugin assemblies:" + Environment.NewLine + "FileLoadException: " + ex.Message);
[2527]222        }
[2779]223        catch (ArgumentException ex) {
[2527]224          // disable the plugin
[2779]225          desc.Disable("Problem while loading plugin assemblies:" + Environment.NewLine + "ArgumentException: " + ex.Message);
[2527]226        }
[2779]227        catch (SecurityException ex) {
[2527]228          // disable the plugin
[2779]229          desc.Disable("Problem while loading plugin assemblies:" + Environment.NewLine + "SecurityException: " + ex.Message);
[2527]230        }
231      }
232    }
233
234
[2481]235    // find all types implementing IPlugin in the reflectionOnlyAssemblies and create a list of plugin descriptions
236    // the dependencies in the plugin descriptions are not yet set correctly because we need to create
237    // the full list of all plugin descriptions first
238    private IEnumerable<PluginDescription> GatherPluginDescriptions(IEnumerable<Assembly> assemblies) {
239      List<PluginDescription> pluginDescriptions = new List<PluginDescription>();
[1229]240      foreach (Assembly assembly in assemblies) {
[2]241        // GetExportedTypes throws FileNotFoundException when a referenced assembly
242        // of the current assembly is missing.
243        try {
[2527]244          // if there is a type that implements IPlugin
245          // use AssemblyQualifiedName to compare the types because we can't directly
246          // compare ReflectionOnly types and execution types
247          var assemblyPluginDescriptions = from t in assembly.GetExportedTypes()
248                                           where !t.IsAbstract && t.GetInterfaces().Any(x => x.AssemblyQualifiedName == typeof(IPlugin).AssemblyQualifiedName)
249                                           select GetPluginDescription(t);
250          pluginDescriptions.AddRange(assemblyPluginDescriptions);
[1229]251        }
[2497]252        // ignore exceptions. Just don't yield a plugin description when an exception is thrown
[2489]253        catch (FileNotFoundException) {
[1229]254        }
[2489]255        catch (FileLoadException) {
[2]256        }
[2489]257        catch (InvalidPluginException) {
[1395]258        }
[2]259      }
[2481]260      return pluginDescriptions;
[2]261    }
262
263    /// <summary>
264    /// Extracts plugin information for this type.
265    /// Reads plugin name, list and type of files and dependencies of the plugin. This information is necessary for
266    /// plugin dependency checking before plugin activation.
267    /// </summary>
[3046]268    /// <param name="pluginType"></param>
[2481]269    private PluginDescription GetPluginDescription(Type pluginType) {
[2]270
[2763]271      string pluginName, pluginDescription, pluginVersion;
[2778]272      string contactName, contactAddress;
[2763]273      GetPluginMetaData(pluginType, out pluginName, out pluginDescription, out pluginVersion);
[2778]274      GetPluginContactMetaData(pluginType, out contactName, out contactAddress);
[2763]275      var pluginFiles = GetPluginFilesMetaData(pluginType);
276      var pluginDependencies = GetPluginDependencyMetaData(pluginType);
277
[29]278      // minimal sanity check of the attribute values
[2517]279      if (!string.IsNullOrEmpty(pluginName) &&
[2778]280          pluginFiles.Count() > 0 &&                                 // at least one file
281          pluginFiles.Any(f => f.Type == PluginFileType.Assembly)) { // at least one assembly
[2481]282        // create a temporary PluginDescription that contains the attribute values
283        PluginDescription info = new PluginDescription();
[29]284        info.Name = pluginName;
[2513]285        info.Description = pluginDescription;
[2750]286        info.Version = new Version(pluginVersion);
[2778]287        info.ContactName = contactName;
288        info.ContactEmail = contactAddress;
[2815]289        info.LicenseText = ReadLicenseFiles(pluginFiles);
[2481]290        info.AddFiles(pluginFiles);
291
[29]292        this.pluginDependencies[info] = pluginDependencies;
[2481]293        return info;
[2]294      } else {
[2481]295        throw new InvalidPluginException("Invalid metadata in plugin " + pluginType.ToString());
[2]296      }
297    }
298
[2815]299    private string ReadLicenseFiles(IEnumerable<PluginFile> pluginFiles) {
300      // combine the contents of all plugin files
301      var licenseFiles = from file in pluginFiles
302                         where file.Type == PluginFileType.License
303                         select file;
304      if (licenseFiles.Count() == 0) return string.Empty;
305      StringBuilder licenseTextBuilder = new StringBuilder();
306      licenseTextBuilder.AppendLine(File.ReadAllText(licenseFiles.First().Name));
307      foreach (var licenseFile in licenseFiles.Skip(1)) {
308        licenseTextBuilder.AppendLine().AppendLine(); // leave some empty space between multiple license files
309        licenseTextBuilder.AppendLine(File.ReadAllText(licenseFile.Name));
310      }
311      return licenseTextBuilder.ToString();
312    }
313
[2763]314    private static IEnumerable<PluginDependency> GetPluginDependencyMetaData(Type pluginType) {
315      // get all attributes of type PluginDependency
316      var dependencyAttributes = from attr in CustomAttributeData.GetCustomAttributes(pluginType)
317                                 where IsAttributeDataForType(attr, typeof(PluginDependencyAttribute))
318                                 select attr;
319
320      foreach (var dependencyAttr in dependencyAttributes) {
321        string name = (string)dependencyAttr.ConstructorArguments[0].Value;
322        Version version = new Version("0.0.0.0"); // default version
323        // check if version is given for now
324        // later when the constructor of PluginDependencyAttribute with only one argument has been removed
325        // this conditional can be removed as well
326        if (dependencyAttr.ConstructorArguments.Count > 1) {
327          try {
328            version = new Version((string)dependencyAttr.ConstructorArguments[1].Value); // might throw FormatException
329          }
330          catch (FormatException ex) {
331            throw new InvalidPluginException("Invalid version format of dependency " + name + " in plugin " + pluginType.ToString(), ex);
332          }
333        }
334        yield return new PluginDependency(name, version);
335      }
336    }
337
[2778]338    private static void GetPluginContactMetaData(Type pluginType, out string contactName, out string contactAddress) {
339      // get attribute of type ContactInformation if there is any
340      var contactInfoAttribute = (from attr in CustomAttributeData.GetCustomAttributes(pluginType)
341                                  where IsAttributeDataForType(attr, typeof(ContactInformationAttribute))
342                                  select attr).SingleOrDefault();
343
344      if (contactInfoAttribute != null) {
345        contactName = (string)contactInfoAttribute.ConstructorArguments[0].Value;
346        contactAddress = (string)contactInfoAttribute.ConstructorArguments[1].Value;
347      } else {
348        contactName = string.Empty;
349        contactAddress = string.Empty;
350      }
351    }
352
[2763]353    // not static because we need the PluginDir property
354    private IEnumerable<PluginFile> GetPluginFilesMetaData(Type pluginType) {
355      // get all attributes of type PluginFileAttribute
356      var pluginFileAttributes = from attr in CustomAttributeData.GetCustomAttributes(pluginType)
357                                 where IsAttributeDataForType(attr, typeof(PluginFileAttribute))
358                                 select attr;
359      foreach (var pluginFileAttribute in pluginFileAttributes) {
360        string pluginFileName = (string)pluginFileAttribute.ConstructorArguments[0].Value;
361        PluginFileType fileType = (PluginFileType)pluginFileAttribute.ConstructorArguments[1].Value;
362        yield return new PluginFile(Path.GetFullPath(Path.Combine(PluginDir, pluginFileName)), fileType);
363      }
364    }
365
366    private static void GetPluginMetaData(Type pluginType, out string pluginName, out string pluginDescription, out string pluginVersion) {
367      // there must be a single attribute of type PluginAttribute
368      var pluginMetaDataAttr = (from attr in CustomAttributeData.GetCustomAttributes(pluginType)
369                                where IsAttributeDataForType(attr, typeof(PluginAttribute))
370                                select attr).Single();
371
372      pluginName = (string)pluginMetaDataAttr.ConstructorArguments[0].Value;
373
374      // default description and version
375      pluginVersion = "0.0.0.0";
376      pluginDescription = pluginName;
377      if (pluginMetaDataAttr.ConstructorArguments.Count() == 2) {
378        // if two arguments are given the second argument is the version
379        pluginVersion = (string)pluginMetaDataAttr.ConstructorArguments[1].Value;
380      } else if (pluginMetaDataAttr.ConstructorArguments.Count() == 3) {
381        // if three arguments are given the second argument is the description and the third is the version
382        pluginDescription = (string)pluginMetaDataAttr.ConstructorArguments[1].Value;
383        pluginVersion = (string)pluginMetaDataAttr.ConstructorArguments[2].Value;
384      }
385    }
386
[2504]387    private static bool IsAttributeDataForType(CustomAttributeData attributeData, Type attributeType) {
[2481]388      return attributeData.Constructor.DeclaringType.AssemblyQualifiedName == attributeType.AssemblyQualifiedName;
389    }
390
391    // builds a dependency tree of all plugin descriptions
392    // searches matching plugin descriptions based on the list of dependency names for each plugin
393    // and sets the dependencies in the plugin descriptions
394    private void BuildDependencyTree(IEnumerable<PluginDescription> pluginDescriptions) {
395      foreach (var desc in pluginDescriptions) {
[2779]396        var missingDependencies = new List<PluginDependency>();
[2750]397        foreach (var dependency in pluginDependencies[desc]) {
398          var matchingDescriptions = from availablePlugin in pluginDescriptions
399                                     where availablePlugin.Name == dependency.Name
400                                     where IsCompatiblePluginVersion(availablePlugin.Version, dependency.Version)
401                                     select availablePlugin;
[2481]402          if (matchingDescriptions.Count() > 0) {
[2517]403            desc.AddDependency(matchingDescriptions.Single());
[2481]404          } else {
[2779]405            missingDependencies.Add(dependency);
[2481]406          }
[29]407        }
[2779]408        // no plugin description that matches the dependencies are available => plugin is disabled
409        if (missingDependencies.Count > 0) {
410          StringBuilder errorStrBuilder = new StringBuilder();
411          errorStrBuilder.AppendLine("Missing dependencies:");
412          foreach (var missingDep in missingDependencies) {
413            errorStrBuilder.AppendLine(missingDep.Name + " " + missingDep.Version);
414          }
415          desc.Disable(errorStrBuilder.ToString());
416        }
[2481]417      }
418    }
[37]419
[2750]420    /// <summary>
421    /// Checks if version <paramref name="available"/> is compatible to version <paramref name="requested"/>.
422    /// Note: the compatibility relation is not bijective.
423    /// Compatibility rules:
424    ///  * major and minor number must be the same
425    ///  * build and revision number of <paramref name="available"/> must be larger or equal to <paramref name="requested"/>.
426    /// </summary>
427    /// <param name="available">The available version which should be compared to <paramref name="requested"/>.</param>
428    /// <param name="requested">The requested version that must be matched.</param>
429    /// <returns></returns>
430    private bool IsCompatiblePluginVersion(Version available, Version requested) {
431      // this condition must be removed after all plugins have been updated to declare plugin and dependency versions
432      if (
433        (requested.Major == 0 && requested.Minor == 0) ||
434        (available.Major == 0 && available.Minor == 0)) return true;
435      return
436        available.Major == requested.Major &&
437        available.Minor == requested.Minor &&
438        available.Build >= requested.Build &&
439        available.Revision >= requested.Revision;
440    }
441
[2536]442    private void CheckPluginDependencyCycles(IEnumerable<PluginDescription> pluginDescriptions) {
443      foreach (var plugin in pluginDescriptions) {
[2779]444        // if the plugin is not disabled check if there are cycles
[2536]445        if (plugin.PluginState != PluginState.Disabled && HasCycleInDependencies(plugin, plugin.Dependencies)) {
[2779]446          plugin.Disable("Dependency graph has a cycle.");
[2536]447        }
448      }
449    }
450
451    private bool HasCycleInDependencies(PluginDescription plugin, IEnumerable<PluginDescription> pluginDependencies) {
452      foreach (var dep in pluginDependencies) {
453        // if one of the dependencies is the original plugin we found a cycle and can return
454        // if the dependency is already disabled we can ignore the cycle detection because we will disable the plugin anyway
455        // if following one of the dependencies recursively leads to a cycle then we also return
456        if (dep == plugin || dep.PluginState == PluginState.Disabled || HasCycleInDependencies(plugin, dep.Dependencies)) return true;
457      }
458      // no cycle found and none of the direct and indirect dependencies is disabled
459      return false;
460    }
461
[2481]462    private void CheckPluginDependencies(IEnumerable<PluginDescription> pluginDescriptions) {
463      foreach (PluginDescription pluginDescription in pluginDescriptions.Where(x => x.PluginState != PluginState.Disabled)) {
[2779]464        List<PluginDescription> disabledPlugins = new List<PluginDescription>();
465        if (IsAnyDependencyDisabled(pluginDescription, disabledPlugins)) {
466          StringBuilder errorStrBuilder = new StringBuilder();
467          errorStrBuilder.AppendLine("Dependencies are disabled:");
468          foreach (var disabledPlugin in disabledPlugins) {
469            errorStrBuilder.AppendLine(disabledPlugin.Name + " " + disabledPlugin.Version);
470          }
471          pluginDescription.Disable(errorStrBuilder.ToString());
[29]472        }
473      }
474    }
475
476
[2779]477    private bool IsAnyDependencyDisabled(PluginDescription descr, List<PluginDescription> disabledPlugins) {
478      if (descr.PluginState == PluginState.Disabled) {
479        disabledPlugins.Add(descr);
480        return true;
481      }
[2481]482      foreach (PluginDescription dependency in descr.Dependencies) {
[2779]483        IsAnyDependencyDisabled(dependency, disabledPlugins);
[2]484      }
[2779]485      return disabledPlugins.Count > 0;
[2]486    }
487
[2481]488    private void LoadPlugins(IEnumerable<PluginDescription> pluginDescriptions) {
[2]489      // load all loadable plugins (all dependencies available) into the execution context
[2517]490      foreach (var desc in PluginDescriptionIterator.IterateDependenciesBottomUp(pluginDescriptions
[2488]491                                                                                .Where(x => x.PluginState != PluginState.Disabled))) {
[2481]492        List<Type> types = new List<Type>();
[2690]493        foreach (string assemblyLocation in desc.AssemblyLocations) {
494          // now load the assemblies into the execution context
495          var asm = Assembly.LoadFrom(assemblyLocation);
[2481]496          foreach (Type t in asm.GetTypes()) {
497            if (typeof(IPlugin).IsAssignableFrom(t)) {
498              types.Add(t);
499            }
[2]500          }
501        }
502
[2481]503        foreach (Type pluginType in types) {
[1229]504          if (!pluginType.IsAbstract && !pluginType.IsInterface && !pluginType.HasElementType) {
[2]505            IPlugin plugin = (IPlugin)Activator.CreateInstance(pluginType);
[2481]506            plugin.OnLoad();
[2922]507            OnPluginLoaded(new PluginInfrastructureEventArgs(desc));
[2]508          }
509        }
[2489]510        desc.Load();
[2]511      }
512    }
[91]513
[2481]514    // checks if all declared plugin files are actually available and disables plugins with missing files
[2527]515    private void CheckPluginFiles(IEnumerable<PluginDescription> pluginDescriptions) {
[2481]516      foreach (PluginDescription desc in pluginDescriptions) {
[2779]517        IEnumerable<string> missingFiles;
518        if (ArePluginFilesMissing(desc, out missingFiles)) {
519          StringBuilder errorStrBuilder = new StringBuilder();
520          errorStrBuilder.AppendLine("Missing files:");
521          foreach (string fileName in missingFiles) {
522            errorStrBuilder.AppendLine(fileName);
523          }
524          desc.Disable(errorStrBuilder.ToString());
[29]525        }
[2]526      }
527    }
528
[2779]529    private bool ArePluginFilesMissing(PluginDescription pluginDescription, out IEnumerable<string> missingFiles) {
530      List<string> missing = new List<string>();
[2688]531      foreach (string filename in pluginDescription.Files.Select(x => x.Name)) {
[2527]532        if (!FileLiesInDirectory(PluginDir, filename) ||
533          !File.Exists(filename)) {
[2779]534          missing.Add(filename);
[2]535        }
536      }
[2779]537      missingFiles = missing;
538      return missing.Count > 0;
[2]539    }
540
[2527]541    private static bool FileLiesInDirectory(string dir, string fileName) {
542      var basePath = Path.GetFullPath(dir);
543      return Path.GetFullPath(fileName).StartsWith(basePath);
544    }
545
[2690]546    // register assembly in the assembly cache for the ReflectionOnlyAssemblyResolveEvent
547    private void RegisterLoadedAssembly(Assembly asm) {
548      reflectionOnlyAssemblies.Add(asm.FullName, asm);
549      reflectionOnlyAssemblies.Add(asm.GetName().Name, asm); // add short name
550    }
551
[2763]552    private void OnPluginLoaded(PluginInfrastructureEventArgs e) {
[2489]553      if (PluginLoaded != null)
[2503]554        PluginLoaded(this, e);
[2489]555    }
556
[1189]557    /// <summary>
[2497]558    /// Initializes the life time service with an infinite lease time.
[1189]559    /// </summary>
560    /// <returns><c>null</c>.</returns>
[2]561    public override object InitializeLifetimeService() {
562      return null;
563    }
564  }
565}
Note: See TracBrowser for help on using the repository browser.