debugger_r.py 11.7 KB
Newer Older
Chui Tey's avatar
Chui Tey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
"""Support for remote Python debugging.

Some ASCII art to describe the structure:

       IN PYTHON SUBPROCESS          #             IN IDLE PROCESS
                                     #
                                     #        oid='gui_adapter'
                 +----------+        #       +------------+          +-----+
                 | GUIProxy |--remote#call-->| GUIAdapter |--calls-->| GUI |
+-----+--calls-->+----------+        #       +------------+          +-----+
| Idb |                               #                             /
+-----+<-calls--+------------+         #      +----------+<--calls-/
                | IdbAdapter |<--remote#call--| IdbProxy |
                +------------+         #      +----------+
                oid='idb_adapter'      #

The purpose of the Proxy and Adapter classes is to translate certain
arguments and return values that cannot be transported through the RPC
barrier, in particular frame and traceback objects.

"""

23
import types
24
from idlelib import debugger
Chui Tey's avatar
Chui Tey committed
25

26 27
debugging = 0

Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
28 29 30
idb_adap_oid = "idb_adapter"
gui_adap_oid = "gui_adapter"

31 32 33
#=======================================
#
# In the PYTHON subprocess:
Chui Tey's avatar
Chui Tey committed
34 35 36 37

frametable = {}
dicttable = {}
codetable = {}
38
tracebacktable = {}
Chui Tey's avatar
Chui Tey committed
39 40 41 42 43 44 45

def wrap_frame(frame):
    fid = id(frame)
    frametable[fid] = frame
    return fid

def wrap_info(info):
46
    "replace info[2], a traceback instance, by its ID"
Chui Tey's avatar
Chui Tey committed
47 48 49
    if info is None:
        return None
    else:
50 51 52 53 54 55
        traceback = info[2]
        assert isinstance(traceback, types.TracebackType)
        traceback_id = id(traceback)
        tracebacktable[traceback_id] = traceback
        modified_info = (info[0], info[1], traceback_id)
        return modified_info
Chui Tey's avatar
Chui Tey committed
56 57 58

class GUIProxy:

59
    def __init__(self, conn, gui_adap_oid):
Chui Tey's avatar
Chui Tey committed
60
        self.conn = conn
61
        self.oid = gui_adap_oid
Chui Tey's avatar
Chui Tey committed
62 63

    def interaction(self, message, frame, info=None):
64
        # calls rpc.SocketIO.remotecall() via run.MyHandler instance
65
        # pass frame and traceback object IDs instead of the objects themselves
Chui Tey's avatar
Chui Tey committed
66 67 68 69 70 71 72 73 74
        self.conn.remotecall(self.oid, "interaction",
                             (message, wrap_frame(frame), wrap_info(info)),
                             {})

class IdbAdapter:

    def __init__(self, idb):
        self.idb = idb

75 76
    #----------called by an IdbProxy----------

Chui Tey's avatar
Chui Tey committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    def set_step(self):
        self.idb.set_step()

    def set_quit(self):
        self.idb.set_quit()

    def set_continue(self):
        self.idb.set_continue()

    def set_next(self, fid):
        frame = frametable[fid]
        self.idb.set_next(frame)

    def set_return(self, fid):
        frame = frametable[fid]
        self.idb.set_return(frame)

    def get_stack(self, fid, tbid):
        frame = frametable[fid]
96 97 98 99
        if tbid is None:
            tb = None
        else:
            tb = tracebacktable[tbid]
Chui Tey's avatar
Chui Tey committed
100
        stack, i = self.idb.get_stack(frame, tb)
101
        stack = [(wrap_frame(frame2), k) for frame2, k in stack]
Chui Tey's avatar
Chui Tey committed
102 103 104 105 106 107
        return stack, i

    def run(self, cmd):
        import __main__
        self.idb.run(cmd, __main__.__dict__)

108 109 110 111 112 113
    def set_break(self, filename, lineno):
        msg = self.idb.set_break(filename, lineno)
        return msg

    def clear_break(self, filename, lineno):
        msg = self.idb.clear_break(filename, lineno)
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
114
        return msg
115

116 117
    def clear_all_file_breaks(self, filename):
        msg = self.idb.clear_all_file_breaks(filename)
118
        return msg
119

120 121
    #----------called by a FrameProxy----------

Chui Tey's avatar
Chui Tey committed
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
    def frame_attr(self, fid, name):
        frame = frametable[fid]
        return getattr(frame, name)

    def frame_globals(self, fid):
        frame = frametable[fid]
        dict = frame.f_globals
        did = id(dict)
        dicttable[did] = dict
        return did

    def frame_locals(self, fid):
        frame = frametable[fid]
        dict = frame.f_locals
        did = id(dict)
        dicttable[did] = dict
        return did

    def frame_code(self, fid):
        frame = frametable[fid]
        code = frame.f_code
        cid = id(code)
        codetable[cid] = code
        return cid

147 148
    #----------called by a CodeProxy----------

Chui Tey's avatar
Chui Tey committed
149 150 151 152 153 154 155 156
    def code_name(self, cid):
        code = codetable[cid]
        return code.co_name

    def code_filename(self, cid):
        code = codetable[cid]
        return code.co_filename

157 158
    #----------called by a DictProxy----------

Chui Tey's avatar
Chui Tey committed
159
    def dict_keys(self, did):
160 161 162 163 164 165 166
        raise NotImplemented("dict_keys not public or pickleable")
##         dict = dicttable[did]
##         return dict.keys()

    ### Needed until dict_keys is type is finished and pickealable.
    ### Will probably need to extend rpc.py:SocketIO._proxify at that time.
    def dict_keys_list(self, did):
Chui Tey's avatar
Chui Tey committed
167
        dict = dicttable[did]
168
        return list(dict.keys())
Chui Tey's avatar
Chui Tey committed
169 170 171 172

    def dict_item(self, did, key):
        dict = dicttable[did]
        value = dict[key]
173
        value = repr(value) ### can't pickle module 'builtins'
Chui Tey's avatar
Chui Tey committed
174 175
        return value

176 177 178
#----------end class IdbAdapter----------


179
def start_debugger(rpchandler, gui_adap_oid):
180 181 182
    """Start the debugger and its RPC link in the Python subprocess

    Start the subprocess side of the split debugger and set up that side of the
183
    RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
184 185 186
    objects and linking them together.  Register the IdbAdapter with the
    RPCServer to handle RPC requests from the split debugger GUI via the
    IdbProxy.
187 188

    """
189
    gui_proxy = GUIProxy(rpchandler, gui_adap_oid)
190
    idb = debugger.Idb(gui_proxy)
191
    idb_adap = IdbAdapter(idb)
192
    rpchandler.register(idb_adap_oid, idb_adap)
193
    return idb_adap_oid
Chui Tey's avatar
Chui Tey committed
194

195 196 197 198 199

#=======================================
#
# In the IDLE process:

Chui Tey's avatar
Chui Tey committed
200 201 202 203 204 205 206 207 208 209 210

class FrameProxy:

    def __init__(self, conn, fid):
        self._conn = conn
        self._fid = fid
        self._oid = "idb_adapter"
        self._dictcache = {}

    def __getattr__(self, name):
        if name[:1] == "_":
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
211
            raise AttributeError(name)
Chui Tey's avatar
Chui Tey committed
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
        if name == "f_code":
            return self._get_f_code()
        if name == "f_globals":
            return self._get_f_globals()
        if name == "f_locals":
            return self._get_f_locals()
        return self._conn.remotecall(self._oid, "frame_attr",
                                     (self._fid, name), {})

    def _get_f_code(self):
        cid = self._conn.remotecall(self._oid, "frame_code", (self._fid,), {})
        return CodeProxy(self._conn, self._oid, cid)

    def _get_f_globals(self):
        did = self._conn.remotecall(self._oid, "frame_globals",
                                    (self._fid,), {})
        return self._get_dict_proxy(did)

    def _get_f_locals(self):
        did = self._conn.remotecall(self._oid, "frame_locals",
                                    (self._fid,), {})
        return self._get_dict_proxy(did)

    def _get_dict_proxy(self, did):
236
        if did in self._dictcache:
Chui Tey's avatar
Chui Tey committed
237 238 239 240 241
            return self._dictcache[did]
        dp = DictProxy(self._conn, self._oid, did)
        self._dictcache[did] = dp
        return dp

242

Chui Tey's avatar
Chui Tey committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
class CodeProxy:

    def __init__(self, conn, oid, cid):
        self._conn = conn
        self._oid = oid
        self._cid = cid

    def __getattr__(self, name):
        if name == "co_name":
            return self._conn.remotecall(self._oid, "code_name",
                                         (self._cid,), {})
        if name == "co_filename":
            return self._conn.remotecall(self._oid, "code_filename",
                                         (self._cid,), {})

258

Chui Tey's avatar
Chui Tey committed
259 260 261 262 263 264 265
class DictProxy:

    def __init__(self, conn, oid, did):
        self._conn = conn
        self._oid = oid
        self._did = did

266 267 268 269
##    def keys(self):
##        return self._conn.remotecall(self._oid, "dict_keys", (self._did,), {})

    # 'temporary' until dict_keys is a pickleable built-in type
Chui Tey's avatar
Chui Tey committed
270
    def keys(self):
271 272
        return self._conn.remotecall(self._oid,
                                     "dict_keys_list", (self._did,), {})
Chui Tey's avatar
Chui Tey committed
273 274 275 276 277 278

    def __getitem__(self, key):
        return self._conn.remotecall(self._oid, "dict_item",
                                     (self._did, key), {})

    def __getattr__(self, name):
279
        ##print("*** Failed DictProxy.__getattr__:", name)
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
280
        raise AttributeError(name)
Chui Tey's avatar
Chui Tey committed
281

282

283
class GUIAdapter:
Chui Tey's avatar
Chui Tey committed
284 285 286 287 288

    def __init__(self, conn, gui):
        self.conn = conn
        self.gui = gui

289
    def interaction(self, message, fid, modified_info):
290
        ##print("*** Interaction: (%s, %s, %s)" % (message, fid, modified_info))
Chui Tey's avatar
Chui Tey committed
291
        frame = FrameProxy(self.conn, fid)
292
        self.gui.interaction(message, frame, modified_info)
Chui Tey's avatar
Chui Tey committed
293

294

Chui Tey's avatar
Chui Tey committed
295 296
class IdbProxy:

Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
297
    def __init__(self, conn, shell, oid):
Chui Tey's avatar
Chui Tey committed
298 299
        self.oid = oid
        self.conn = conn
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
300
        self.shell = shell
Chui Tey's avatar
Chui Tey committed
301 302

    def call(self, methodname, *args, **kwargs):
303
        ##print("*** IdbProxy.call %s %s %s" % (methodname, args, kwargs))
Chui Tey's avatar
Chui Tey committed
304
        value = self.conn.remotecall(self.oid, methodname, args, kwargs)
305
        ##print("*** IdbProxy.call %s returns %r" % (methodname, value))
Chui Tey's avatar
Chui Tey committed
306 307 308 309
        return value

    def run(self, cmd, locals):
        # Ignores locals on purpose!
310
        seq = self.conn.asyncqueue(self.oid, "run", (cmd,), {})
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
311
        self.shell.interp.active_seq = seq
Chui Tey's avatar
Chui Tey committed
312

313 314 315
    def get_stack(self, frame, tbid):
        # passing frame and traceback IDs, not the objects themselves
        stack, i = self.call("get_stack", frame._fid, tbid)
Chui Tey's avatar
Chui Tey committed
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
        stack = [(FrameProxy(self.conn, fid), k) for fid, k in stack]
        return stack, i

    def set_continue(self):
        self.call("set_continue")

    def set_step(self):
        self.call("set_step")

    def set_next(self, frame):
        self.call("set_next", frame._fid)

    def set_return(self, frame):
        self.call("set_return", frame._fid)

    def set_quit(self):
        self.call("set_quit")

334 335 336 337 338 339
    def set_break(self, filename, lineno):
        msg = self.call("set_break", filename, lineno)
        return msg

    def clear_break(self, filename, lineno):
        msg = self.call("clear_break", filename, lineno)
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
340
        return msg
341

342 343
    def clear_all_file_breaks(self, filename):
        msg = self.call("clear_all_file_breaks", filename)
344
        return msg
345

346
def start_remote_debugger(rpcclt, pyshell):
347 348
    """Start the subprocess debugger, initialize the debugger GUI and RPC link

349 350
    Request the RPCServer start the Python subprocess debugger and link.  Set
    up the Idle side of the split debugger by instantiating the IdbProxy,
351
    debugger GUI, and debugger GUIAdapter objects and linking them together.
352

353 354
    Register the GUIAdapter with the RPCClient to handle debugger GUI
    interaction requests coming from the subprocess debugger via the GUIProxy.
355 356 357 358 359

    The IdbAdapter will pass execution and environment requests coming from the
    Idle debugger GUI to the subprocess debugger via the IdbProxy.

    """
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
360 361
    global idb_adap_oid

362
    idb_adap_oid = rpcclt.remotecall("exec", "start_the_debugger",\
363
                                   (gui_adap_oid,), {})
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
364
    idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
365
    gui = debugger.Debugger(pyshell, idb_proxy)
366 367
    gui_adap = GUIAdapter(rpcclt, gui)
    rpcclt.register(gui_adap_oid, gui_adap)
Chui Tey's avatar
Chui Tey committed
368
    return gui
369 370 371 372 373 374 375

def close_remote_debugger(rpcclt):
    """Shut down subprocess debugger and Idle side of debugger RPC link

    Request that the RPCServer shut down the subprocess debugger and link.
    Unregister the GUIAdapter, which will cause a GC on the Idle process
    debugger and RPC link objects.  (The second reference to the debugger GUI
376
    is deleted in pyshell.close_remote_debugger().)
377

378
    """
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
379
    close_subprocess_debugger(rpcclt)
380
    rpcclt.unregister(gui_adap_oid)
Kurt B. Kaiser's avatar
Kurt B. Kaiser committed
381 382 383 384 385 386 387 388

def close_subprocess_debugger(rpcclt):
    rpcclt.remotecall("exec", "stop_the_debugger", (idb_adap_oid,), {})

def restart_subprocess_debugger(rpcclt):
    idb_adap_oid_ret = rpcclt.remotecall("exec", "start_the_debugger",\
                                         (gui_adap_oid,), {})
    assert idb_adap_oid_ret == idb_adap_oid, 'Idb restarted with different oid'