123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- using System.Reflection;
- using Jint;
- using Jint.Native;
- using Jint.Native.Json;
- using Jint.Runtime;
- // ReSharper disable LocalizableElement
- #pragma warning disable IL2026
- #pragma warning disable IL2111
- var engine = new Engine(cfg => cfg
- .AllowClr()
- );
- engine
- .SetValue("print", new Action<object>(Console.WriteLine))
- .SetValue("console", new JsConsole())
- .SetValue("load", new Func<string, object>(
- path => engine.Evaluate(File.ReadAllText(path)))
- );
- var filename = args.Length > 0 ? args[0] : "";
- if (!string.IsNullOrEmpty(filename))
- {
- if (!File.Exists(filename))
- {
- Console.WriteLine($"Could not find file: {filename}");
- }
- var script = File.ReadAllText(filename);
- engine.Evaluate(script, "repl");
- return;
- }
- var assembly = Assembly.GetExecutingAssembly();
- var version = assembly.GetName().Version?.ToString();
- Console.WriteLine($"Welcome to Jint ({version})");
- Console.WriteLine("Type 'exit' to leave, 'print()' to write on the console, 'load()' to load scripts.");
- Console.WriteLine();
- var defaultColor = Console.ForegroundColor;
- var parsingOptions = new ScriptParsingOptions
- {
- Tolerant = true,
- };
- var serializer = new JsonSerializer(engine);
- while (true)
- {
- Console.ForegroundColor = defaultColor;
- Console.Write("jint> ");
- var input = Console.ReadLine();
- if (input is "exit" or ".exit")
- {
- return;
- }
- try
- {
- var result = engine.Evaluate(input, parsingOptions);
- JsValue str = result;
- if (!result.IsPrimitive() && result is not IJsPrimitive)
- {
- str = serializer.Serialize(result, JsValue.Undefined, " ");
- if (str == JsValue.Undefined)
- {
- str = result;
- }
- }
- else if (result.IsString())
- {
- str = serializer.Serialize(result, JsValue.Undefined, JsValue.Undefined);
- }
- Console.WriteLine(str);
- }
- catch (JavaScriptException je)
- {
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine(je.ToString());
- }
- catch (Exception e)
- {
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine(e.Message);
- }
- }
- file sealed class JsConsole
- {
- public void Log(object value)
- {
- Console.WriteLine(value?.ToString() ?? "null");
- }
- public void Error(object value)
- {
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine(value?.ToString() ?? "null");
- Console.ResetColor();
- }
- }
|