-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
debug-thread.tsx
292 lines (256 loc) · 10 KB
/
debug-thread.tsx
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
// *****************************************************************************
// Copyright (C) 2018 TypeFox and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import * as React from '@theia/core/shared/react';
import { CancellationTokenSource, Emitter, Event, nls } from '@theia/core';
import { DebugProtocol } from '@vscode/debugprotocol/lib/debugProtocol';
import { TreeElement } from '@theia/core/lib/browser/source-tree';
import { DebugStackFrame } from './debug-stack-frame';
import { DebugSession } from '../debug-session';
export type StoppedDetails = DebugProtocol.StoppedEvent['body'] & {
framesErrorMessage?: string
totalFrames?: number
};
export class DebugThreadData {
readonly raw: DebugProtocol.Thread;
readonly stoppedDetails: StoppedDetails | undefined;
}
export interface DebugExceptionInfo {
id?: string
description?: string
details?: DebugProtocol.ExceptionDetails
}
export class DebugThread extends DebugThreadData implements TreeElement {
protected readonly onDidChangedEmitter = new Emitter<void>();
readonly onDidChanged: Event<void> = this.onDidChangedEmitter.event;
protected readonly onDidFocusStackFrameEmitter = new Emitter<DebugStackFrame | undefined>();
get onDidFocusStackFrame(): Event<DebugStackFrame | undefined> {
return this.onDidFocusStackFrameEmitter.event;
}
constructor(
readonly session: DebugSession
) {
super();
}
get id(): string {
return this.session.id + ':' + this.raw.id;
}
get threadId(): number {
return this.raw.id;
}
protected _currentFrame: DebugStackFrame | undefined;
get currentFrame(): DebugStackFrame | undefined {
return this._currentFrame;
}
set currentFrame(frame: DebugStackFrame | undefined) {
if (this._currentFrame === frame) {
return;
}
this._currentFrame = frame;
this.onDidChangedEmitter.fire(undefined);
this.onDidFocusStackFrameEmitter.fire(frame);
}
get stopped(): boolean {
return !!this.stoppedDetails;
}
update(data: Partial<DebugThreadData>): void {
Object.assign(this, data);
if ('stoppedDetails' in data) {
this.clearFrames();
}
}
clear(): void {
this.update({
raw: this.raw,
stoppedDetails: undefined
});
}
continue(): Promise<DebugProtocol.ContinueResponse> {
return this.session.sendRequest('continue', this.toArgs());
}
stepOver(): Promise<DebugProtocol.NextResponse> {
return this.session.sendRequest('next', this.toArgs());
}
stepIn(): Promise<DebugProtocol.StepInResponse> {
return this.session.sendRequest('stepIn', this.toArgs());
}
stepOut(): Promise<DebugProtocol.StepOutResponse> {
return this.session.sendRequest('stepOut', this.toArgs());
}
pause(): Promise<DebugProtocol.PauseResponse> {
return this.session.sendRequest('pause', this.toArgs());
}
async getExceptionInfo(): Promise<DebugExceptionInfo | undefined> {
if (this.stoppedDetails && this.stoppedDetails.reason === 'exception') {
if (this.session.capabilities.supportsExceptionInfoRequest) {
const response = await this.session.sendRequest('exceptionInfo', this.toArgs());
return {
id: response.body.exceptionId,
description: response.body.description,
details: response.body.details
};
}
return {
description: this.stoppedDetails.text
};
}
return undefined;
}
get supportsTerminate(): boolean {
return !!this.session.capabilities.supportsTerminateThreadsRequest;
}
async terminate(): Promise<void> {
if (this.supportsTerminate) {
await this.session.sendRequest('terminateThreads', {
threadIds: [this.raw.id]
});
}
}
protected readonly _frames = new Map<number, DebugStackFrame>();
get frames(): IterableIterator<DebugStackFrame> {
return this._frames.values();
}
get topFrame(): DebugStackFrame | undefined {
return this.frames.next().value;
}
get frameCount(): number {
return this._frames.size;
}
protected pendingFetch = Promise.resolve<DebugStackFrame[]>([]);
protected _pendingFetchCount: number = 0;
protected pendingFetchCancel = new CancellationTokenSource();
async fetchFrames(levels: number = 20): Promise<DebugStackFrame[]> {
const cancel = this.pendingFetchCancel.token;
this._pendingFetchCount += 1;
return this.pendingFetch = this.pendingFetch.then(async () => {
try {
const start = this.frameCount;
const frames = await this.doFetchFrames(start, levels);
if (cancel.isCancellationRequested) {
return [];
}
return this.doUpdateFrames(frames);
} catch (e) {
console.error('fetchFrames failed:', e);
return [];
} finally {
if (!cancel.isCancellationRequested) {
this._pendingFetchCount -= 1;
}
}
});
}
get pendingFrameCount(): number {
return this._pendingFetchCount;
}
protected async doFetchFrames(startFrame: number, levels: number): Promise<DebugProtocol.StackFrame[]> {
try {
const response = await this.session.sendRequest('stackTrace',
this.toArgs<Partial<DebugProtocol.StackTraceArguments>>({ startFrame, levels })
);
if (this.stoppedDetails) {
this.stoppedDetails.totalFrames = response.body.totalFrames;
}
return response.body.stackFrames;
} catch (e) {
if (this.stoppedDetails) {
this.stoppedDetails.framesErrorMessage = e.message;
}
return [];
}
}
protected doUpdateFrames(frames: DebugProtocol.StackFrame[]): DebugStackFrame[] {
const result = new Set<DebugStackFrame>();
for (const raw of frames) {
const id = raw.id;
const frame = this._frames.get(id) || new DebugStackFrame(this, this.session);
this._frames.set(id, frame);
frame.update({ raw });
result.add(frame);
}
this.updateCurrentFrame();
return [...result.values()];
}
protected clearFrames(): void {
// Clear all frames
this._frames.clear();
// Cancel all request promises
this.pendingFetchCancel.cancel();
this.pendingFetchCancel = new CancellationTokenSource();
// Empty all current requests
this.pendingFetch = Promise.resolve([]);
this._pendingFetchCount = 0;
this.updateCurrentFrame();
}
protected updateCurrentFrame(): void {
const { currentFrame } = this;
const frameId = currentFrame && currentFrame.raw.id;
this.currentFrame = typeof frameId === 'number' &&
this._frames.get(frameId) ||
this._frames.values().next().value;
}
protected toArgs<T extends object>(arg?: T): { threadId: number } & T {
return Object.assign({}, arg, {
threadId: this.raw.id
});
}
render(): React.ReactNode {
return (
<div className="theia-debug-thread" title={nls.localizeByDefault('Session')}>
<span className="label">{this.raw.name}</span>
<span className="status">{this.threadStatus()}</span>
</div>
);
}
protected threadStatus(): string {
if (!this.stoppedDetails) {
return nls.localizeByDefault('Running');
}
const description = this.stoppedDetails.description;
if (description) {
// According to DAP we must show description as is. Translation is made by debug adapter
return description;
}
const reason = this.stoppedDetails.reason;
const localizedReason = this.getLocalizedReason(reason);
return reason
? nls.localizeByDefault('Paused on {0}', localizedReason)
: nls.localizeByDefault('Paused');
}
protected getLocalizedReason(reason: string | undefined): string {
switch (reason) {
case 'step':
return nls.localize('theia/debug/step', 'step');
case 'breakpoint':
return nls.localize('theia/debug/breakpoint', 'breakpoint');
case 'exception':
return nls.localize('theia/debug/exception', 'exception');
case 'pause':
return nls.localize('theia/debug/pause', 'pause');
case 'entry':
return nls.localize('theia/debug/entry', 'entry');
case 'goto':
return nls.localize('theia/debug/goto', 'goto');
case 'function breakpoint':
return nls.localize('theia/debug/functionBreakpoint', 'function breakpoint');
case 'data breakpoint':
return nls.localize('theia/debug/dataBreakpoint', 'data breakpoint');
case 'instruction breakpoint':
return nls.localize('theia/debug/instructionBreakpoint', 'instruction breakpoint');
default:
return '';
}
}
}