[10753] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2014 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.Linq;
|
---|
| 24 | using System.Reflection;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 | using HeuristicLab.Scripting;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Problems.Programmable {
|
---|
[10754] | 31 | [Item("ProgrammableProblemScript", "Script that defines the parameter vector and evaluates the solution for a programmable problem.")]
|
---|
[10753] | 32 | [StorableClass]
|
---|
[10754] | 33 | public abstract class ProgrammableProblemScript : Script {
|
---|
[10753] | 34 | protected bool SuppressEvents { get; set; }
|
---|
| 35 |
|
---|
| 36 | [StorableConstructor]
|
---|
| 37 | protected ProgrammableProblemScript(bool deserializing) : base(deserializing) { }
|
---|
| 38 | protected ProgrammableProblemScript(ProgrammableProblemScript original, Cloner cloner)
|
---|
| 39 | : base(original, cloner) { }
|
---|
| 40 | public ProgrammableProblemScript() { }
|
---|
| 41 |
|
---|
[10856] | 42 | private volatile IProblemDefinition instance;
|
---|
[10753] | 43 | private object locker = new object();
|
---|
[10856] | 44 | public IProblemDefinition Instance {
|
---|
[10753] | 45 | get {
|
---|
| 46 | SuppressEvents = true;
|
---|
| 47 | try {
|
---|
| 48 | var oldInstance = instance;
|
---|
| 49 | var compilationNecessary = false;
|
---|
| 50 | if (instance == null) {
|
---|
| 51 | lock (locker) {
|
---|
| 52 | if (instance == null) {
|
---|
| 53 | compilationNecessary = true;
|
---|
| 54 | Compile();
|
---|
| 55 | }
|
---|
| 56 | }
|
---|
| 57 | }
|
---|
| 58 | if (compilationNecessary && (oldInstance != null || instance != null))
|
---|
| 59 | OnInstanceChanged();
|
---|
| 60 | return instance;
|
---|
| 61 | } finally {
|
---|
| 62 | SuppressEvents = false;
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
| 65 | protected set {
|
---|
| 66 | instance = value;
|
---|
[10754] | 67 | if (!SuppressEvents) OnInstanceChanged();
|
---|
[10753] | 68 | }
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | public override Assembly Compile() {
|
---|
| 72 | var assembly = base.Compile();
|
---|
| 73 | var types = assembly.GetTypes();
|
---|
| 74 | try {
|
---|
[10856] | 75 | Instance = (IProblemDefinition)Activator.CreateInstance(types.First(x => typeof(IProblemDefinition).IsAssignableFrom(x)));
|
---|
[10753] | 76 | } catch {
|
---|
[10754] | 77 | Instance = null;
|
---|
[10753] | 78 | }
|
---|
| 79 | return assembly;
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | protected override void OnCodeChanged() {
|
---|
| 83 | base.OnCodeChanged();
|
---|
| 84 | instance = null;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | public event EventHandler InstanceChanged;
|
---|
| 88 | protected void OnInstanceChanged() {
|
---|
| 89 | var handler = InstanceChanged;
|
---|
| 90 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 91 | }
|
---|
| 92 | }
|
---|
| 93 | }
|
---|