-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathdebug-thread.tsx
More file actions
187 lines (164 loc) · 6.3 KB
/
debug-thread.tsx
File metadata and controls
187 lines (164 loc) · 6.3 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
/********************************************************************************
* 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 WITH Classpath-exception-2.0
********************************************************************************/
import * as React from 'react';
import { Event, Emitter } 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 class DebugThread extends DebugThreadData implements TreeElement {
protected readonly onDidChangedEmitter = new Emitter<void>();
readonly onDidChanged: Event<void> = this.onDidChangedEmitter.event;
constructor(
readonly session: DebugSession
) {
super();
}
get id(): string {
return this.session.id + ':' + this.raw.id;
}
protected _currentFrame: DebugStackFrame | undefined;
get currentFrame(): DebugStackFrame | undefined {
return this._currentFrame;
}
set currentFrame(frame: DebugStackFrame | undefined) {
this._currentFrame = frame;
this.onDidChangedEmitter.fire(undefined);
}
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());
}
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[]>([]);
async fetchFrames(levels: number = 20): Promise<DebugStackFrame[]> {
return this.pendingFetch = this.pendingFetch.then(async () => {
try {
const start = this.frameCount;
const frames = await this.doFetchFrames(start, levels);
return this.doUpdateFrames(frames);
} catch (e) {
console.error(e);
return [];
}
});
}
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 {
this._frames.clear();
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 {
const reason = this.stoppedDetails && this.stoppedDetails.reason;
const status = this.stoppedDetails ? reason ? `Paused on ${reason}` : 'Paused' : 'Running';
return <div className='theia-debug-thread' title='Thread'>
<span className='label'>{this.raw.name}</span>
<span className='status'>{status}</span>
</div>;
}
}