-
Notifications
You must be signed in to change notification settings - Fork 0
/
Commands.cs
167 lines (145 loc) · 6.24 KB
/
Commands.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Scripting;
using Microsoft.CodeAnalysis.Scripting;
using TaleWorlds.Library;
namespace Int19h.Bannerlord.CSharp.Scripting {
public static class Commands {
private static ScriptState? evalState = null;
private static TextWriter? loggingTo = null;
private static string WithErrorHandling(Action<TextWriter> body) {
using (var output = new System.IO.StringWriter()) {
try {
body(output);
} catch (CommandException ex) {
output.WriteLine(ex.Message);
} catch (CompilationErrorException ex) {
foreach (var diag in ex.Diagnostics) {
output.WriteLine(diag);
}
} catch (Exception ex) {
output.WriteLine(ex);
}
return output.ToString();
}
}
private static string ToCode(IEnumerable<string> args) =>
string.Join(" ", args).Replace('\'', '"').Replace(".,", ";");
[CommandLineFunctionality.CommandLineArgumentFunction("help", "csx")]
public static string Help(List<string> args) => WithErrorHandling(output => {
if (args.Count != 0) {
throw new CommandException("Usage: csx.help");
}
try {
Process.Start("https://github.com/int19h/csx/blob/master/README.md");
} catch (Exception) {
}
});
[CommandLineFunctionality.CommandLineArgumentFunction("list", "csx")]
public static string List(List<string> args) => WithErrorHandling(output => {
if (args.Count != 0) {
throw new CommandException("Usage: csx.list");
}
foreach (var path in Scripts.GetSearchPaths()) {
string[] fileNames;
try {
fileNames = Directory.GetFiles(path, "*.csx");
} catch (Exception) {
continue;
}
output.WriteLine($"@ {path}:");
foreach (var fileName in fileNames) {
var scriptName = Path.GetFileNameWithoutExtension(fileName);
output.WriteLine($" {scriptName}");
}
output.WriteLine();
}
});
[CommandLineFunctionality.CommandLineArgumentFunction("reset", "csx")]
public static string Reset(List<string> args) => WithErrorHandling(output => {
if (args.Count != 0) {
throw new CommandException("Usage: csx.reset");
}
var script = CSharpScript.Create("", Scripts.GetScriptOptions());
Scripts.IgnoreVisibility(script);
evalState = script.RunAsync().GetAwaiter().GetResult();
output.Write("Script state reset.");
});
[CommandLineFunctionality.CommandLineArgumentFunction("log_to", "csx")]
public static string LogTo(List<string> args) => WithErrorHandling(output => {
if (args.Count != 1) {
throw new CommandException("Usage: csx.log_to {<filename> | -}");
}
if (loggingTo is not null) {
ScriptGlobals.Log.RemoveWriter(loggingTo);
loggingTo.Dispose();
loggingTo = null;
}
var fileName = args[0];
if (fileName != "-") {
loggingTo = File.CreateText(fileName);
ScriptGlobals.Log.AddWriter(loggingTo);
}
});
private static void Eval(IEnumerable<string> args, TextWriter output) {
if (evalState == null) {
Reset(new());
if (evalState == null) {
throw new NullReferenceException();
}
}
var code = ToCode(args);
using (ScriptGlobals.Log.WithWriter(output)) {
var script = evalState.Script.ContinueWith(code);
Scripts.IgnoreVisibility(script);
evalState = script.RunFromAsync(evalState).GetAwaiter().GetResult();
}
output.Write(evalState.ReturnValue);
}
[CommandLineFunctionality.CommandLineArgumentFunction("eval", "csx")]
public static string Eval(List<string> args) => WithErrorHandling(output => {
if (args.Count < 1) {
throw new CommandException("Usage: csx.eval {<expression> | <statement>.,}");
}
Eval(args, output);
});
[CommandLineFunctionality.CommandLineArgumentFunction("dump", "csx")]
public static string Dump(List<string> args) => WithErrorHandling(output => {
if (args.Count < 1) {
throw new CommandException("Usage: csx.dump <expression>");
}
Eval(args.Prepend("Dump(").Append(")"), output);
});
[CommandLineFunctionality.CommandLineArgumentFunction("edit", "csx")]
public static string Edit(List<string> args) => WithErrorHandling(output => {
if (args.Count < 1) {
throw new CommandException("Usage: csx.edit <expression>");
}
Eval(args.Prepend("Edit(").Append(")"), output);
});
[CommandLineFunctionality.CommandLineArgumentFunction("run", "csx")]
public static string Run(List<string> args) => WithErrorHandling(output => {
if (args.Count < 1) {
throw new CommandException("Usage: csx.run <script>[.<function>]([<args>...])");
}
Eval(args.Prepend("Scripts."), output);
});
}
internal class CommandException : Exception {
public CommandException() {
}
public CommandException(string message) : base(message) {
}
public CommandException(string message, Exception innerException) : base(message, innerException) {
}
protected CommandException(SerializationInfo info, StreamingContext context) : base(info, context) {
}
}
}