-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebconsole.py
68 lines (57 loc) · 1.98 KB
/
webconsole.py
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
import collections
import code
import sys
import StringIO
class WebConsoleInterpreter(object):
def __init__(self, output_history=1000, command_history=100):
self._output_idx = 0
self._output = collections.deque(maxlen=output_history)
self._history = collections.deque(maxlen=command_history)
self.interpreter = code.InteractiveConsole(globals())
def _get_idx(self):
idx = self._output_idx
self._output_idx += 1
return idx
def get_history(self):
return list(self._history)
def get_output_lines(self, since_idx=0):
for record in list(self._output):
if record["idx"] >= since_idx:
yield record
def get_output(self, since_idx=0):
sio = StringIO.StringIO()
for record in self.get_output_lines(since_idx):
if record["type"] == "input":
sio.write(">>> {}\n".format(record["line"]))
else:
sio.write("{}\n".format(record["line"]))
return sio.getvalue()
def push(self, line):
output = StringIO.StringIO()
orig_stdout = sys.stdout
orig_stderr = sys.stderr
sys.stdout = sys.stderr = output
self.interpreter.push(line)
sys.stdout = orig_stdout
sys.stderr = orig_stderr
# record the results
self._history.append(line)
self._output.append({
"type": "input",
"idx": self._get_idx(),
"line": line
})
output.seek(0) # move back to beginning of buffer
for line in output.read().split('\n'):
idx = self._output_idx
self._output_idx += 1
self._output.append({
"type": "output",
"idx": self._get_idx(),
"line": line.strip("\r\n"),
})
if __name__ == "__main__":
console = WebConsoleInterpreter()
console.push("print 'hello'")
console.push("print 'world'")
print console.get_output()