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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
use serde::{Deserialize, Serialize};
use crate::types::*;
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
pub struct Response {
pub request_seq: i64,
pub success: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", flatten)]
pub body: Option<ResponseBody>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase", tag = "command", content = "body")]
pub enum ResponseBody {
Initialize(InitializeResponse),
ConfigurationDone,
Launch,
Attach,
Restart,
Disconnect,
Terminate,
BreakpointLocations(BreakpointLocationsResponse),
SetBreakpoints(SetBreakpointsResponse),
SetFunctionBreakpoints(SetFunctionBreakpointsResponse),
SetExceptionBreakpoints(SetExceptionBreakpointsResponse),
DataBreakpointInfo(DataBreakpointInfoResponse),
SetInstructionBreakpoints(SetInstructionBreakpointsResponse),
Continue(ContinueResponse),
Next,
StepIn,
StepOut,
StepBack,
ReverseContinue,
RestartFrame,
Goto,
Pause,
StackTrace(StackTraceResponse),
Scopes(ScopesResponse),
Variables(VariablesResponse),
SetVariable(SetVariableResponse),
Source(SourceResponse),
Threads(ThreadsResponse),
TerminateThreads,
Modules(ModulesResponse),
LoadedSources(LoadedSourcesResponse),
Evaluate(EvaluateResponse),
SetExpression(SetExpressionResponse),
StepInTargets(StepInTargetsResponse),
GotoTargets(GotoTargetsResponse),
Completions(CompletionsResponse),
ExceptionInfo(ExceptionInfoResponse),
ReadMemory(ReadMemoryResponse),
WriteMemory(WriteMemoryResponse),
Disassemble(DisassembleResponse),
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct InitializeResponse {
/**
* The capabilities of this debug adapter.
*/
pub capabilities: Capabilities,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BreakpointLocationsResponse {
/**
* Sorted set of possible breakpoint locations.
*/
pub breakpoints: Vec<BreakpointLocation>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetBreakpointsResponse {
/**
* Information about the breakpoints.
* The array elements are in the same order as the elements of the
* 'breakpoints' (or the deprecated 'lines') array in the arguments.
*/
pub breakpoints: Vec<Breakpoint>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetFunctionBreakpointsResponse {
/**
* Information about the breakpoints. The array elements correspond to the
* elements of the 'breakpoints' array.
*/
pub breakpoints: Vec<Breakpoint>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetExceptionBreakpointsResponse {
/**
* Information about the exception breakpoints or filters.
* The breakpoints returned are in the same order as the elements of the
* 'filters', 'filterOptions', 'exceptionOptions' arrays in the arguments.
* If both 'filters' and 'filterOptions' are given, the returned array must
* start with 'filters' information first, followed by 'filterOptions'
* information.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub breakpoints: Option<Vec<Breakpoint>>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DataBreakpointInfoResponse {
/**
* An identifier for the data on which a data breakpoint can be registered
* with the setDataBreakpoints request or null if no data breakpoint is
* available.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub data_id: Option<String>,
/**
* UI String that describes on what data the breakpoint is set on or why a
* data breakpoint is not available.
*/
pub description: String,
/**
* Optional attribute listing the available access types for a potential
* data breakpoint. A UI frontend could surface this information.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub access_types: Option<Vec<DataBreakpointAccessType>>,
/**
* Optional attribute indicating that a potential data breakpoint could be
* persisted across sessions.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub can_persist: Option<bool>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetDataBreakpointsResponse {
/**
* Information about the data breakpoints. The array elements correspond to
* the elements of the input argument 'breakpoints' array.
*/
pub breakpoints: Vec<Breakpoint>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetInstructionBreakpointsResponse {
/**
* Information about the breakpoints. The array elements correspond to the
* elements of the 'breakpoints' array.
*/
pub breakpoints: Vec<Breakpoint>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ContinueResponse {
/**
* The value true (or a missing property) signals to the client that all
* threads have been resumed. The value false must be returned if not all
* threads were resumed.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub all_threads_continued: Option<bool>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct StackTraceResponse {
/**
* The frames of the stackframe. If the array has length zero, there are no
* stackframes available.
* This means that there is no location information available.
*/
pub stack_frames: Vec<StackFrame>,
/**
* The total number of frames available in the stack. If omitted or if
* totalFrames is larger than the available frames, a client is expected to
* request frames until a request returns less frames than requested (which
* indicates the end of the stack). Returning monotonically increasing
* totalFrames values for subsequent requests can be used to enforce paging
* in the client.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub total_frames: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ScopesResponse {
/**
* The scopes of the stackframe. If the array has length zero, there are no
* scopes available.
*/
pub scopes: Vec<Scope>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct VariablesResponse {
/**
* All (or a range) of variables for the given variable reference.
*/
pub variables: Vec<Variable>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetVariableResponse {
/**
* The new value of the variable.
*/
pub value: String,
/**
* The type of the new value. Typically shown in the UI when hovering over
* the value.
*/
#[serde(rename = "type")]
#[serde(skip_serializing_if = "Option::is_none")]
pub variable_type: Option<String>,
/**
* If variablesReference is > 0, the new value is structured and its
* children can be retrieved by passing variablesReference to the
* VariablesRequest.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub variables_reference: Option<i32>,
/**
* The number of named child variables.
* The client can use this optional information to present the variables in
* a paged UI and fetch them in chunks.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub named_variables: Option<i32>,
/**
* The number of indexed child variables.
* The client can use this optional information to present the variables in
* a paged UI and fetch them in chunks.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub indexed_variables: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SourceResponse {
/**
* Content of the source reference.
*/
pub content: String,
/**
* Optional content type (mime type) of the source.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub mime_type: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ThreadsResponse {
/**
* All threads.
*/
pub threads: Vec<Thread>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ModulesResponse {
/**
* All modules or range of modules.
*/
pub modules: Vec<Module>,
/**
* The total number of modules available.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub total_modules: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct LoadedSourcesResponse {
/**
* Set of loaded sources.
*/
pub sources: Vec<Source>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct EvaluateResponse {
/**
* The result of the evaluate request.
*/
pub result: String,
/**
* The optional type of the evaluate result.
* This attribute should only be returned by a debug adapter if the client
* has passed the value true for the 'supportsVariableType' capability of
* the 'initialize' request.
*/
#[serde(rename = "type")]
#[serde(skip_serializing_if = "Option::is_none")]
pub result_type: Option<String>,
/**
* Properties of a evaluate result that can be used to determine how to
* render the result in the UI.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_hint: Option<VariablePresentationHint>,
/**
* If variablesReference is > 0, the evaluate result is structured and its
* children can be retrieved by passing variablesReference to the
* VariablesRequest.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
pub variables_reference: i32,
/**
* The number of named child variables.
* The client can use this optional information to present the variables in
* a paged UI and fetch them in chunks.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub named_variables: Option<i32>,
/**
* The number of indexed child variables.
* The client can use this optional information to present the variables in
* a paged UI and fetch them in chunks.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub indexed_variables: Option<i32>,
/**
* Optional memory reference to a location appropriate for this result.
* For pointer type eval results, this is generally a reference to the
* memory address contained in the pointer.
* This attribute should be returned by a debug adapter if the client has
* passed the value true for the 'supportsMemoryReferences' capability of
* the 'initialize' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub memory_reference: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SetExpressionResponse {
/**
* The new value of the expression.
*/
pub value: String,
/**
* The optional type of the value.
* This attribute should only be returned by a debug adapter if the client
* has passed the value true for the 'supportsVariableType' capability of
* the 'initialize' request.
*/
#[serde(rename = "type")]
#[serde(skip_serializing_if = "Option::is_none")]
pub value_type: Option<String>,
/**
* Properties of a value that can be used to determine how to render the
* result in the UI.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_hint: Option<VariablePresentationHint>,
/**
* If variablesReference is > 0, the value is structured and its children
* can be retrieved by passing variablesReference to the VariablesRequest.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub variables_reference: Option<i32>,
/**
* The number of named child variables.
* The client can use this optional information to present the variables in
* a paged UI and fetch them in chunks.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub named_variables: Option<i32>,
/**
* The number of indexed child variables.
* The client can use this optional information to present the variables in
* a paged UI and fetch them in chunks.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub indexed_variables: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct StepInTargetsResponse {
/**
* The possible stepIn targets of the specified source location.
*/
pub targets: Vec<StepInTarget>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct GotoTargetsResponse {
/**
* The possible goto targets of the specified location.
*/
pub targets: Vec<GotoTarget>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionsResponse {
/**
* The possible completions for .
*/
pub targets: Vec<CompletionItem>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExceptionInfoResponse {
/**
* ID of the exception that was thrown.
*/
pub exception_id: String,
/**
* Descriptive text for the exception provided by the debug adapter.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
/**
* Mode that caused the exception notification to be raised.
*/
pub break_mode: ExceptionBreakMode,
/**
* Detailed information about the exception.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub details: Option<ExceptionDetails>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ReadMemoryResponse {
/**
* The address of the first byte of data returned.
* Treated as a hex value if prefixed with '0x', or as a decimal value
* otherwise.
*/
pub address: String,
/**
* The number of unreadable bytes encountered after the last successfully
* read byte.
* This can be used to determine the number of bytes that must be skipped
* before a subsequent 'readMemory' request will succeed.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub unreadable_bytes: Option<i32>,
/**
* The bytes read from memory, encoded using base64.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub data: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct WriteMemoryResponse {
/**
* Optional property that should be returned when 'allowPartial' is true to
* indicate the offset of the first byte of data successfully written. Can
* be negative.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i32>,
/**
* Optional property that should be returned when 'allowPartial' is true to
* indicate the number of bytes starting from address that were successfully
* written.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub bytes_written: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DisassembleResponse {
/**
* The list of disassembled instructions.
*/
pub instructions: Vec<DisassembledInstruction>,
}