-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathRepl.cs
224 lines (190 loc) · 6.57 KB
/
Repl.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.Spark.CSharp.Core;
using Microsoft.Spark.CSharp.Sql;
namespace Microsoft.Spark.CSharp
{
internal interface IoHandler
{
void Write(Object obj);
/// <summary>
/// Write result to underlying output stream.
/// </summary>
void WriteLine(Object obj);
/// <summary>
/// Write exception to underlying output stream
/// </summary>
/// <param name="e"></param>
void WriteException(Exception e);
/// <summary>
/// Read codes that will be executed. Current thread will be blocked if no input available.
/// </summary>
string ReadLine();
}
internal class ConsoleIoHandler : IoHandler
{
public void Write(object obj)
{
Console.Write(obj.ToString());
}
public void WriteLine(Object obj)
{
Console.WriteLine(obj);
}
/// <summary>
/// Diplay exception on Console
/// </summary>
public void WriteException(Exception e)
{
try
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(e.ToString());
}
finally
{
Console.ResetColor();
}
}
public string ReadLine()
{
return Console.ReadLine();
}
}
internal class Repl
{
private readonly IScriptEngine scriptEngine;
private readonly IoHandler ioHandler;
public Repl(IScriptEngine scriptEngine, IoHandler ioHandler)
{
this.scriptEngine = scriptEngine;
this.ioHandler = ioHandler;
}
public void Init()
{
scriptEngine.Execute(@"
using System;
using System.Collections.Generic;
using Microsoft.Spark.CSharp.Core;
using Microsoft.Spark.CSharp.Interop;
");
ioHandler.WriteLine("Spark context available as sc.");
ioHandler.WriteLine("SQL context available as sqlContext.");
ioHandler.WriteLine("Use :quit to exit.");
ioHandler.WriteLine("Type \":help\" for more information.");
}
public void Run()
{
var terminated = false;
while (true)
{
ioHandler.Write("> ");
var inputLines = new StringBuilder();
var cancelSubmission = false;
ScriptResult scriptResult = null;
while (true)
{
var line = ioHandler.ReadLine();
if (IsDirective(line))
{
ProcessDirective(line, ref terminated);
break;
}
inputLines.AppendLine(line);
scriptResult = scriptEngine.Execute(inputLines.ToString());
if (ScriptResult.Empty.Equals(scriptResult))
{
cancelSubmission = true;
break;
}
if (scriptResult.IsCompleteSubmission)
{
break;
}
ioHandler.Write(". ");
}
if (terminated) break;
if (cancelSubmission || scriptResult == null) continue;
ProcessExecutionResult(scriptResult);
}
}
internal bool IsDirective(string line)
{
return Regex.Match(line.Trim(), "^:\\S+").Success;
}
internal void ProcessDirective(string directive, ref bool terminated)
{
var verb = directive.Split(new[] {" "}, StringSplitOptions.RemoveEmptyEntries)[0];
switch (verb)
{
case ":quit": // quit
terminated = true;
break;
case ":load": // load DLL
LoadAssebmly(directive);
break;
case ":help": // display help message
Help();
break;
default:
ioHandler.WriteException(new Exception("Invalid directive." + verb));
break;
}
}
internal void ProcessExecutionResult(ScriptResult scriptResult)
{
if (scriptResult.CompileExceptionInfo != null)
{
ioHandler.WriteException(scriptResult.CompileExceptionInfo.SourceException);
}
else if (scriptResult.ExecuteExceptionInfo != null)
{
ioHandler.WriteException(scriptResult.ExecuteExceptionInfo.SourceException);
}
else if (scriptResult.ReturnValue != null)
{
ioHandler.WriteLine(scriptResult.ReturnValue);
}
}
internal void LoadAssebmly(string directive)
{
var match = Regex.Match(directive.Trim(), ":load\\s+\"(.*?)\"");
if (match.Success)
{
var assebmlyPath = match.Groups[1].Value;
if (scriptEngine.AddReference(assebmlyPath))
{
ioHandler.WriteLine("Loaded assebmly from " + assebmlyPath);
}
else
{
ioHandler.WriteLine("Failed to load assebmly from " + assebmlyPath);
}
}
else
{
ioHandler.WriteLine("[Error] Invalid :load directive.");
}
}
internal void Help()
{
const string helps = "Commands:\r\n :help\t\tDisplay help on available commands.\r\n :load\t\tLoad extra library to current execution context, e.g. :load \"myLib.dll\".\r\n :quit\t\tExit REPL.";
ioHandler.WriteLine(helps);
}
static void Main(string[] args)
{
SparkConf sparkConf = new SparkConf();
SparkContext sc = new SparkContext(sparkConf);
SqlContext sqlContext = new SqlContext(sc);
var scriptEngine = new RoslynScriptEngine(sc, sqlContext);
var repl = new Repl(scriptEngine, new ConsoleIoHandler());
repl.Init();
repl.Run();
scriptEngine.Close();
}
}
}