[3247] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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;
|
---|
[4068] | 24 | using System.IO;
|
---|
| 25 | using System.Linq;
|
---|
[3247] | 26 | using System.Reflection;
|
---|
| 27 | using HeuristicLab.PluginInfrastructure.Manager;
|
---|
| 28 |
|
---|
| 29 | namespace 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 | var asm = Assembly.LoadFrom(fileName);
|
---|
| 103 | RegisterLoadedAssembly(asm);
|
---|
| 104 | // instantiate and load all plugins in this assembly
|
---|
| 105 | foreach (var plugin in GetInstances<IPlugin>(asm)) {
|
---|
| 106 | plugin.OnLoad();
|
---|
| 107 | loadedPlugins.Add(plugin);
|
---|
| 108 | }
|
---|
| 109 | }
|
---|
| 110 | OnPluginLoaded(new PluginInfrastructureEventArgs(desc));
|
---|
| 111 | desc.Load();
|
---|
| 112 | }
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | /// <summary>
|
---|
| 116 | /// Runs the application declared in <paramref name="appInfo"/>.
|
---|
| 117 | /// This is a synchronous call. When the application is terminated all plugins are unloaded.
|
---|
| 118 | /// </summary>
|
---|
| 119 | /// <param name="appInfo">Description of the application to run</param>
|
---|
| 120 | internal void Run(ApplicationDescription appInfo) {
|
---|
| 121 | IApplication runnablePlugin = (IApplication)Activator.CreateInstance(appInfo.DeclaringAssemblyName, appInfo.DeclaringTypeName).Unwrap();
|
---|
| 122 | try {
|
---|
| 123 | runnablePlugin.Run();
|
---|
| 124 | }
|
---|
| 125 | finally {
|
---|
| 126 | // unload plugins in reverse order
|
---|
| 127 | foreach (var plugin in loadedPlugins.Reverse<IPlugin>()) {
|
---|
| 128 | plugin.OnUnload();
|
---|
| 129 | }
|
---|
| 130 | foreach (var desc in PluginDescriptionIterator.IterateDependenciesBottomUp(plugins.Where(x => x.PluginState != PluginState.Disabled))) {
|
---|
| 131 | desc.Unload();
|
---|
| 132 | OnPluginUnloaded(new PluginInfrastructureEventArgs(desc));
|
---|
| 133 | }
|
---|
| 134 | }
|
---|
| 135 | }
|
---|
| 136 |
|
---|
| 137 | /// <summary>
|
---|
| 138 | /// Loads raw assemblies dynamically from a byte array
|
---|
| 139 | /// </summary>
|
---|
| 140 | /// <param name="assemblies">bytearray of all raw assemblies that should be loaded</param>
|
---|
| 141 | internal void LoadAssemblies(IEnumerable<byte[]> assemblies) {
|
---|
| 142 | foreach (byte[] asm in assemblies) {
|
---|
| 143 | Assembly loadedAsm = Assembly.Load(asm);
|
---|
| 144 | RegisterLoadedAssembly(loadedAsm);
|
---|
| 145 | }
|
---|
| 146 | }
|
---|
| 147 |
|
---|
| 148 | // register assembly in the assembly cache for the AssemblyResolveEvent
|
---|
| 149 | private void RegisterLoadedAssembly(Assembly asm) {
|
---|
| 150 | loadedAssemblies.Add(asm.FullName, asm);
|
---|
| 151 | loadedAssemblies.Add(asm.GetName().Name, asm); // add short name
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | /// <summary>
|
---|
| 155 | /// Creates an instance of all types that are subtypes or the same type of the specified type and declared in <paramref name="plugin"/>
|
---|
| 156 | /// </summary>
|
---|
| 157 | /// <typeparam name="T">Most general type.</typeparam>
|
---|
| 158 | /// <returns>Enumerable of the created instances.</returns>
|
---|
| 159 | internal static IEnumerable<T> GetInstances<T>(IPluginDescription plugin) where T : class {
|
---|
| 160 | return from t in GetTypes(typeof(T), plugin, true)
|
---|
| 161 | select (T)Activator.CreateInstance(t);
|
---|
| 162 | }
|
---|
| 163 | /// <summary>
|
---|
| 164 | /// 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"/>.
|
---|
| 165 | /// </summary>
|
---|
| 166 | /// <typeparam name="T">Most general type.</typeparam>
|
---|
| 167 | /// <param name="asm">Declaring assembly.</param>
|
---|
| 168 | /// <returns>Enumerable of the created instances.</returns>
|
---|
| 169 | private static IEnumerable<T> GetInstances<T>(Assembly asm) where T : class {
|
---|
| 170 | return from t in GetTypes(typeof(T), asm, true)
|
---|
| 171 | select (T)Activator.CreateInstance(t);
|
---|
| 172 | }
|
---|
| 173 | /// <summary>
|
---|
| 174 | /// Creates an instance of all types that are subtypes or the same type of the specified type
|
---|
| 175 | /// </summary>
|
---|
| 176 | /// <typeparam name="T">Most general type.</typeparam>
|
---|
| 177 | /// <returns>Enumerable of the created instances.</returns>
|
---|
| 178 | internal static IEnumerable<T> GetInstances<T>() where T : class {
|
---|
| 179 | return from i in GetInstances(typeof(T))
|
---|
| 180 | select (T)i;
|
---|
| 181 | }
|
---|
| 182 |
|
---|
| 183 | /// <summary>
|
---|
| 184 | /// Creates an instance of all types that are subtypes or the same type of the specified type
|
---|
| 185 | /// </summary>
|
---|
| 186 | /// <param name="type">Most general type.</param>
|
---|
| 187 | /// <returns>Enumerable of the created instances.</returns>
|
---|
| 188 | internal static IEnumerable<object> GetInstances(Type type) {
|
---|
| 189 | return (from t in GetTypes(type, true)
|
---|
| 190 | select Activator.CreateInstance(t)).ToList();
|
---|
| 191 | }
|
---|
| 192 |
|
---|
| 193 | /// <summary>
|
---|
| 194 | /// Finds all types that are subtypes or equal to the specified type.
|
---|
| 195 | /// </summary>
|
---|
| 196 | /// <param name="type">Most general type for which to find matching types.</param>
|
---|
| 197 | /// <param name="onlyInstantiable">Return only types that are instantiable
|
---|
| 198 | /// (interfaces, abstract classes... are not returned)</param>
|
---|
| 199 | /// <returns>Enumerable of the discovered types.</returns>
|
---|
| 200 | internal static IEnumerable<Type> GetTypes(Type type, bool onlyInstantiable) {
|
---|
| 201 | return from asm in AppDomain.CurrentDomain.GetAssemblies()
|
---|
| 202 | from t in GetTypes(type, asm, onlyInstantiable)
|
---|
| 203 | select t;
|
---|
| 204 | }
|
---|
| 205 |
|
---|
| 206 | /// <summary>
|
---|
| 207 | /// Finds all types that are subtypes or equal to the specified type if they are part of the given
|
---|
| 208 | /// <paramref name="pluginDescription"/>.
|
---|
| 209 | /// </summary>
|
---|
| 210 | /// <param name="type">Most general type for which to find matching types.</param>
|
---|
| 211 | /// <param name="pluginDescription">The plugin the subtypes must be part of.</param>
|
---|
| 212 | /// <param name="onlyInstantiable">Return only types that are instantiable
|
---|
| 213 | /// (interfaces, abstract classes... are not returned)</param>
|
---|
| 214 | /// <returns>Enumerable of the discovered types.</returns>
|
---|
| 215 | internal static IEnumerable<Type> GetTypes(Type type, IPluginDescription pluginDescription, bool onlyInstantiable) {
|
---|
| 216 | PluginDescription pluginDesc = (PluginDescription)pluginDescription;
|
---|
| 217 | return from asm in AppDomain.CurrentDomain.GetAssemblies()
|
---|
| 218 | where !IsDynamicAssembly(asm)
|
---|
| 219 | where pluginDesc.AssemblyLocations.Any(location => location.Equals(Path.GetFullPath(asm.Location), StringComparison.CurrentCultureIgnoreCase))
|
---|
| 220 | from t in GetTypes(type, asm, onlyInstantiable)
|
---|
| 221 | select t;
|
---|
| 222 | }
|
---|
| 223 |
|
---|
| 224 | private static bool IsDynamicAssembly(Assembly asm) {
|
---|
| 225 | return (asm is System.Reflection.Emit.AssemblyBuilder) || string.IsNullOrEmpty(asm.Location);
|
---|
| 226 | }
|
---|
| 227 |
|
---|
| 228 | /// <summary>
|
---|
| 229 | /// Gets types that are assignable (same of subtype) to the specified type only from the given assembly.
|
---|
| 230 | /// </summary>
|
---|
| 231 | /// <param name="type">Most general type we want to find.</param>
|
---|
| 232 | /// <param name="assembly">Assembly that should be searched for types.</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 | private static IEnumerable<Type> GetTypes(Type type, Assembly assembly, bool onlyInstantiable) {
|
---|
| 237 | return from t in assembly.GetTypes()
|
---|
[3821] | 238 | where CheckTypeCompatibility(type, t)
|
---|
[3247] | 239 | where onlyInstantiable == false || (!t.IsAbstract && !t.IsInterface && !t.HasElementType)
|
---|
[3828] | 240 | select BuildType(t, type);
|
---|
[3247] | 241 | }
|
---|
| 242 |
|
---|
[3821] | 243 | private static bool CheckTypeCompatibility(Type type, Type other) {
|
---|
| 244 | if (type.IsAssignableFrom(other))
|
---|
| 245 | return true;
|
---|
| 246 | if (type.IsGenericType && other.IsGenericType) {
|
---|
| 247 | try {
|
---|
| 248 | if (type.IsAssignableFrom(other.GetGenericTypeDefinition().MakeGenericType(type.GetGenericArguments())))
|
---|
| 249 | return true;
|
---|
[4068] | 250 | }
|
---|
| 251 | catch (Exception) { }
|
---|
[3821] | 252 | }
|
---|
| 253 | return false;
|
---|
| 254 | }
|
---|
[3828] | 255 | private static Type BuildType(Type type, Type protoType) {
|
---|
| 256 | if (type.IsGenericType && protoType.IsGenericType)
|
---|
| 257 | return type.GetGenericTypeDefinition().MakeGenericType(protoType.GetGenericArguments());
|
---|
[3821] | 258 | else
|
---|
[3828] | 259 | return type;
|
---|
[3821] | 260 | }
|
---|
| 261 |
|
---|
[3247] | 262 | private void OnPluginLoaded(PluginInfrastructureEventArgs e) {
|
---|
| 263 | if (PluginLoaded != null) PluginLoaded(this, e);
|
---|
| 264 | }
|
---|
| 265 |
|
---|
| 266 | private void OnPluginUnloaded(PluginInfrastructureEventArgs e) {
|
---|
| 267 | if (PluginUnloaded != null) PluginUnloaded(this, e);
|
---|
| 268 | }
|
---|
| 269 |
|
---|
| 270 | // infinite lease time
|
---|
| 271 | /// <summary>
|
---|
| 272 | /// Initializes the life time service with infinite lease time.
|
---|
| 273 | /// </summary>
|
---|
| 274 | /// <returns><c>null</c>.</returns>
|
---|
| 275 | public override object InitializeLifetimeService() {
|
---|
| 276 | return null;
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 | #region IApplicationManager Members
|
---|
| 280 |
|
---|
| 281 | IEnumerable<T> IApplicationManager.GetInstances<T>() {
|
---|
| 282 | return GetInstances<T>();
|
---|
| 283 | }
|
---|
| 284 |
|
---|
| 285 | IEnumerable<object> IApplicationManager.GetInstances(Type type) {
|
---|
| 286 | return GetInstances(type);
|
---|
| 287 | }
|
---|
| 288 |
|
---|
| 289 | IEnumerable<Type> IApplicationManager.GetTypes(Type type) {
|
---|
| 290 | return GetTypes(type, true);
|
---|
| 291 | }
|
---|
| 292 |
|
---|
| 293 | IEnumerable<Type> IApplicationManager.GetTypes(Type type, bool onlyInstantiable) {
|
---|
| 294 | return GetTypes(type, onlyInstantiable);
|
---|
| 295 | }
|
---|
| 296 |
|
---|
| 297 | IEnumerable<Type> IApplicationManager.GetTypes(Type type, IPluginDescription plugin) {
|
---|
| 298 | return GetTypes(type, plugin, true);
|
---|
| 299 | }
|
---|
| 300 |
|
---|
| 301 | IEnumerable<Type> IApplicationManager.GetTypes(Type type, IPluginDescription plugin, bool onlyInstantiable) {
|
---|
| 302 | return GetTypes(type, plugin, onlyInstantiable);
|
---|
| 303 | }
|
---|
| 304 |
|
---|
| 305 |
|
---|
| 306 | /// <summary>
|
---|
| 307 | /// Finds the plugin that declares the <paramref name="type">type</paramref>.
|
---|
| 308 | /// </summary>
|
---|
| 309 | /// <param name="type">The type of interest.</param>
|
---|
| 310 | /// <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>
|
---|
| 311 | public IPluginDescription GetDeclaringPlugin(Type type) {
|
---|
[4482] | 312 | if (type == null) throw new ArgumentNullException("type");
|
---|
[3247] | 313 | foreach (PluginDescription info in Plugins) {
|
---|
| 314 | if (info.AssemblyLocations.Contains(Path.GetFullPath(type.Assembly.Location))) return info;
|
---|
| 315 | }
|
---|
| 316 | return null;
|
---|
| 317 | }
|
---|
| 318 | #endregion
|
---|
| 319 | }
|
---|
| 320 | }
|
---|