forked from cpeditor/lsp-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLSP.hpp
1241 lines (1105 loc) · 40.2 KB
/
LSP.hpp
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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Created by Alex on 2020/1/28.
//
// 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
// Most of the code comes from clangd(Protocol.h)
#ifndef LSP_PROTOCOL_H
#define LSP_PROTOCOL_H
#include "LSPUri.hpp"
#include <map>
#include <string>
#include <tuple>
#include <memory>
#include <vector>
#define MAP_JSON(...) \
{ \
j = {__VA_ARGS__}; \
}
#define MAP_KEY(KEY) \
{ \
#KEY, value.KEY \
}
#define MAP_TO(KEY, TO) \
{ \
KEY, value.TO \
}
#define MAP_KV(K, ...) \
{ \
K, \
{ \
__VA_ARGS__ \
} \
}
#define FROM_KEY(KEY) \
if (j.contains(#KEY)) \
j.at(#KEY).get_to(value.KEY);
#define JSON_SERIALIZE(Type, TO, FROM) \
namespace nlohmann \
{ \
template <> struct adl_serializer<Type> \
{ \
static void to_json(json &j, const Type &value) TO static void from_json(const json &j, Type &value) FROM \
}; \
}
using TextType = string_ref;
enum class ErrorCode
{
// Defined by JSON RPC.
ParseError = -32700,
InvalidRequest = -32600,
MethodNotFound = -32601,
InvalidParams = -32602,
InternalError = -32603,
ServerNotInitialized = -32002,
UnknownErrorCode = -32001,
// Defined by the protocol.
RequestCancelled = -32800,
};
class LSPError
{
public:
TextType Message;
ErrorCode Code;
static char ID;
LSPError(TextType Message, ErrorCode Code) : Message(Message), Code(Code)
{
}
};
JSON_SERIALIZE(
URIForFile, { j = value.file; }, { value.file = j.get<std::string>(); })
struct TextDocumentIdentifier
{
/// The text document's URI.
DocumentUri uri;
};
JSON_SERIALIZE(TextDocumentIdentifier, MAP_JSON(MAP_KEY(uri)), {})
struct VersionedTextDocumentIdentifier : public TextDocumentIdentifier
{
int version = 0;
};
JSON_SERIALIZE(VersionedTextDocumentIdentifier, MAP_JSON(MAP_KEY(uri), MAP_KEY(version)), {})
struct Position
{
/// Line position in a document (zero-based).
int line = 0;
/// Character offset on a line in a document (zero-based).
/// WARNING: this is in UTF-16 codepoints, not bytes or characters!
/// Use the functions in SourceCode.h to construct/interpret Positions.
int character = 0;
friend bool operator==(const Position &LHS, const Position &RHS)
{
return std::tie(LHS.line, LHS.character) == std::tie(RHS.line, RHS.character);
}
friend bool operator!=(const Position &LHS, const Position &RHS)
{
return !(LHS == RHS);
}
friend bool operator<(const Position &LHS, const Position &RHS)
{
return std::tie(LHS.line, LHS.character) < std::tie(RHS.line, RHS.character);
}
friend bool operator<=(const Position &LHS, const Position &RHS)
{
return std::tie(LHS.line, LHS.character) <= std::tie(RHS.line, RHS.character);
}
};
JSON_SERIALIZE(Position, MAP_JSON(MAP_KEY(line), MAP_KEY(character)), {
FROM_KEY(line);
FROM_KEY(character)
})
struct Range
{
/// The range's start position.
Position start;
/// The range's end position.
Position end;
friend bool operator==(const Range &LHS, const Range &RHS)
{
return std::tie(LHS.start, LHS.end) == std::tie(RHS.start, RHS.end);
}
friend bool operator!=(const Range &LHS, const Range &RHS)
{
return !(LHS == RHS);
}
friend bool operator<(const Range &LHS, const Range &RHS)
{
return std::tie(LHS.start, LHS.end) < std::tie(RHS.start, RHS.end);
}
bool contains(Position Pos) const
{
return start <= Pos && Pos < end;
}
bool contains(Range Rng) const
{
return start <= Rng.start && Rng.end <= end;
}
};
JSON_SERIALIZE(Range, MAP_JSON(MAP_KEY(start), MAP_KEY(end)), {
FROM_KEY(start);
FROM_KEY(end)
})
struct Location
{
/// The text document's URI.
std::string uri;
Range range;
friend bool operator==(const Location &LHS, const Location &RHS)
{
return LHS.uri == RHS.uri && LHS.range == RHS.range;
}
friend bool operator!=(const Location &LHS, const Location &RHS)
{
return !(LHS == RHS);
}
friend bool operator<(const Location &LHS, const Location &RHS)
{
return std::tie(LHS.uri, LHS.range) < std::tie(RHS.uri, RHS.range);
}
};
JSON_SERIALIZE(Location, MAP_JSON(MAP_KEY(uri), MAP_KEY(range)), {
FROM_KEY(uri);
FROM_KEY(range)
})
struct TextEdit
{
/// The range of the text document to be manipulated. To insert
/// text into a document create a range where start === end.
Range range;
/// The string to be inserted. For delete operations use an
/// empty string.
std::string newText;
};
JSON_SERIALIZE(TextEdit, MAP_JSON(MAP_KEY(range), MAP_KEY(newText)), {
FROM_KEY(range);
FROM_KEY(newText);
})
struct TextDocumentItem
{
/// The text document's URI.
DocumentUri uri;
/// The text document's language identifier.
string_ref languageId;
/// The version number of this document (it will strictly increase after each
int version = 0;
/// The content of the opened text document.
string_ref text;
};
JSON_SERIALIZE(TextDocumentItem, MAP_JSON(MAP_KEY(uri), MAP_KEY(languageId), MAP_KEY(version), MAP_KEY(text)), {})
enum class TraceLevel
{
Off = 0,
Messages = 1,
Verbose = 2,
};
enum class TextDocumentSyncKind
{
/// Documents should not be synced at all.
None = 0,
/// Documents are synced by always sending the full content of the document.
Full = 1,
/// Documents are synced by sending the full content on open. After that
/// only incremental updates to the document are send.
Incremental = 2,
};
enum class CompletionItemKind
{
Missing = 0,
Text = 1,
Method = 2,
Function = 3,
Constructor = 4,
Field = 5,
Variable = 6,
Class = 7,
Interface = 8,
Module = 9,
Property = 10,
Unit = 11,
Value = 12,
Enum = 13,
Keyword = 14,
Snippet = 15,
Color = 16,
File = 17,
Reference = 18,
Folder = 19,
EnumMember = 20,
Constant = 21,
Struct = 22,
Event = 23,
Operator = 24,
TypeParameter = 25,
};
enum class SymbolKind
{
File = 1,
Module = 2,
Namespace = 3,
Package = 4,
Class = 5,
Method = 6,
Property = 7,
Field = 8,
Constructor = 9,
Enum = 10,
Interface = 11,
Function = 12,
Variable = 13,
Constant = 14,
String = 15,
Number = 16,
Boolean = 17,
Array = 18,
Object = 19,
Key = 20,
Null = 21,
EnumMember = 22,
Struct = 23,
Event = 24,
Operator = 25,
TypeParameter = 26
};
enum class OffsetEncoding
{
// Any string is legal on the wire. Unrecognized encodings parse as this.
UnsupportedEncoding,
// Length counts code units of UTF-16 encoded text. (Standard LSP behavior).
UTF16,
// Length counts bytes of UTF-8 encoded text. (Clangd extension).
UTF8,
// Length counts codepoints in unicode text. (Clangd extension).
UTF32,
};
enum class MarkupKind
{
PlainText,
Markdown,
};
enum class ResourceOperationKind
{
Create,
Rename,
Delete
};
enum class FailureHandlingKind
{
Abort,
Transactional,
Undo,
TextOnlyTransactional
};
NLOHMANN_JSON_SERIALIZE_ENUM(OffsetEncoding, {
{OffsetEncoding::UnsupportedEncoding, "unspported"},
{OffsetEncoding::UTF8, "utf-8"},
{OffsetEncoding::UTF16, "utf-16"},
{OffsetEncoding::UTF32, "utf-32"},
})
NLOHMANN_JSON_SERIALIZE_ENUM(MarkupKind, {
{MarkupKind::PlainText, "plaintext"},
{MarkupKind::Markdown, "markdown"},
})
NLOHMANN_JSON_SERIALIZE_ENUM(ResourceOperationKind, {{ResourceOperationKind::Create, "create"},
{ResourceOperationKind::Rename, "rename"},
{ResourceOperationKind::Delete, "dename"}})
NLOHMANN_JSON_SERIALIZE_ENUM(FailureHandlingKind,
{{FailureHandlingKind::Abort, "abort"},
{FailureHandlingKind::Transactional, "transactional"},
{FailureHandlingKind::Undo, "undo"},
{FailureHandlingKind::TextOnlyTransactional, "textOnlyTransactional"}})
struct ClientCapabilities
{
/// The supported set of SymbolKinds for workspace/symbol.
/// workspace.symbol.symbolKind.valueSet
std::vector<SymbolKind> WorkspaceSymbolKinds;
/// Whether the client accepts diagnostics with codeActions attached inline.
/// textDocument.publishDiagnostics.codeActionsInline.
bool DiagnosticFixes = true;
/// Whether the client accepts diagnostics with related locations.
/// textDocument.publishDiagnostics.relatedInformation.
bool DiagnosticRelatedInformation = true;
/// Whether the client accepts diagnostics with category attached to it
/// using the "category" extension.
/// textDocument.publishDiagnostics.categorySupport
bool DiagnosticCategory = true;
/// Client supports snippets as insert text.
/// textDocument.completion.completionItem.snippetSupport
bool CompletionSnippets = true;
bool CompletionDeprecated = true;
/// Client supports completions with additionalTextEdit near the cursor.
/// This is a clangd extension. (LSP says this is for unrelated text only).
/// textDocument.completion.editsNearCursor
bool CompletionFixes = true;
/// Client supports hierarchical document symbols.
bool HierarchicalDocumentSymbol = true;
/// Client supports processing label offsets instead of a simple label string.
bool OffsetsInSignatureHelp = true;
/// The supported set of CompletionItemKinds for textDocument/completion.
/// textDocument.completion.completionItemKind.valueSet
std::vector<CompletionItemKind> CompletionItemKinds;
/// Client supports CodeAction return value for textDocument/codeAction.
/// textDocument.codeAction.codeActionLiteralSupport.
bool CodeActionStructure = true;
/// Supported encodings for LSP character offsets. (clangd extension).
std::vector<OffsetEncoding> offsetEncoding = {OffsetEncoding::UTF8};
/// The content format that should be used for Hover requests.
std::vector<MarkupKind> HoverContentFormat = {MarkupKind::PlainText};
bool ApplyEdit = false;
bool DocumentChanges = false;
ClientCapabilities()
{
for (int i = 1; i <= 26; ++i)
{
WorkspaceSymbolKinds.push_back((SymbolKind)i);
}
for (int i = 0; i <= 25; ++i)
{
CompletionItemKinds.push_back((CompletionItemKind)i);
}
}
};
JSON_SERIALIZE(
ClientCapabilities,
MAP_JSON(MAP_KV("textDocument",
MAP_KV("publishDiagnostics", // PublishDiagnosticsClientCapabilities
MAP_TO("categorySupport", DiagnosticCategory), MAP_TO("codeActionsInline", DiagnosticFixes),
MAP_TO("relatedInformation", DiagnosticRelatedInformation), ),
MAP_KV("completion", // CompletionClientCapabilities
MAP_KV("completionItem", MAP_TO("snippetSupport", CompletionSnippets),
MAP_TO("deprecatedSupport", CompletionDeprecated)),
MAP_KV("completionItemKind", MAP_TO("valueSet", CompletionItemKinds)),
MAP_TO("editsNearCursor", CompletionFixes)),
MAP_KV("codeAction", MAP_TO("codeActionLiteralSupport", CodeActionStructure)),
MAP_KV("documentSymbol", MAP_TO("hierarchicalDocumentSymbolSupport", HierarchicalDocumentSymbol)),
MAP_KV("hover", // HoverClientCapabilities
MAP_TO("contentFormat", HoverContentFormat)),
MAP_KV("signatureHelp", MAP_KV("signatureInformation",
MAP_KV("parameterInformation",
MAP_TO("labelOffsetSupport", OffsetsInSignatureHelp))))),
MAP_KV("workspace", // WorkspaceEditClientCapabilities
MAP_KV("symbol", // WorkspaceSymbolClientCapabilities
MAP_KV("symbolKind", MAP_TO("valueSet", WorkspaceSymbolKinds))),
MAP_TO("applyEdit", ApplyEdit),
MAP_KV("workspaceEdit", // WorkspaceEditClientCapabilities
MAP_TO("documentChanges", DocumentChanges))),
MAP_TO("offsetEncoding", offsetEncoding)),
{})
struct ClangdCompileCommand
{
TextType workingDirectory;
std::vector<TextType> compilationCommand;
};
JSON_SERIALIZE(ClangdCompileCommand, MAP_JSON(MAP_KEY(workingDirectory), MAP_KEY(compilationCommand)), {})
struct ConfigurationSettings
{
// Changes to the in-memory compilation database.
// The key of the map is a file name.
std::map<std::string, ClangdCompileCommand> compilationDatabaseChanges;
};
JSON_SERIALIZE(ConfigurationSettings, MAP_JSON(MAP_KEY(compilationDatabaseChanges)), {})
struct InitializationOptions
{
// What we can change throught the didChangeConfiguration request, we can
// also set through the initialize request (initializationOptions field).
ConfigurationSettings configSettings;
option<TextType> compilationDatabasePath;
// Additional flags to be included in the "fallback command" used when
// the compilation database doesn't describe an opened file.
// The command used will be approximately `clang $FILE $fallbackFlags`.
std::vector<TextType> fallbackFlags;
/// Clients supports show file status for textDocument/clangd.fileStatus.
bool clangdFileStatus = false;
};
JSON_SERIALIZE(InitializationOptions,
MAP_JSON(MAP_KEY(configSettings), MAP_KEY(compilationDatabasePath), MAP_KEY(fallbackFlags),
MAP_KEY(clangdFileStatus)),
{})
struct InitializeParams
{
unsigned processId = 0;
ClientCapabilities capabilities;
option<DocumentUri> rootUri;
option<TextType> rootPath;
InitializationOptions initializationOptions;
};
JSON_SERIALIZE(InitializeParams,
MAP_JSON(MAP_KEY(processId), MAP_KEY(capabilities), MAP_KEY(rootUri), MAP_KEY(initializationOptions),
MAP_KEY(rootPath)),
{})
enum class MessageType
{
/// An error message.
Error = 1,
/// A warning message.
Warning = 2,
/// An information message.
Info = 3,
/// A log message.
Log = 4,
};
struct ShowMessageParams
{
/// The message type.
MessageType type = MessageType::Info;
/// The actual message.
std::string message;
};
JSON_SERIALIZE(ShowMessageParams, {}, {
FROM_KEY(type);
FROM_KEY(message)
})
struct Registration
{
/**
* The id used to register the request. The id can be used to deregister
* the request again.
*/
TextType id;
/**
* The method / capability to register for.
*/
TextType method;
};
JSON_SERIALIZE(Registration, MAP_JSON(MAP_KEY(id), MAP_KEY(method)), {})
struct RegistrationParams
{
std::vector<Registration> registrations;
};
JSON_SERIALIZE(RegistrationParams, MAP_JSON(MAP_KEY(registrations)), {})
struct UnregistrationParams
{
std::vector<Registration> unregisterations;
};
JSON_SERIALIZE(UnregistrationParams, MAP_JSON(MAP_KEY(unregisterations)), {})
struct DidOpenTextDocumentParams
{
/// The document that was opened.
TextDocumentItem textDocument;
};
JSON_SERIALIZE(DidOpenTextDocumentParams, MAP_JSON(MAP_KEY(textDocument)), {})
struct DidCloseTextDocumentParams
{
/// The document that was closed.
TextDocumentIdentifier textDocument;
};
JSON_SERIALIZE(DidCloseTextDocumentParams, MAP_JSON(MAP_KEY(textDocument)), {})
struct TextDocumentContentChangeEvent
{
/// The range of the document that changed.
option<Range> range;
/// The length of the range that got replaced.
option<int> rangeLength;
/// The new text of the range/document.
std::string text;
};
JSON_SERIALIZE(TextDocumentContentChangeEvent, MAP_JSON(MAP_KEY(range), MAP_KEY(rangeLength), MAP_KEY(text)), {})
struct DidChangeTextDocumentParams
{
/// The document that did change. The version number points
/// to the version after all provided content changes have
/// been applied.
TextDocumentIdentifier textDocument;
/// The actual content changes.
std::vector<TextDocumentContentChangeEvent> contentChanges;
/// Forces diagnostics to be generated, or to not be generated, for this
/// version of the file. If not set, diagnostics are eventually consistent:
/// either they will be provided for this version or some subsequent one.
/// This is a clangd extension.
option<bool> wantDiagnostics;
};
JSON_SERIALIZE(DidChangeTextDocumentParams,
MAP_JSON(MAP_KEY(textDocument), MAP_KEY(contentChanges), MAP_KEY(wantDiagnostics)), {})
enum class FileChangeType
{
/// The file got created.
Created = 1,
/// The file got changed.
Changed = 2,
/// The file got deleted.
Deleted = 3
};
struct FileEvent
{
/// The file's URI.
URIForFile uri;
/// The change type.
FileChangeType type = FileChangeType::Created;
};
JSON_SERIALIZE(FileEvent, MAP_JSON(MAP_KEY(uri), MAP_KEY(type)), {})
struct DidChangeWatchedFilesParams
{
/// The actual file events.
std::vector<FileEvent> changes;
};
JSON_SERIALIZE(DidChangeWatchedFilesParams, MAP_JSON(MAP_KEY(changes)), {})
struct DidChangeConfigurationParams
{
ConfigurationSettings settings;
};
JSON_SERIALIZE(DidChangeConfigurationParams, MAP_JSON(MAP_KEY(settings)), {})
struct DocumentRangeFormattingParams
{
/// The document to format.
TextDocumentIdentifier textDocument;
/// The range to format
Range range;
};
JSON_SERIALIZE(DocumentRangeFormattingParams, MAP_JSON(MAP_KEY(textDocument), MAP_KEY(range)), {})
struct DocumentOnTypeFormattingParams
{
/// The document to format.
TextDocumentIdentifier textDocument;
/// The position at which this request was sent.
Position position;
/// The character that has been typed.
TextType ch;
};
JSON_SERIALIZE(DocumentOnTypeFormattingParams, MAP_JSON(MAP_KEY(textDocument), MAP_KEY(position), MAP_KEY(ch)), {})
struct FoldingRangeParams
{
/// The document to format.
TextDocumentIdentifier textDocument;
};
JSON_SERIALIZE(FoldingRangeParams, MAP_JSON(MAP_KEY(textDocument)), {})
enum class FoldingRangeKind
{
Comment,
Imports,
Region,
};
NLOHMANN_JSON_SERIALIZE_ENUM(FoldingRangeKind, {{FoldingRangeKind::Comment, "comment"},
{FoldingRangeKind::Imports, "imports"},
{FoldingRangeKind::Region, "region"}})
struct FoldingRange
{
/**
* The zero-based line number from where the folded range starts.
*/
int startLine;
/**
* The zero-based character offset from where the folded range starts.
* If not defined, defaults to the length of the start line.
*/
int startCharacter;
/**
* The zero-based line number where the folded range ends.
*/
int endLine;
/**
* The zero-based character offset before the folded range ends.
* If not defined, defaults to the length of the end line.
*/
int endCharacter;
FoldingRangeKind kind;
};
JSON_SERIALIZE(FoldingRange, {}, {
FROM_KEY(startLine);
FROM_KEY(startCharacter);
FROM_KEY(endLine);
FROM_KEY(endCharacter);
FROM_KEY(kind);
})
struct SelectionRangeParams
{
/// The document to format.
TextDocumentIdentifier textDocument;
std::vector<Position> positions;
};
JSON_SERIALIZE(SelectionRangeParams, MAP_JSON(MAP_KEY(textDocument), MAP_KEY(positions)), {})
struct SelectionRange
{
Range range;
std::unique_ptr<SelectionRange> parent;
};
JSON_SERIALIZE(SelectionRange, {}, {
FROM_KEY(range);
if (j.contains("parent"))
{
value.parent = std::make_unique<SelectionRange>();
j.at("parent").get_to(*value.parent);
}
})
struct DocumentFormattingParams
{
/// The document to format.
TextDocumentIdentifier textDocument;
};
JSON_SERIALIZE(DocumentFormattingParams, MAP_JSON(MAP_KEY(textDocument)), {})
struct DocumentSymbolParams
{
// The text document to find symbols in.
TextDocumentIdentifier textDocument;
};
JSON_SERIALIZE(DocumentSymbolParams, MAP_JSON(MAP_KEY(textDocument)), {})
struct DiagnosticRelatedInformation
{
/// The location of this related diagnostic information.
Location location;
/// The message of this related diagnostic information.
std::string message;
};
JSON_SERIALIZE(DiagnosticRelatedInformation, MAP_JSON(MAP_KEY(location), MAP_KEY(message)), {
FROM_KEY(location);
FROM_KEY(message);
})
struct CodeAction;
struct Diagnostic
{
/// The range at which the message applies.
Range range;
/// The diagnostic's severity. Can be omitted. If omitted it is up to the
/// client to interpret diagnostics as error, warning, info or hint.
int severity = 0;
/// The diagnostic's code. Can be omitted.
std::string code;
/// A human-readable string describing the source of this
/// diagnostic, e.g. 'typescript' or 'super lint'.
std::string source;
/// The diagnostic's message.
std::string message;
/// An array of related diagnostic information, e.g. when symbol-names within
/// a scope collide all definitions can be marked via this property.
option<std::vector<DiagnosticRelatedInformation>> relatedInformation;
/// The diagnostic's category. Can be omitted.
/// An LSP extension that's used to send the name of the category over to the
/// client. The category typically describes the compilation stage during
/// which the issue was produced, e.g. "Semantic Issue" or "Parse Issue".
option<std::string> category;
/// Clangd extension: code actions related to this diagnostic.
/// Only with capability textDocument.publishDiagnostics.codeActionsInline.
/// (These actions can also be obtained using textDocument/codeAction).
option<std::vector<CodeAction>> codeActions;
};
JSON_SERIALIZE(Diagnostic,
MAP_JSON(MAP_KEY(range), MAP_KEY(code), MAP_KEY(source), MAP_KEY(message), MAP_KEY(relatedInformation),
MAP_KEY(category), MAP_KEY(codeActions)),
{
FROM_KEY(range);
FROM_KEY(code);
FROM_KEY(source);
FROM_KEY(message);
FROM_KEY(relatedInformation);
FROM_KEY(category);
FROM_KEY(codeActions);
})
struct PublishDiagnosticsParams
{
/**
* The URI for which diagnostic information is reported.
*/
std::string uri;
/**
* An array of diagnostic information items.
*/
std::vector<Diagnostic> diagnostics;
};
JSON_SERIALIZE(PublishDiagnosticsParams, {}, {
FROM_KEY(uri);
FROM_KEY(diagnostics);
})
struct CodeActionContext
{
/// An array of diagnostics.
std::vector<Diagnostic> diagnostics;
};
JSON_SERIALIZE(CodeActionContext, MAP_JSON(MAP_KEY(diagnostics)), {})
struct CodeActionParams
{
/// The document in which the command was invoked.
TextDocumentIdentifier textDocument;
/// The range for which the command was invoked.
Range range;
/// Context carrying additional information.
CodeActionContext context;
};
JSON_SERIALIZE(CodeActionParams, MAP_JSON(MAP_KEY(textDocument), MAP_KEY(range), MAP_KEY(context)), {})
struct WorkspaceEdit
{
/// Holds changes to existing resources.
option<std::map<std::string, std::vector<TextEdit>>> changes;
/// Note: "documentChanges" is not currently used because currently there is
/// no support for versioned edits.
};
JSON_SERIALIZE(WorkspaceEdit, MAP_JSON(MAP_KEY(changes)), { FROM_KEY(changes); })
struct TweakArgs
{
/// A file provided by the client on a textDocument/codeAction request.
std::string file;
/// A selection provided by the client on a textDocument/codeAction request.
Range selection;
/// ID of the tweak that should be executed. Corresponds to Tweak::id().
std::string tweakID;
};
JSON_SERIALIZE(TweakArgs, MAP_JSON(MAP_KEY(file), MAP_KEY(selection), MAP_KEY(tweakID)), {
FROM_KEY(file);
FROM_KEY(selection);
FROM_KEY(tweakID);
})
struct ExecuteCommandParams
{
std::string command;
// Arguments
option<WorkspaceEdit> workspaceEdit;
option<TweakArgs> tweakArgs;
};
JSON_SERIALIZE(ExecuteCommandParams, MAP_JSON(MAP_KEY(command), MAP_KEY(workspaceEdit), MAP_KEY(tweakArgs)), {})
struct LspCommand : public ExecuteCommandParams
{
std::string title;
};
JSON_SERIALIZE(LspCommand, MAP_JSON(MAP_KEY(command), MAP_KEY(workspaceEdit), MAP_KEY(tweakArgs), MAP_KEY(title)), {
FROM_KEY(command);
FROM_KEY(workspaceEdit);
FROM_KEY(tweakArgs);
FROM_KEY(title);
})
struct CodeAction
{
/// A short, human-readable, title for this code action.
std::string title;
/// The kind of the code action.
/// Used to filter code actions.
option<std::string> kind;
/// The diagnostics that this code action resolves.
option<std::vector<Diagnostic>> diagnostics;
/// The workspace edit this code action performs.
option<WorkspaceEdit> edit;
/// A command this code action executes. If a code action provides an edit
/// and a command, first the edit is executed and then the command.
option<LspCommand> command;
};
JSON_SERIALIZE(CodeAction,
MAP_JSON(MAP_KEY(title), MAP_KEY(kind), MAP_KEY(diagnostics), MAP_KEY(edit), MAP_KEY(command)), {
FROM_KEY(title);
FROM_KEY(kind);
FROM_KEY(diagnostics);
FROM_KEY(edit);
FROM_KEY(command)
})
struct SymbolInformation
{
/// The name of this symbol.
std::string name;
/// The kind of this symbol.
SymbolKind kind = SymbolKind::Class;
/// The location of this symbol.
Location location;
/// The name of the symbol containing this symbol.
std::string containerName;
};
JSON_SERIALIZE(SymbolInformation, MAP_JSON(MAP_KEY(name), MAP_KEY(kind), MAP_KEY(location), MAP_KEY(containerName)), {
FROM_KEY(name);
FROM_KEY(kind);
FROM_KEY(location);
FROM_KEY(containerName)
})
struct SymbolDetails
{
TextType name;
TextType containerName;
/// Unified Symbol Resolution identifier
/// This is an opaque string uniquely identifying a symbol.
/// Unlike SymbolID, it is variable-length and somewhat human-readable.
/// It is a common representation across several clang tools.
/// (See USRGeneration.h)
TextType USR;
option<TextType> ID;
};
struct WorkspaceSymbolParams
{
/// A non-empty query string
TextType query;
};
JSON_SERIALIZE(WorkspaceSymbolParams, MAP_JSON(MAP_KEY(query)), {})
struct ApplyWorkspaceEditParams
{
WorkspaceEdit edit;
};
JSON_SERIALIZE(ApplyWorkspaceEditParams, MAP_JSON(MAP_KEY(edit)), {})
struct TextDocumentPositionParams
{
/// The text document.
TextDocumentIdentifier textDocument;
/// The position inside the text document.
Position position;
};
JSON_SERIALIZE(TextDocumentPositionParams, MAP_JSON(MAP_KEY(textDocument), MAP_KEY(position)), {})
enum class CompletionTriggerKind
{
/// Completion was triggered by typing an identifier (24x7 code
/// complete), manual invocation (e.g Ctrl+Space) or via API.
Invoked = 1,
/// Completion was triggered by a trigger character specified by
/// the `triggerCharacters` properties of the `CompletionRegistrationOptions`.
TriggerCharacter = 2,
/// Completion was re-triggered as the current completion list is incomplete.
TriggerTriggerForIncompleteCompletions = 3
};
struct CompletionContext
{
/// How the completion was triggered.
CompletionTriggerKind triggerKind = CompletionTriggerKind::Invoked;
/// The trigger character (a single character) that has trigger code complete.
/// Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`
option<TextType> triggerCharacter;
};
JSON_SERIALIZE(CompletionContext, MAP_JSON(MAP_KEY(triggerKind), MAP_KEY(triggerCharacter)), {})
struct CompletionParams : TextDocumentPositionParams
{
option<CompletionContext> context;
};
JSON_SERIALIZE(CompletionParams, MAP_JSON(MAP_KEY(context), MAP_KEY(textDocument), MAP_KEY(position)), {})
struct MarkupContent
{
MarkupKind kind = MarkupKind::PlainText;
std::string value;
};
JSON_SERIALIZE(MarkupContent, {}, {
FROM_KEY(kind);
FROM_KEY(value)
})
struct Hover
{
/// The hover's content
MarkupContent contents;
/// An optional range is a range inside a text document
/// that is used to visualize a hover, e.g. by changing the background color.
option<Range> range;
};
JSON_SERIALIZE(Hover, {}, {
FROM_KEY(contents);
FROM_KEY(range)
})
enum class InsertTextFormat
{
Missing = 0,
/// The primary text to be inserted is treated as a plain string.
PlainText = 1,
/// The primary text to be inserted is treated as a snippet.
///
/// A snippet can define tab stops and placeholders with `$1`, `$2`
/// and `${3:foo}`. `$0` defines the final tab stop, it defaults to the end
/// of the snippet. Placeholders with equal identifiers are linked, that is
/// typing in one will update others too.
///
/// See also:
/// https//github.com/Microsoft/vscode/blob/master/src/vs/editor/contrib/snippet/common/snippet.md
Snippet = 2,
};
struct CompletionItem
{
/// The label of this completion item. By default also the text that is
/// inserted when selecting this completion.
std::string label;
/// The kind of this completion item. Based of the kind an icon is chosen by
/// the editor.
CompletionItemKind kind = CompletionItemKind::Missing;
/// A human-readable string with additional information about this item, like
/// type or symbol information.
std::string detail;