[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11171] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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;
|
---|
[4068] | 23 | using System.CodeDom;
|
---|
| 24 | using System.CodeDom.Compiler;
|
---|
[2] | 25 | using System.Collections.Generic;
|
---|
| 26 | using System.IO;
|
---|
[694] | 27 | using System.Linq;
|
---|
[2] | 28 | using System.Reflection;
|
---|
[4068] | 29 | using System.Text;
|
---|
[2] | 30 | using System.Text.RegularExpressions;
|
---|
[4068] | 31 | using HeuristicLab.Collections;
|
---|
[3376] | 32 | using HeuristicLab.Common;
|
---|
[5042] | 33 | using HeuristicLab.Common.Resources;
|
---|
[2] | 34 | using HeuristicLab.Core;
|
---|
[4068] | 35 | using HeuristicLab.Persistence.Auxiliary;
|
---|
| 36 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2799] | 37 | using HeuristicLab.PluginInfrastructure;
|
---|
[4068] | 38 | using Microsoft.CSharp;
|
---|
[2] | 39 |
|
---|
| 40 | namespace HeuristicLab.Operators.Programmable {
|
---|
| 41 |
|
---|
[2877] | 42 | [Item("ProgrammableOperator", "An operator that can be programmed for arbitrary needs.")]
|
---|
[3903] | 43 | [StorableClass]
|
---|
[4419] | 44 | public class ProgrammableOperator : Operator, IParameterizedNamedItem, IStorableContent {
|
---|
[1872] | 45 |
|
---|
[2799] | 46 | #region Fields & Properties
|
---|
| 47 |
|
---|
[4419] | 48 | public string Filename { get; set; }
|
---|
| 49 |
|
---|
[3014] | 50 | public new ParameterCollection Parameters {
|
---|
[3008] | 51 | get { return base.Parameters; }
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[7201] | 54 | public static new System.Drawing.Image StaticItemImage { get { return VSImageLibrary.Script; } }
|
---|
[5042] | 55 |
|
---|
[2799] | 56 | private MethodInfo executeMethod;
|
---|
| 57 | public CompilerErrorCollection CompileErrors { get; private set; }
|
---|
| 58 | public string CompilationUnitCode { get; private set; }
|
---|
[2897] | 59 |
|
---|
[1872] | 60 | [Storable]
|
---|
[2799] | 61 | private string code;
|
---|
[2] | 62 | public string Code {
|
---|
[2799] | 63 | get { return code; }
|
---|
[2] | 64 | set {
|
---|
[2799] | 65 | if (value != code) {
|
---|
| 66 | code = value;
|
---|
[2] | 67 | executeMethod = null;
|
---|
| 68 | OnCodeChanged();
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 | }
|
---|
| 72 |
|
---|
[1211] | 73 | private object syncRoot = new object();
|
---|
| 74 |
|
---|
[2799] | 75 | private static object initLock = new object();
|
---|
| 76 | private static Dictionary<string, List<Assembly>> defaultPluginDict;
|
---|
| 77 | private static Dictionary<Assembly, bool> defaultAssemblyDict;
|
---|
| 78 |
|
---|
| 79 | public readonly Dictionary<string, List<Assembly>> Plugins;
|
---|
| 80 | protected Dictionary<Assembly, bool> Assemblies;
|
---|
| 81 |
|
---|
[4068] | 82 | [Storable(Name = "SelectedAssemblies")]
|
---|
[3903] | 83 | private List<string> _selectedAssemblyNames_persistence {
|
---|
[2897] | 84 | get {
|
---|
[4068] | 85 | return Assemblies.Where(a => a.Value).Select(a => a.Key.FullName).ToList();
|
---|
[2799] | 86 | }
|
---|
| 87 | set {
|
---|
[5781] | 88 | var selectedAssemblyNames = new HashSet<string>(value.Select(n => new AssemblyName(n).Name));
|
---|
[2799] | 89 | foreach (var a in Assemblies.Keys.ToList()) {
|
---|
[5781] | 90 | Assemblies[a] = selectedAssemblyNames.Contains(new AssemblyName(a.FullName).Name);
|
---|
[2897] | 91 | }
|
---|
[2799] | 92 | }
|
---|
[2] | 93 | }
|
---|
| 94 |
|
---|
[2799] | 95 | public IEnumerable<Assembly> AvailableAssemblies {
|
---|
| 96 | get { return Assemblies.Keys; }
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | public IEnumerable<Assembly> SelectedAssemblies {
|
---|
| 100 | get { return Assemblies.Where(kvp => kvp.Value).Select(kvp => kvp.Key); }
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | [Storable]
|
---|
| 104 | private HashSet<string> namespaces;
|
---|
| 105 | public IEnumerable<string> Namespaces {
|
---|
| 106 | get { return namespaces; }
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[2877] | 109 | public override bool CanChangeDescription {
|
---|
[3024] | 110 | get { return true; }
|
---|
| 111 | }
|
---|
[2877] | 112 |
|
---|
[2799] | 113 | #endregion
|
---|
| 114 |
|
---|
| 115 | #region Extended Accessors
|
---|
| 116 |
|
---|
| 117 | public void SelectAssembly(Assembly a) {
|
---|
[3903] | 118 | if (a != null && Assemblies.ContainsKey(a) && !Assemblies[a]) {
|
---|
[2799] | 119 | Assemblies[a] = true;
|
---|
[3903] | 120 | }
|
---|
[2799] | 121 | }
|
---|
| 122 |
|
---|
| 123 | public void UnselectAssembly(Assembly a) {
|
---|
[3903] | 124 | if (a != null && Assemblies.ContainsKey(a) && Assemblies[a]) {
|
---|
[2799] | 125 | Assemblies[a] = false;
|
---|
[3903] | 126 | }
|
---|
[2799] | 127 | }
|
---|
| 128 |
|
---|
| 129 | public void SelectNamespace(string ns) {
|
---|
| 130 | namespaces.Add(ns);
|
---|
[3903] | 131 | OnSignatureChanged();
|
---|
[2799] | 132 | }
|
---|
| 133 |
|
---|
| 134 | public void UnselectNamespace(string ns) {
|
---|
| 135 | namespaces.Remove(ns);
|
---|
[3903] | 136 | OnSignatureChanged();
|
---|
[2799] | 137 | }
|
---|
| 138 |
|
---|
| 139 | public IEnumerable<string> GetAllNamespaces(bool selectedAssembliesOnly) {
|
---|
| 140 | var namespaces = new HashSet<string>();
|
---|
| 141 | foreach (var a in Assemblies) {
|
---|
| 142 | if (!selectedAssembliesOnly || a.Value) {
|
---|
| 143 | foreach (var t in a.Key.GetTypes()) {
|
---|
| 144 | if (t.IsPublic) {
|
---|
| 145 | foreach (string ns in GetNamespaceHierachy(t.Namespace)) {
|
---|
| 146 | namespaces.Add(ns);
|
---|
| 147 | }
|
---|
| 148 | }
|
---|
| 149 | }
|
---|
| 150 | }
|
---|
[2] | 151 | }
|
---|
[2799] | 152 | return namespaces;
|
---|
[2] | 153 | }
|
---|
| 154 |
|
---|
[2799] | 155 | private IEnumerable<string> GetNamespaceHierachy(string ns) {
|
---|
[5011] | 156 | if (ns != null) {
|
---|
| 157 | for (int i = ns.Length; i != -1; i = ns.LastIndexOf('.', i - 1)) {
|
---|
| 158 | yield return ns.Substring(0, i);
|
---|
| 159 | }
|
---|
[2799] | 160 | }
|
---|
| 161 | }
|
---|
[2] | 162 |
|
---|
[2799] | 163 | #endregion
|
---|
[2] | 164 |
|
---|
[2799] | 165 | #region Construction & Initialization
|
---|
[4762] | 166 |
|
---|
[4722] | 167 | [StorableConstructor]
|
---|
[4762] | 168 | protected ProgrammableOperator(bool deserializing)
|
---|
| 169 | : base(deserializing) {
|
---|
| 170 | ProgrammableOperator.StaticInitialize();
|
---|
| 171 | Assemblies = defaultAssemblyDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
|
---|
| 172 | Plugins = defaultPluginDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value.ToList());
|
---|
[4722] | 173 | }
|
---|
[2] | 174 |
|
---|
[4722] | 175 | protected ProgrammableOperator(ProgrammableOperator original, Cloner cloner)
|
---|
| 176 | : base(original, cloner) {
|
---|
| 177 | code = original.Code;
|
---|
| 178 | executeMethod = original.executeMethod;
|
---|
| 179 | Assemblies = original.Assemblies.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
|
---|
[4762] | 180 | Plugins = original.Plugins.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
|
---|
| 181 | namespaces = new HashSet<string>(original.namespaces);
|
---|
[4722] | 182 | CompilationUnitCode = original.CompilationUnitCode;
|
---|
[4764] | 183 | if (original.CompileErrors != null)
|
---|
| 184 | CompileErrors = new CompilerErrorCollection(original.CompileErrors);
|
---|
[4722] | 185 | RegisterEvents();
|
---|
| 186 | }
|
---|
| 187 |
|
---|
[2897] | 188 | public ProgrammableOperator() {
|
---|
| 189 | code = "";
|
---|
[2799] | 190 | executeMethod = null;
|
---|
| 191 | ProgrammableOperator.StaticInitialize();
|
---|
[3903] | 192 | Assemblies = defaultAssemblyDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
|
---|
| 193 | Plugins = defaultPluginDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value.ToList());
|
---|
[3014] | 194 | namespaces = new HashSet<string>(DiscoverNamespaces());
|
---|
| 195 | RegisterEvents();
|
---|
[2799] | 196 | }
|
---|
| 197 |
|
---|
[4762] | 198 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 199 | private void AfterDeserialization() {
|
---|
[4838] | 200 | // ensure default namespaces and assemblies are present if deserializing old operators
|
---|
| 201 | namespaces.Add("HeuristicLab.Operators.Programmable");
|
---|
| 202 | Assemblies[typeof(HeuristicLab.Operators.Operator).Assembly] = true;
|
---|
| 203 | Assemblies[typeof(HeuristicLab.Operators.Programmable.ProgrammableOperator).Assembly] = true;
|
---|
[5173] | 204 | Assemblies[typeof(System.Threading.Barrier).Assembly] = true; // ensure new System assembly is selected (4.0.0.0)
|
---|
[4762] | 205 | RegisterEvents();
|
---|
| 206 | }
|
---|
[4722] | 207 |
|
---|
[4762] | 208 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 209 | return new ProgrammableOperator(this, cloner);
|
---|
| 210 | }
|
---|
| 211 |
|
---|
[3014] | 212 | private void RegisterEvents() {
|
---|
[3903] | 213 | Parameters.ItemsAdded += Parameters_Changed;
|
---|
| 214 | Parameters.ItemsRemoved += Parameters_Changed;
|
---|
| 215 | Parameters.ItemsReplaced += Parameters_Changed;
|
---|
| 216 | Parameters.CollectionReset += Parameters_Changed;
|
---|
[3014] | 217 | }
|
---|
| 218 |
|
---|
[3903] | 219 | private void Parameters_Changed(object sender, CollectionItemsChangedEventArgs<IParameter> args) {
|
---|
| 220 | OnSignatureChanged();
|
---|
[2897] | 221 | }
|
---|
| 222 |
|
---|
[3903] | 223 | protected void OnSignatureChanged() {
|
---|
[4828] | 224 | executeMethod = null;
|
---|
[3903] | 225 | EventHandler handler = SignatureChanged;
|
---|
[4722] | 226 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[3903] | 227 | }
|
---|
| 228 |
|
---|
[2799] | 229 | private static void StaticInitialize() {
|
---|
| 230 | lock (initLock) {
|
---|
[3903] | 231 | if (defaultPluginDict != null && defaultAssemblyDict != null)
|
---|
| 232 | return;
|
---|
[2799] | 233 | defaultAssemblyDict = DiscoverAssemblies();
|
---|
| 234 | defaultPluginDict = GroupAssemblies(defaultAssemblyDict.Keys);
|
---|
| 235 | }
|
---|
| 236 | }
|
---|
| 237 |
|
---|
| 238 | private static Dictionary<string, List<Assembly>> GroupAssemblies(IEnumerable<Assembly> assemblies) {
|
---|
| 239 | var plugins = new Dictionary<string, List<Assembly>>();
|
---|
| 240 | var locationTable = assemblies.ToDictionary(a => a.Location, a => a);
|
---|
[3234] | 241 |
|
---|
[3303] | 242 | foreach (var plugin in ApplicationManager.Manager.Plugins) {
|
---|
| 243 | var aList = new List<Assembly>();
|
---|
| 244 | foreach (var aName in from file in plugin.Files
|
---|
| 245 | where file.Type == PluginFileType.Assembly
|
---|
| 246 | select file.Name) {
|
---|
| 247 | Assembly a;
|
---|
| 248 | locationTable.TryGetValue(aName, out a);
|
---|
| 249 | if (a != null) {
|
---|
| 250 | aList.Add(a);
|
---|
| 251 | locationTable.Remove(aName);
|
---|
[2799] | 252 | }
|
---|
| 253 | }
|
---|
[3303] | 254 | plugins[plugin.Name] = aList;
|
---|
[2799] | 255 | }
|
---|
[3234] | 256 |
|
---|
[2799] | 257 | plugins["other"] = locationTable.Values.ToList();
|
---|
| 258 | return plugins;
|
---|
| 259 | }
|
---|
| 260 |
|
---|
[2897] | 261 | protected static List<Assembly> defaultAssemblies = new List<Assembly>() {
|
---|
[5216] | 262 | // mscorlib automatically included (would cause duplicate)
|
---|
| 263 | typeof(System.ComponentModel.INotifyPropertyChanged).Assembly, // System.dll
|
---|
| 264 | typeof(System.Linq.Enumerable).Assembly, // System.Core.dll
|
---|
| 265 | typeof(System.Data.Linq.DataContext).Assembly, // System.Data.Linq.dll
|
---|
[3454] | 266 | typeof(HeuristicLab.Common.IDeepCloneable).Assembly,
|
---|
[2897] | 267 | typeof(HeuristicLab.Core.Item).Assembly,
|
---|
[3048] | 268 | typeof(HeuristicLab.Data.IntValue).Assembly,
|
---|
[3903] | 269 | typeof(HeuristicLab.Parameters.ValueParameter<IItem>).Assembly,
|
---|
| 270 | typeof(HeuristicLab.Collections.ObservableList<IItem>).Assembly,
|
---|
[4838] | 271 | typeof(HeuristicLab.Operators.Operator).Assembly,
|
---|
| 272 | typeof(HeuristicLab.Operators.Programmable.ProgrammableOperator).Assembly,
|
---|
[2799] | 273 | };
|
---|
| 274 |
|
---|
| 275 | protected static Dictionary<Assembly, bool> DiscoverAssemblies() {
|
---|
| 276 | var assemblies = new Dictionary<Assembly, bool>();
|
---|
| 277 | foreach (var a in AppDomain.CurrentDomain.GetAssemblies()) {
|
---|
| 278 | try {
|
---|
| 279 | if (File.Exists(a.Location)) {
|
---|
| 280 | assemblies.Add(a, false);
|
---|
| 281 | }
|
---|
[7201] | 282 | }
|
---|
| 283 | catch (NotSupportedException) {
|
---|
[2799] | 284 | // NotSupportedException is thrown while accessing
|
---|
| 285 | // the Location property of the anonymously hosted
|
---|
| 286 | // dynamic methods assembly, which is related to
|
---|
| 287 | // LINQ queries
|
---|
| 288 | }
|
---|
| 289 | }
|
---|
| 290 | foreach (var a in defaultAssemblies) {
|
---|
| 291 | if (assemblies.ContainsKey(a)) {
|
---|
| 292 | assemblies[a] = true;
|
---|
| 293 | } else {
|
---|
| 294 | assemblies.Add(a, true);
|
---|
| 295 | }
|
---|
| 296 | }
|
---|
| 297 | return assemblies;
|
---|
| 298 | }
|
---|
| 299 |
|
---|
| 300 | protected static List<string> DiscoverNamespaces() {
|
---|
| 301 | return new List<string>() {
|
---|
[3903] | 302 | "HeuristicLab.Common",
|
---|
| 303 | "HeuristicLab.Core",
|
---|
| 304 | "HeuristicLab.Data",
|
---|
| 305 | "HeuristicLab.Parameters",
|
---|
[4838] | 306 | "HeuristicLab.Operators.Programmable",
|
---|
[2799] | 307 | "System",
|
---|
| 308 | "System.Collections.Generic",
|
---|
| 309 | "System.Text",
|
---|
| 310 | "System.Linq",
|
---|
| 311 | "System.Data.Linq",
|
---|
| 312 | };
|
---|
| 313 | }
|
---|
| 314 |
|
---|
| 315 | #endregion
|
---|
| 316 |
|
---|
| 317 | #region Compilation
|
---|
| 318 |
|
---|
| 319 | private static CSharpCodeProvider codeProvider =
|
---|
| 320 | new CSharpCodeProvider(
|
---|
| 321 | new Dictionary<string, string>() {
|
---|
[5406] | 322 | { "CompilerVersion", "v4.0" }, // support C# 4.0 syntax
|
---|
[2799] | 323 | });
|
---|
| 324 |
|
---|
| 325 | private CompilerResults DoCompile() {
|
---|
[2] | 326 | CompilerParameters parameters = new CompilerParameters();
|
---|
| 327 | parameters.GenerateExecutable = false;
|
---|
| 328 | parameters.GenerateInMemory = true;
|
---|
| 329 | parameters.IncludeDebugInformation = false;
|
---|
[2799] | 330 | parameters.ReferencedAssemblies.AddRange(SelectedAssemblies.Select(a => a.Location).ToArray());
|
---|
| 331 | var unit = CreateCompilationUnit();
|
---|
| 332 | var writer = new StringWriter();
|
---|
| 333 | codeProvider.GenerateCodeFromCompileUnit(
|
---|
| 334 | unit,
|
---|
| 335 | writer,
|
---|
| 336 | new CodeGeneratorOptions() {
|
---|
| 337 | BracingStyle = "C",
|
---|
| 338 | ElseOnClosing = true,
|
---|
| 339 | IndentString = " ",
|
---|
| 340 | });
|
---|
| 341 | CompilationUnitCode = writer.ToString();
|
---|
| 342 | return codeProvider.CompileAssemblyFromDom(parameters, unit);
|
---|
| 343 | }
|
---|
[2] | 344 |
|
---|
[2799] | 345 | public virtual void Compile() {
|
---|
| 346 | var results = DoCompile();
|
---|
[2] | 347 | executeMethod = null;
|
---|
[5042] | 348 | CompileErrors = results.Errors;
|
---|
[2] | 349 | if (results.Errors.HasErrors) {
|
---|
[2799] | 350 | StringBuilder sb = new StringBuilder();
|
---|
[2] | 351 | foreach (CompilerError error in results.Errors) {
|
---|
[2799] | 352 | sb.Append(error.Line).Append(':')
|
---|
| 353 | .Append(error.Column).Append(": ")
|
---|
| 354 | .AppendLine(error.ErrorText);
|
---|
[2] | 355 | }
|
---|
[2799] | 356 | throw new Exception(string.Format(
|
---|
| 357 | "Compilation of \"{0}\" failed:{1}{2}",
|
---|
| 358 | Name, Environment.NewLine,
|
---|
| 359 | sb.ToString()));
|
---|
[2] | 360 | } else {
|
---|
| 361 | Assembly assembly = results.CompiledAssembly;
|
---|
| 362 | Type[] types = assembly.GetTypes();
|
---|
| 363 | executeMethod = types[0].GetMethod("Execute");
|
---|
| 364 | }
|
---|
| 365 | }
|
---|
| 366 |
|
---|
[2799] | 367 | private CodeCompileUnit CreateCompilationUnit() {
|
---|
| 368 | CodeNamespace ns = new CodeNamespace("HeuristicLab.Operators.Programmable.CustomOperators");
|
---|
| 369 | ns.Types.Add(CreateType());
|
---|
| 370 | ns.Imports.AddRange(
|
---|
| 371 | GetSelectedAndValidNamespaces()
|
---|
| 372 | .Select(n => new CodeNamespaceImport(n))
|
---|
| 373 | .ToArray());
|
---|
| 374 | CodeCompileUnit unit = new CodeCompileUnit();
|
---|
| 375 | unit.Namespaces.Add(ns);
|
---|
| 376 | return unit;
|
---|
[2] | 377 | }
|
---|
| 378 |
|
---|
[2799] | 379 | public IEnumerable<string> GetSelectedAndValidNamespaces() {
|
---|
| 380 | var possibleNamespaces = new HashSet<string>(GetAllNamespaces(true));
|
---|
| 381 | foreach (var ns in Namespaces)
|
---|
| 382 | if (possibleNamespaces.Contains(ns))
|
---|
| 383 | yield return ns;
|
---|
| 384 | }
|
---|
| 385 |
|
---|
| 386 | public static readonly Regex SafeTypeNameCharRegex = new Regex("[_a-zA-Z0-9]+");
|
---|
| 387 | public static readonly Regex SafeTypeNameRegex = new Regex("[_a-zA-Z][_a-zA-Z0-9]*");
|
---|
| 388 |
|
---|
| 389 | public string CompiledTypeName {
|
---|
| 390 | get {
|
---|
| 391 | var sb = new StringBuilder();
|
---|
| 392 | foreach (string s in SafeTypeNameCharRegex.Matches(Name).Cast<Match>().Select(m => m.Value)) {
|
---|
| 393 | sb.Append(s);
|
---|
[1211] | 394 | }
|
---|
[2799] | 395 | return SafeTypeNameRegex.Match(sb.ToString()).Value;
|
---|
[116] | 396 | }
|
---|
[2799] | 397 | }
|
---|
[2] | 398 |
|
---|
[2799] | 399 | private CodeTypeDeclaration CreateType() {
|
---|
| 400 | CodeTypeDeclaration typeDecl = new CodeTypeDeclaration(CompiledTypeName) {
|
---|
| 401 | IsClass = true,
|
---|
| 402 | TypeAttributes = TypeAttributes.Public,
|
---|
| 403 | };
|
---|
| 404 | typeDecl.Members.Add(CreateMethod());
|
---|
| 405 | return typeDecl;
|
---|
| 406 | }
|
---|
| 407 |
|
---|
| 408 | public string Signature {
|
---|
| 409 | get {
|
---|
| 410 | var sb = new StringBuilder()
|
---|
[3903] | 411 | .Append("public static IOperation Execute(")
|
---|
[4838] | 412 | .Append(TypeNameParser.Parse(GetType().FullName).GetTypeNameInCode(namespaces))
|
---|
[3903] | 413 | .Append(" op, ")
|
---|
| 414 | .Append(TypeNameParser.Parse(typeof(IExecutionContext).FullName).GetTypeNameInCode(namespaces))
|
---|
| 415 | .Append(" context");
|
---|
[2799] | 416 | foreach (IParameter param in Parameters) {
|
---|
[3903] | 417 | sb.Append(String.Format(", {0} {1}",
|
---|
| 418 | TypeNameParser.Parse(param.GetType().FullName).GetTypeNameInCode(namespaces),
|
---|
| 419 | param.Name));
|
---|
[2897] | 420 | }
|
---|
[2799] | 421 | return sb.Append(")").ToString();
|
---|
[2] | 422 | }
|
---|
[2799] | 423 | }
|
---|
[2] | 424 |
|
---|
[2897] | 425 | public event EventHandler SignatureChanged;
|
---|
| 426 |
|
---|
[2799] | 427 | private static Regex lineSplitter = new Regex(@"\r\n|\r|\n");
|
---|
| 428 |
|
---|
| 429 | private CodeMemberMethod CreateMethod() {
|
---|
| 430 | CodeMemberMethod method = new CodeMemberMethod();
|
---|
| 431 | method.Name = "Execute";
|
---|
[2897] | 432 | method.ReturnType = new CodeTypeReference(typeof(IOperation));
|
---|
[2799] | 433 | method.Attributes = MemberAttributes.Public | MemberAttributes.Static;
|
---|
[4838] | 434 | method.Parameters.Add(new CodeParameterDeclarationExpression(GetType(), "op"));
|
---|
[2897] | 435 | method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(IExecutionContext), "context"));
|
---|
[2799] | 436 | foreach (var param in Parameters)
|
---|
[3903] | 437 | method.Parameters.Add(new CodeParameterDeclarationExpression(param.GetType(), param.Name));
|
---|
[2799] | 438 | string[] codeLines = lineSplitter.Split(code);
|
---|
| 439 | for (int i = 0; i < codeLines.Length; i++) {
|
---|
| 440 | codeLines[i] = string.Format("#line {0} \"ProgrammableOperator\"{1}{2}", i + 1, "\r\n", codeLines[i]);
|
---|
| 441 | }
|
---|
[4838] | 442 | method.Statements.Add(new CodeSnippetStatement(string.Join("\r\n", codeLines) + MethodSuffix));
|
---|
[2799] | 443 | return method;
|
---|
[2] | 444 | }
|
---|
| 445 |
|
---|
[4838] | 446 | public virtual string MethodSuffix {
|
---|
| 447 | get { return "return null;"; }
|
---|
| 448 | }
|
---|
| 449 |
|
---|
[2799] | 450 | #endregion
|
---|
| 451 |
|
---|
| 452 | #region HeuristicLab interfaces
|
---|
[2877] | 453 |
|
---|
| 454 | public override IOperation Apply() {
|
---|
[2799] | 455 | lock (syncRoot) {
|
---|
| 456 | if (executeMethod == null) {
|
---|
| 457 | Compile();
|
---|
| 458 | }
|
---|
| 459 | }
|
---|
| 460 |
|
---|
[2897] | 461 | var parameters = new List<object>() { this, ExecutionContext };
|
---|
[3903] | 462 | parameters.AddRange(Parameters.Select(p => (object)p));
|
---|
[2877] | 463 | return (IOperation)executeMethod.Invoke(null, parameters.ToArray());
|
---|
[2] | 464 | }
|
---|
[2897] | 465 |
|
---|
[2] | 466 | public event EventHandler CodeChanged;
|
---|
| 467 | protected virtual void OnCodeChanged() {
|
---|
[4722] | 468 | EventHandler handler = CodeChanged;
|
---|
| 469 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2] | 470 | }
|
---|
[2799] | 471 |
|
---|
| 472 | #endregion
|
---|
[2] | 473 | }
|
---|
| 474 | }
|
---|