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