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
|
//! Fundamental domain types.
use serde::{Deserialize, Deserializer, Serialize};
use std::{
num::NonZeroU64,
path::{Path, PathBuf},
};
use thiserror::Error;
/// A value that failed a domain-level invariant.
#[derive(Debug, Clone, PartialEq, Eq, Error)]
#[error("domain invariant violated: {detail}")]
pub struct InvariantViolation {
detail: &'static str,
}
impl InvariantViolation {
/// Creates a new invariant violation.
#[must_use]
pub fn new(detail: &'static str) -> Self {
Self { detail }
}
}
/// Process generation for a rust-analyzer worker.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Generation(NonZeroU64);
impl Generation {
/// Returns the first generation.
#[must_use]
pub fn genesis() -> Self {
Self(NonZeroU64::MIN)
}
/// Returns the inner integer value.
#[must_use]
pub fn get(self) -> u64 {
self.0.get()
}
/// Advances to the next generation.
#[must_use]
pub fn next(self) -> Self {
let next = self.get().saturating_add(1);
let non_zero = NonZeroU64::new(next).map_or(NonZeroU64::MAX, |value| value);
Self(non_zero)
}
}
/// A non-empty absolute workspace root.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct WorkspaceRoot(PathBuf);
impl WorkspaceRoot {
/// Constructs a validated workspace root.
pub fn try_new(path: PathBuf) -> Result<Self, InvariantViolation> {
if !path.is_absolute() {
return Err(InvariantViolation::new("workspace root must be absolute"));
}
if path.as_os_str().is_empty() {
return Err(InvariantViolation::new("workspace root must be non-empty"));
}
Ok(Self(path))
}
/// Returns the root path.
#[must_use]
pub fn as_path(&self) -> &Path {
self.0.as_path()
}
}
/// A non-empty absolute source file path.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize)]
#[serde(transparent)]
pub struct SourceFilePath(PathBuf);
impl SourceFilePath {
/// Constructs a validated source file path.
pub fn try_new(path: PathBuf) -> Result<Self, InvariantViolation> {
if !path.is_absolute() {
return Err(InvariantViolation::new("source file path must be absolute"));
}
if path.as_os_str().is_empty() {
return Err(InvariantViolation::new(
"source file path must be non-empty",
));
}
Ok(Self(path))
}
/// Returns the underlying path.
#[must_use]
pub fn as_path(&self) -> &Path {
self.0.as_path()
}
}
impl<'de> Deserialize<'de> for SourceFilePath {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let path = PathBuf::deserialize(deserializer)?;
Self::try_new(path).map_err(serde::de::Error::custom)
}
}
/// One-indexed source line number.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct OneIndexedLine(NonZeroU64);
impl OneIndexedLine {
/// Constructs a one-indexed line.
pub fn try_new(raw: u64) -> Result<Self, InvariantViolation> {
let line = NonZeroU64::new(raw).ok_or(InvariantViolation::new("line must be >= 1"))?;
Ok(Self(line))
}
/// Returns the one-indexed value.
#[must_use]
pub fn get(self) -> u64 {
self.0.get()
}
/// Returns the corresponding zero-indexed value for LSP.
#[must_use]
pub fn to_zero_indexed(self) -> u32 {
let raw = self.get().saturating_sub(1);
u32::try_from(raw).unwrap_or(u32::MAX)
}
}
/// One-indexed source column number.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct OneIndexedColumn(NonZeroU64);
impl OneIndexedColumn {
/// Constructs a one-indexed column.
pub fn try_new(raw: u64) -> Result<Self, InvariantViolation> {
let column = NonZeroU64::new(raw).ok_or(InvariantViolation::new("column must be >= 1"))?;
Ok(Self(column))
}
/// Returns the one-indexed value.
#[must_use]
pub fn get(self) -> u64 {
self.0.get()
}
/// Returns the corresponding zero-indexed value for LSP.
#[must_use]
pub fn to_zero_indexed(self) -> u32 {
let raw = self.get().saturating_sub(1);
u32::try_from(raw).unwrap_or(u32::MAX)
}
}
/// A file-local source point.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
pub struct SourcePoint {
line: OneIndexedLine,
column: OneIndexedColumn,
}
impl SourcePoint {
/// Constructs a file-local source point.
#[must_use]
pub fn new(line: OneIndexedLine, column: OneIndexedColumn) -> Self {
Self { line, column }
}
/// Returns the line component.
#[must_use]
pub fn line(self) -> OneIndexedLine {
self.line
}
/// Returns the column component.
#[must_use]
pub fn column(self) -> OneIndexedColumn {
self.column
}
}
/// Request position in a source file.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
pub struct SourcePosition {
file_path: SourceFilePath,
#[serde(flatten)]
point: SourcePoint,
}
impl SourcePosition {
/// Constructs a request position.
#[must_use]
pub fn new(file_path: SourceFilePath, point: SourcePoint) -> Self {
Self { file_path, point }
}
/// Returns the source file path.
#[must_use]
pub fn file_path(&self) -> &SourceFilePath {
&self.file_path
}
/// Returns the file-local point.
#[must_use]
pub fn point(&self) -> SourcePoint {
self.point
}
/// Returns the one-indexed line.
#[must_use]
pub fn line(&self) -> OneIndexedLine {
self.point.line()
}
/// Returns the one-indexed column.
#[must_use]
pub fn column(&self) -> OneIndexedColumn {
self.point.column()
}
}
#[derive(Debug, Clone, Deserialize)]
struct SourcePositionWire {
file_path: SourceFilePath,
#[serde(flatten)]
point: SourcePoint,
}
impl<'de> Deserialize<'de> for SourcePosition {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let SourcePositionWire { file_path, point } =
SourcePositionWire::deserialize(deserializer)?;
Ok(Self::new(file_path, point))
}
}
/// A concrete source location.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
pub struct SourceLocation {
file_path: SourceFilePath,
#[serde(flatten)]
point: SourcePoint,
}
impl SourceLocation {
/// Constructs a source location.
#[must_use]
pub fn new(file_path: SourceFilePath, point: SourcePoint) -> Self {
Self { file_path, point }
}
/// Returns the source file path.
#[must_use]
pub fn file_path(&self) -> &SourceFilePath {
&self.file_path
}
/// Returns the file-local point.
#[must_use]
pub fn point(&self) -> SourcePoint {
self.point
}
/// Returns the one-indexed line.
#[must_use]
pub fn line(&self) -> OneIndexedLine {
self.point.line()
}
/// Returns the one-indexed column.
#[must_use]
pub fn column(&self) -> OneIndexedColumn {
self.point.column()
}
}
#[derive(Debug, Clone, Deserialize)]
struct SourceLocationWire {
file_path: SourceFilePath,
#[serde(flatten)]
point: SourcePoint,
}
impl<'de> Deserialize<'de> for SourceLocation {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let SourceLocationWire { file_path, point } =
SourceLocationWire::deserialize(deserializer)?;
Ok(Self::new(file_path, point))
}
}
/// A source range in a specific file.
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
pub struct SourceRange {
file_path: SourceFilePath,
start: SourcePoint,
end: SourcePoint,
}
impl SourceRange {
/// Constructs a validated source range.
pub fn try_new(
file_path: SourceFilePath,
start: SourcePoint,
end: SourcePoint,
) -> Result<Self, InvariantViolation> {
if end < start {
return Err(InvariantViolation::new(
"source range end must not precede start",
));
}
Ok(Self {
file_path,
start,
end,
})
}
/// Returns the source file path.
#[must_use]
pub fn file_path(&self) -> &SourceFilePath {
&self.file_path
}
/// Returns the start point.
#[must_use]
pub fn start(&self) -> SourcePoint {
self.start
}
/// Returns the end point.
#[must_use]
pub fn end(&self) -> SourcePoint {
self.end
}
}
#[derive(Debug, Clone, Deserialize)]
struct SourceRangeWire {
file_path: SourceFilePath,
start: SourcePoint,
end: SourcePoint,
}
impl<'de> Deserialize<'de> for SourceRange {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let SourceRangeWire {
file_path,
start,
end,
} = SourceRangeWire::deserialize(deserializer)?;
Self::try_new(file_path, start, end).map_err(serde::de::Error::custom)
}
}
/// A monotonically increasing request sequence.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct RequestSequence(NonZeroU64);
impl RequestSequence {
/// Starts a fresh sequence.
#[must_use]
pub fn genesis() -> Self {
Self(NonZeroU64::MIN)
}
/// Returns the current integer value.
#[must_use]
pub fn get(self) -> u64 {
self.0.get()
}
/// Consumes and returns the next sequence.
#[must_use]
pub fn next(self) -> Self {
let next = self.get().saturating_add(1);
let non_zero = NonZeroU64::new(next).map_or(NonZeroU64::MAX, |value| value);
Self(non_zero)
}
}
#[cfg(test)]
mod tests {
use super::{
Generation, InvariantViolation, OneIndexedColumn, OneIndexedLine, RequestSequence,
SourceFilePath, SourcePoint, SourceRange,
};
use assert_matches::assert_matches;
use std::{num::NonZeroU64, path::PathBuf};
#[test]
fn generation_advances_monotonically() {
let first = Generation::genesis();
let second = first.next();
let third = second.next();
assert!(first < second);
assert!(second < third);
}
#[test]
fn generation_saturates_at_maximum() {
let max = Generation(NonZeroU64::MAX);
assert_eq!(max.next(), max);
}
#[test]
fn line_must_be_one_or_greater() {
assert_matches!(OneIndexedLine::try_new(0), Err(InvariantViolation { .. }));
}
#[test]
fn column_must_be_one_or_greater() {
assert_matches!(OneIndexedColumn::try_new(0), Err(InvariantViolation { .. }));
}
#[test]
fn source_range_rejects_reversed_points() {
let file_path = SourceFilePath::try_new(PathBuf::from("/tmp/range.rs"));
assert!(file_path.is_ok());
let file_path = match file_path {
Ok(value) => value,
Err(_) => return,
};
let start = SourcePoint::new(
OneIndexedLine::try_new(4).unwrap_or(OneIndexedLine(NonZeroU64::MIN)),
OneIndexedColumn::try_new(3).unwrap_or(OneIndexedColumn(NonZeroU64::MIN)),
);
let end = SourcePoint::new(
OneIndexedLine::try_new(2).unwrap_or(OneIndexedLine(NonZeroU64::MIN)),
OneIndexedColumn::try_new(1).unwrap_or(OneIndexedColumn(NonZeroU64::MIN)),
);
assert_matches!(
SourceRange::try_new(file_path, start, end),
Err(InvariantViolation { .. })
);
}
#[test]
fn request_sequence_saturates_at_maximum() {
let max = RequestSequence(NonZeroU64::MAX);
assert_eq!(max.next().get(), u64::MAX);
}
}
|