Click here to Skip to main content
15,885,944 members
Articles / Programming Languages / C#

CodeDom Assistant

Rate me:
Please Sign up or sign in to vote.
4.84/5 (26 votes)
21 Sep 20074 min read 137.7K   6.6K   82  
Generating CodeDom Code By Parsing C# or VB
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Runtime.Remoting;
using System.IO;
using Microsoft.CSharp;

namespace CodeDomAssistant
{
    /// <summary>
    /// Execute a CSharp Code Snippet and return results
    /// </summary>
    public class CSharpSnippet
    {
        List<string> assemblies = new List<string>();
        List<string> namespaces = new List<string>();
        CompilerParameters parameters = new CompilerParameters();
        string codesnippet = string.Empty;

        public CSharpSnippet(string codesnippet)
        {
            this.codesnippet = codesnippet;

            parameters.ReferencedAssemblies.Add("System.dll");
            parameters.ReferencedAssemblies.Add("RemoteLoader.dll");

            namespaces.Add("System");
            namespaces.Add("System.Reflection");
            namespaces.Add("RemoteLoader");
        }

        /// <summary>
        /// List of Referenced Assemblies Needed To Run Snippet
        /// </summary>
        public StringCollection ReferencedAssemblies
        {
            get { return parameters.ReferencedAssemblies; }
        }

        /// <summary>
        /// List of Namespaces
        /// </summary>
        public List<string> Namespaces
        {
            get { return namespaces; }
        }

        /// <summary>
        /// Execute Snippet Method
        /// </summary>
        /// <param name="method"></param>
        /// <param name="args"></param>
        /// <returns></returns>
        public object Execute(string method, params object[] args)
        {
            object results = null;

            AppDomain appdomain = null;
            string script_assembly = "script_" + Guid.NewGuid().ToString();

            try
            {
                // Build Assembly Code
                StringBuilder sb = new StringBuilder();
                StringWriter sw = new StringWriter(sb);

                foreach (string ns in this.namespaces)                {
                    sw.WriteLine("using " + ns + ";");
                }

                sw.WriteLine();
                sw.WriteLine("namespace CodeDomAssistant.Script {");
                sw.WriteLine("    // Encapsulate Code Snippet Script");
                sw.WriteLine("    public class CodeSnippet : MarshalByRefObject, IRemoteInterface {");
                sw.WriteLine("        // Invoke Method Through IRemoteInterface");
                sw.WriteLine("        public object Invoke(string method, object[] parms) {");
                sw.WriteLine("            return this.GetType().InvokeMember(method, BindingFlags.InvokeMethod, null, this, parms);");
                sw.WriteLine("        }");
                sw.WriteLine();
                sw.WriteLine(codesnippet);
                sw.WriteLine("    }");
                sw.WriteLine("}");
                sw.Flush();
                sw.Close();

                // compile code snippet into assembly
                parameters.OutputAssembly = script_assembly + ".dll";

                CSharpCodeProvider provider = new CSharpCodeProvider();

                provider.CompileAssemblyFromSource(parameters, sb.ToString());

                // run snippet in its own AppDomain
                AppDomainSetup setup = new AppDomainSetup();
                setup.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory;

                appdomain = AppDomain.CreateDomain("Scripting", null, setup);
  
                ObjectHandle handle = appdomain.CreateInstance("RemoteLoader", "RemoteLoader.RemoteLoaderFactory");

                RemoteLoader.RemoteLoaderFactory factory = (RemoteLoader.RemoteLoaderFactory)handle.Unwrap();

                RemoteLoader.IRemoteInterface objSnippet = factory.Create(script_assembly + ".dll", "CodeDomAssistant.Script.CodeSnippet", null);

                results = objSnippet.Invoke(method, args);
            }
            finally
            {
                if (appdomain != null)
                {
                    AppDomain.Unload(appdomain);
                }

                if (File.Exists(script_assembly + ".dll"))
                {
                    File.Delete(script_assembly + ".dll");
                }
            }

            return results;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions