-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdebug-requests.ts
More file actions
144 lines (130 loc) · 4.73 KB
/
debug-requests.ts
File metadata and controls
144 lines (130 loc) · 4.73 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
/********************************************************************************
* Copyright (C) 2024 EclipseSource.
*
* 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
********************************************************************************/
// inspired by https://github.com/eclipse-theia/theia/blob/master/packages/debug/src/browser/debug-session-connection.ts
import type { DebugProtocol } from '@vscode/debugprotocol';
import type { DebugSession } from 'vscode';
export interface DebugRequestTypes {
evaluate: [
DebugProtocol.EvaluateArguments,
DebugProtocol.EvaluateResponse['body'],
];
initialize: [
DebugProtocol.InitializeRequestArguments,
DebugProtocol.InitializeResponse['body'],
];
readMemory: [
DebugProtocol.ReadMemoryArguments,
DebugProtocol.ReadMemoryResponse['body'],
];
scopes: [DebugProtocol.ScopesArguments, DebugProtocol.ScopesResponse['body']];
variables: [
DebugProtocol.VariablesArguments,
DebugProtocol.VariablesResponse['body'],
];
writeMemory: [
DebugProtocol.WriteMemoryArguments,
DebugProtocol.WriteMemoryResponse['body'],
];
dataBreakpointInfo: [
DebugProtocol.DataBreakpointInfoArguments,
DebugProtocol.DataBreakpointInfoResponse['body'],
];
setDataBreakpoints: [
DebugProtocol.SetDataBreakpointsArguments,
DebugProtocol.SetDataBreakpointsResponse['body'],
];
}
export interface DebugEvents {
memory: DebugProtocol.MemoryEvent;
continued: DebugProtocol.ContinuedEvent;
stopped: DebugProtocol.StoppedEvent;
output: DebugProtocol.OutputEvent;
}
export type DebugRequest<C, A> = Omit<
DebugProtocol.Request,
'command' | 'arguments'
> & { command: C; arguments: A };
export type DebugResponse<C, B> = Omit<
DebugProtocol.Response,
'command' | 'body'
> & { command: C; body: B };
export type DebugEvent<T> = DebugProtocol.Event & { body: T };
export async function sendRequest<K extends keyof DebugRequestTypes>(
session: DebugSession,
command: K,
args: DebugRequestTypes[K][0],
): Promise<DebugRequestTypes[K][1]> {
return session.customRequest(command, args);
}
export function isDebugVariable(
variable: DebugProtocol.Variable | unknown,
): variable is DebugProtocol.Variable {
const assumed = variable ? (variable as DebugProtocol.Variable) : undefined;
return (
typeof assumed?.name === 'string' && typeof assumed?.value === 'string'
);
}
export function isDebugScope(
scope: DebugProtocol.Scope | unknown,
): scope is DebugProtocol.Scope {
const assumed = scope ? (scope as DebugProtocol.Scope) : undefined;
return (
typeof assumed?.name === 'string' &&
typeof assumed?.variablesReference === 'number'
);
}
export function isDebugEvaluateArguments(
args: DebugProtocol.EvaluateArguments | unknown,
): args is DebugProtocol.EvaluateArguments {
const assumed = args ? (args as DebugProtocol.EvaluateArguments) : undefined;
return typeof assumed?.expression === 'string';
}
export function isDebugRequest<K extends keyof DebugRequestTypes>(
command: K,
message: unknown,
): message is DebugRequest<K, DebugRequestTypes[K][0]> {
return isDebugRequestType(message) && message.command === command;
}
export function isDebugResponse<K extends keyof DebugRequestTypes>(
command: K,
message: unknown,
): message is DebugResponse<K, DebugRequestTypes[K][1]> {
return isDebugResponseType(message) && message.command === command;
}
export function isDebugEvent<K extends keyof DebugEvents>(
event: K,
message: unknown,
): message is DebugEvents[K] {
return isDebugEventType(message) && message.event === event;
}
export function isDebugRequestType(
message: unknown,
): message is DebugProtocol.Request {
const assumed = message ? (message as DebugProtocol.Request) : undefined;
return !!assumed && assumed.type === 'request';
}
export function isDebugResponseType(
message: unknown,
): message is DebugProtocol.Response {
const assumed = message ? (message as DebugProtocol.Response) : undefined;
return !!assumed && assumed.type === 'response';
}
export function isDebugEventType(
message: unknown,
): message is DebugProtocol.Event {
const assumed = message ? (message as DebugProtocol.Event) : undefined;
return !!assumed && assumed.type === 'event';
}