Esempio n. 1
0
        static void Main(string[] args)
        {
            string dllPath = typeof(object).Assembly.Location;
            Assembly asm = Assembly.LoadFile(dllPath);

            string filename = @"..\..\Src\Languages\sympl\examples\test.sympl";
            var s = new Sympl(new Assembly[] { asm });
            var feo = s.ExecuteFile(filename);

            Console.WriteLine("ExecuteExpr ... ");
            s.ExecuteExpr("(print 5)", feo);

            if (args.Length > 0 && args[0] == "norepl") return;

            string input = null;
            string exprstr = "";
            Console.WriteLine(); Console.WriteLine(); Console.WriteLine();
            Console.WriteLine("Enter expressions.  Enter blank line to abort input.");
            Console.WriteLine("Enter 'exit (the symbol) to exit.");
            Console.WriteLine();
            string prompt = ">>> ";
            while (true) {
                Console.Write(prompt);
                input = Console.ReadLine();
                if (input == "") {
                    exprstr = "";
                    prompt = ">>> ";
                    continue;
                } else {
                    exprstr = exprstr + " " + input;
                }
                // See if we have complete input.
                try {
                    var ast = new Parser().ParseExpr(new StringReader(exprstr));
                }
                catch (Exception) {
                    prompt = "... ";
                    continue;
                }
                // We do, so execute.
                try {
                    object res = s.ExecuteExpr(exprstr, feo);
                    exprstr = "";
                    prompt = ">>> ";
                    if (res == s.MakeSymbol("exit")) return;
                    Console.WriteLine(res);
                } catch (Exception e) {
                    exprstr = "";
                    prompt = ">>> ";
                    Console.Write("ERROR: ");
                    Console.WriteLine(e);
                }
            }
        }
Esempio n. 2
0
          ParseExprToLambda(TextReader reader) {
     var ast = new Parser().ParseExpr(reader);
     var scope = new AnalysisScope(
         null,
         "__snippet__",
         this,
         Expression.Parameter(typeof(Sympl), "symplRuntime"),
         Expression.Parameter(typeof(IDynamicMetaObjectProvider),
                              "fileModule"));
     List<Expression> body = new List<Expression>();
     body.Add(Expression.Convert(ETGen.AnalyzeExpr(ast, scope),
                                 typeof(object)));
     var moduleFun = Expression.Lambda<Func<Sympl, IDynamicMetaObjectProvider,
                                            object>>(
         Expression.Block(body),
         scope.RuntimeExpr,
         scope.ModuleExpr
     );
     return moduleFun;
 }
Esempio n. 3
0
          ParseFileToLambda(string filename, TextReader reader) {
     var asts = new Parser().ParseFile(reader);
     var scope = new AnalysisScope(
         null,
         filename,
         this,
         Expression.Parameter(typeof(Sympl), "symplRuntime"),
         Expression.Parameter(typeof(IDynamicMetaObjectProvider),
                              "fileModule"));
     List<Expression> body = new List<Expression>();
     foreach (var e in asts) {
         body.Add(ETGen.AnalyzeExpr(e, scope));
     }
     body.Add(Expression.Constant(null));
     var moduleFun = Expression.Lambda<Func<Sympl, IDynamicMetaObjectProvider,
                                            object>>(
         Expression.Block(body),
         scope.RuntimeExpr,
         scope.ModuleExpr);
     return moduleFun;
 }
Esempio n. 4
0
        static void Main(string[] args)
        {
            // Setup DLR ScriptRuntime with our languages.  We hardcode them here
            // but a .NET app looking for general language scripting would use
            // an app.config file and ScriptRuntime.CreateFromConfiguration.
            var setup = new ScriptRuntimeSetup();
            string qualifiedname = typeof(SymplSample.Hosting.SymplLangContext).AssemblyQualifiedName;
            setup.LanguageSetups.Add(new LanguageSetup(
                qualifiedname, "Sympl", new[] { "sympl" }, new[] { ".sympl" }));
            setup.LanguageSetups.Add(
                IronPython.Hosting.Python.CreateLanguageSetup(null));
            setup.LanguageSetups.Add(IronRuby.Ruby.CreateRubySetup());
            var dlrRuntime = new ScriptRuntime(setup);
            // Don't need to tell the DLR about the assemblies we want to be
            // available, which the SymplLangContext constructor passes to the
            // Sympl constructor, because the DLR loads mscorlib and System by
            // default.
            //dlrRuntime.LoadAssembly(typeof(object).Assembly);

            // Get a Sympl engine and run stuff ...
            var engine = dlrRuntime.GetEngine("sympl");
            string filename = Path.GetFullPath(
                Path.Combine(
                    Path.GetDirectoryName(Assembly.GetEntryAssembly().Location),
                    @"..\..\Runtime\Samples\sympl\examples\test.sympl"
                )
            );
            Console.WriteLine("Executing " + filename);
            var feo = engine.ExecuteFile(filename);
            Console.WriteLine("ExecuteExpr ... ");
            engine.Execute("(print 5)", feo);

            // Get Python and Ruby engines
            var pyeng = dlrRuntime.GetEngine("Python");
            var rbeng = dlrRuntime.GetEngine("Ruby");
            // Run some Python and Ruby code in our shared Sympl module scope.
            pyeng.Execute("def pyfoo(): return 1", feo);
            rbeng.Execute("def rbbar; 2; end", feo);
            // Call those objects from Sympl.
            Console.WriteLine("pyfoo returns " +
                              (engine.Execute("(pyfoo)", feo)).ToString());
            Console.WriteLine("rbbar returns " +
                              (engine.Execute("(rbbar)", feo)).ToString());

            // Consume host supplied globals via DLR Hosting.
            dlrRuntime.Globals.SetVariable("DlrGlobal", new int[] { 3, 7 });
            engine.Execute("(import dlrglobal)", feo);
            engine.Execute("(print (elt dlrglobal 1))", feo);

            // Drop into the REPL ...
            if (args.Length > 0 && args[0] == "norepl") return;
            string input = null;
            string exprstr = "";
            Console.WriteLine(); Console.WriteLine(); Console.WriteLine();
            Console.WriteLine("Enter expressions.  Enter blank line to abort input.");
            Console.WriteLine("Enter 'exit (the symbol) to exit.");
            Console.WriteLine();
            string prompt = ">>> ";
            var s = engine.GetService<Sympl>();
            while (true) {
                Console.Write(prompt);
                input = Console.ReadLine();
                if (input == "") {
                    exprstr = "";
                    prompt = ">>> ";
                    continue;
                } else {
                    exprstr = exprstr + " " + input;
                }
                // See if we have complete input.
                try {
                    var ast = new Parser().ParseExpr(new StringReader(exprstr));
                }
                catch (Exception) {
                    prompt = "... ";
                    continue;
                }
                // We do, so execute.
                try {
                    object res = engine.Execute(exprstr, feo);
                    exprstr = "";
                    prompt = ">>> ";
                    if (res == s.MakeSymbol("exit")) return;
                    Console.WriteLine(res);
                } catch (Exception e) {
                    exprstr = "";
                    prompt = ">>> ";
                    Console.Write("ERROR: ");
                    Console.WriteLine(e);
                }
            }
        }
Esempio n. 5
0
		// ExecuteFileInScope executes the file in the given module scope.  This
		// does NOT store the module scope on Globals.  This function returns
		// nothing.
		//
        public void ExecuteFileInScope(string filename, ExpandoObject moduleEO) {
            var f = new StreamReader(filename);
            // Simple way to convey script rundir for RuntimeHelpes.SymplImport
            // to load .sympl files.
            DynamicObjectHelpers.SetMember(moduleEO, "__file__", 
                                           Path.GetFullPath(filename));
            try {
                var asts = new Parser().ParseFile(f);
                var scope = new AnalysisScope(
                    null,
                    filename,
                    this,
                    Expression.Parameter(typeof(Sympl), "symplRuntime"),
                    Expression.Parameter(typeof(ExpandoObject), "fileModule")
                );
                List<Expression> body = new List<Expression>();
                foreach (var e in asts) {
                    body.Add(ETGen.AnalyzeExpr(e, scope));
                }
                var moduleFun = Expression.Lambda<Action<Sympl, ExpandoObject>>(
                    Expression.Block(body),
                    scope.RuntimeExpr,
                    scope.ModuleExpr
                );
                var d = moduleFun.Compile();
                d(this, moduleEO);
            } finally {
                f.Close();
            }
        }
Esempio n. 6
0
 // Execute a single expression parsed from string in the provided module
 // scope and returns the resulting value.
 //
 public object ExecuteExpr(string expr_str, ExpandoObject moduleEO) {
     var f = new StringReader(expr_str);
     var ast = new Parser().ParseExpr(f);
     var scope = new AnalysisScope(
         null,
         "__snippet__",
         this,
         Expression.Parameter(typeof(Sympl), "symplRuntime"),
         Expression.Parameter(typeof(ExpandoObject), "fileModule")
     );
     List<Expression> body = new List<Expression>();
     body.Add(Expression.Convert(ETGen.AnalyzeExpr(ast, scope),
                                 typeof(object)));
     var moduleFun = Expression.Lambda<Func<Sympl, ExpandoObject, object>>(
         Expression.Block(body),
         scope.RuntimeExpr,
         scope.ModuleExpr
     );
     var d = moduleFun.Compile();
     return d(this, moduleEO);
 }