vote up 12 vote down star
6

I would like to do the equivalent of:

object result = Eval("1 + 3");
string now    = Eval("System.DateTime.Now().ToString()") as string

Following Biri s link, I got this snippet (modified to remove obsolete method ICodeCompiler.CreateCompiler():

private object Eval(string sExpression)
{
    CSharpCodeProvider c = new CSharpCodeProvider();
    CompilerParameters cp = new CompilerParameters();

    cp.ReferencedAssemblies.Add("system.dll");

    cp.CompilerOptions = "/t:library";
    cp.GenerateInMemory = true;

    StringBuilder sb = new StringBuilder("");
    sb.Append("using System;\n");

    sb.Append("namespace CSCodeEvaler{ \n");
    sb.Append("public class CSCodeEvaler{ \n");
    sb.Append("public object EvalCode(){\n");
    sb.Append("return " + sExpression + "; \n");
    sb.Append("} \n");
    sb.Append("} \n");
    sb.Append("}\n");

    CompilerResults cr = c.CompileAssemblyFromSource(cp, sb.ToString());
    if (cr.Errors.Count > 0)
    {
        throw new InvalidExpressionException(
            string.Format("Error ({0}) evaluating: {1}", 
            cr.Errors[0].ErrorText, sExpression));
    }

    System.Reflection.Assembly a = cr.CompiledAssembly;
    object o = a.CreateInstance("CSCodeEvaler.CSCodeEvaler");

    Type t = o.GetType();
    MethodInfo mi = t.GetMethod("EvalCode");

    object s = mi.Invoke(o, null);
    return s;

}
flag

Why is this necessary? I highly doubt that this is the best design for whatever purpose you intend. More than likely there are other mechanisms to produce the results you desire without opening up the huge can of worms (for security and maintainability) that is evaluating code snippets at run time. – Wedge Sep 10 '08 at 22:14
I wanted a quick and dirty way to add expression validation to a DSL I wrote. I controll the files being fed to the evaluator, so the can of worms is never opened ;) Also, I only allow one expression, don't add any Namespaces / reference any assemblies. This should stop myself from doing harm too! – Daren Thomas Sep 11 '08 at 6:35
I do this in testing scenarios. I have an assembly that changes version numbers as it gets updated. I'd like my test code to be "late bound" to the assembly - to be able to load the assembly and call into it dynamically. this is a simple matter of reflection. But when I want to implement an interface that is specified in the assembly, it requires dynamic compilation of code, because the interface itself si strongly named (with a version number). I cannot have code that implements IFoo v1.2 when I want to invoke v1.3. Dynamic compilation addresses this. – Cheeso Jun 25 at 2:49
I should say, there are lots of other scenarios as well. It's not the mainstream thing to do, but there are many scenarios where dynamic code compilation makes sense. – Cheeso Jun 25 at 2:49

5 Answers

vote up 12 vote down check

By using compile on the fly, like this example shows.

Or by using Flee, which is for exactly the same reason.

link|flag
vote up 3 vote down

Remember that unless you do your compilation and execution in a seperate AppDomain, you may run into memory problems. Assemblies generated in this manner cannot be unloaded, but if you create the assembly in a seperate AppDomain you can unload the AppDomain and thereby unload the generated assembly.

link|flag
vote up -1 vote down

What are the performance implications of doing this?

link|flag
That wasn't my downvote, but if you mention performance, my question in return is how often do you do it? – Mike Dunlavey Jan 26 at 14:09
vote up 1 vote down

What are the performance implications of doing this?

We use a system based on something like the above mentioned, where each C# script is compiled to an in-memory assembly and executed in a separate AppDomain. There's no caching system yet, so they scripts are recompiled every time they run. I've done some simple testing and a very simple "Hello World" script compiles in about 0.7 seconds on my machine, including loading the script from disk. 0.7 seconds is fine for a scripting system, but might be too slow for responding to user input, in that case a dedicated parser/compiler like Flee might be better.

using System;
public class Test
{
    static public void DoStuff( Scripting.IJob Job)
    {
    	Console.WriteLine( "Heps" );
    }
}
link|flag
vote up 0 vote down

Looks like there is also a way of doing it using RegEx and XPathNavigator to evaluate the expression. I did not have the chance to test it yet but I kind of liked it because it did not require to compile code at runtime or use libraries that could not be available.

http://www.webtips.co.in/c/evaluate-function-in-c-net-as-eval-function-in-javascript.aspx

I'll try it and tell later if it worked. I also intend to try it in Silverlight, but it is too late and I'm almost asleep to do it now.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.