forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathptvsd_launcher.py
More file actions
96 lines (82 loc) · 2.66 KB
/
Copy pathptvsd_launcher.py
File metadata and controls
96 lines (82 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Python Tools for Visual Studio
# Copyright(c) Microsoft Corporation
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the License); you may not use
# this file except in compliance with the License. You may obtain a copy of the
# License at http://www.apache.org/licenses/LICENSE-2.0
#
# THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS
# OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY
# IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
# MERCHANTABLITY OR NON-INFRINGEMENT.
#
# See the Apache Version 2.0 License for specific language governing
# permissions and limitations under the License.
"""
Starts Debugging, expected to start with normal program
to start as first argument and directory to run from as
the second argument.
"""
__author__ = "Microsoft Corporation <ptvshelp@microsoft.com>"
__version__ = "3.2.0.0"
import os
import os.path
import sys
import traceback
# Arguments are:
# 1. Working directory.
# 2. VS debugger port to connect to.
# 3. GUID for the debug session.
# 4. Debug options (as list of names - see enum PythonDebugOptions).
# 5. '-g' to use the installed ptvsd package, rather than bundled one.
# 6. '-m' or '-c' to override the default run-as mode. [optional]
# 7. Startup script name.
# 8. Script arguments.
# change to directory we expected to start from
os.chdir(sys.argv[1])
port_num = int(sys.argv[2])
debug_id = sys.argv[3]
debug_options = set([opt.strip() for opt in sys.argv[4].split(',')])
del sys.argv[0:5]
# Use bundled ptvsd or not?
bundled_ptvsd = True
if sys.argv and sys.argv[0] == '-g':
bundled_ptvsd = False
del sys.argv[0]
# set run_as mode appropriately
run_as = 'script'
if sys.argv and sys.argv[0] == '-m':
run_as = 'module'
del sys.argv[0]
if sys.argv and sys.argv[0] == '-c':
run_as = 'code'
del sys.argv[0]
# preserve filename before we del sys
filename = sys.argv[0]
# fix sys.path to be the script file dir
sys.path[0] = ''
# Load the debugger package
try:
if bundled_ptvsd:
ptvs_lib_path = os.path.dirname(__file__)
sys.path.insert(0, ptvs_lib_path)
import ptvsd
import ptvsd.debugger as vspd
vspd.DONT_DEBUG.append(os.path.normcase(__file__))
except:
traceback.print_exc()
print('''
Internal error detected. Please copy the above traceback and report at
https://github.com/Microsoft/vscode-python/issues/new
Press Enter to close. . .''')
try:
raw_input()
except NameError:
input()
sys.exit(1)
finally:
if bundled_ptvsd:
sys.path.remove(ptvs_lib_path)
# and start debugging
vspd.debug(filename, port_num, debug_id, debug_options, run_as)