forked from microsoft/vscode-python-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensionInit.ts
More file actions
222 lines (198 loc) · 9.91 KB
/
Copy pathextensionInit.ts
File metadata and controls
222 lines (198 loc) · 9.91 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
import {
debug,
DebugConfigurationProviderTriggerKind,
DebugTreeItem,
DebugVisualization,
DebugVisualizationContext,
languages,
ThemeIcon,
Uri,
window,
workspace,
} from 'vscode';
import { executeCommand, getConfiguration, registerCommand, startDebugging } from './common/vscodeapi';
import { DebuggerTypeName } from './constants';
import { DynamicPythonDebugConfigurationService } from './debugger/configuration/dynamicdebugConfigurationService';
import { IExtensionContext } from './common/types';
import { ChildProcessAttachEventHandler } from './debugger/hooks/childProcessAttachHandler';
import { ChildProcessAttachService } from './debugger/hooks/childProcessAttachService';
import { PythonDebugConfigurationService } from './debugger/configuration/debugConfigurationService';
import { AttachConfigurationResolver } from './debugger/configuration/resolvers/attach';
import { LaunchConfigurationResolver } from './debugger/configuration/resolvers/launch';
import { MultiStepInputFactory } from './common/multiStepInput';
import { sendTelemetryEvent } from './telemetry';
import { Commands } from './common/constants';
import { EventName } from './telemetry/constants';
import { getInterpreterDetails, runPythonExtensionCommand } from './common/python';
import { noop } from './common/utils/misc';
import { getDebugConfiguration } from './debugger/debugCommands';
import { PersistentStateFactory } from './common/persistentState';
import { DebugAdapterDescriptorFactory } from './debugger/adapter/factory';
import { DebugSessionLoggingFactory } from './debugger/adapter/logging';
import { OutdatedDebuggerPromptFactory } from './debugger/adapter/outdatedDebuggerPrompt';
import { AttachProcessProvider } from './debugger/attachQuickPick/provider';
import { AttachPicker } from './debugger/attachQuickPick/picker';
import { DebugSessionTelemetry } from './common/application/debugSessionTelemetry';
import { JsonLanguages, LaunchJsonCompletionProvider } from './debugger/configuration/launch.json/completionProvider';
import { LaunchJsonUpdaterServiceHelper } from './debugger/configuration/launch.json/updaterServiceHelper';
import { ignoreErrors } from './common/promiseUtils';
import { DebugVisualizers, pickArgsInput } from './common/utils/localize';
import { DebugPortAttributesProvider } from './debugger/debugPort/portAttributesProvider';
import { getConfigurationsByUri } from './debugger/configuration/launch.json/launchJsonReader';
import { DebugpySocketsHandler } from './debugger/hooks/debugpySocketsHandler';
import { openReportIssue } from './common/application/commands/reportIssueCommand';
import { buildApi } from './api';
import { IExtensionApi } from './apiTypes';
import { registerHexDebugVisualizationTreeProvider } from './debugger/visualizers/inlineHexDecoder';
import { PythonInlineValueProvider } from './debugger/inlineValue/pythonInlineValueProvider';
export async function registerDebugger(context: IExtensionContext): Promise<IExtensionApi> {
const childProcessAttachService = new ChildProcessAttachService();
const childProcessAttachEventHandler = new ChildProcessAttachEventHandler(childProcessAttachService);
context.subscriptions.push(
debug.onDidReceiveDebugSessionCustomEvent((e) => {
ignoreErrors(childProcessAttachEventHandler.handleCustomEvent(e));
}),
);
const attachConfigurationResolver = new AttachConfigurationResolver();
const launchConfigurationResolver = new LaunchConfigurationResolver();
const multiStepInputFactory = new MultiStepInputFactory();
const debugConfigProvider = new PythonDebugConfigurationService(
attachConfigurationResolver,
launchConfigurationResolver,
multiStepInputFactory,
);
context.subscriptions.push(debug.registerDebugConfigurationProvider(DebuggerTypeName, debugConfigProvider));
// register a dynamic configuration provider for 'debugpy' debug type
context.subscriptions.push(
debug.registerDebugConfigurationProvider(
DebuggerTypeName,
new DynamicPythonDebugConfigurationService(),
DebugConfigurationProviderTriggerKind.Dynamic,
),
);
context.subscriptions.push(registerCommand(Commands.ReportIssue, () => openReportIssue()));
context.subscriptions.push(
registerCommand(Commands.Debug_In_Terminal, async (file?: Uri) => {
sendTelemetryEvent(EventName.DEBUG_IN_TERMINAL_BUTTON);
const interpreter = await getInterpreterDetails(file);
if (!interpreter.path) {
runPythonExtensionCommand(Commands.TriggerEnvironmentSelection, file).then(noop, noop);
return;
}
const config = await getDebugConfiguration(file);
startDebugging(undefined, config);
}),
);
context.subscriptions.push(
registerCommand(Commands.Debug_Using_Launch_Config, async (file?: Uri) => {
sendTelemetryEvent(EventName.DEBUG_USING_LAUNCH_CONFIG_BUTTON);
const interpreter = await getInterpreterDetails(file);
if (!interpreter.path) {
runPythonExtensionCommand(Commands.TriggerEnvironmentSelection, file).then(noop, noop);
return;
}
const configs = await getConfigurationsByUri(file);
if (configs.length > 0) {
executeCommand('workbench.action.debug.selectandstart');
} else {
await executeCommand('debug.addConfiguration');
if (file) {
await window.showTextDocument(file);
}
executeCommand('workbench.action.debug.start', file?.toString());
}
}),
);
//PersistentStateFactory
const persistentState = new PersistentStateFactory(context.globalState, context.workspaceState);
persistentState.activate();
const attachProcessProvider = new AttachProcessProvider();
const attachPicker = new AttachPicker(attachProcessProvider);
context.subscriptions.push(registerCommand(Commands.PickLocalProcess, () => attachPicker.showQuickPick()));
context.subscriptions.push(
registerCommand(Commands.PickArguments, () => {
return window.showInputBox({ title: pickArgsInput.title, prompt: pickArgsInput.prompt });
}),
);
const debugAdapterDescriptorFactory = new DebugAdapterDescriptorFactory(persistentState);
const debugSessionLoggingFactory = new DebugSessionLoggingFactory();
const debuggerPromptFactory = new OutdatedDebuggerPromptFactory();
context.subscriptions.push(debug.registerDebugAdapterTrackerFactory(DebuggerTypeName, debugSessionLoggingFactory));
context.subscriptions.push(debug.registerDebugAdapterTrackerFactory(DebuggerTypeName, debuggerPromptFactory));
context.subscriptions.push(
debug.registerDebugAdapterDescriptorFactory(DebuggerTypeName, debugAdapterDescriptorFactory),
);
context.subscriptions.push(
debug.onDidStartDebugSession((debugSession) => {
const shouldTerminalFocusOnStart = getConfiguration('python', debugSession.workspaceFolder?.uri)?.terminal
.focusAfterLaunch;
if (shouldTerminalFocusOnStart) {
executeCommand('workbench.action.terminal.focus');
}
}),
);
context.subscriptions.push(debug.registerDebugAdapterTrackerFactory(DebuggerTypeName, new DebugSessionTelemetry()));
const launchJsonUpdaterServiceHelper = new LaunchJsonUpdaterServiceHelper(debugConfigProvider);
context.subscriptions.push(
registerCommand(
Commands.SelectDebugConfig,
launchJsonUpdaterServiceHelper.selectAndInsertDebugConfig,
launchJsonUpdaterServiceHelper,
),
);
const launchJsonCompletionProvider = new LaunchJsonCompletionProvider();
context.subscriptions.push(
languages.registerCompletionItemProvider({ language: JsonLanguages.json }, launchJsonCompletionProvider),
);
context.subscriptions.push(
languages.registerCompletionItemProvider(
{ language: JsonLanguages.jsonWithComments },
launchJsonCompletionProvider,
),
);
const debugPortAttributesProvider = new DebugPortAttributesProvider();
context.subscriptions.push(
workspace.registerPortAttributesProvider(
{ commandPattern: /extensions.ms-python.debugpy.*debugpy.(launcher|adapter)/ },
debugPortAttributesProvider,
),
);
const debugpySocketsHandler = new DebugpySocketsHandler(debugPortAttributesProvider);
context.subscriptions.push(
debug.onDidReceiveDebugSessionCustomEvent((e) => {
ignoreErrors(debugpySocketsHandler.handleCustomEvent(e));
}),
);
context.subscriptions.push(
debug.onDidTerminateDebugSession(() => {
debugPortAttributesProvider.resetPortAttribute();
}),
);
context.subscriptions.push(
debug.registerDebugVisualizationTreeProvider<
DebugTreeItem & { byte?: number; buffer: String; context: DebugVisualizationContext }
>('inlineHexDecoder', registerHexDebugVisualizationTreeProvider()),
);
context.subscriptions.push(
languages.registerInlineValuesProvider({ language: 'python' }, new PythonInlineValueProvider()),
);
context.subscriptions.push(
debug.registerDebugVisualizationProvider('inlineHexDecoder', {
provideDebugVisualization(_context, _token) {
const v = new DebugVisualization(DebugVisualizers.hexDecoder);
v.iconPath = new ThemeIcon('eye');
v.visualization = { treeId: 'inlineHexDecoder' };
return [v];
},
}),
);
executeCommand(
'setContext',
'dynamicPythonConfigAvailable',
window.activeTextEditor?.document.languageId === 'python',
);
return buildApi();
}