[10731] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10731] | 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 |
|
---|
| 29 | namespace HeuristicLab.Scripting {
|
---|
| 30 | [Item("C# Script", "An empty C# script.")]
|
---|
[12504] | 31 | [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)]
|
---|
[10731] | 32 | [StorableClass]
|
---|
[13080] | 33 | public class CSharpScript : ExecutableScript, IStorableContent {
|
---|
[10731] | 34 | #region Fields & Properties
|
---|
[10857] | 35 | private CSharpScriptBase compiledScript;
|
---|
[10731] | 36 |
|
---|
| 37 | public string Filename { get; set; }
|
---|
| 38 |
|
---|
| 39 | [Storable]
|
---|
| 40 | private VariableStore variableStore;
|
---|
| 41 | public VariableStore VariableStore {
|
---|
| 42 | get { return variableStore; }
|
---|
| 43 | }
|
---|
| 44 | #endregion
|
---|
| 45 |
|
---|
[13080] | 46 | #region Construction & Cloning
|
---|
[10731] | 47 | [StorableConstructor]
|
---|
| 48 | protected CSharpScript(bool deserializing) : base(deserializing) { }
|
---|
| 49 | protected CSharpScript(CSharpScript original, Cloner cloner)
|
---|
| 50 | : base(original, cloner) {
|
---|
[11058] | 51 | variableStore = cloner.Clone(original.variableStore);
|
---|
[10731] | 52 | }
|
---|
[13080] | 53 | public CSharpScript()
|
---|
[13218] | 54 | : base(ScriptTemplates.CSharpScriptTemplate) {
|
---|
[10731] | 55 | variableStore = new VariableStore();
|
---|
| 56 | }
|
---|
| 57 | public CSharpScript(string code)
|
---|
| 58 | : base(code) {
|
---|
| 59 | variableStore = new VariableStore();
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 63 | return new CSharpScript(this, cloner);
|
---|
| 64 | }
|
---|
| 65 | #endregion
|
---|
| 66 |
|
---|
| 67 | protected virtual void RegisterScriptEvents() {
|
---|
[10857] | 68 | if (compiledScript != null)
|
---|
| 69 | compiledScript.ConsoleOutputChanged += CompiledScriptOnConsoleOutputChanged;
|
---|
[10731] | 70 | }
|
---|
| 71 |
|
---|
| 72 | protected virtual void DeregisterScriptEvents() {
|
---|
[10857] | 73 | if (compiledScript != null)
|
---|
| 74 | compiledScript.ConsoleOutputChanged -= CompiledScriptOnConsoleOutputChanged;
|
---|
[10731] | 75 | }
|
---|
| 76 |
|
---|
| 77 | #region Compilation
|
---|
| 78 | public override Assembly Compile() {
|
---|
[10857] | 79 | DeregisterScriptEvents();
|
---|
| 80 | compiledScript = null;
|
---|
[10731] | 81 | var assembly = base.Compile();
|
---|
| 82 | var types = assembly.GetTypes();
|
---|
[10857] | 83 | compiledScript = (CSharpScriptBase)Activator.CreateInstance(types.Single(x => typeof(CSharpScriptBase).IsAssignableFrom(x)));
|
---|
[10731] | 84 | RegisterScriptEvents();
|
---|
| 85 | return assembly;
|
---|
| 86 | }
|
---|
| 87 | #endregion
|
---|
| 88 |
|
---|
[13080] | 89 | protected override void ExecuteCode() {
|
---|
[10857] | 90 | if (compiledScript == null) return;
|
---|
[10731] | 91 |
|
---|
[13080] | 92 | compiledScript.Execute(VariableStore);
|
---|
[10731] | 93 | }
|
---|
| 94 |
|
---|
| 95 | protected virtual void CompiledScriptOnConsoleOutputChanged(object sender, EventArgs<string> e) {
|
---|
| 96 | OnConsoleOutputChanged(e.Value);
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | public event EventHandler<EventArgs<string>> ConsoleOutputChanged;
|
---|
| 100 | protected virtual void OnConsoleOutputChanged(string args) {
|
---|
| 101 | var handler = ConsoleOutputChanged;
|
---|
| 102 | if (handler != null) handler(this, new EventArgs<string>(args));
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
| 105 | }
|
---|