15
14
from threading import Thread
15
from functools import partial
19
class Interrupt(Exception):
21
Exception.__init__(self, "Interrupted!")
23
class ExpiryTimer(object):
24
def __init__(self, idle):
26
signal.signal(signal.SIGALRM, partial(self.timeout))
29
signal.alarm(self.idle)
31
def start(self, time):
37
def timeout(self, signum, frame):
19
40
class StdinFromWeb(object):
20
41
def __init__(self, cmdQ, lineQ):
24
45
def readline(self):
27
46
self.cmdQ.put({"input":None})
28
48
ln = self.lineQ.get()
31
# Some of our 5 seconds may have elapsed, but never mind.
54
class StdoutToWeb(object):
55
def __init__(self, cmdQ, lineQ):
60
def write(self, stuff):
61
self.remainder = self.remainder + stuff
63
# if there's less than 128 bytes, buffer
64
if len(self.remainder) < 128:
67
# if there's lots, then send it in 1/2K blocks
68
while len(self.remainder) > 512:
69
blk = self.remainder[0:512]
70
self.cmdQ.put({"output":blk})
73
self.remainder = self.remainder[512:]
75
# Finally, split the remainder up into lines, and ship all the
76
# completed lines off to the server.
77
lines = self.remainder.split("\n")
78
self.remainder = lines[-1]
83
text = "\n".join(lines)
84
self.cmdQ.put({"output":text})
91
if len(self.remainder) > 0:
92
self.cmdQ.put({"output":self.remainder})
35
99
class PythonRunner(Thread):
36
100
def __init__(self, cmdQ, lineQ):
38
102
self.lineQ = lineQ
39
self.out = cStringIO.StringIO()
103
self.stdout = StdoutToWeb(self.cmdQ, self.lineQ)
40
104
Thread.__init__(self)
42
106
def execCmd(self, cmd):
44
108
sys.stdin = StdinFromWeb(self.cmdQ, self.lineQ)
109
sys.stdout = self.stdout
110
sys.stderr = self.stdout
48
111
res = eval(cmd, self.globs, self.locls)
50
self.cmdQ.put({"okay":(self.out.getvalue(),res)})
113
self.cmdQ.put({"okay":res})
51
114
self.curr_cmd = ''
52
self.out = cStringIO.StringIO()
53
115
except Exception, exc:
55
self.cmdQ.put({"exc":(self.out.getvalue(),str(exc))})
117
self.cmdQ.put({"exc":str(exc)})
56
118
self.curr_cmd = ''
57
self.out = cStringIO.StringIO()
122
self.globs['__builtins__'] = globals()['__builtins__']
61
125
compiler = codeop.CommandCompiler()
79
143
except Exception, exc:
81
self.cmdQ.put({"exc":(self.out.getvalue(),str(exc))})
145
self.cmdQ.put({"exc":str(exc)})
82
146
self.curr_cmd = ''
83
self.out = cStringIO.StringIO()
85
148
# throw away a partial command.
87
150
cmd = compile(ln['block'], "<web session>", 'exec');
89
152
except Exception, exc:
91
self.cmdQ.put({"exc":(self.out.getvalue(),str(exc))})
154
self.cmdQ.put({"exc":str(exc)})
92
155
self.curr_cmd = ''
93
self.out = cStringIO.StringIO()
97
self.globs['__builtins__'] = globals()['__builtins__']
102
158
if os.fork(): # launch child and...
115
171
lineQ = Queue.Queue()
116
172
interpThread = PythonRunner(cmdQ, lineQ)
174
# Default expiry time of 15 minutes
175
expiry = ExpiryTimer(15 * 60)
118
177
def initializer():
119
178
interpThread.setDaemon(True)
120
179
interpThread.start()
122
182
def dispatch_msg(msg):
123
184
lineQ.put({msg['cmd']:msg['text']})
124
185
return cmdQ.get()
126
187
if __name__ == "__main__":
127
188
port = int(sys.argv[1])
128
189
magic = sys.argv[2]
190
if len(sys.argv) >= 4:
192
os.chdir(sys.argv[3])
193
os.environ['HOME'] = sys.argv[3]
130
195
common.chat.start_server(port, magic, True, dispatch_msg, initializer)