当我们按F5启动python工程调试时,PTVS以下面的参数调用PythonWrapper:
在visualstudio_py_laucher.py中明确指明了此文件可以接受的参数含义:
# Arguments are:
# 1. Working directory.
# 2. VS debugger port to connect to.
# 3. GUID for the debug session.
# 4. Debug options (as integer - see enum PythonDebugOptions).
# 5. '-m' or '-c' to override the default run-as mode. [optional]
# 6. Startup script name.
# 7. Script arguments.
与交互窗口的修改一样,我们做同样的处理,所不同的是这里需要将要调试的Python文件复制到Linux主机上,而后相应修改文件路径。
经过此处理后,vs的python调试功能就可以正常使用了。
但当我们打开一个交互调试的窗口并输入语句时就悲剧了:
Unhandled exception in thread started by <bound methodDebuggerLoop.connect_to_repl_backend of<visualstudio_py_debugger.DebuggerLoop object at 0xb751d30c>>
Traceback (most recent call last):
File"/usr/local/lib/python2.7/socket.py", line 228, in meth
returngetattr(self._sock,name)(*args)
error: [Errno 111] Connection refused
Press Enter to continue . . .
想来除了调试用的端口外,PTVS还打开了一个交互调试用的端口。
查看visualstudio_py_debugger.py文件可以很容易发现此端口的痕迹:
defcommand_connect_repl(self):
port_num =read_int(self.conn)
_start_new_thread(self.connect_to_repl_backend, (port_num,))
同样在PythonWrapper中将此端口做个转发,搞定!