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
|
//===-- ProtocolBase.cpp --------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "Protocol/ProtocolBase.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/JSON.h"
#include <optional>
#include <utility>
using namespace llvm;
static bool mapRaw(const json::Value &Params, StringLiteral Prop,
std::optional<json::Value> &V, json::Path P) {
const auto *O = Params.getAsObject();
if (!O) {
P.report("expected object");
return false;
}
const json::Value *E = O->get(Prop);
if (E)
V = std::move(*E);
return true;
}
namespace lldb_dap::protocol {
enum MessageType : unsigned {
eMessageTypeRequest,
eMessageTypeResponse,
eMessageTypeEvent
};
bool fromJSON(const json::Value &Params, MessageType &M, json::Path P) {
auto rawType = Params.getAsString();
if (!rawType) {
P.report("expected a string");
return false;
}
std::optional<MessageType> type =
StringSwitch<std::optional<MessageType>>(*rawType)
.Case("request", eMessageTypeRequest)
.Case("response", eMessageTypeResponse)
.Case("event", eMessageTypeEvent)
.Default(std::nullopt);
if (!type) {
P.report("unexpected value, expected 'request', 'response' or 'event'");
return false;
}
M = *type;
return true;
}
json::Value toJSON(const Request &R) {
json::Object Result{
{"type", "request"},
{"seq", R.seq},
{"command", R.command},
};
if (R.arguments)
Result.insert({"arguments", R.arguments});
return std::move(Result);
}
bool fromJSON(json::Value const &Params, Request &R, json::Path P) {
json::ObjectMapper O(Params, P);
if (!O)
return false;
MessageType type;
if (!O.map("type", type) || !O.map("command", R.command) ||
!O.map("seq", R.seq))
return false;
if (type != eMessageTypeRequest) {
P.field("type").report("expected to be 'request'");
return false;
}
if (R.command.empty()) {
P.field("command").report("expected to not be ''");
return false;
}
if (!R.seq) {
P.field("seq").report("expected to not be '0'");
return false;
}
return mapRaw(Params, "arguments", R.arguments, P);
}
json::Value toJSON(const Response &R) {
json::Object Result{{"type", "response"},
{"seq", 0},
{"command", R.command},
{"request_seq", R.request_seq},
{"success", R.success}};
if (R.message) {
assert(!R.success && "message can only be used if success is false");
if (const auto *messageEnum = std::get_if<ResponseMessage>(&*R.message)) {
switch (*messageEnum) {
case eResponseMessageCancelled:
Result.insert({"message", "cancelled"});
break;
case eResponseMessageNotStopped:
Result.insert({"message", "notStopped"});
break;
}
} else if (const auto *messageString =
std::get_if<std::string>(&*R.message)) {
Result.insert({"message", *messageString});
}
}
if (R.body)
Result.insert({"body", R.body});
return std::move(Result);
}
bool fromJSON(json::Value const &Params,
std::variant<ResponseMessage, std::string> &M, json::Path P) {
auto rawMessage = Params.getAsString();
if (!rawMessage) {
P.report("expected a string");
return false;
}
std::optional<ResponseMessage> message =
StringSwitch<std::optional<ResponseMessage>>(*rawMessage)
.Case("cancelled", eResponseMessageCancelled)
.Case("notStopped", eResponseMessageNotStopped)
.Default(std::nullopt);
if (message)
M = *message;
else if (!rawMessage->empty())
M = rawMessage->str();
return true;
}
bool fromJSON(json::Value const &Params, Response &R, json::Path P) {
json::ObjectMapper O(Params, P);
if (!O)
return false;
MessageType type;
int64_t seq;
if (!O.map("type", type) || !O.map("seq", seq) ||
!O.map("command", R.command) || !O.map("request_seq", R.request_seq))
return false;
if (type != eMessageTypeResponse) {
P.field("type").report("expected to be 'response'");
return false;
}
if (R.command.empty()) {
P.field("command").report("expected to not be ''");
return false;
}
if (R.request_seq == 0) {
P.field("request_seq").report("expected to not be '0'");
return false;
}
return O.map("success", R.success) && O.map("message", R.message) &&
mapRaw(Params, "body", R.body, P);
}
json::Value toJSON(const ErrorMessage &EM) {
json::Object Result{{"id", EM.id}, {"format", EM.format}};
if (EM.variables) {
json::Object variables;
for (auto &var : *EM.variables)
variables[var.first] = var.second;
Result.insert({"variables", std::move(variables)});
}
if (EM.sendTelemetry)
Result.insert({"sendTelemetry", EM.sendTelemetry});
if (EM.showUser)
Result.insert({"showUser", EM.showUser});
if (EM.url)
Result.insert({"url", EM.url});
if (EM.urlLabel)
Result.insert({"urlLabel", EM.urlLabel});
return std::move(Result);
}
bool fromJSON(json::Value const &Params, ErrorMessage &EM, json::Path P) {
json::ObjectMapper O(Params, P);
return O && O.map("id", EM.id) && O.map("format", EM.format) &&
O.map("variables", EM.variables) &&
O.map("sendTelemetry", EM.sendTelemetry) &&
O.map("showUser", EM.showUser) && O.map("url", EM.url) &&
O.map("urlLabel", EM.urlLabel);
}
json::Value toJSON(const Event &E) {
json::Object Result{
{"type", "event"},
{"seq", 0},
{"event", E.event},
};
if (E.body)
Result.insert({"body", E.body});
return std::move(Result);
}
bool fromJSON(json::Value const &Params, Event &E, json::Path P) {
json::ObjectMapper O(Params, P);
if (!O)
return false;
MessageType type;
int64_t seq;
if (!O.map("type", type) || !O.map("seq", seq) || !O.map("event", E.event))
return false;
if (type != eMessageTypeEvent) {
P.field("type").report("expected to be 'event'");
return false;
}
if (seq != 0) {
P.field("seq").report("expected to be '0'");
return false;
}
if (E.event.empty()) {
P.field("event").report("expected to not be ''");
return false;
}
return mapRaw(Params, "body", E.body, P);
}
bool fromJSON(const json::Value &Params, Message &PM, json::Path P) {
json::ObjectMapper O(Params, P);
if (!O)
return false;
MessageType type;
if (!O.map("type", type))
return false;
switch (type) {
case eMessageTypeRequest: {
Request req;
if (!fromJSON(Params, req, P))
return false;
PM = std::move(req);
return true;
}
case eMessageTypeResponse: {
Response resp;
if (!fromJSON(Params, resp, P))
return false;
PM = std::move(resp);
return true;
}
case eMessageTypeEvent:
Event evt;
if (!fromJSON(Params, evt, P))
return false;
PM = std::move(evt);
return true;
}
llvm_unreachable("unhandled message type request.");
}
json::Value toJSON(const Message &M) {
return std::visit([](auto &M) { return toJSON(M); }, M);
}
json::Value toJSON(const ErrorResponseBody &E) {
json::Object result{};
if (E.error)
result.insert({"error", *E.error});
return result;
}
} // namespace lldb_dap::protocol
|