[6934] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6934] | 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.Drawing;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using System.Threading;
|
---|
| 27 | using System.Threading.Tasks;
|
---|
| 28 | using HeuristicLab.Collections;
|
---|
| 29 | using HeuristicLab.Common;
|
---|
| 30 | using HeuristicLab.Core;
|
---|
| 31 | using HeuristicLab.Data;
|
---|
| 32 | using HeuristicLab.Optimization;
|
---|
[6948] | 33 | using HeuristicLab.Parameters;
|
---|
[16565] | 34 | using HEAL.Attic;
|
---|
[6948] | 35 | using HeuristicLab.PluginInfrastructure;
|
---|
[6934] | 36 |
|
---|
| 37 | namespace HeuristicLab.Algorithms.Benchmarks {
|
---|
[7246] | 38 | [Item("Benchmark Algorithm", "An algorithm to execute performance benchmarks (Linpack, Dhrystone, Whetstone, etc.).")]
|
---|
[12504] | 39 | [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 130)]
|
---|
[16565] | 40 | [StorableType("8E76490C-E5DA-4F09-8E94-10009FC4124D")]
|
---|
[16430] | 41 | public sealed class BenchmarkAlgorithm : IAlgorithm, IStorableContent {
|
---|
[7246] | 42 | private CancellationTokenSource cancellationTokenSource;
|
---|
[6934] | 43 |
|
---|
[16430] | 44 | public string Filename { get; set; }
|
---|
| 45 |
|
---|
[7248] | 46 | public string ItemName {
|
---|
| 47 | get { return ItemAttribute.GetName(this.GetType()); }
|
---|
| 48 | }
|
---|
| 49 | public string ItemDescription {
|
---|
| 50 | get { return ItemAttribute.GetDescription(this.GetType()); }
|
---|
| 51 | }
|
---|
| 52 | public Version ItemVersion {
|
---|
| 53 | get { return ItemAttribute.GetVersion(this.GetType()); }
|
---|
| 54 | }
|
---|
| 55 | public static Image StaticItemImage {
|
---|
| 56 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; }
|
---|
| 57 | }
|
---|
| 58 | public Image ItemImage {
|
---|
| 59 | get {
|
---|
| 60 | if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared;
|
---|
| 61 | else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted;
|
---|
| 62 | else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused;
|
---|
| 63 | else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped;
|
---|
| 64 | else return ItemAttribute.GetImage(this.GetType());
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
| 67 |
|
---|
[6948] | 68 | [Storable]
|
---|
[6934] | 69 | private DateTime lastUpdateTime;
|
---|
| 70 |
|
---|
| 71 | [Storable]
|
---|
[7246] | 72 | private IBenchmark benchmark;
|
---|
| 73 | public IBenchmark Benchmark {
|
---|
| 74 | get { return benchmark; }
|
---|
[6948] | 75 | set {
|
---|
| 76 | if (value == null) throw new ArgumentNullException();
|
---|
[7246] | 77 | benchmark = value;
|
---|
[6948] | 78 | }
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | [Storable]
|
---|
[6934] | 82 | private ExecutionState executionState;
|
---|
| 83 | public ExecutionState ExecutionState {
|
---|
| 84 | get { return executionState; }
|
---|
| 85 | private set {
|
---|
| 86 | if (executionState != value) {
|
---|
| 87 | executionState = value;
|
---|
| 88 | OnExecutionStateChanged();
|
---|
| 89 | OnItemImageChanged();
|
---|
| 90 | }
|
---|
| 91 | }
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | [Storable]
|
---|
| 95 | private TimeSpan executionTime;
|
---|
| 96 | public TimeSpan ExecutionTime {
|
---|
| 97 | get { return executionTime; }
|
---|
[7246] | 98 | private set {
|
---|
[6934] | 99 | executionTime = value;
|
---|
| 100 | OnExecutionTimeChanged();
|
---|
| 101 | }
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | [Storable]
|
---|
| 105 | private bool storeAlgorithmInEachRun;
|
---|
| 106 | public bool StoreAlgorithmInEachRun {
|
---|
| 107 | get { return storeAlgorithmInEachRun; }
|
---|
| 108 | set {
|
---|
| 109 | if (storeAlgorithmInEachRun != value) {
|
---|
| 110 | storeAlgorithmInEachRun = value;
|
---|
| 111 | OnStoreAlgorithmInEachRunChanged();
|
---|
| 112 | }
|
---|
| 113 | }
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | [Storable]
|
---|
[7246] | 117 | private int runsCounter;
|
---|
[6934] | 118 |
|
---|
| 119 | [Storable]
|
---|
| 120 | private RunCollection runs = new RunCollection();
|
---|
| 121 | public RunCollection Runs {
|
---|
| 122 | get { return runs; }
|
---|
[7246] | 123 | private set {
|
---|
[6934] | 124 | if (value == null) throw new ArgumentNullException();
|
---|
| 125 | if (runs != value) {
|
---|
| 126 | if (runs != null) DeregisterRunsEvents();
|
---|
| 127 | runs = value;
|
---|
| 128 | if (runs != null) RegisterRunsEvents();
|
---|
| 129 | }
|
---|
| 130 | }
|
---|
| 131 | }
|
---|
| 132 |
|
---|
| 133 | [Storable]
|
---|
| 134 | private ResultCollection results;
|
---|
| 135 | public ResultCollection Results {
|
---|
| 136 | get { return results; }
|
---|
| 137 | }
|
---|
| 138 |
|
---|
[7246] | 139 | public Type ProblemType {
|
---|
[7248] | 140 | get {
|
---|
| 141 | // BenchmarkAlgorithm does not have a problem, so return a type which is no problem for sure
|
---|
| 142 | return typeof(BenchmarkAlgorithm);
|
---|
| 143 | }
|
---|
[7246] | 144 | }
|
---|
| 145 |
|
---|
[6934] | 146 | public IProblem Problem {
|
---|
[7248] | 147 | get { return null; }
|
---|
| 148 | set { throw new NotImplementedException("BenchmarkAlgorithm does not have a problem."); }
|
---|
[6934] | 149 | }
|
---|
| 150 |
|
---|
| 151 | [Storable]
|
---|
[7246] | 152 | private string name;
|
---|
[6934] | 153 | public string Name {
|
---|
| 154 | get { return name; }
|
---|
| 155 | set {
|
---|
| 156 | if (!CanChangeName) throw new NotSupportedException("Name cannot be changed.");
|
---|
| 157 | if (!(name.Equals(value) || (value == null) && (name == string.Empty))) {
|
---|
| 158 | CancelEventArgs<string> e = value == null ? new CancelEventArgs<string>(string.Empty) : new CancelEventArgs<string>(value);
|
---|
| 159 | OnNameChanging(e);
|
---|
| 160 | if (!e.Cancel) {
|
---|
| 161 | name = value == null ? string.Empty : value;
|
---|
| 162 | OnNameChanged();
|
---|
[8962] | 163 | runs.OptimizerName = name;
|
---|
[6934] | 164 | }
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 | }
|
---|
| 168 | public bool CanChangeName {
|
---|
[7248] | 169 | get { return true; }
|
---|
[6934] | 170 | }
|
---|
| 171 |
|
---|
| 172 | [Storable]
|
---|
[7246] | 173 | private string description;
|
---|
[6934] | 174 | public string Description {
|
---|
| 175 | get { return description; }
|
---|
| 176 | set {
|
---|
| 177 | if (!CanChangeDescription) throw new NotSupportedException("Description cannot be changed.");
|
---|
| 178 | if (!(description.Equals(value) || (value == null) && (description == string.Empty))) {
|
---|
| 179 | description = value == null ? string.Empty : value;
|
---|
| 180 | OnDescriptionChanged();
|
---|
| 181 | }
|
---|
| 182 | }
|
---|
| 183 | }
|
---|
| 184 | public bool CanChangeDescription {
|
---|
[7248] | 185 | get { return true; }
|
---|
[6934] | 186 | }
|
---|
| 187 |
|
---|
| 188 | [Storable]
|
---|
| 189 | private ParameterCollection parameters = new ParameterCollection();
|
---|
| 190 | public IKeyedItemCollection<string, IParameter> Parameters {
|
---|
| 191 | get { return parameters; }
|
---|
| 192 | }
|
---|
| 193 | private ReadOnlyKeyedItemCollection<string, IParameter> readOnlyParameters;
|
---|
| 194 | IKeyedItemCollection<string, IParameter> IParameterizedItem.Parameters {
|
---|
| 195 | get {
|
---|
| 196 | if (readOnlyParameters == null) readOnlyParameters = parameters.AsReadOnly();
|
---|
| 197 | return readOnlyParameters;
|
---|
| 198 | }
|
---|
| 199 | }
|
---|
| 200 |
|
---|
| 201 | public IEnumerable<IOptimizer> NestedOptimizers {
|
---|
| 202 | get { return Enumerable.Empty<IOptimizer>(); }
|
---|
| 203 | }
|
---|
| 204 |
|
---|
[6948] | 205 | #region Parameter Properties
|
---|
[8121] | 206 | public IConstrainedValueParameter<IBenchmark> BenchmarkParameter {
|
---|
| 207 | get { return (IConstrainedValueParameter<IBenchmark>)Parameters["Benchmark"]; }
|
---|
[6948] | 208 | }
|
---|
| 209 | private ValueParameter<IntValue> ChunkSizeParameter {
|
---|
| 210 | get { return (ValueParameter<IntValue>)Parameters["ChunkSize"]; }
|
---|
| 211 | }
|
---|
| 212 | private ValueParameter<DoubleValue> TimeLimitParameter {
|
---|
| 213 | get { return (ValueParameter<DoubleValue>)Parameters["TimeLimit"]; }
|
---|
| 214 | }
|
---|
| 215 | #endregion
|
---|
| 216 |
|
---|
[6934] | 217 | #region Constructors
|
---|
[7002] | 218 | [StorableConstructor]
|
---|
[16565] | 219 | private BenchmarkAlgorithm(StorableConstructorFlag _) { }
|
---|
[7248] | 220 | private BenchmarkAlgorithm(BenchmarkAlgorithm original, Cloner cloner) {
|
---|
| 221 | if (original.ExecutionState == ExecutionState.Started) throw new InvalidOperationException(string.Format("Clone not allowed in execution state \"{0}\".", ExecutionState));
|
---|
| 222 | cloner.RegisterClonedObject(original, this);
|
---|
| 223 | name = original.name;
|
---|
| 224 | description = original.description;
|
---|
| 225 | parameters = cloner.Clone(original.parameters);
|
---|
| 226 | readOnlyParameters = null;
|
---|
| 227 | executionState = original.executionState;
|
---|
| 228 | executionTime = original.executionTime;
|
---|
| 229 | storeAlgorithmInEachRun = original.storeAlgorithmInEachRun;
|
---|
| 230 | runsCounter = original.runsCounter;
|
---|
| 231 | Runs = cloner.Clone(original.runs);
|
---|
| 232 | results = cloner.Clone(original.results);
|
---|
| 233 | }
|
---|
[7246] | 234 | public BenchmarkAlgorithm() {
|
---|
[6934] | 235 | name = ItemName;
|
---|
| 236 | description = ItemDescription;
|
---|
| 237 | parameters = new ParameterCollection();
|
---|
| 238 | readOnlyParameters = null;
|
---|
| 239 | executionState = ExecutionState.Stopped;
|
---|
| 240 | executionTime = TimeSpan.Zero;
|
---|
| 241 | storeAlgorithmInEachRun = false;
|
---|
| 242 | runsCounter = 0;
|
---|
[8962] | 243 | Runs = new RunCollection() { OptimizerName = name };
|
---|
[6934] | 244 | results = new ResultCollection();
|
---|
[6948] | 245 | CreateParameters();
|
---|
| 246 | DiscoverBenchmarks();
|
---|
[6934] | 247 | Prepare();
|
---|
| 248 | }
|
---|
| 249 | #endregion
|
---|
| 250 |
|
---|
[6948] | 251 | private void CreateParameters() {
|
---|
[7248] | 252 | Parameters.Add(new ValueParameter<IntValue>("ChunkSize", "The size in MB of the chunk data array that is generated.", new IntValue(0)));
|
---|
| 253 | Parameters.Add(new ValueParameter<DoubleValue>("TimeLimit", "The time limit in minutes for a benchmark run (zero means a fixed number of iterations).", new DoubleValue(0)));
|
---|
[6948] | 254 | }
|
---|
| 255 | private void DiscoverBenchmarks() {
|
---|
| 256 | var benchmarks = from t in ApplicationManager.Manager.GetTypes(typeof(IBenchmark))
|
---|
| 257 | select t;
|
---|
| 258 | ItemSet<IBenchmark> values = new ItemSet<IBenchmark>();
|
---|
| 259 | foreach (var benchmark in benchmarks) {
|
---|
| 260 | IBenchmark b = (IBenchmark)Activator.CreateInstance(benchmark);
|
---|
| 261 | values.Add(b);
|
---|
| 262 | }
|
---|
[7246] | 263 | string paramName = "Benchmark";
|
---|
[6948] | 264 | if (!Parameters.ContainsKey(paramName)) {
|
---|
| 265 | if (values.Count > 0) {
|
---|
[7248] | 266 | Parameters.Add(new ConstrainedValueParameter<IBenchmark>(paramName, "The benchmark which should be executed.", values, values.First(a => a is IBenchmark)));
|
---|
[6948] | 267 | } else {
|
---|
[7248] | 268 | Parameters.Add(new ConstrainedValueParameter<IBenchmark>(paramName, "The benchmark which should be executed.", values));
|
---|
[6948] | 269 | }
|
---|
| 270 | }
|
---|
| 271 | }
|
---|
| 272 |
|
---|
[7248] | 273 | public IDeepCloneable Clone(Cloner cloner) {
|
---|
| 274 | return new BenchmarkAlgorithm(this, cloner);
|
---|
[6934] | 275 | }
|
---|
[7248] | 276 | public object Clone() {
|
---|
| 277 | return Clone(new Cloner());
|
---|
| 278 | }
|
---|
[6934] | 279 |
|
---|
[7248] | 280 | public override string ToString() {
|
---|
| 281 | return Name;
|
---|
| 282 | }
|
---|
| 283 |
|
---|
[7246] | 284 | public void Prepare() {
|
---|
[6934] | 285 | if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped))
|
---|
| 286 | throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState));
|
---|
| 287 | results.Clear();
|
---|
| 288 | OnPrepared();
|
---|
| 289 | }
|
---|
| 290 | public void Prepare(bool clearRuns) {
|
---|
| 291 | if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped))
|
---|
| 292 | throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState));
|
---|
| 293 | if (clearRuns) runs.Clear();
|
---|
| 294 | Prepare();
|
---|
| 295 | }
|
---|
[7246] | 296 | public void Pause() {
|
---|
[6934] | 297 | if (ExecutionState != ExecutionState.Started)
|
---|
| 298 | throw new InvalidOperationException(string.Format("Pause not allowed in execution state \"{0}\".", ExecutionState));
|
---|
| 299 | }
|
---|
[7246] | 300 | public void Stop() {
|
---|
[6934] | 301 | if ((ExecutionState != ExecutionState.Started) && (ExecutionState != ExecutionState.Paused))
|
---|
| 302 | throw new InvalidOperationException(string.Format("Stop not allowed in execution state \"{0}\".", ExecutionState));
|
---|
[6948] | 303 | cancellationTokenSource.Cancel();
|
---|
[6934] | 304 | }
|
---|
[7246] | 305 | public void Start() {
|
---|
[15287] | 306 | Start(CancellationToken.None);
|
---|
| 307 | }
|
---|
| 308 | public void Start(CancellationToken cancellationToken) {
|
---|
| 309 | cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
|
---|
[6934] | 310 | OnStarted();
|
---|
[6948] | 311 |
|
---|
[15287] | 312 | try {
|
---|
| 313 | Run(cancellationTokenSource.Token);
|
---|
| 314 | } catch (OperationCanceledException) {
|
---|
| 315 | } catch (AggregateException ae) {
|
---|
[15367] | 316 | ae.FlattenAndHandle(new[] { typeof(OperationCanceledException) }, e => OnExceptionOccurred(e));
|
---|
[15287] | 317 | } catch (Exception e) {
|
---|
| 318 | OnExceptionOccurred(e);
|
---|
| 319 | }
|
---|
| 320 |
|
---|
| 321 | cancellationTokenSource.Dispose();
|
---|
| 322 | cancellationTokenSource = null;
|
---|
| 323 | OnStopped();
|
---|
[6934] | 324 | }
|
---|
[15287] | 325 | public async Task StartAsync() { await StartAsync(CancellationToken.None); }
|
---|
| 326 | public async Task StartAsync(CancellationToken cancellationToken) {
|
---|
| 327 | await AsyncHelper.DoAsync(Start, cancellationToken);
|
---|
| 328 | }
|
---|
[6934] | 329 |
|
---|
[7246] | 330 | private void Run(object state) {
|
---|
[6934] | 331 | CancellationToken cancellationToken = (CancellationToken)state;
|
---|
[9343] | 332 | lastUpdateTime = DateTime.UtcNow;
|
---|
[6934] | 333 | System.Timers.Timer timer = new System.Timers.Timer(250);
|
---|
| 334 | timer.AutoReset = true;
|
---|
| 335 | timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Elapsed);
|
---|
| 336 | timer.Start();
|
---|
| 337 | try {
|
---|
[7246] | 338 | Benchmark = (IBenchmark)BenchmarkParameter.ActualValue;
|
---|
[6948] | 339 | int chunkSize = ((IntValue)ChunkSizeParameter.ActualValue).Value;
|
---|
| 340 | if (chunkSize > 0) {
|
---|
[7248] | 341 | Benchmark.ChunkData = CreateChunkData(chunkSize);
|
---|
[6987] | 342 | } else if (chunkSize < 0) {
|
---|
| 343 | throw new ArgumentException("ChunkSize must not be negativ.");
|
---|
[6948] | 344 | }
|
---|
[6987] | 345 | TimeSpan timelimit = TimeSpan.FromMinutes(((DoubleValue)TimeLimitParameter.ActualValue).Value);
|
---|
| 346 | if (timelimit.TotalMilliseconds < 0) {
|
---|
| 347 | throw new ArgumentException("TimeLimit must not be negativ. ");
|
---|
| 348 | }
|
---|
[7246] | 349 | Benchmark.TimeLimit = timelimit;
|
---|
| 350 | Benchmark.Run(cancellationToken, results);
|
---|
[15287] | 351 | } catch (OperationCanceledException) {
|
---|
| 352 | } finally {
|
---|
[6934] | 353 | timer.Elapsed -= new System.Timers.ElapsedEventHandler(timer_Elapsed);
|
---|
| 354 | timer.Stop();
|
---|
[9343] | 355 | ExecutionTime += DateTime.UtcNow - lastUpdateTime;
|
---|
[6934] | 356 | }
|
---|
| 357 | }
|
---|
| 358 |
|
---|
| 359 | private void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) {
|
---|
| 360 | System.Timers.Timer timer = (System.Timers.Timer)sender;
|
---|
| 361 | timer.Enabled = false;
|
---|
[9343] | 362 | DateTime now = DateTime.UtcNow;
|
---|
[6934] | 363 | ExecutionTime += now - lastUpdateTime;
|
---|
| 364 | lastUpdateTime = now;
|
---|
| 365 | timer.Enabled = true;
|
---|
| 366 | }
|
---|
| 367 |
|
---|
[7246] | 368 | public void CollectResultValues(IDictionary<string, IItem> values) {
|
---|
[6934] | 369 | values.Add("Execution Time", new TimeSpanValue(ExecutionTime));
|
---|
| 370 | CollectResultsRecursively("", Results, values);
|
---|
| 371 | }
|
---|
| 372 | private void CollectResultsRecursively(string path, ResultCollection results, IDictionary<string, IItem> values) {
|
---|
| 373 | foreach (IResult result in results) {
|
---|
| 374 | values.Add(path + result.Name, result.Value);
|
---|
| 375 | ResultCollection childCollection = result.Value as ResultCollection;
|
---|
| 376 | if (childCollection != null) {
|
---|
| 377 | CollectResultsRecursively(path + result.Name + ".", childCollection, values);
|
---|
| 378 | }
|
---|
| 379 | }
|
---|
| 380 | }
|
---|
[7246] | 381 | public void CollectParameterValues(IDictionary<string, IItem> values) {
|
---|
[6934] | 382 | foreach (IValueParameter param in parameters.OfType<IValueParameter>()) {
|
---|
| 383 | if (param.GetsCollected && param.Value != null) values.Add(param.Name, param.Value);
|
---|
| 384 | if (param.Value is IParameterizedItem) {
|
---|
| 385 | Dictionary<string, IItem> children = new Dictionary<string, IItem>();
|
---|
| 386 | ((IParameterizedItem)param.Value).CollectParameterValues(children);
|
---|
| 387 | foreach (string key in children.Keys)
|
---|
| 388 | values.Add(param.Name + "." + key, children[key]);
|
---|
| 389 | }
|
---|
| 390 | }
|
---|
| 391 | }
|
---|
| 392 |
|
---|
[7248] | 393 | private byte[][] CreateChunkData(int megaBytes) {
|
---|
[6948] | 394 | if (megaBytes <= 0) {
|
---|
| 395 | throw new ArgumentException("MegaBytes must be greater than zero", "megaBytes");
|
---|
| 396 | }
|
---|
[7248] | 397 | Random random = new Random();
|
---|
[6948] | 398 | byte[][] chunk = new byte[megaBytes][];
|
---|
| 399 | for (int i = 0; i < chunk.Length; i++) {
|
---|
| 400 | chunk[i] = new byte[1024 * 1024];
|
---|
| 401 | random.NextBytes(chunk[i]);
|
---|
| 402 | }
|
---|
| 403 | return chunk;
|
---|
| 404 | }
|
---|
| 405 |
|
---|
[6934] | 406 | #region Events
|
---|
| 407 | public event EventHandler ExecutionStateChanged;
|
---|
[7246] | 408 | private void OnExecutionStateChanged() {
|
---|
[6934] | 409 | EventHandler handler = ExecutionStateChanged;
|
---|
| 410 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 411 | }
|
---|
| 412 | public event EventHandler ExecutionTimeChanged;
|
---|
[7246] | 413 | private void OnExecutionTimeChanged() {
|
---|
[6934] | 414 | EventHandler handler = ExecutionTimeChanged;
|
---|
| 415 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 416 | }
|
---|
[7248] | 417 | public event EventHandler ProblemChanged { add { } remove { } }
|
---|
[6934] | 418 | public event EventHandler StoreAlgorithmInEachRunChanged;
|
---|
[7246] | 419 | private void OnStoreAlgorithmInEachRunChanged() {
|
---|
[6934] | 420 | EventHandler handler = StoreAlgorithmInEachRunChanged;
|
---|
| 421 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 422 | }
|
---|
| 423 | public event EventHandler Prepared;
|
---|
[7246] | 424 | private void OnPrepared() {
|
---|
[6934] | 425 | ExecutionState = ExecutionState.Prepared;
|
---|
| 426 | ExecutionTime = TimeSpan.Zero;
|
---|
| 427 | foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) {
|
---|
| 428 | statefulObject.InitializeState();
|
---|
| 429 | }
|
---|
| 430 | EventHandler handler = Prepared;
|
---|
| 431 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 432 | }
|
---|
| 433 | public event EventHandler Started;
|
---|
[7246] | 434 | private void OnStarted() {
|
---|
[6934] | 435 | ExecutionState = ExecutionState.Started;
|
---|
| 436 | EventHandler handler = Started;
|
---|
| 437 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 438 | }
|
---|
| 439 | public event EventHandler Paused;
|
---|
[7246] | 440 | private void OnPaused() {
|
---|
[6934] | 441 | ExecutionState = ExecutionState.Paused;
|
---|
| 442 | EventHandler handler = Paused;
|
---|
| 443 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 444 | }
|
---|
| 445 | public event EventHandler Stopped;
|
---|
[7246] | 446 | private void OnStopped() {
|
---|
[6934] | 447 | ExecutionState = ExecutionState.Stopped;
|
---|
| 448 | foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) {
|
---|
| 449 | statefulObject.ClearState();
|
---|
| 450 | }
|
---|
| 451 | runsCounter++;
|
---|
| 452 | runs.Add(new Run(string.Format("{0} Run {1}", Name, runsCounter), this));
|
---|
| 453 | EventHandler handler = Stopped;
|
---|
| 454 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 455 | }
|
---|
| 456 | public event EventHandler<EventArgs<Exception>> ExceptionOccurred;
|
---|
[7246] | 457 | private void OnExceptionOccurred(Exception exception) {
|
---|
[6934] | 458 | EventHandler<EventArgs<Exception>> handler = ExceptionOccurred;
|
---|
| 459 | if (handler != null) handler(this, new EventArgs<Exception>(exception));
|
---|
| 460 | }
|
---|
| 461 |
|
---|
| 462 | public event EventHandler<CancelEventArgs<string>> NameChanging;
|
---|
[7246] | 463 | private void OnNameChanging(CancelEventArgs<string> e) {
|
---|
[6934] | 464 | var handler = NameChanging;
|
---|
| 465 | if (handler != null) handler(this, e);
|
---|
| 466 | }
|
---|
| 467 |
|
---|
| 468 | public event EventHandler NameChanged;
|
---|
[7246] | 469 | private void OnNameChanged() {
|
---|
[6934] | 470 | var handler = NameChanged;
|
---|
| 471 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 472 | OnToStringChanged();
|
---|
| 473 | }
|
---|
| 474 |
|
---|
| 475 | public event EventHandler DescriptionChanged;
|
---|
[7246] | 476 | private void OnDescriptionChanged() {
|
---|
[6934] | 477 | var handler = DescriptionChanged;
|
---|
| 478 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 479 | }
|
---|
| 480 |
|
---|
| 481 | public event EventHandler ItemImageChanged;
|
---|
[7246] | 482 | private void OnItemImageChanged() {
|
---|
[6934] | 483 | EventHandler handler = ItemImageChanged;
|
---|
| 484 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 485 | }
|
---|
| 486 | public event EventHandler ToStringChanged;
|
---|
[7246] | 487 | private void OnToStringChanged() {
|
---|
[6934] | 488 | EventHandler handler = ToStringChanged;
|
---|
| 489 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 490 | }
|
---|
| 491 |
|
---|
[7246] | 492 | private void DeregisterRunsEvents() {
|
---|
[6934] | 493 | runs.CollectionReset -= new CollectionItemsChangedEventHandler<IRun>(Runs_CollectionReset);
|
---|
| 494 | }
|
---|
[7246] | 495 | private void RegisterRunsEvents() {
|
---|
[6934] | 496 | runs.CollectionReset += new CollectionItemsChangedEventHandler<IRun>(Runs_CollectionReset);
|
---|
| 497 | }
|
---|
[7246] | 498 | private void Runs_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[6934] | 499 | runsCounter = runs.Count;
|
---|
| 500 | }
|
---|
| 501 | #endregion
|
---|
| 502 | }
|
---|
| 503 | }
|
---|