Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/3.3/DefaultApplicationManager.cs @ 5741

Last change on this file since 5741 was 5741, checked in by gkronber, 13 years ago

#1432: implemented NonDiscoverableType attribute and removed attributed types from type discovery.

File size: 14.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.IO;
25using System.Linq;
26using System.Reflection;
27using HeuristicLab.PluginInfrastructure.Manager;
28
29namespace HeuristicLab.PluginInfrastructure {
30
31  /// <summary>
32  /// The DefaultApplicationManager provides properties to retrieve the list of available plugins and applications.
33  /// It also provides methods for type discovery and instantiation for types declared in plugins.
34  /// The DefaultApplicationManager is registered as ApplicationManager.Manager singleton for each HL application
35  /// started via the plugin infrastructure.
36  /// </summary>
37  internal sealed class DefaultApplicationManager : MarshalByRefObject, IApplicationManager {
38    /// <summary>
39    /// Fired when a plugin is loaded.
40    /// </summary>
41    internal event EventHandler<PluginInfrastructureEventArgs> PluginLoaded;
42    /// <summary>
43    /// Fired when a plugin is unloaded (when the application terminates).
44    /// </summary>
45    internal event EventHandler<PluginInfrastructureEventArgs> PluginUnloaded;
46
47    // cache for the AssemblyResolveEvent
48    // which must be handled when assemblies are loaded dynamically after the application start
49    private Dictionary<string, Assembly> loadedAssemblies;
50
51    private List<IPlugin> loadedPlugins;
52
53    private List<PluginDescription> plugins;
54    /// <summary>
55    /// Gets all plugins.
56    /// </summary>
57    public IEnumerable<IPluginDescription> Plugins {
58      get { return plugins.Cast<IPluginDescription>(); }
59    }
60
61    private List<ApplicationDescription> applications;
62    /// <summary>
63    /// Gets all installed applications.
64    /// </summary>
65    public IEnumerable<IApplicationDescription> Applications {
66      get { return applications.Cast<IApplicationDescription>(); }
67    }
68
69    internal DefaultApplicationManager()
70      : base() {
71      loadedAssemblies = new Dictionary<string, Assembly>();
72      loadedPlugins = new List<IPlugin>();
73      AppDomain.CurrentDomain.AssemblyResolve += (sender, args) => {
74        if (loadedAssemblies.ContainsKey(args.Name)) {
75          return loadedAssemblies[args.Name];
76        }
77        return null;
78      };
79    }
80
81    /// <summary>
82    /// Prepares the application domain for the execution of an HL application.
83    /// Pre-loads all <paramref name="plugins"/>.
84    /// </summary>
85    /// <param name="apps">Enumerable of available HL applications.</param>
86    /// <param name="plugins">Enumerable of plugins that should be pre-loaded.</param>
87    internal void PrepareApplicationDomain(IEnumerable<ApplicationDescription> apps, IEnumerable<PluginDescription> plugins) {
88      this.plugins = new List<PluginDescription>(plugins);
89      this.applications = new List<ApplicationDescription>(apps);
90      ApplicationManager.RegisterApplicationManager(this);
91      LoadPlugins(plugins);
92    }
93
94    /// <summary>
95    /// Loads the <paramref name="plugins"/> into this application domain.
96    /// </summary>
97    /// <param name="plugins">Enumerable of plugins that should be loaded.</param>
98    private void LoadPlugins(IEnumerable<PluginDescription> plugins) {
99      // load all loadable plugins (all dependencies available) into the execution context
100      foreach (var desc in PluginDescriptionIterator.IterateDependenciesBottomUp(plugins.Where(x => x.PluginState != PluginState.Disabled))) {
101        foreach (string fileName in desc.AssemblyLocations) {
102          // load assembly reflection only first to get the full assembly name
103          var reflectionOnlyAssembly = Assembly.ReflectionOnlyLoadFrom(fileName);
104          // load the assembly into execution context using full assembly name
105          var asm = Assembly.Load(reflectionOnlyAssembly.FullName);
106          RegisterLoadedAssembly(asm);
107          // instantiate and load all plugins in this assembly
108          foreach (var plugin in GetInstances<IPlugin>(asm)) {
109            plugin.OnLoad();
110            loadedPlugins.Add(plugin);
111          }
112        }
113        OnPluginLoaded(new PluginInfrastructureEventArgs(desc));
114        desc.Load();
115      }
116    }
117
118    /// <summary>
119    /// Runs the application declared in <paramref name="appInfo"/>.
120    /// This is a synchronous call. When the application is terminated all plugins are unloaded.
121    /// </summary>
122    /// <param name="appInfo">Description of the application to run</param>
123    internal void Run(ApplicationDescription appInfo) {
124      IApplication runnablePlugin = (IApplication)Activator.CreateInstance(appInfo.DeclaringAssemblyName, appInfo.DeclaringTypeName).Unwrap();
125      try {
126        runnablePlugin.Run();
127      }
128      finally {
129        // unload plugins in reverse order
130        foreach (var plugin in loadedPlugins.Reverse<IPlugin>()) {
131          plugin.OnUnload();
132        }
133        foreach (var desc in PluginDescriptionIterator.IterateDependenciesBottomUp(plugins.Where(x => x.PluginState != PluginState.Disabled))) {
134          desc.Unload();
135          OnPluginUnloaded(new PluginInfrastructureEventArgs(desc));
136        }
137      }
138    }
139
140    /// <summary>
141    /// Loads raw assemblies dynamically from a byte array
142    /// </summary>
143    /// <param name="assemblies">bytearray of all raw assemblies that should be loaded</param>
144    internal void LoadAssemblies(IEnumerable<byte[]> assemblies) {
145      foreach (byte[] asm in assemblies) {
146        Assembly loadedAsm = Assembly.Load(asm);
147        RegisterLoadedAssembly(loadedAsm);
148      }
149    }
150
151    // register assembly in the assembly cache for the AssemblyResolveEvent
152    private void RegisterLoadedAssembly(Assembly asm) {
153      loadedAssemblies.Add(asm.FullName, asm);
154      loadedAssemblies.Add(asm.GetName().Name, asm); // add short name
155    }
156
157    /// <summary>
158    /// Creates an instance of all types that are subtypes or the same type of the specified type and declared in <paramref name="plugin"/>
159    /// </summary>
160    /// <typeparam name="T">Most general type.</typeparam>
161    /// <returns>Enumerable of the created instances.</returns>
162    internal static IEnumerable<T> GetInstances<T>(IPluginDescription plugin) where T : class {
163      List<T> instances = new List<T>();
164      foreach (Type t in GetTypes(typeof(T), plugin, true)) {
165        T instance = null;
166        try { instance = (T)Activator.CreateInstance(t); }
167        catch { }
168        if (instance != null) instances.Add(instance);
169      }
170      return instances;
171    }
172    /// <summary>
173    /// Creates an instance of all types declared in assembly <paramref name="asm"/> that are subtypes or the same type of the specified <typeparamref name="type"/>.
174    /// </summary>
175    /// <typeparam name="T">Most general type.</typeparam>
176    /// <param name="asm">Declaring assembly.</param>
177    /// <returns>Enumerable of the created instances.</returns>
178    private static IEnumerable<T> GetInstances<T>(Assembly asm) where T : class {
179      List<T> instances = new List<T>();
180      foreach (Type t in GetTypes(typeof(T), asm, true)) {
181        T instance = null;
182        try { instance = (T)Activator.CreateInstance(t); }
183        catch { }
184        if (instance != null) instances.Add(instance);
185      }
186      return instances;
187    }
188    /// <summary>
189    /// Creates an instance of all types that are subtypes or the same type of the specified type
190    /// </summary>
191    /// <typeparam name="T">Most general type.</typeparam>
192    /// <returns>Enumerable of the created instances.</returns>
193    internal static IEnumerable<T> GetInstances<T>() where T : class {
194      return from i in GetInstances(typeof(T))
195             select (T)i;
196    }
197
198    /// <summary>
199    /// Creates an instance of all types that are subtypes or the same type of the specified type
200    /// </summary>
201    /// <param name="type">Most general type.</param>
202    /// <returns>Enumerable of the created instances.</returns>
203    internal static IEnumerable<object> GetInstances(Type type) {
204      List<object> instances = new List<object>();
205      foreach (Type t in GetTypes(type, true)) {
206        object instance = null;
207        try { instance = Activator.CreateInstance(t); }
208        catch { }
209        if (instance != null) instances.Add(instance);
210      }
211      return instances;
212    }
213
214    /// <summary>
215    /// Finds all types that are subtypes or equal to the specified type.
216    /// </summary>
217    /// <param name="type">Most general type for which to find matching types.</param>
218    /// <param name="onlyInstantiable">Return only types that are instantiable
219    /// (interfaces, abstract classes... are not returned)</param>
220    /// <returns>Enumerable of the discovered types.</returns>
221    internal static IEnumerable<Type> GetTypes(Type type, bool onlyInstantiable) {
222      return from asm in AppDomain.CurrentDomain.GetAssemblies()
223             from t in GetTypes(type, asm, onlyInstantiable)
224             select t;
225    }
226
227    /// <summary>
228    /// Finds all types that are subtypes or equal to the specified type if they are part of the given
229    /// <paramref name="pluginDescription"/>.
230    /// </summary>
231    /// <param name="type">Most general type for which to find matching types.</param>
232    /// <param name="pluginDescription">The plugin the subtypes must be part of.</param>
233    /// <param name="onlyInstantiable">Return only types that are instantiable
234    /// (interfaces, abstract classes... are not returned)</param>
235    /// <returns>Enumerable of the discovered types.</returns>
236    internal static IEnumerable<Type> GetTypes(Type type, IPluginDescription pluginDescription, bool onlyInstantiable) {
237      PluginDescription pluginDesc = (PluginDescription)pluginDescription;
238      return from asm in AppDomain.CurrentDomain.GetAssemblies()
239             where !IsDynamicAssembly(asm)
240             where pluginDesc.AssemblyLocations.Any(location => location.Equals(Path.GetFullPath(asm.Location), StringComparison.CurrentCultureIgnoreCase))
241             from t in GetTypes(type, asm, onlyInstantiable)
242             select t;
243    }
244
245    private static bool IsDynamicAssembly(Assembly asm) {
246      return (asm is System.Reflection.Emit.AssemblyBuilder) || string.IsNullOrEmpty(asm.Location);
247    }
248
249    /// <summary>
250    /// Gets types that are assignable (same of subtype) to the specified type only from the given assembly.
251    /// </summary>
252    /// <param name="type">Most general type we want to find.</param>
253    /// <param name="assembly">Assembly that should be searched for types.</param>
254    /// <param name="onlyInstantiable">Return only types that are instantiable
255    /// (interfaces, abstract classes...  are not returned)</param>
256    /// <returns>Enumerable of the discovered types.</returns>
257    private static IEnumerable<Type> GetTypes(Type type, Assembly assembly, bool onlyInstantiable) {
258      return from t in assembly.GetTypes()
259             where CheckTypeCompatibility(type, t)
260             where onlyInstantiable == false ||
261                (!t.IsAbstract && !t.IsInterface && !t.HasElementType)
262             where !IsNonDiscoverableType(t)
263             select BuildType(t, type);
264    }
265
266    private static bool IsNonDiscoverableType(Type t) {
267      return t.GetCustomAttributes(typeof(NonDiscoverableTypeAttribute), false).Any();
268    }
269
270    private static bool CheckTypeCompatibility(Type type, Type other) {
271      if (type.IsAssignableFrom(other))
272        return true;
273      if (type.IsGenericType && other.IsGenericType) {
274        try {
275          if (type.IsAssignableFrom(other.GetGenericTypeDefinition().MakeGenericType(type.GetGenericArguments())))
276            return true;
277        }
278        catch (Exception) { }
279      }
280      return false;
281    }
282    private static Type BuildType(Type type, Type protoType) {
283      if (type.IsGenericType && protoType.IsGenericType)
284        return type.GetGenericTypeDefinition().MakeGenericType(protoType.GetGenericArguments());
285      else
286        return type;
287    }
288
289    private void OnPluginLoaded(PluginInfrastructureEventArgs e) {
290      if (PluginLoaded != null) PluginLoaded(this, e);
291    }
292
293    private void OnPluginUnloaded(PluginInfrastructureEventArgs e) {
294      if (PluginUnloaded != null) PluginUnloaded(this, e);
295    }
296
297    // infinite lease time
298    /// <summary>
299    /// Initializes the life time service with infinite lease time.
300    /// </summary>
301    /// <returns><c>null</c>.</returns>
302    public override object InitializeLifetimeService() {
303      return null;
304    }
305
306    #region IApplicationManager Members
307
308    IEnumerable<T> IApplicationManager.GetInstances<T>() {
309      return GetInstances<T>();
310    }
311
312    IEnumerable<object> IApplicationManager.GetInstances(Type type) {
313      return GetInstances(type);
314    }
315
316    IEnumerable<Type> IApplicationManager.GetTypes(Type type) {
317      return GetTypes(type, true);
318    }
319
320    IEnumerable<Type> IApplicationManager.GetTypes(Type type, bool onlyInstantiable) {
321      return GetTypes(type, onlyInstantiable);
322    }
323
324    IEnumerable<Type> IApplicationManager.GetTypes(Type type, IPluginDescription plugin) {
325      return GetTypes(type, plugin, true);
326    }
327
328    IEnumerable<Type> IApplicationManager.GetTypes(Type type, IPluginDescription plugin, bool onlyInstantiable) {
329      return GetTypes(type, plugin, onlyInstantiable);
330    }
331
332
333    /// <summary>
334    /// Finds the plugin that declares the <paramref name="type">type</paramref>.
335    /// </summary>
336    /// <param name="type">The type of interest.</param>
337    /// <returns>The description of the plugin that declares the given type or null if the type has not been declared by a known plugin.</returns>
338    public IPluginDescription GetDeclaringPlugin(Type type) {
339      if (type == null) throw new ArgumentNullException("type");
340      foreach (PluginDescription info in Plugins) {
341        if (info.AssemblyLocations.Contains(Path.GetFullPath(type.Assembly.Location))) return info;
342      }
343      return null;
344    }
345    #endregion
346  }
347}
Note: See TracBrowser for help on using the repository browser.