#region License Information /* HeuristicLab * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using HEAL.Attic; using HeuristicLab.Common; using HeuristicLab.Common.Resources; using HeuristicLab.Core; using Microsoft.CSharp; namespace HeuristicLab.Scripting { [StorableType("0FA4F218-E1F5-4C09-9C2F-12B32D4EC373")] public abstract class Script : NamedItem, IProgrammableItem { #region Fields & Properties public static readonly HashSet ExcludedAssemblyFileNames = new HashSet { "IKVM.OpenJDK.ClassLibrary.dll" }; public static new Image StaticItemImage { get { return VSImageLibrary.Script; } } [Storable] private string code; public string Code { get { return code; } set { if (value == code) return; code = value; OnCodeChanged(); } } private CompilerErrorCollection compileErrors; public CompilerErrorCollection CompileErrors { get { return compileErrors; } private set { compileErrors = value; OnCompileErrorsChanged(); } } #endregion #region Construction & Initialization [StorableConstructor] protected Script(StorableConstructorFlag _) : base(_) { } protected Script(Script original, Cloner cloner) : base(original, cloner) { code = original.code; if (original.compileErrors != null) compileErrors = new CompilerErrorCollection(original.compileErrors); } protected Script() : base("Script", "An empty script.") { } protected Script(string code) : this() { this.code = code; } #endregion #region Compilation protected virtual CompilerResults DoCompile() { var parameters = new CompilerParameters { GenerateExecutable = false, GenerateInMemory = true, IncludeDebugInformation = true, WarningLevel = 4 }; parameters.ReferencedAssemblies.AddRange( GetAssemblies() .Select(a => a.Location) .ToArray()); var codeProvider = new CSharpCodeProvider( new Dictionary { { "CompilerVersion", "v4.0"} // support C# 4.0 syntax }); return codeProvider.CompileAssemblyFromSource(parameters, code); } public virtual Assembly Compile() { var results = DoCompile(); CompileErrors = results.Errors; if (results.Errors.HasErrors) { var sb = new StringBuilder(); foreach (CompilerError error in results.Errors) { sb.Append(error.Line).Append(':') .Append(error.Column).Append(": ") .AppendLine(error.ErrorText); } throw new CompilationException(string.Format("Compilation of \"{0}\" failed:{1}{2}", Name, Environment.NewLine, sb.ToString())); } else { return results.CompiledAssembly; } } public virtual IEnumerable GetAssemblies() { var assemblies = AppDomain.CurrentDomain.GetAssemblies() .Where(a => !a.IsDynamic && File.Exists(a.Location) && !ExcludedAssemblyFileNames.Contains(Path.GetFileName(a.Location))) .GroupBy(x => Regex.Replace(Path.GetFileName(x.Location), @"-[\d.]+\.dll$", "")) .Select(x => x.OrderByDescending(y => y.GetName().Version).First()) .ToList(); assemblies.Add(typeof(Microsoft.CSharp.RuntimeBinder.Binder).Assembly); // for dlr functionality return assemblies; } protected virtual CodeCompileUnit CreateCompilationUnit() { var unit = new CodeSnippetCompileUnit(code); return unit; } #endregion public event EventHandler CodeChanged; protected virtual void OnCodeChanged() { var handler = CodeChanged; if (handler != null) handler(this, EventArgs.Empty); } public event EventHandler CompileErrorsChanged; protected virtual void OnCompileErrorsChanged() { var handler = CompileErrorsChanged; if (handler != null) handler(this, EventArgs.Empty); } } }