run.py 3.09 KB
Newer Older
Chui Tey's avatar
Chui Tey committed
1
import sys
2 3
import time
import socket
4

5 6
import boolcheck

7 8 9 10
import CallTips
import RemoteDebugger
import RemoteObjectBrowser
import StackViewer
Chui Tey's avatar
Chui Tey committed
11 12
import rpc

13 14
import __main__

Chui Tey's avatar
Chui Tey committed
15
def main():
16 17
    """Start the Python execution server in a subprocess

18 19 20
    In the Python subprocess, RPCServer is instantiated with handlerclass
    MyHandler, which inherits register/unregister methods from RPCHandler via
    the mix-in class SocketIO.
21

22 23 24 25 26 27 28 29 30
    When the RPCServer svr is instantiated, the TCPServer initialization
    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.
31 32

    """
Chui Tey's avatar
Chui Tey committed
33 34 35 36 37
    port = 8833
    if sys.argv[1:]:
        port = int(sys.argv[1])
    sys.argv[:] = [""]
    addr = ("localhost", port)
38
    for i in range(6):
39 40 41 42 43
        time.sleep(i)
        try:
            svr = rpc.RPCServer(addr, MyHandler)
            break
        except socket.error, err:
44
            if i < 3:
45 46 47 48 49 50 51
                print>>sys.__stderr__, ".. ",
            else:
                print>>sys.__stderr__,"\nPython subprocess socket error: "\
                                              + err[1] + ", retrying...."
    else:
        print>>sys.__stderr__, "\nConnection to Idle failed, exiting."
        sys.exit()
Chui Tey's avatar
Chui Tey committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
    svr.handle_request() # A single request only

class MyHandler(rpc.RPCHandler):

    def handle(self):
        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")
        rpc.RPCHandler.handle(self)

class Executive:

    def __init__(self, rpchandler):
67
        self.rpchandler = rpchandler
68
        self.locals = __main__.__dict__
69
        self.calltip = CallTips.CallTips()
Chui Tey's avatar
Chui Tey committed
70 71

    def runcode(self, code):
72
        exec code in self.locals
Chui Tey's avatar
Chui Tey committed
73

74
    def start_the_debugger(self, gui_adap_oid):
75 76 77 78 79
        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)
Chui Tey's avatar
Chui Tey committed
80

81 82 83
    def get_the_calltip(self, name):
        return self.calltip.fetch_tip(name)

Chui Tey's avatar
Chui Tey committed
84 85 86 87 88
    def stackviewer(self, flist_oid=None):
        if not hasattr(sys, "last_traceback"):
            return None
        flist = None
        if flist_oid is not None:
89
            flist = self.rpchandler.get_remote_proxy(flist_oid)
Chui Tey's avatar
Chui Tey committed
90 91 92 93 94
        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)