forked from dimven/NavisPythonShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScriptOutputStream.cs
218 lines (194 loc) · 7.2 KB
/
ScriptOutputStream.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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows.Forms;
using IronPython.Runtime.Exceptions;
using Microsoft.Scripting.Hosting;
namespace NavisPythonShell.NpsRuntime
{
/// <summary>
/// A stream to write output to...
/// This can be passed into the python interpreter to render all output to.
/// Only a minimal subset is actually implemented - this is all we really
/// expect to use.
/// </summary>
public class ScriptOutputStream: Stream
{
private readonly ScriptOutput _gui;
private readonly ScriptEngine _engine;
private int _bomCharsLeft; // we want to get rid of pesky UTF8-BOM-Chars on write
private readonly Queue<MemoryStream> _completedLines; // one memorystream per line of input
private MemoryStream _inputBuffer;
public ScriptOutputStream(ScriptOutput gui, ScriptEngine engine)
{
_gui = gui;
_engine = engine;
_gui.txtStdOut.KeyPress += KeyPressEventHandler;
_gui.txtStdOut.KeyDown += KeyDownEventHandler;
//_gui.Closing += ClosingEventHandler;
//_gui.Closed += ClosedEventHandler;
_gui.txtStdOut.Focus();
_completedLines = new Queue<MemoryStream>();
_inputBuffer = new MemoryStream();
_bomCharsLeft = 3; //0xef, 0xbb, 0xbf for UTF-8 (see http://en.wikipedia.org/wiki/Byte_order_mark#Representations_of_byte_order_marks_by_encoding)
}
void ClosedEventHandler(object sender, EventArgs e)
{
_engine.Runtime.Shutdown();
_completedLines.Enqueue(new MemoryStream());
}
/// <summary>
/// Terminate reading from STDIN.
/// FIXME: this doesn't work!
/// </summary>
private void ClosingEventHandler(object sender, System.ComponentModel.CancelEventArgs e)
{
_engine.Runtime.Shutdown();
_completedLines.Enqueue(new MemoryStream());
}
/// <summary>
/// Complete a line when the enter key is pressed. Also
/// try to emulate a nice control window. This is going to be a big gigantic pile
/// of ifs, sigh.
/// </summary>
void KeyDownEventHandler(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Return)
{
var line = _inputBuffer;
var newLine = new byte[] {/*0x0d,*/ 0x0a};
line.Write(newLine, 0, newLine.Length); // append new-line
line.Seek(0, SeekOrigin.Begin); // rewind the line for later reading...
_completedLines.Enqueue(line);
_inputBuffer = new MemoryStream();
}
else if (e.KeyCode == Keys.Back || e.KeyCode == Keys.Left)
{
// remove last character from input buffer
if (_inputBuffer.Position > 0)
{
var line = new MemoryStream();
line.Write(_inputBuffer.GetBuffer(), 0, (int)(_inputBuffer.Position - 1));
_inputBuffer = line;
_gui.txtStdOut.Text = _gui.txtStdOut.Text.Substring(0, _gui.txtStdOut.Text.Length - 1);
_gui.txtStdOut.SelectionStart = _gui.txtStdOut.Text.Length;
_gui.txtStdOut.ScrollToCaret();
}
// do not pass backspace / left on to txtStdOut
e.Handled = true;
}
else if (e.KeyCode == Keys.Right)
{
// do not move right ever...
e.Handled = true;
}
}
/// <summary>
/// Stash away any printable characters for later...
/// </summary>
void KeyPressEventHandler(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar))
{
var bytes = Encoding.UTF8.GetBytes(new[] {e.KeyChar});
_inputBuffer.Write(bytes, 0, bytes.Length);
_gui.txtStdOut.Focus();
}
else
{
if (e.KeyChar == '\r')
{
// user pressed enter
_gui.txtStdOut.Text += "\r\n";
_gui.txtStdOut.SelectionStart = _gui.txtStdOut.Text.Length;
_gui.txtStdOut.Focus();
}
// pretend we have handled this key (so using arrows does not confuse the user)
e.Handled = true;
}
}
/// <summary>
/// Append the text in the buffer to gui.txtStdOut
/// </summary>
public override void Write(byte[] buffer, int offset, int count)
{
lock (this)
{
if (_gui.IsDisposed)
{
return;
}
while (_bomCharsLeft > 0 && count > 0)
{
_bomCharsLeft--;
count--;
offset++;
}
var actualBuffer = new byte[count];
Array.Copy(buffer, offset, actualBuffer, 0, count);
var text = Encoding.UTF8.GetString(actualBuffer);
Debug.WriteLine(text);
_gui.BeginInvoke((Action)delegate()
{
_gui.txtStdOut.AppendText(text);
_gui.txtStdOut.SelectionStart = _gui.txtStdOut.Text.Length;
_gui.txtStdOut.ScrollToCaret();
});
Application.DoEvents();
}
}
public override void Flush()
{
}
public override long Seek(long offset, SeekOrigin origin)
{
throw new NotImplementedException();
}
public override void SetLength(long value)
{
throw new NotImplementedException();
}
/// <summary>
/// Read from the _inputBuffer, block until a new line has been entered...
/// </summary>
public override int Read(byte[] buffer, int offset, int count)
{
while (_completedLines.Count < 1)
{
if (_gui.Visible == false)
{
throw new EndOfStreamException();
}
// wait for user to complete a line
Application.DoEvents();
Thread.Sleep(10);
}
var line = _completedLines.Dequeue();
return line.Read(buffer, offset, count);
}
public override bool CanRead
{
get { return !_gui.IsDisposed; }
}
public override bool CanSeek
{
get { return false; }
}
public override bool CanWrite
{
get { return true; }
}
public override long Length
{
get { return _gui.txtStdOut.Text.Length; }
}
public override long Position
{
get { return 0; }
set { }
}
}
}