Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/ApplicationBase.cs @ 16984

Last change on this file since 16984 was 16984, checked in by dpiringe, 5 years ago

#2924:

  • merged projects HeuristicLab.PluginInfrastructure.Runner and HeuristicLab.PluginInfrastructure
  • applied changes of code reviews (13.05.2019 and 22.05.2019) -> the old Runner is now RunnerHost and uses a Runner, which is executed on the child process
  • added Type GetType(string) to IApplicationManager and implemented it for LightweightApplicationManager
  • removed IActivator and IActivatorContext
  • deleted unused types like PluginDescriptionIterator
File size: 2.6 KB
Line 
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
23using System;
24
25namespace HeuristicLab.PluginInfrastructure {
26  /// <summary>
27  /// Abstract base implementation for the IApplication interface.
28  /// </summary>
29  [Serializable]
30  public abstract class ApplicationBase : IApplication {
31    /// <summary>
32    /// Initializes a new instance of <see cref="ApplicationBase"/>.
33    /// </summary>
34    protected ApplicationBase() { }
35
36    private ApplicationAttribute ApplicationAttribute {
37      get {
38        object[] appAttributes = this.GetType().GetCustomAttributes(typeof(ApplicationAttribute), false);
39
40        // exactly one attribute of the type ClassInfoAttribute must be given
41        if (appAttributes.Length == 0) {
42          throw new InvalidPluginException("ApplicationAttribute on type " + this.GetType() + " is missing.");
43        } else if (appAttributes.Length > 1) {
44          throw new InvalidPluginException("Found multiple ApplicationAttributes on type " + this.GetType());
45        }
46
47        return (ApplicationAttribute)appAttributes[0];
48      }
49    }
50
51    #region IApplication Members
52
53    /// <summary>
54    /// Gets the name of the application.
55    /// </summary>
56    public string Name {
57      get { return ApplicationAttribute.Name; }
58    }
59
60    /// <summary>
61    /// Gets the description of the application.
62    /// </summary>
63    public string Description {
64      get {
65        return ApplicationAttribute.Description;
66      }
67    }
68
69    /// <summary>
70    /// Runs the application.
71    /// </summary>
72    public abstract void Run(ICommandLineArgument[] args);
73
74    public virtual void OnCancel() { Console.WriteLine("OnCancellation"); }
75    public virtual void OnPause() { Console.WriteLine("OnPause"); }
76    public virtual void OnResume() { Console.WriteLine("OnResume"); }
77
78    #endregion
79  }
80}
Note: See TracBrowser for help on using the repository browser.