[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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.Text;
|
---|
| 25 | using System.Reflection;
|
---|
| 26 | using System.Diagnostics;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.PluginInfrastructure {
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Default implementation of the IPlugin interface.
|
---|
| 31 | /// </summary>
|
---|
[1229] | 32 | public abstract class PluginBase : IPlugin {
|
---|
[2] | 33 | private string name;
|
---|
| 34 | private Version version;
|
---|
| 35 | private string[] files;
|
---|
| 36 | private string description;
|
---|
| 37 |
|
---|
[1189] | 38 | /// <summary>
|
---|
| 39 | /// Initializes a new instance of <see cref="PluginBase"/>.
|
---|
| 40 | /// </summary>
|
---|
[2] | 41 | public PluginBase() {
|
---|
| 42 | ReadAttributes();
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | private void ReadAttributes() {
|
---|
| 46 | object[] pluginAttributes = this.GetType().GetCustomAttributes(typeof(ClassInfoAttribute), false);
|
---|
| 47 |
|
---|
| 48 | // exactly one attribute of the type ClassInfoAttribute must be given
|
---|
[1229] | 49 | if (pluginAttributes.Length != 1) {
|
---|
[8] | 50 | throw new InvalidPluginException();
|
---|
| 51 | }
|
---|
[2] | 52 |
|
---|
| 53 | // after the assertion we are sure that the array access will not fail
|
---|
| 54 | ClassInfoAttribute pluginAttribute = (ClassInfoAttribute)pluginAttributes[0];
|
---|
| 55 |
|
---|
| 56 | // if the plugin name is not explicitly set in the attribute then the default plugin name is the FullName of the type
|
---|
[1229] | 57 | if (pluginAttribute != null && pluginAttribute.Name != null) {
|
---|
[2] | 58 | this.name = pluginAttribute.Name;
|
---|
| 59 | } else {
|
---|
| 60 | this.name = this.GetType().FullName;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | // if the version is not explicitly set in the attribute then the version of the assembly is used as default
|
---|
[1229] | 64 | if (pluginAttribute != null && pluginAttribute.Version != null) {
|
---|
[2] | 65 | this.version = new Version(pluginAttribute.Version);
|
---|
| 66 | } else {
|
---|
| 67 | this.version = this.GetType().Assembly.GetName().Version;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | // if the description is not explicitly set in the attribute then the name of name of the plugin is used as default
|
---|
[1229] | 71 | if (pluginAttribute != null && pluginAttribute.Description != null) {
|
---|
[2] | 72 | this.description = pluginAttribute.Description;
|
---|
| 73 | } else {
|
---|
| 74 | this.description = name;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | // get all attributes of type PluginFileAttribute, multiple usage is possible
|
---|
| 78 | PluginFileAttribute[] fileAttributes = (PluginFileAttribute[])this.GetType().GetCustomAttributes(typeof(PluginFileAttribute), false);
|
---|
| 79 |
|
---|
| 80 | // exctract the file names from the attributes
|
---|
| 81 | this.files = new string[fileAttributes.Length];
|
---|
| 82 | int i = 0;
|
---|
[1229] | 83 | foreach (PluginFileAttribute fileAttr in fileAttributes) {
|
---|
[2] | 84 | files[i++] = fileAttr.Filename;
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | #region IPlugin Members
|
---|
[1189] | 89 | /// <summary>
|
---|
| 90 | /// Gets the name of the plugin.
|
---|
| 91 | /// </summary>
|
---|
[2] | 92 | public string Name {
|
---|
| 93 | get {
|
---|
| 94 | return name;
|
---|
| 95 | }
|
---|
| 96 | }
|
---|
| 97 |
|
---|
[1189] | 98 | /// <summary>
|
---|
| 99 | /// Gets the version of the plugin.
|
---|
| 100 | /// </summary>
|
---|
[2] | 101 | public Version Version {
|
---|
| 102 | get {
|
---|
| 103 | return version;
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[1189] | 107 | /// <summary>
|
---|
| 108 | /// Gets the description of the plugin.
|
---|
| 109 | /// </summary>
|
---|
[2] | 110 | public string Description {
|
---|
| 111 | get {
|
---|
| 112 | return description;
|
---|
| 113 | }
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[1189] | 116 | /// <inheritdoc/>
|
---|
[2] | 117 | public string[] Files {
|
---|
| 118 | get {
|
---|
| 119 | return files;
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[1229] | 123 | /// <inhertidoc>
|
---|
| 124 | public virtual void OnLoad() { }
|
---|
| 125 | /// <inhertidoc>
|
---|
| 126 | public virtual void OnInstall() { }
|
---|
| 127 | /// <inhertidoc>
|
---|
| 128 | public virtual void OnDelete() { }
|
---|
| 129 | /// <inhertidoc>
|
---|
| 130 | public virtual void OnPreUpdate() { }
|
---|
| 131 | /// <inhertidoc>
|
---|
| 132 | public virtual void OnPostUpdate() { }
|
---|
[2] | 133 |
|
---|
| 134 | #endregion
|
---|
| 135 |
|
---|
| 136 | }
|
---|
| 137 | }
|
---|