Free cookie consent management tool by TermsFeed Policy Generator

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

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

Implemented reviewers' comments (#947)

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