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