2002-05-26 10:36:41 -03:00
|
|
|
import sys
|
2002-07-25 21:06:42 -03:00
|
|
|
import time
|
|
|
|
import socket
|
2003-02-27 19:04:17 -04:00
|
|
|
import traceback
|
2003-03-22 15:40:19 -04:00
|
|
|
import threading
|
|
|
|
import Queue
|
2002-10-10 05:25:24 -03:00
|
|
|
|
2002-12-20 00:24:43 -04:00
|
|
|
import boolcheck
|
|
|
|
|
2002-10-10 05:25:24 -03:00
|
|
|
import CallTips
|
|
|
|
import RemoteDebugger
|
|
|
|
import RemoteObjectBrowser
|
|
|
|
import StackViewer
|
2002-05-26 10:36:41 -03:00
|
|
|
import rpc
|
2003-03-22 15:40:19 -04:00
|
|
|
import interrupt
|
2002-05-26 10:36:41 -03:00
|
|
|
|
2002-10-10 05:25:24 -03:00
|
|
|
import __main__
|
|
|
|
|
2003-03-22 15:40:19 -04:00
|
|
|
# Thread shared globals: Establish a queue between a subthread (which handles
|
|
|
|
# the socket) and the main thread (which runs user code), plus global
|
|
|
|
# completion and exit flags:
|
|
|
|
|
|
|
|
server = None # RPCServer instance
|
|
|
|
queue = Queue.Queue(0)
|
|
|
|
execution_finished = False
|
|
|
|
exit_requested = False
|
|
|
|
|
|
|
|
|
2002-05-26 10:36:41 -03:00
|
|
|
def main():
|
2002-07-25 21:06:42 -03:00
|
|
|
"""Start the Python execution server in a subprocess
|
|
|
|
|
2002-10-10 05:25:24 -03:00
|
|
|
In the Python subprocess, RPCServer is instantiated with handlerclass
|
|
|
|
MyHandler, which inherits register/unregister methods from RPCHandler via
|
|
|
|
the mix-in class SocketIO.
|
2002-07-25 21:06:42 -03:00
|
|
|
|
2003-03-22 15:40:19 -04:00
|
|
|
When the RPCServer 'server' is instantiated, the TCPServer initialization
|
2002-10-10 05:25:24 -03:00
|
|
|
creates an instance of run.MyHandler and calls its handle() method.
|
|
|
|
handle() instantiates a run.Executive object, passing it a reference to the
|
|
|
|
MyHandler object. That reference is saved as attribute rpchandler of the
|
|
|
|
Executive instance. The Executive methods have access to the reference and
|
|
|
|
can pass it on to entities that they command
|
|
|
|
(e.g. RemoteDebugger.Debugger.start_debugger()). The latter, in turn, can
|
|
|
|
call MyHandler(SocketIO) register/unregister methods via the reference to
|
|
|
|
register and unregister themselves.
|
2002-07-25 21:06:42 -03:00
|
|
|
|
|
|
|
"""
|
2003-03-22 15:40:19 -04:00
|
|
|
global queue, execution_finished, exit_requested
|
|
|
|
|
2002-05-26 10:36:41 -03:00
|
|
|
port = 8833
|
|
|
|
if sys.argv[1:]:
|
|
|
|
port = int(sys.argv[1])
|
|
|
|
sys.argv[:] = [""]
|
2003-03-22 15:40:19 -04:00
|
|
|
sockthread = threading.Thread(target=manage_socket,
|
|
|
|
name='SockThread',
|
|
|
|
args=(('localhost', port),))
|
|
|
|
sockthread.setDaemon(True)
|
|
|
|
sockthread.start()
|
|
|
|
while 1:
|
|
|
|
try:
|
|
|
|
if exit_requested:
|
|
|
|
sys.exit()
|
|
|
|
# XXX KBK 22Mar03 eventually check queue here!
|
|
|
|
pass
|
|
|
|
time.sleep(0.05)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
##execution_finished = True
|
|
|
|
continue
|
|
|
|
|
|
|
|
def manage_socket(address):
|
|
|
|
global server, exit_requested
|
|
|
|
|
2002-08-05 00:52:10 -03:00
|
|
|
for i in range(6):
|
2002-07-25 21:06:42 -03:00
|
|
|
time.sleep(i)
|
|
|
|
try:
|
2003-03-22 15:40:19 -04:00
|
|
|
server = rpc.RPCServer(address, MyHandler)
|
2002-07-25 21:06:42 -03:00
|
|
|
break
|
|
|
|
except socket.error, err:
|
2002-08-05 00:52:10 -03:00
|
|
|
if i < 3:
|
2002-07-25 21:06:42 -03:00
|
|
|
print>>sys.__stderr__, ".. ",
|
|
|
|
else:
|
|
|
|
print>>sys.__stderr__,"\nPython subprocess socket error: "\
|
|
|
|
+ err[1] + ", retrying...."
|
|
|
|
else:
|
|
|
|
print>>sys.__stderr__, "\nConnection to Idle failed, exiting."
|
2003-03-22 15:40:19 -04:00
|
|
|
exit_requested = True
|
|
|
|
server.handle_request() # A single request only
|
|
|
|
|
2002-05-26 10:36:41 -03:00
|
|
|
|
|
|
|
class MyHandler(rpc.RPCHandler):
|
|
|
|
|
|
|
|
def handle(self):
|
2003-03-22 15:40:19 -04:00
|
|
|
"""Override base method"""
|
2002-05-26 10:36:41 -03:00
|
|
|
executive = Executive(self)
|
|
|
|
self.register("exec", executive)
|
|
|
|
sys.stdin = self.get_remote_proxy("stdin")
|
|
|
|
sys.stdout = self.get_remote_proxy("stdout")
|
|
|
|
sys.stderr = self.get_remote_proxy("stderr")
|
2003-03-22 15:40:19 -04:00
|
|
|
rpc.RPCHandler.getresponse(self, myseq=None, wait=0.5)
|
|
|
|
|
2002-05-26 10:36:41 -03:00
|
|
|
|
|
|
|
class Executive:
|
|
|
|
|
|
|
|
def __init__(self, rpchandler):
|
2002-06-25 23:32:09 -03:00
|
|
|
self.rpchandler = rpchandler
|
2002-08-25 11:08:07 -03:00
|
|
|
self.locals = __main__.__dict__
|
2002-10-10 05:25:24 -03:00
|
|
|
self.calltip = CallTips.CallTips()
|
2002-05-26 10:36:41 -03:00
|
|
|
|
|
|
|
def runcode(self, code):
|
2003-03-22 15:40:19 -04:00
|
|
|
global queue, execution_finished
|
|
|
|
|
|
|
|
execution_finished = False
|
|
|
|
queue.put(code)
|
|
|
|
# dequeue and run in subthread
|
|
|
|
self.runcode_from_queue()
|
|
|
|
while not execution_finished:
|
|
|
|
time.sleep(0.05)
|
|
|
|
|
|
|
|
def runcode_from_queue(self):
|
|
|
|
global queue, execution_finished
|
|
|
|
|
|
|
|
# poll until queue has code object, using threads, just block?
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
code = queue.get(0)
|
|
|
|
break
|
|
|
|
except Queue.Empty:
|
|
|
|
time.sleep(0.05)
|
2003-02-27 19:04:17 -04:00
|
|
|
try:
|
|
|
|
exec code in self.locals
|
|
|
|
except:
|
2003-03-03 16:06:48 -04:00
|
|
|
self.flush_stdout()
|
2003-02-27 19:04:17 -04:00
|
|
|
efile = sys.stderr
|
|
|
|
typ, val, tb = info = sys.exc_info()
|
|
|
|
sys.last_type, sys.last_value, sys.last_traceback = info
|
|
|
|
tbe = traceback.extract_tb(tb)
|
2003-03-03 16:06:48 -04:00
|
|
|
print >>efile, 'Traceback (most recent call last):'
|
2003-02-27 19:04:17 -04:00
|
|
|
exclude = ("run.py", "rpc.py", "RemoteDebugger.py", "bdb.py")
|
|
|
|
self.cleanup_traceback(tbe, exclude)
|
|
|
|
traceback.print_list(tbe, file=efile)
|
|
|
|
lines = traceback.format_exception_only(typ, val)
|
|
|
|
for line in lines:
|
|
|
|
print>>efile, line,
|
2003-03-22 15:40:19 -04:00
|
|
|
execution_finished = True
|
|
|
|
else:
|
|
|
|
self.flush_stdout()
|
|
|
|
execution_finished = True
|
2003-03-03 16:06:48 -04:00
|
|
|
|
|
|
|
def flush_stdout(self):
|
|
|
|
try:
|
|
|
|
if sys.stdout.softspace:
|
|
|
|
sys.stdout.softspace = 0
|
|
|
|
sys.stdout.write("\n")
|
2003-03-11 18:55:56 -04:00
|
|
|
except (AttributeError, EOFError):
|
2003-03-03 16:06:48 -04:00
|
|
|
pass
|
2003-02-27 19:04:17 -04:00
|
|
|
|
|
|
|
def cleanup_traceback(self, tb, exclude):
|
|
|
|
"Remove excluded traces from beginning/end of tb; get cached lines"
|
|
|
|
orig_tb = tb[:]
|
|
|
|
while tb:
|
|
|
|
for rpcfile in exclude:
|
|
|
|
if tb[0][0].count(rpcfile):
|
|
|
|
break # found an exclude, break for: and delete tb[0]
|
|
|
|
else:
|
|
|
|
break # no excludes, have left RPC code, break while:
|
|
|
|
del tb[0]
|
|
|
|
while tb:
|
|
|
|
for rpcfile in exclude:
|
|
|
|
if tb[-1][0].count(rpcfile):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
del tb[-1]
|
|
|
|
if len(tb) == 0:
|
|
|
|
# exception was in IDLE internals, don't prune!
|
|
|
|
tb[:] = orig_tb[:]
|
|
|
|
print>>sys.stderr, "** IDLE Internal Exception: "
|
|
|
|
for i in range(len(tb)):
|
|
|
|
fn, ln, nm, line = tb[i]
|
|
|
|
if nm == '?':
|
|
|
|
nm = "-toplevel-"
|
|
|
|
if not line and fn.startswith("<pyshell#"):
|
|
|
|
line = self.rpchandler.remotecall('linecache', 'getline',
|
|
|
|
(fn, ln), {})
|
|
|
|
tb[i] = fn, ln, nm, line
|
2002-05-26 10:36:41 -03:00
|
|
|
|
2003-02-17 14:57:16 -04:00
|
|
|
def interrupt_the_server(self):
|
|
|
|
self.rpchandler.interrupted = True
|
2003-03-22 15:40:19 -04:00
|
|
|
##print>>sys.__stderr__, "** Interrupt main!"
|
|
|
|
interrupt.interrupt_main()
|
|
|
|
|
|
|
|
def shutdown_the_server(self):
|
|
|
|
global exit_requested
|
|
|
|
|
|
|
|
exit_requested = True
|
2003-02-17 14:57:16 -04:00
|
|
|
|
2002-06-16 00:32:24 -03:00
|
|
|
def start_the_debugger(self, gui_adap_oid):
|
2002-06-25 23:32:09 -03:00
|
|
|
return RemoteDebugger.start_debugger(self.rpchandler, gui_adap_oid)
|
|
|
|
|
|
|
|
def stop_the_debugger(self, idb_adap_oid):
|
|
|
|
"Unregister the Idb Adapter. Link objects and Idb then subject to GC"
|
|
|
|
self.rpchandler.unregister(idb_adap_oid)
|
2002-05-26 10:36:41 -03:00
|
|
|
|
2002-10-10 05:25:24 -03:00
|
|
|
def get_the_calltip(self, name):
|
|
|
|
return self.calltip.fetch_tip(name)
|
|
|
|
|
2002-05-26 10:36:41 -03:00
|
|
|
def stackviewer(self, flist_oid=None):
|
|
|
|
if not hasattr(sys, "last_traceback"):
|
|
|
|
return None
|
|
|
|
flist = None
|
|
|
|
if flist_oid is not None:
|
2002-06-25 23:32:09 -03:00
|
|
|
flist = self.rpchandler.get_remote_proxy(flist_oid)
|
2002-05-26 10:36:41 -03:00
|
|
|
tb = sys.last_traceback
|
|
|
|
while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
|
|
|
|
tb = tb.tb_next
|
|
|
|
item = StackViewer.StackTreeItem(flist, tb)
|
|
|
|
return RemoteObjectBrowser.remote_object_tree_item(item)
|