Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs @ 3372

Last change on this file since 3372 was 3372, checked in by swagner, 14 years ago

Implemented reviewers' comments (#893).

File size: 11.0 KB
RevLine 
[2851]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
22using System;
[3260]23using System.Collections.Generic;
[2851]24using System.Drawing;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Optimization {
30  /// <summary>
31  /// A base class for algorithms.
32  /// </summary>
33  [Item("Algorithm", "A base class for algorithms.")]
[3017]34  [StorableClass]
[2851]35  public abstract class Algorithm : ParameterizedNamedItem, IAlgorithm {
36    public override Image ItemImage {
[3351]37      get {
[3372]38        if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
39        else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStarted;
40        else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePaused;
41        else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
[3351]42        else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
43      }
[2851]44    }
45
[3262]46    [Storable]
47    private ExecutionState executionState;
48    public ExecutionState ExecutionState {
49      get { return executionState; }
50      private set {
51        if (executionState != value) {
52          executionState = value;
53          OnExecutionStateChanged();
[3351]54          OnItemImageChanged();
[3262]55        }
56      }
57    }
58
59    [Storable]
60    private TimeSpan executionTime;
61    public TimeSpan ExecutionTime {
62      get { return executionTime; }
63      protected set {
64        executionTime = value;
65        OnExecutionTimeChanged();
66      }
67    }
68
[2852]69    public virtual Type ProblemType {
70      get { return typeof(IProblem); }
71    }
72
[3280]73    [Storable]
[2851]74    private IProblem problem;
75    public IProblem Problem {
76      get { return problem; }
77      set {
78        if (problem != value) {
[2852]79          if ((value != null) && !ProblemType.IsInstanceOfType(value)) throw new ArgumentException("Invalid problem type.");
80          if (problem != null) DeregisterProblemEvents();
[2851]81          problem = value;
[2852]82          if (problem != null) RegisterProblemEvents();
[2851]83          OnProblemChanged();
[2864]84          Prepare();
[2851]85        }
86      }
87    }
88
[3226]89    public abstract ResultCollection Results { get; }
[2882]90
[3275]91    [Storable]
[3280]92    protected int runsCounter;
93
94    [Storable]
[3275]95    private RunCollection runs;
96    public RunCollection Runs {
97      get { return runs; }
98    }
99
[3262]100    protected Algorithm()
101      : base() {
102      executionState = ExecutionState.Stopped;
103      executionTime = TimeSpan.Zero;
[3280]104      runsCounter = 0;
[3275]105      runs = new RunCollection();
[2851]106    }
[3262]107    protected Algorithm(string name)
108      : base(name) {
109      executionState = ExecutionState.Stopped;
110      executionTime = TimeSpan.Zero;
[3280]111      runsCounter = 0;
[3275]112      runs = new RunCollection();
[2851]113    }
[3262]114    protected Algorithm(string name, ParameterCollection parameters)
115      : base(name, parameters) {
116      executionState = ExecutionState.Stopped;
117      executionTime = TimeSpan.Zero;
[3280]118      runsCounter = 0;
[3275]119      runs = new RunCollection();
[3262]120    }
121    protected Algorithm(string name, string description)
122      : base(name, description) {
123      executionState = ExecutionState.Stopped;
124      executionTime = TimeSpan.Zero;
[3280]125      runsCounter = 0;
[3275]126      runs = new RunCollection();
[3262]127    }
128    protected Algorithm(string name, string description, ParameterCollection parameters)
129      : base(name, description, parameters) {
130      executionState = ExecutionState.Stopped;
131      executionTime = TimeSpan.Zero;
[3280]132      runsCounter = 0;
[3275]133      runs = new RunCollection();
[3262]134    }
[3280]135    [StorableConstructor]
136    protected Algorithm(bool deserializing) : base(deserializing) { }
[2851]137
[3280]138    [StorableHook(HookType.AfterDeserialization)]
139    private void Initialize() {
140      if (problem != null) RegisterProblemEvents();
141    }
142
[2851]143    public override IDeepCloneable Clone(Cloner cloner) {
[3280]144      if (ExecutionState == ExecutionState.Started) throw new InvalidOperationException(string.Format("Clone not allowed in execution state \"{0}\".", ExecutionState));
[2851]145      Algorithm clone = (Algorithm)base.Clone(cloner);
[3262]146      clone.executionState = executionState;
147      clone.executionTime = executionTime;
[3280]148      clone.problem = (IProblem)cloner.Clone(problem);
149      clone.runsCounter = runsCounter;
[3275]150      clone.runs = (RunCollection)cloner.Clone(runs);
[3280]151      clone.Initialize();
[2851]152      return clone;
153    }
[3286]154    protected virtual void Clone(IDeepCloneable clone, Cloner cloner) {
155      Algorithm algorithm = clone as Algorithm;
156      if (algorithm != null) {
157        algorithm.name = name;
158        algorithm.description = description;
159        foreach (IParameter param in Parameters)
160          algorithm.Parameters.Add((IParameter)cloner.Clone(param));
161        algorithm.executionState = executionState;
162        algorithm.executionTime = executionTime;
163        algorithm.problem = (IProblem)cloner.Clone(problem);
164        algorithm.runsCounter = runsCounter;
165        algorithm.runs = (RunCollection)cloner.Clone(runs);
166        algorithm.Initialize();
167      }
168    }
[2851]169
[3275]170    public virtual void Prepare() {
171      if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped))
172        throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState));
[3274]173    }
[3275]174    public void Prepare(bool clearRuns) {
[3262]175      if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped))
176        throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState));
[3280]177      if (clearRuns) {
178        runsCounter = 0;
179        runs.Clear();
180      }
[3275]181      Prepare();
[2851]182    }
[3262]183    public virtual void Start() {
184      if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused))
185        throw new InvalidOperationException(string.Format("Start not allowed in execution state \"{0}\".", ExecutionState));
[2851]186    }
[3262]187    public virtual void Pause() {
188      if (ExecutionState != ExecutionState.Started)
189        throw new InvalidOperationException(string.Format("Pause not allowed in execution state \"{0}\".", ExecutionState));
[2851]190    }
[3262]191    public virtual void Stop() {
192      if ((ExecutionState != ExecutionState.Started) && (ExecutionState != ExecutionState.Paused))
193        throw new InvalidOperationException(string.Format("Stop not allowed in execution state \"{0}\".", ExecutionState));
194    }
[2851]195
[3260]196    public override void CollectParameterValues(IDictionary<string, IItem> values) {
197      base.CollectParameterValues(values);
[3283]198      if (Problem != null) Problem.CollectParameterValues(values);
[3260]199    }
200    public virtual void CollectResultValues(IDictionary<string, IItem> values) {
201      foreach (IResult result in Results)
[3280]202        values.Add(result.Name, result.Value);
[3260]203    }
204
[2851]205    #region Events
[3262]206    public event EventHandler ExecutionStateChanged;
207    protected virtual void OnExecutionStateChanged() {
208      EventHandler handler = ExecutionStateChanged;
209      if (handler != null) handler(this, EventArgs.Empty);
[2851]210    }
211    public event EventHandler ExecutionTimeChanged;
212    protected virtual void OnExecutionTimeChanged() {
[3262]213      EventHandler handler = ExecutionTimeChanged;
214      if (handler != null) handler(this, EventArgs.Empty);
[2851]215    }
[3262]216    public event EventHandler ProblemChanged;
217    protected virtual void OnProblemChanged() {
218      EventHandler handler = ProblemChanged;
219      if (handler != null) handler(this, EventArgs.Empty);
[3226]220    }
[2851]221    public event EventHandler Prepared;
222    protected virtual void OnPrepared() {
[3275]223      ExecutionTime = TimeSpan.Zero;
[3262]224      ExecutionState = ExecutionState.Prepared;
225      EventHandler handler = Prepared;
226      if (handler != null) handler(this, EventArgs.Empty);
[2851]227    }
228    public event EventHandler Started;
229    protected virtual void OnStarted() {
[3262]230      ExecutionState = ExecutionState.Started;
231      EventHandler handler = Started;
232      if (handler != null) handler(this, EventArgs.Empty);
[2851]233    }
[3262]234    public event EventHandler Paused;
235    protected virtual void OnPaused() {
236      ExecutionState = ExecutionState.Paused;
237      EventHandler handler = Paused;
238      if (handler != null) handler(this, EventArgs.Empty);
239    }
[2851]240    public event EventHandler Stopped;
241    protected virtual void OnStopped() {
[3262]242      ExecutionState = ExecutionState.Stopped;
[3280]243      runsCounter++;
244      runs.Add(new Run(string.Format("{0} Run {1} ({2})", Name, runsCounter, ExecutionTime), this));
[3262]245      EventHandler handler = Stopped;
246      if (handler != null) handler(this, EventArgs.Empty);
[2851]247    }
248    public event EventHandler<EventArgs<Exception>> ExceptionOccurred;
249    protected virtual void OnExceptionOccurred(Exception exception) {
[3262]250      EventHandler<EventArgs<Exception>> handler = ExceptionOccurred;
251      if (handler != null) handler(this, new EventArgs<Exception>(exception));
[2851]252    }
[2975]253
[2852]254    protected virtual void DeregisterProblemEvents() {
255      problem.SolutionCreatorChanged -= new EventHandler(Problem_SolutionCreatorChanged);
256      problem.EvaluatorChanged -= new EventHandler(Problem_EvaluatorChanged);
[3107]257      problem.VisualizerChanged -= new EventHandler(Problem_VisualizerChanged);
[2975]258      problem.OperatorsChanged -= new EventHandler(Problem_OperatorsChanged);
[2852]259    }
260    protected virtual void RegisterProblemEvents() {
261      problem.SolutionCreatorChanged += new EventHandler(Problem_SolutionCreatorChanged);
262      problem.EvaluatorChanged += new EventHandler(Problem_EvaluatorChanged);
[3107]263      problem.VisualizerChanged += new EventHandler(Problem_VisualizerChanged);
[2975]264      problem.OperatorsChanged += new EventHandler(Problem_OperatorsChanged);
[2852]265    }
266
267    protected virtual void Problem_SolutionCreatorChanged(object sender, EventArgs e) { }
268    protected virtual void Problem_EvaluatorChanged(object sender, EventArgs e) { }
[3107]269    protected virtual void Problem_VisualizerChanged(object sender, EventArgs e) { }
[2975]270    protected virtual void Problem_OperatorsChanged(object sender, EventArgs e) { }
[2851]271    #endregion
272  }
273}
Note: See TracBrowser for help on using the repository browser.