[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.141.201.46: ~ $
"""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.

"""

import types
from idlelib import rpc
from idlelib import Debugger

debugging = 0

idb_adap_oid = "idb_adapter"
gui_adap_oid = "gui_adapter"

#=======================================
#
# In the PYTHON subprocess:

frametable = {}
dicttable = {}
codetable = {}
tracebacktable = {}

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

def wrap_info(info):
    "replace info[2], a traceback instance, by its ID"
    if info is None:
        return None
    else:
        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

class GUIProxy:

    def __init__(self, conn, gui_adap_oid):
        self.conn = conn
        self.oid = gui_adap_oid

    def interaction(self, message, frame, info=None):
        # calls rpc.SocketIO.remotecall() via run.MyHandler instance
        # pass frame and traceback object IDs instead of the objects themselves
        self.conn.remotecall(self.oid, "interaction",
                             (message, wrap_frame(frame), wrap_info(info)),
                             {})

class IdbAdapter:

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

    #----------called by an IdbProxy----------

    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):
        ##print >>sys.__stderr__, "get_stack(%r, %r)" % (fid, tbid)
        frame = frametable[fid]
        if tbid is None:
            tb = None
        else:
            tb = tracebacktable[tbid]
        stack, i = self.idb.get_stack(frame, tb)
        ##print >>sys.__stderr__, "get_stack() ->", stack
        stack = [(wrap_frame(frame), k) for frame, k in stack]
        ##print >>sys.__stderr__, "get_stack() ->", stack
        return stack, i

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

    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)
        return msg

    def clear_all_file_breaks(self, filename):
        msg = self.idb.clear_all_file_breaks(filename)
        return msg

    #----------called by a FrameProxy----------

    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

    #----------called by a CodeProxy----------

    def code_name(self, cid):
        code = codetable[cid]
        return code.co_name

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

    #----------called by a DictProxy----------

    def dict_keys(self, did):
        dict = dicttable[did]
        return dict.keys()

    def dict_item(self, did, key):
        dict = dicttable[did]
        value = dict[key]
        value = repr(value)
        return value

#----------end class IdbAdapter----------


def start_debugger(rpchandler, gui_adap_oid):
    """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
    RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
    objects and linking them together.  Register the IdbAdapter with the
    RPCServer to handle RPC requests from the split debugger GUI via the
    IdbProxy.

    """
    gui_proxy = GUIProxy(rpchandler, gui_adap_oid)
    idb = Debugger.Idb(gui_proxy)
    idb_adap = IdbAdapter(idb)
    rpchandler.register(idb_adap_oid, idb_adap)
    return idb_adap_oid


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


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] == "_":
            raise AttributeError, name
        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):
        if did in self._dictcache:
            return self._dictcache[did]
        dp = DictProxy(self._conn, self._oid, did)
        self._dictcache[did] = dp
        return dp


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,), {})


class DictProxy:

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

    def keys(self):
        return self._conn.remotecall(self._oid, "dict_keys", (self._did,), {})

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

    def __getattr__(self, name):
        ##print >>sys.__stderr__, "failed DictProxy.__getattr__:", name
        raise AttributeError, name


class GUIAdapter:

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

    def interaction(self, message, fid, modified_info):
        ##print "interaction: (%s, %s, %s)" % (message, fid, modified_info)
        frame = FrameProxy(self.conn, fid)
        self.gui.interaction(message, frame, modified_info)


class IdbProxy:

    def __init__(self, conn, shell, oid):
        self.oid = oid
        self.conn = conn
        self.shell = shell

    def call(self, methodname, *args, **kwargs):
        ##print "**IdbProxy.call %s %s %s" % (methodname, args, kwargs)
        value = self.conn.remotecall(self.oid, methodname, args, kwargs)
        ##print "**IdbProxy.call %s returns %r" % (methodname, value)
        return value

    def run(self, cmd, locals):
        # Ignores locals on purpose!
        seq = self.conn.asyncqueue(self.oid, "run", (cmd,), {})
        self.shell.interp.active_seq = seq

    def get_stack(self, frame, tbid):
        # passing frame and traceback IDs, not the objects themselves
        stack, i = self.call("get_stack", frame._fid, tbid)
        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")

    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)
        return msg

    def clear_all_file_breaks(self, filename):
        msg = self.call("clear_all_file_breaks", filename)
        return msg

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

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

    Register the GUIAdapter with the RPCClient to handle debugger GUI
    interaction requests coming from the subprocess debugger via the GUIProxy.

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

    """
    global idb_adap_oid

    idb_adap_oid = rpcclt.remotecall("exec", "start_the_debugger",\
                                   (gui_adap_oid,), {})
    idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
    gui = Debugger.Debugger(pyshell, idb_proxy)
    gui_adap = GUIAdapter(rpcclt, gui)
    rpcclt.register(gui_adap_oid, gui_adap)
    return gui

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
    is deleted in PyShell.close_remote_debugger().)

    """
    close_subprocess_debugger(rpcclt)
    rpcclt.unregister(gui_adap_oid)

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'

Filemanager

Name Type Size Permission Actions
Icons Folder 0755
.AutoComplete.pyo.40009 File 7.69 KB 0644
.AutoExpand.pyo.40009 File 2.5 KB 0644
.Bindings.pyo.40009 File 4.76 KB 0644
.CallTipWindow.pyo.40009 File 6.14 KB 0644
.CallTips.pyo.40009 File 10.14 KB 0644
.ClassBrowser.pyo.40009 File 8.95 KB 0644
.ColorDelegator.pyo.40009 File 8.71 KB 0644
.Debugger.pyo.40009 File 16.55 KB 0644
.Delegator.pyo.40009 File 1.58 KB 0644
.FormatParagraph.pyo.40009 File 4.69 KB 0644
.GrepDialog.pyo.40009 File 4.9 KB 0644
.HyperParser.pyo.40009 File 6.49 KB 0644
.IOBinding.pyo.40009 File 17.16 KB 0644
.IdleHistory.pyo.40009 File 3.13 KB 0644
.MultiStatusBar.pyo.40009 File 1.49 KB 0644
.ObjectBrowser.pyo.40009 File 6.56 KB 0644
.OutputWindow.pyo.40009 File 5.11 KB 0644
.ParenMatch.pyo.40009 File 6.82 KB 0644
.PathBrowser.pyo.40009 File 4.02 KB 0644
.RemoteObjectBrowser.pyo.40009 File 2.1 KB 0644
.ReplaceDialog.pyo.40009 File 6.32 KB 0644
.RstripExtension.pyo.40009 File 1.45 KB 0644
.ScriptBinding.pyo.40009 File 7.96 KB 0644
.ScrolledList.pyo.40009 File 6.03 KB 0644
.SearchDialog.pyo.40009 File 2.93 KB 0644
.SearchDialogBase.pyo.40009 File 5.37 KB 0644
.SearchEngine.pyo.40009 File 7.02 KB 0644
.StackViewer.pyo.40009 File 5.79 KB 0644
.ToolTip.pyo.40009 File 4.05 KB 0644
.TreeWidget.pyo.40009 File 17.48 KB 0644
.UndoDelegator.pyo.40009 File 12.27 KB 0644
.WidgetRedirector.pyo.40009 File 5.23 KB 0644
.WindowList.pyo.40009 File 3.55 KB 0644
.ZoomHeight.pyo.40009 File 1.61 KB 0644
.__init__.pyo.40009 File 127 B 0644
.aboutDialog.pyo.40009 File 6.63 KB 0644
.configDialog.pyo.40009 File 43.81 KB 0644
.configHandler.pyo.40009 File 26.83 KB 0644
.configHelpSourceEdit.pyo.40009 File 6.56 KB 0644
.configSectionNameDialog.pyo.40009 File 4.21 KB 0644
.dynOptionMenuWidget.pyo.40009 File 1.66 KB 0644
.idle.pyo.40009 File 406 B 0644
.idlever.pyo.40009 File 159 B 0644
.keybindingDialog.pyo.40009 File 12.05 KB 0644
.macosxSupport.pyo.40009 File 6.25 KB 0644
.tabbedpages.pyo.40009 File 17.67 KB 0644
.textView.pyo.40009 File 4.2 KB 0644
AutoComplete.py File 8.79 KB 0644
AutoComplete.pyc File 7.69 KB 0644
AutoComplete.pyo File 7.69 KB 0644
AutoCompleteWindow.py File 16.8 KB 0644
AutoCompleteWindow.pyc File 12.15 KB 0644
AutoCompleteWindow.pyo File 12.09 KB 0644
AutoExpand.py File 2.42 KB 0644
AutoExpand.pyc File 2.5 KB 0644
AutoExpand.pyo File 2.5 KB 0644
Bindings.py File 3.22 KB 0644
Bindings.pyc File 4.76 KB 0644
Bindings.pyo File 4.76 KB 0644
CREDITS.txt File 1.82 KB 0644
CallTipWindow.py File 5.98 KB 0644
CallTipWindow.pyc File 6.14 KB 0644
CallTipWindow.pyo File 6.14 KB 0644
CallTips.py File 7.75 KB 0644
CallTips.pyc File 10.14 KB 0644
CallTips.pyo File 10.14 KB 0644
ChangeLog File 55.07 KB 0644
ClassBrowser.py File 6.22 KB 0644
ClassBrowser.pyc File 8.95 KB 0644
ClassBrowser.pyo File 8.95 KB 0644
CodeContext.py File 8.15 KB 0644
CodeContext.pyc File 6.52 KB 0644
CodeContext.pyo File 6.47 KB 0644
ColorDelegator.py File 10.13 KB 0644
ColorDelegator.pyc File 8.71 KB 0644
ColorDelegator.pyo File 8.71 KB 0644
Debugger.py File 15.45 KB 0644
Debugger.pyc File 16.55 KB 0644
Debugger.pyo File 16.55 KB 0644
Delegator.py File 831 B 0644
Delegator.pyc File 1.58 KB 0644
Delegator.pyo File 1.58 KB 0644
EditorWindow.py File 63.29 KB 0644
EditorWindow.pyc File 55.13 KB 0644
EditorWindow.pyo File 55.03 KB 0644
FileList.py File 3.57 KB 0644
FileList.pyc File 3.86 KB 0644
FileList.pyo File 3.82 KB 0644
FormatParagraph.py File 5.66 KB 0644
FormatParagraph.pyc File 4.69 KB 0644
FormatParagraph.pyo File 4.69 KB 0644
GrepDialog.py File 3.96 KB 0644
GrepDialog.pyc File 4.9 KB 0644
GrepDialog.pyo File 4.9 KB 0644
HISTORY.txt File 10.08 KB 0644
HyperParser.py File 10.31 KB 0644
HyperParser.pyc File 6.49 KB 0644
HyperParser.pyo File 6.49 KB 0644
IOBinding.py File 20.69 KB 0644
IOBinding.pyc File 17.16 KB 0644
IOBinding.pyo File 17.16 KB 0644
IdleHistory.py File 3.07 KB 0644
IdleHistory.pyc File 3.13 KB 0644
IdleHistory.pyo File 3.13 KB 0644
MultiCall.py File 17.07 KB 0644
MultiCall.pyc File 15.55 KB 0644
MultiCall.pyo File 15.48 KB 0644
MultiStatusBar.py File 783 B 0644
MultiStatusBar.pyc File 1.49 KB 0644
MultiStatusBar.pyo File 1.49 KB 0644
NEWS.txt File 28.32 KB 0644
ObjectBrowser.py File 4.05 KB 0644
ObjectBrowser.pyc File 6.56 KB 0644
ObjectBrowser.pyo File 6.56 KB 0644
OutputWindow.py File 4.47 KB 0644
OutputWindow.pyc File 5.11 KB 0644
OutputWindow.pyo File 5.11 KB 0644
ParenMatch.py File 6.47 KB 0644
ParenMatch.pyc File 6.82 KB 0644
ParenMatch.pyo File 6.82 KB 0644
PathBrowser.py File 2.58 KB 0644
PathBrowser.pyc File 4.02 KB 0644
PathBrowser.pyo File 4.02 KB 0644
Percolator.py File 2.55 KB 0644
Percolator.pyc File 3.55 KB 0644
Percolator.pyo File 3.37 KB 0644
PyParse.py File 19.05 KB 0644
PyParse.pyc File 9.77 KB 0644
PyParse.pyo File 9.34 KB 0644
PyShell.py File 54.81 KB 0644
PyShell.pyc File 49.14 KB 0644
PyShell.pyo File 49.04 KB 0644
README.txt File 2.56 KB 0644
RemoteDebugger.py File 11.38 KB 0644
RemoteDebugger.pyc File 15.97 KB 0644
RemoteDebugger.pyo File 15.82 KB 0644
RemoteObjectBrowser.py File 942 B 0644
RemoteObjectBrowser.pyc File 2.1 KB 0644
RemoteObjectBrowser.pyo File 2.1 KB 0644
ReplaceDialog.py File 5.69 KB 0644
ReplaceDialog.pyc File 6.32 KB 0644
ReplaceDialog.pyo File 6.32 KB 0644
RstripExtension.py File 824 B 0644
RstripExtension.pyc File 1.45 KB 0644
RstripExtension.pyo File 1.45 KB 0644
ScriptBinding.py File 8.22 KB 0644
ScriptBinding.pyc File 7.96 KB 0644
ScriptBinding.pyo File 7.96 KB 0644
ScrolledList.py File 3.9 KB 0644
ScrolledList.pyc File 6.03 KB 0644
ScrolledList.pyo File 6.03 KB 0644
SearchDialog.py File 1.99 KB 0644
SearchDialog.pyc File 2.93 KB 0644
SearchDialog.pyo File 2.93 KB 0644
SearchDialogBase.py File 4.28 KB 0644
SearchDialogBase.pyc File 5.37 KB 0644
SearchDialogBase.pyo File 5.37 KB 0644
SearchEngine.py File 6.57 KB 0644
SearchEngine.pyc File 7.02 KB 0644
SearchEngine.pyo File 7.02 KB 0644
StackViewer.py File 3.77 KB 0644
StackViewer.pyc File 5.79 KB 0644
StackViewer.pyo File 5.79 KB 0644
TODO.txt File 8.28 KB 0644
ToolTip.py File 2.67 KB 0644
ToolTip.pyc File 4.05 KB 0644
ToolTip.pyo File 4.05 KB 0644
TreeWidget.py File 14.87 KB 0644
TreeWidget.pyc File 17.48 KB 0644
TreeWidget.pyo File 17.48 KB 0644
UndoDelegator.py File 10.04 KB 0644
UndoDelegator.pyc File 12.27 KB 0644
UndoDelegator.pyo File 12.27 KB 0644
WidgetRedirector.py File 4.37 KB 0644
WidgetRedirector.pyc File 5.23 KB 0644
WidgetRedirector.pyo File 5.23 KB 0644
WindowList.py File 2.42 KB 0644
WindowList.pyc File 3.55 KB 0644
WindowList.pyo File 3.55 KB 0644
ZoomHeight.py File 1.28 KB 0644
ZoomHeight.pyc File 1.61 KB 0644
ZoomHeight.pyo File 1.61 KB 0644
__init__.py File 37 B 0644
__init__.pyc File 127 B 0644
__init__.pyo File 127 B 0644
aboutDialog.py File 6.42 KB 0644
aboutDialog.pyc File 6.63 KB 0644
aboutDialog.pyo File 6.63 KB 0644
config-extensions.def File 2.72 KB 0644
config-highlight.def File 1.7 KB 0644
config-keys.def File 7.35 KB 0644
config-main.def File 2.45 KB 0644
configDialog.py File 52.23 KB 0644
configDialog.pyc File 43.81 KB 0644
configDialog.pyo File 43.81 KB 0644
configHandler.py File 28.68 KB 0644
configHandler.pyc File 26.83 KB 0644
configHandler.pyo File 26.83 KB 0644
configHelpSourceEdit.py File 6.52 KB 0644
configHelpSourceEdit.pyc File 6.56 KB 0644
configHelpSourceEdit.pyo File 6.56 KB 0644
configSectionNameDialog.py File 3.63 KB 0644
configSectionNameDialog.pyc File 4.21 KB 0644
configSectionNameDialog.pyo File 4.21 KB 0644
dynOptionMenuWidget.py File 1.27 KB 0644
dynOptionMenuWidget.pyc File 1.66 KB 0644
dynOptionMenuWidget.pyo File 1.66 KB 0644
extend.txt File 3.56 KB 0644
help.txt File 11.72 KB 0644
idle.py File 400 B 0644
idle.pyc File 406 B 0644
idle.pyo File 406 B 0644
idle.pyw File 664 B 0644
idlever.py File 23 B 0644
idlever.pyc File 159 B 0644
idlever.pyo File 159 B 0644
keybindingDialog.py File 12.12 KB 0644
keybindingDialog.pyc File 12.05 KB 0644
keybindingDialog.pyo File 12.05 KB 0644
macosxSupport.py File 6.08 KB 0644
macosxSupport.pyc File 6.25 KB 0644
macosxSupport.pyo File 6.25 KB 0644
rpc.py File 19.75 KB 0644
rpc.pyc File 21.26 KB 0644
rpc.pyo File 21.16 KB 0644
run.py File 11.54 KB 0644
run.pyc File 12.14 KB 0644
run.pyo File 12.08 KB 0644
tabbedpages.py File 17.76 KB 0644
tabbedpages.pyc File 17.67 KB 0644
tabbedpages.pyo File 17.67 KB 0644
textView.py File 3.46 KB 0644
textView.pyc File 4.2 KB 0644
textView.pyo File 4.2 KB 0644