Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert string to executable code performance

Tags:

performance

c#

I'm looking into solutions to convert a string into executeable code. My code is extremely slow and executes at 4.7 seconds. Is there any faster way of doing this?

String: "5 * 5"

Output: 25

The code:

class Program {

    static void Main(string[] args) {
        var value = "5 * 5";
        Stopwatch sw = new Stopwatch();
        sw.Start();
        var test = Execute(value);
        sw.Stop();
        Debug.WriteLine($"Execute string at: {sw.Elapsed}");
    }

    private static object Execute(string content) {
        var codeProvider = new CSharpCodeProvider();
        var compilerParameters = new CompilerParameters {
            GenerateExecutable = false,
            GenerateInMemory = true
        };

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

        string sourceCode = CreateExecuteMethodTemplate(content);
        CompilerResults compilerResults = codeProvider.CompileAssemblyFromSource(compilerParameters, sourceCode);
        Assembly assembly = compilerResults.CompiledAssembly;
        Type type = assembly.GetType("Lab.Cal");
        MethodInfo methodInfo = type.GetMethod("Execute");

        return methodInfo.Invoke(null, null);
    }

    private static string CreateExecuteMethodTemplate(string content) {
        var builder = new StringBuilder();

        builder.Append("using System;");
        builder.Append("\r\nnamespace Lab");
        builder.Append("\r\n{");
        builder.Append("\r\npublic sealed class Cal");
        builder.Append("\r\n{");
        builder.Append("\r\npublic static object Execute()");
        builder.Append("\r\n{");
        builder.AppendFormat("\r\nreturn {0};", content);
        builder.Append("\r\n}");
        builder.Append("\r\n}");
        builder.Append("\r\n}");

        return builder.ToString();
    }
}
like image 361
MrProgram Avatar asked May 06 '16 10:05

MrProgram


1 Answers

Well, there is an easier hack:

var _Result = new DataTable().Compute("5*5"); // _Result = 25
var _Result2 = new DataTable().Compute("5+5*5"); // _Result2 = 30

It also has more options. Please have a look at the Documentation.

like image 94
Kamil T Avatar answered Oct 18 '22 16:10

Kamil T