Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs @ 12515

Last change on this file since 12515 was 12515, checked in by dglaser, 9 years ago

#2388: Merged trunk into HiveStatistics branch

File size: 4.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Linq;
24using System.Reflection;
25using System.Threading;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Scripting {
31  [Item("C# Script", "An empty C# script.")]
32  [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)]
33  [StorableClass]
34  public class CSharpScript : Script, IStorableContent {
35    #region Constants
36    protected const string ExecuteMethodName = "Execute";
37    protected override string CodeTemplate { get { return ScriptTemplates.CSharpScriptTemplate; } }
38    #endregion
39
40    #region Fields & Properties
41    private CSharpScriptBase compiledScript;
42
43    public string Filename { get; set; }
44
45    [Storable]
46    private VariableStore variableStore;
47    public VariableStore VariableStore {
48      get { return variableStore; }
49    }
50    #endregion
51
52    #region Construction & Initialization
53    [StorableConstructor]
54    protected CSharpScript(bool deserializing) : base(deserializing) { }
55    protected CSharpScript(CSharpScript original, Cloner cloner)
56      : base(original, cloner) {
57      variableStore = cloner.Clone(original.variableStore);
58    }
59    public CSharpScript() {
60      variableStore = new VariableStore();
61      Code = CodeTemplate;
62    }
63    public CSharpScript(string code)
64      : base(code) {
65      variableStore = new VariableStore();
66    }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new CSharpScript(this, cloner);
70    }
71    #endregion
72
73    protected virtual void RegisterScriptEvents() {
74      if (compiledScript != null)
75        compiledScript.ConsoleOutputChanged += CompiledScriptOnConsoleOutputChanged;
76    }
77
78    protected virtual void DeregisterScriptEvents() {
79      if (compiledScript != null)
80        compiledScript.ConsoleOutputChanged -= CompiledScriptOnConsoleOutputChanged;
81    }
82
83    #region Compilation
84
85    public override Assembly Compile() {
86      DeregisterScriptEvents();
87      compiledScript = null;
88      var assembly = base.Compile();
89      var types = assembly.GetTypes();
90      compiledScript = (CSharpScriptBase)Activator.CreateInstance(types.Single(x => typeof(CSharpScriptBase).IsAssignableFrom(x)));
91      RegisterScriptEvents();
92      return assembly;
93    }
94    #endregion
95
96    private Thread scriptThread;
97    public virtual void ExecuteAsync() {
98      if (compiledScript == null) return;
99      scriptThread = new Thread(() => {
100        Exception ex = null;
101        try {
102          OnScriptExecutionStarted();
103          compiledScript.Execute(VariableStore);
104        }
105        catch (Exception e) {
106          ex = e;
107        }
108        finally {
109          scriptThread = null;
110          OnScriptExecutionFinished(ex);
111        }
112      });
113      scriptThread.SetApartmentState(ApartmentState.STA);
114      scriptThread.Start();
115    }
116
117    public virtual void Kill() {
118      if (scriptThread == null) return;
119      scriptThread.Abort();
120    }
121
122    protected virtual void CompiledScriptOnConsoleOutputChanged(object sender, EventArgs<string> e) {
123      OnConsoleOutputChanged(e.Value);
124    }
125
126    public event EventHandler ScriptExecutionStarted;
127    protected virtual void OnScriptExecutionStarted() {
128      var handler = ScriptExecutionStarted;
129      if (handler != null) handler(this, EventArgs.Empty);
130    }
131
132    public event EventHandler<EventArgs<Exception>> ScriptExecutionFinished;
133    protected virtual void OnScriptExecutionFinished(Exception e) {
134      var handler = ScriptExecutionFinished;
135      if (handler != null) handler(this, new EventArgs<Exception>(e));
136    }
137
138    public event EventHandler<EventArgs<string>> ConsoleOutputChanged;
139    protected virtual void OnConsoleOutputChanged(string args) {
140      var handler = ConsoleOutputChanged;
141      if (handler != null) handler(this, new EventArgs<string>(args));
142    }
143  }
144}
Note: See TracBrowser for help on using the repository browser.