-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathextensionInit.ts
More file actions
276 lines (247 loc) · 12.2 KB
/
extensionInit.ts
File metadata and controls
276 lines (247 loc) · 12.2 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
import {
commands,
ConfigurationChangeEvent,
debug,
DebugConfigurationProviderTriggerKind,
DebugTreeItem,
DebugVisualization,
DebugVisualizationContext,
Disposable,
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';
import { traceLog } from './common/log/logging';
import { registerNoConfigDebug } from './noConfigDebugInit';
import { OnErrorsActions, resolveOnErrorsAction } from './common/onErrorsAction';
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) => {
const action = await resolveOnErrorsAction();
switch (action) {
case OnErrorsActions.showErrors:
await commands.executeCommand('workbench.panel.markers.view.focus');
return;
case OnErrorsActions.abort:
return;
}
traceLog("Debugging using the editor button 'Debug in terminal'");
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) => {
const action = await resolveOnErrorsAction();
switch (action) {
case OnErrorsActions.showErrors:
await commands.executeCommand('workbench.panel.markers.view.focus');
return;
case OnErrorsActions.abort:
return;
}
traceLog("Debugging using the editor button 'Debug using the launch.json'");
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()),
);
let registerInlineValuesProviderDisposable: Disposable;
const showInlineValues = getConfiguration('debugpy').get<boolean>('showPythonInlineValues', false);
if (showInlineValues) {
registerInlineValuesProviderDisposable = languages.registerInlineValuesProvider(
{ language: 'python' },
new PythonInlineValueProvider(),
);
context.subscriptions.push(registerInlineValuesProviderDisposable);
}
context.subscriptions.push(
workspace.onDidChangeConfiguration((event: ConfigurationChangeEvent) => {
if (event.affectsConfiguration('debugpy.showPythonInlineValues')) {
const showInlineValues = getConfiguration('debugpy').get<boolean>('showPythonInlineValues', false);
if (!showInlineValues) {
registerInlineValuesProviderDisposable.dispose();
} else {
registerInlineValuesProviderDisposable = languages.registerInlineValuesProvider(
{ language: 'python' },
new PythonInlineValueProvider(),
);
context.subscriptions.push(registerInlineValuesProviderDisposable);
}
}
}),
);
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',
);
context.subscriptions.push(
await registerNoConfigDebug(context.environmentVariableCollection, context.extensionPath),
);
return buildApi();
}