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
use std::{
fmt::Debug,
io::{BufRead, BufReader, BufWriter, Read, Write},
sync::{Arc, Mutex},
};
use serde_json;
use crate::{
base_message::{BaseMessage, Sendable},
errors::{DeserializationError, ServerError},
events::Event,
requests::Request,
responses::Response,
reverse_requests::ReverseRequest,
};
#[derive(Debug)]
enum ServerState {
/// Expecting a header
Header,
/// Expecting content
Content,
}
/// Handles message encoding and decoding of messages.
///
/// The `Server` is responsible for reading the incoming bytestream and constructing deserialized
/// requests from it, as well as constructing and serializing outgoing messages.
pub struct Server<R: Read, W: Write> {
input_buffer: BufReader<R>,
/// A sharable `ServerOutput` object for sending messages and events from
/// other threads.
pub output: Arc<Mutex<ServerOutput<W>>>,
}
/// Handles emission of messages through the connection.
///
/// `ServerOutput` is responsible for sending messages to the connection.
/// It's only accessible through a mutex that can be shared with other
/// threads. This makes it possible to send e.g. events while the server is
/// blocked polling requests.
pub struct ServerOutput<W: Write> {
output_buffer: BufWriter<W>,
sequence_number: i64,
}
impl<R: Read, W: Write> Server<R, W> {
/// Construct a new Server using the given input and output streams.
pub fn new(input: BufReader<R>, output: BufWriter<W>) -> Self {
let server_output = Arc::new(Mutex::new(ServerOutput {
output_buffer: output,
sequence_number: 0,
}));
Self {
input_buffer: input,
output: server_output,
}
}
/// Wait for a request from the development tool
///
/// This will start reading the `input` buffer that is passed to it and will try to interpret
/// the incoming bytes according to the DAP protocol.
pub fn poll_request(&mut self) -> Result<Option<Request>, ServerError> {
let mut state = ServerState::Header;
let mut buffer = String::new();
let mut content_length: usize = 0;
loop {
match self.input_buffer.read_line(&mut buffer) {
Ok(read_size) => {
if read_size == 0 {
break Ok(None);
}
match state {
ServerState::Header => {
let parts: Vec<&str> = buffer.trim_end().split(':').collect();
if parts.len() == 2 {
match parts[0] {
"Content-Length" => {
content_length = match parts[1].trim().parse() {
Ok(val) => val,
Err(_) => {
return Err(ServerError::HeaderParseError {
line: buffer,
});
}
};
buffer.clear();
buffer.reserve(content_length);
state = ServerState::Content;
}
other => {
return Err(ServerError::UnknownHeader {
header: other.to_string(),
});
}
}
} else {
return Err(ServerError::HeaderParseError { line: buffer });
}
}
ServerState::Content => {
buffer.clear();
let mut content = vec![0; content_length];
self.input_buffer
.read_exact(content.as_mut_slice())
.map_err(ServerError::IoError)?;
let content = std::str::from_utf8(content.as_slice()).map_err(|e| {
ServerError::ParseError(DeserializationError::DecodingError(e))
})?;
eprintln!(
"[DAP-RS] Received content ({content_length} bytes): {content}"
);
// Deserialize seq and command separately to avoid serde
// #[serde(flatten)] issues with newer serde versions (>=1.0.171)
// where flatten + adjacently-tagged enums can fail.
let raw: serde_json::Value =
serde_json::from_str(content).map_err(|e| {
eprintln!("[DAP-RS] JSON parse error: {e}");
ServerError::ParseError(DeserializationError::SerdeError(e))
})?;
let seq = raw.get("seq").and_then(|v| v.as_i64()).ok_or_else(|| {
eprintln!("[DAP-RS] Missing seq field");
ServerError::ParseError(DeserializationError::SerdeError(
serde_json::from_str::<()>("\"missing seq field\"")
.unwrap_err(),
))
})?;
// Handle the conflict between unit variants (e.g. ConfigurationDone)
// and struct variants with all-optional fields (e.g. Launch):
// - Unit variants fail with "arguments": {} ("invalid type: map, expected unit variant")
// - Struct variants fail without "arguments" ("missing field `arguments`")
// When arguments is an empty object, try without it first (unit variant),
// then fall back to keeping it (struct variant with optional fields).
let command: crate::requests::Command = if raw
.get("arguments")
.and_then(|v| v.as_object())
.is_some_and(|m| m.is_empty())
{
let mut without_args = raw.clone();
without_args.as_object_mut().unwrap().remove("arguments");
match serde_json::from_value::<crate::requests::Command>(
without_args,
) {
Ok(cmd) => cmd,
Err(_) => serde_json::from_value(raw.clone()).map_err(|e| {
eprintln!("[DAP-RS] Command deserialize error: {e}");
ServerError::ParseError(DeserializationError::SerdeError(e))
})?,
}
} else {
serde_json::from_value(raw.clone()).map_err(|e| {
eprintln!("[DAP-RS] Command deserialize error: {e}");
ServerError::ParseError(DeserializationError::SerdeError(e))
})?
};
eprintln!("[DAP-RS] Successfully parsed request seq={seq}");
let request = Request { seq, command };
return Ok(Some(request));
}
}
}
Err(e) => return Err(ServerError::IoError(e)),
}
}
}
pub fn send(&mut self, body: Sendable) -> Result<(), ServerError> {
let mut output = self.output.lock().map_err(|_| ServerError::OutputLockError)?;
output.send(body)
}
pub fn respond(&mut self, response: Response) -> Result<(), ServerError> {
self.send(Sendable::Response(response))
}
pub fn send_event(&mut self, event: Event) -> Result<(), ServerError> {
self.send(Sendable::Event(event))
}
pub fn send_reverse_request(&mut self, request: ReverseRequest) -> Result<(), ServerError> {
self.send(Sendable::ReverseRequest(request))
}
}
impl<W: Write> ServerOutput<W> {
pub fn send(&mut self, body: Sendable) -> Result<(), ServerError> {
self.sequence_number += 1;
let message = BaseMessage {
seq: self.sequence_number,
message: body,
};
let resp_json = serde_json::to_string(&message).map_err(ServerError::SerializationError)?;
write!(self.output_buffer, "Content-Length: {}\r\n\r\n", resp_json.len())
.map_err(ServerError::IoError)?;
write!(self.output_buffer, "{}\r\n", resp_json).map_err(ServerError::IoError)?;
self.output_buffer.flush().map_err(ServerError::IoError)?;
Ok(())
}
pub fn respond(&mut self, response: Response) -> Result<(), ServerError> {
self.send(Sendable::Response(response))
}
pub fn send_event(&mut self, event: Event) -> Result<(), ServerError> {
self.send(Sendable::Event(event))
}
pub fn send_reverse_request(&mut self, request: ReverseRequest) -> Result<(), ServerError> {
self.send(Sendable::ReverseRequest(request))
}
}
#[cfg(test)]
mod tests {
use std::io::Cursor;
use serde_json::Value;
use super::*;
use crate::requests::{AttachOrLaunchArguments, Command, RestartArguments};
fn simulate_poll_request(input: &str) -> Request {
let mut server_in = Cursor::new(input.as_bytes().to_vec());
let server_out = Vec::new();
let mut server = Server::new(BufReader::new(&mut server_in), BufWriter::new(server_out));
server.poll_request().unwrap().unwrap()
}
#[test]
fn test_server_init_request() {
let req = simulate_poll_request(
"Content-Length: 155\r\n\r\n{\"seq\": 152,\"type\": \"request\",\"command\": \
\"initialize\",\"arguments\": {\"adapterID\": \
\"0001e357-72c7-4f03-ae8f-c5b54bd8dabf\", \"clientName\": \"Some Cool Editor\"}}",
);
assert_eq!(req.seq, 152);
assert!(matches!(req.command, Command::Initialize { .. }));
}
#[test]
fn test_server_restart_request() {
let req = simulate_poll_request(
"Content-Length: 67\r\n\r\n{\"seq\": 152,\"type\": \"request\",\"command\": \
\"restart\",\"arguments\": {}}",
);
assert!(matches!(
req.command,
Command::Restart {
0: RestartArguments { arguments: None }
}
));
// Restarting a launch request
let req = simulate_poll_request(
"Content-Length: 96\r\n\r\n{\"seq\": 152,\"type\": \"request\",\"command\": \
\"restart\",\"arguments\": {\"arguments\": {\"noDebug\":true}}}",
);
assert!(matches!(
req.command,
Command::Restart {
0: RestartArguments {
arguments: Some(AttachOrLaunchArguments {
no_debug: Some(_),
..
})
}
}
));
// Restarting a launch or attach request
let req = simulate_poll_request(
"Content-Length: 98\r\n\r\n{\"seq\": 152,\"type\": \"request\",\"command\": \
\"restart\",\"arguments\": {\"arguments\": {\"__restart\":true}}}",
);
assert!(matches!(
req.command,
Command::Restart {
0: RestartArguments {
arguments: Some(AttachOrLaunchArguments {
restart_data: Some(Value::Bool(true)),
..
})
}
}
));
}
}