[12435] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2015 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;
|
---|
[12428] | 23 | using System.Collections.Concurrent;
|
---|
| 24 | using System.Collections.Generic;
|
---|
| 25 | using System.IO;
|
---|
| 26 | using System.Linq;
|
---|
| 27 | using System.Reflection;
|
---|
| 28 | using System.Web.Http;
|
---|
| 29 | using System.Web.Http.Controllers;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Services.WebApp {
|
---|
| 32 | public class Plugin {
|
---|
| 33 | public string Name { get; set; }
|
---|
| 34 | public string Directory { get; set; }
|
---|
| 35 | public string AssemblyName { get; set; }
|
---|
[12525] | 36 | public string Exception { get; set; }
|
---|
[12428] | 37 | public DateTime? LastReload { get; set; }
|
---|
| 38 |
|
---|
[12515] | 39 | private HttpConfiguration configuration;
|
---|
| 40 | public HttpConfiguration Configuration {
|
---|
| 41 | get { return configuration; }
|
---|
| 42 | set {
|
---|
| 43 | if (configuration != value) {
|
---|
| 44 | configuration = value;
|
---|
| 45 | ReloadControllers();
|
---|
| 46 | }
|
---|
| 47 | }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[12428] | 50 | private IDictionary<string, HttpControllerDescriptor> controllers;
|
---|
| 51 | public IDictionary<string, HttpControllerDescriptor> Controllers {
|
---|
| 52 | get { return controllers ?? (controllers = new ConcurrentDictionary<string, HttpControllerDescriptor>()); }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
[12515] | 55 | public Plugin(string name, string directory, HttpConfiguration configuration) {
|
---|
| 56 | Name = name;
|
---|
| 57 | Directory = directory;
|
---|
| 58 | Configuration = configuration;
|
---|
[12428] | 59 | }
|
---|
| 60 |
|
---|
| 61 | public HttpControllerDescriptor GetController(string name) {
|
---|
| 62 | HttpControllerDescriptor controller;
|
---|
| 63 | Controllers.TryGetValue(name, out controller);
|
---|
| 64 | return controller;
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | public void ReloadControllers() {
|
---|
| 68 | AssemblyName = null;
|
---|
[12525] | 69 | Exception = null;
|
---|
[12428] | 70 | Controllers.Clear();
|
---|
| 71 | LastReload = DateTime.Now;
|
---|
| 72 | if (configuration == null)
|
---|
| 73 | return;
|
---|
| 74 | try {
|
---|
| 75 | string searchPattern = string.Format("HeuristicLab.Services.WebApp.{0}*.dll", Name);
|
---|
| 76 | var assemblies = System.IO.Directory.GetFiles(Directory, searchPattern);
|
---|
| 77 | if (!assemblies.Any())
|
---|
| 78 | return;
|
---|
| 79 | var assemblyPath = assemblies.First();
|
---|
[12525] | 80 | AssemblyName = Path.GetFileName(assemblyPath);
|
---|
[12428] | 81 | var assembly = Assembly.Load(File.ReadAllBytes(assemblyPath));
|
---|
| 82 | var assemblyTypes = assembly.GetTypes();
|
---|
| 83 | var apiControllers = assemblyTypes.Where(c => typeof(ApiController).IsAssignableFrom(c)).ToList();
|
---|
| 84 | foreach (var apiController in apiControllers) {
|
---|
| 85 | var controllerName = apiController.Name.Remove(apiController.Name.Length - 10).ToLower();
|
---|
| 86 | Controllers.Add(controllerName, new HttpControllerDescriptor(configuration, controllerName, apiController));
|
---|
| 87 | }
|
---|
| 88 | }
|
---|
[12525] | 89 | catch (Exception e) {
|
---|
| 90 | Exception = e.ToString();
|
---|
[12428] | 91 | Controllers.Clear();
|
---|
| 92 | }
|
---|
| 93 | }
|
---|
| 94 | }
|
---|
| 95 | } |
---|