[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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.Diagnostics;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.PluginInfrastructure {
|
---|
[1189] | 28 | /// <summary>
|
---|
[2504] | 29 | /// Abstract base implementation for the IApplication interface.
|
---|
[1189] | 30 | /// </summary>
|
---|
[2488] | 31 | public abstract class ApplicationBase : IApplication {
|
---|
[1189] | 32 | /// <summary>
|
---|
| 33 | /// Initializes a new instance of <see cref="ApplicationBase"/>.
|
---|
| 34 | /// </summary>
|
---|
[2504] | 35 | protected ApplicationBase() { }
|
---|
[2] | 36 |
|
---|
[2488] | 37 | private ApplicationAttribute ApplicationAttribute {
|
---|
[2475] | 38 | get {
|
---|
[2488] | 39 | object[] appAttributes = this.GetType().GetCustomAttributes(typeof(ApplicationAttribute), false);
|
---|
[2] | 40 |
|
---|
[2475] | 41 | // exactly one attribute of the type ClassInfoAttribute must be given
|
---|
[2504] | 42 | if (appAttributes.Length == 0) {
|
---|
| 43 | throw new InvalidPluginException("ApplicationAttribute on type " + this.GetType() + " is missing.");
|
---|
| 44 | } else if (appAttributes.Length > 1) {
|
---|
[2488] | 45 | throw new InvalidPluginException("Found multiple ApplicationAttributes on type " + this.GetType());
|
---|
[242] | 46 | }
|
---|
[2] | 47 |
|
---|
[2488] | 48 | return (ApplicationAttribute)appAttributes[0];
|
---|
[2] | 49 | }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | #region IApplication Members
|
---|
| 53 |
|
---|
[1189] | 54 | /// <summary>
|
---|
| 55 | /// Gets the name of the application.
|
---|
| 56 | /// </summary>
|
---|
[2] | 57 | public string Name {
|
---|
[2488] | 58 | get { return ApplicationAttribute.Name; }
|
---|
[2] | 59 | }
|
---|
| 60 |
|
---|
[1189] | 61 | /// <summary>
|
---|
| 62 | /// Gets the description of the application.
|
---|
| 63 | /// </summary>
|
---|
[2] | 64 | public string Description {
|
---|
[2475] | 65 | get {
|
---|
[2504] | 66 | return ApplicationAttribute.Description;
|
---|
[2475] | 67 | }
|
---|
[2] | 68 | }
|
---|
| 69 |
|
---|
[1189] | 70 | /// <summary>
|
---|
| 71 | /// Runs the application.
|
---|
| 72 | /// </summary>
|
---|
[242] | 73 | public abstract void Run();
|
---|
| 74 |
|
---|
[2] | 75 | #endregion
|
---|
| 76 | }
|
---|
| 77 | }
|
---|