-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathservice.go
1179 lines (989 loc) · 33.2 KB
/
service.go
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
package lsp
import (
"bytes"
"encoding/base64"
"encoding/binary"
"encoding/json"
"errors"
"strings"
)
type None struct{}
type InitializeParams struct {
ProcessID int `json:"processId,omitempty"`
// RootPath is DEPRECATED in favor of the RootURI field.
RootPath string `json:"rootPath,omitempty"`
RootURI DocumentURI `json:"rootUri,omitempty"`
ClientInfo ClientInfo `json:"clientInfo,omitempty"`
Trace Trace `json:"trace,omitempty"`
InitializationOptions interface{} `json:"initializationOptions,omitempty"`
Capabilities ClientCapabilities `json:"capabilities"`
WorkDoneToken string `json:"workDoneToken,omitempty"`
}
type InitializedParams struct{}
type ClientInfo struct {
Name string `json:"name,omitempty"`
Version string `json:"version,omitempty"`
}
type Trace string
type ClientCapabilities struct {
Workspace WorkspaceClientCapabilities `json:"workspace,omitempty"`
TextDocument TextDocumentClientCapabilities `json:"textDocument,omitempty"`
Window WindowClientCapabilities `json:"window,omitempty"`
Experimental interface{} `json:"experimental,omitempty"`
// Below are Sourcegraph extensions. They do not live in lspext since
// they are extending the field InitializeParams.Capabilities
// XFilesProvider indicates the client provides support for
// workspace/xfiles. This is a Sourcegraph extension.
XFilesProvider bool `json:"xfilesProvider,omitempty"`
// XContentProvider indicates the client provides support for
// textDocument/xcontent. This is a Sourcegraph extension.
XContentProvider bool `json:"xcontentProvider,omitempty"`
// XCacheProvider indicates the client provides support for cache/get
// and cache/set.
XCacheProvider bool `json:"xcacheProvider,omitempty"`
}
type WorkspaceClientCapabilities struct {
WorkspaceEdit struct {
DocumentChanges bool `json:"documentChanges,omitempty"`
ResourceOperations []string `json:"resourceOperations,omitempty"`
} `json:"workspaceEdit,omitempty"`
ApplyEdit bool `json:"applyEdit,omitempty"`
Symbol struct {
SymbolKind struct {
ValueSet []int `json:"valueSet,omitempty"`
} `json:"symbolKind,omitempty"`
} `json:"symbol,omitempty"`
ExecuteCommand *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"executeCommand,omitempty"`
DidChangeWatchedFiles *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"didChangeWatchedFiles,omitempty"`
WorkspaceFolders bool `json:"workspaceFolders,omitempty"`
Configuration bool `json:"configuration,omitempty"`
}
type TextDocumentClientCapabilities struct {
Declaration *struct {
LinkSupport bool `json:"linkSupport,omitempty"`
} `json:"declaration,omitempty"`
Definition *struct {
LinkSupport bool `json:"linkSupport,omitempty"`
} `json:"definition,omitempty"`
Implementation *struct {
LinkSupport bool `json:"linkSupport,omitempty"`
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"implementation,omitempty"`
TypeDefinition *struct {
LinkSupport bool `json:"linkSupport,omitempty"`
} `json:"typeDefinition,omitempty"`
Synchronization *struct {
WillSave bool `json:"willSave,omitempty"`
DidSave bool `json:"didSave,omitempty"`
WillSaveWaitUntil bool `json:"willSaveWaitUntil,omitempty"`
} `json:"synchronization,omitempty"`
DocumentSymbol struct {
SymbolKind struct {
ValueSet []int `json:"valueSet,omitempty"`
} `json:"symbolKind,omitempty"`
HierarchicalDocumentSymbolSupport bool `json:"hierarchicalDocumentSymbolSupport,omitempty"`
} `json:"documentSymbol,omitempty"`
Formatting *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"formatting,omitempty"`
RangeFormatting *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"rangeFormatting,omitempty"`
Rename *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
PrepareSupport bool `json:"prepareSupport,omitempty"`
} `json:"rename,omitempty"`
SemanticHighlightingCapabilities *struct {
SemanticHighlighting bool `json:"semanticHighlighting,omitempty"`
} `json:"semanticHighlightingCapabilities,omitempty"`
CodeAction struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
IsPreferredSupport bool `json:"isPreferredSupport,omitempty"`
CodeActionLiteralSupport struct {
CodeActionKind struct {
ValueSet []CodeActionKind `json:"valueSet,omitempty"`
} `json:"codeActionKind,omitempty"`
} `json:"codeActionLiteralSupport,omitempty"`
} `json:"codeAction,omitempty"`
Completion struct {
CompletionItem struct {
DocumentationFormat []DocumentationFormat `json:"documentationFormat,omitempty"`
SnippetSupport bool `json:"snippetSupport,omitempty"`
} `json:"completionItem,omitempty"`
CompletionItemKind struct {
ValueSet []CompletionItemKind `json:"valueSet,omitempty"`
} `json:"completionItemKind,omitempty"`
ContextSupport bool `json:"contextSupport,omitempty"`
} `json:"completion,omitempty"`
SignatureHelp *struct {
SignatureInformation struct {
ParameterInformation struct {
LabelOffsetSupport bool `json:"labelOffsetSupport,omitempty"`
} `json:"parameterInformation,omitempty"`
} `json:"signatureInformation,omitempty"`
} `json:"signatureHelp,omitempty"`
DocumentLink *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
TooltipSupport bool `json:"tooltipSupport,omitempty"`
} `json:"documentLink,omitempty"`
Hover *struct {
ContentFormat []string `json:"contentFormat,omitempty"`
} `json:"hover,omitempty"`
FoldingRange *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
RangeLimit interface{} `json:"rangeLimit,omitempty"`
LineFoldingOnly bool `json:"lineFoldingOnly,omitempty"`
} `json:"foldingRange,omitempty"`
CallHierarchy *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"callHierarchy,omitempty"`
ColorProvider *struct {
DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
} `json:"colorProvider,omitempty"`
}
type WindowClientCapabilities struct {
WorkDoneProgress bool `json:"workDoneProgress,omitempty"`
}
type InitializeResult struct {
Capabilities ServerCapabilities `json:"capabilities,omitempty"`
}
type InitializeError struct {
Retry bool `json:"retry"`
}
type ResourceOperation string
const (
ROCreate ResourceOperation = "create"
RODelete ResourceOperation = "delete"
RORename ResourceOperation = "rename"
)
// TextDocumentSyncKind is a DEPRECATED way to describe how text
// document syncing works. Use TextDocumentSyncOptions instead (or the
// Options field of TextDocumentSyncOptionsOrKind if you need to
// support JSON-(un)marshaling both).
type TextDocumentSyncKind int
const (
TDSKNone TextDocumentSyncKind = 0
TDSKFull TextDocumentSyncKind = 1
TDSKIncremental TextDocumentSyncKind = 2
)
type TextDocumentSyncOptions struct {
OpenClose bool `json:"openClose,omitempty"`
Change TextDocumentSyncKind `json:"change"`
WillSave bool `json:"willSave,omitempty"`
WillSaveWaitUntil bool `json:"willSaveWaitUntil,omitempty"`
Save *BoolOrSaveOptions `json:"save,omitempty"`
}
type BoolOrSaveOptions struct {
Save *bool
SaveOptions *SaveOptions
}
// MarshalJSON implements json.Marshaler.
func (v *BoolOrSaveOptions) MarshalJSON() ([]byte, error) {
if v.Save != nil {
return json.Marshal(v.Save)
}
if v.SaveOptions != nil {
return json.Marshal(v.SaveOptions)
}
return []byte("null"), nil
}
// UnmarshalJSON implements json.Unmarshaler.
func (v *BoolOrSaveOptions) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte("null")) {
v.Save = nil
v.SaveOptions = nil
return nil
}
var save bool
if err := json.Unmarshal(data, &save); err == nil {
v.Save = &save
v.SaveOptions = nil
return nil
}
var saveOpts SaveOptions
if err := json.Unmarshal(data, &saveOpts); err != nil {
return err
}
v.Save = nil
v.SaveOptions = &saveOpts
return nil
}
// TextDocumentSyncOptions holds either a TextDocumentSyncKind or
// TextDocumentSyncOptions. The LSP API allows either to be specified
// in the (ServerCapabilities).TextDocumentSync field.
type TextDocumentSyncOptionsOrKind struct {
Kind *TextDocumentSyncKind
Options *TextDocumentSyncOptions
}
// MarshalJSON implements json.Marshaler.
func (v *TextDocumentSyncOptionsOrKind) MarshalJSON() ([]byte, error) {
if v == nil {
return []byte("null"), nil
}
if v.Kind != nil {
return json.Marshal(v.Kind)
}
return json.Marshal(v.Options)
}
// UnmarshalJSON implements json.Unmarshaler.
func (v *TextDocumentSyncOptionsOrKind) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte("null")) {
*v = TextDocumentSyncOptionsOrKind{}
return nil
}
var kind TextDocumentSyncKind
if err := json.Unmarshal(data, &kind); err == nil {
// Create equivalent TextDocumentSyncOptions using the same
// logic as in vscode-languageclient. Also set the Kind field
// so that JSON-marshaling and unmarshaling are inverse
// operations (for backward compatibility, preserving the
// original input but accepting both).
*v = TextDocumentSyncOptionsOrKind{
Options: &TextDocumentSyncOptions{OpenClose: true, Change: kind},
Kind: &kind,
}
return nil
}
var tmp TextDocumentSyncOptions
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*v = TextDocumentSyncOptionsOrKind{Options: &tmp}
return nil
}
type SaveOptions struct {
IncludeText bool `json:"includeText"`
}
type ServerCapabilities struct {
TextDocumentSync *TextDocumentSyncOptionsOrKind `json:"textDocumentSync,omitempty"`
HoverProvider bool `json:"hoverProvider,omitempty"`
CompletionProvider *CompletionOptions `json:"completionProvider,omitempty"`
SignatureHelpProvider *SignatureHelpOptions `json:"signatureHelpProvider,omitempty"`
DefinitionProvider bool `json:"definitionProvider,omitempty"`
TypeDefinitionProvider bool `json:"typeDefinitionProvider,omitempty"`
ReferencesProvider bool `json:"referencesProvider,omitempty"`
DocumentHighlightProvider bool `json:"documentHighlightProvider,omitempty"`
DocumentSymbolProvider bool `json:"documentSymbolProvider,omitempty"`
WorkspaceSymbolProvider bool `json:"workspaceSymbolProvider,omitempty"`
ImplementationProvider bool `json:"implementationProvider,omitempty"`
CodeActionProvider *BoolOrCodeActionOptions `json:"codeActionProvider,omitempty"`
CodeLensProvider *CodeLensOptions `json:"codeLensProvider,omitempty"`
DocumentFormattingProvider bool `json:"documentFormattingProvider,omitempty"`
DocumentRangeFormattingProvider bool `json:"documentRangeFormattingProvider,omitempty"`
DocumentOnTypeFormattingProvider *DocumentOnTypeFormattingOptions `json:"documentOnTypeFormattingProvider,omitempty"`
RenameProvider *BoolOrRenameOptions `json:"renameProvider,omitempty"`
ExecuteCommandProvider *ExecuteCommandOptions `json:"executeCommandProvider,omitempty"`
SemanticHighlighting *SemanticHighlightingOptions `json:"semanticHighlighting,omitempty"`
// XWorkspaceReferencesProvider indicates the server provides support for
// xworkspace/references. This is a Sourcegraph extension.
XWorkspaceReferencesProvider bool `json:"xworkspaceReferencesProvider,omitempty"`
// XDefinitionProvider indicates the server provides support for
// textDocument/xdefinition. This is a Sourcegraph extension.
XDefinitionProvider bool `json:"xdefinitionProvider,omitempty"`
// XWorkspaceSymbolByProperties indicates the server provides support for
// querying symbols by properties with WorkspaceSymbolParams.symbol. This
// is a Sourcegraph extension.
XWorkspaceSymbolByProperties bool `json:"xworkspaceSymbolByProperties,omitempty"`
Experimental interface{} `json:"experimental,omitempty"`
}
type CompletionOptions struct {
ResolveProvider bool `json:"resolveProvider,omitempty"`
TriggerCharacters []string `json:"triggerCharacters,omitempty"`
}
type DocumentOnTypeFormattingOptions struct {
FirstTriggerCharacter string `json:"firstTriggerCharacter"`
MoreTriggerCharacter []string `json:"moreTriggerCharacter,omitempty"`
}
type CodeLensOptions struct {
ResolveProvider bool `json:"resolveProvider,omitempty"`
}
type SignatureHelpOptions struct {
TriggerCharacters []string `json:"triggerCharacters,omitempty"`
}
type CodeActionOptions struct {
CodeActionKinds *[]CodeActionKind `json:"codeActionKinds,omitempty`
ResolveProvider *bool `json:"resolveProvider,omitempty`
}
type BoolOrCodeActionOptions struct {
IsProvider *bool
Options *CodeActionOptions
}
// MarshalJSON implements json.Marshaler.
func (v *BoolOrCodeActionOptions) MarshalJSON() ([]byte, error) {
if v.IsProvider != nil {
return json.Marshal(v.IsProvider)
}
if v.Options != nil {
return json.Marshal(v.Options)
}
return []byte("null"), nil
}
// UnmarshalJSON implements json.Unmarshaler.
func (v *BoolOrCodeActionOptions) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte("null")) {
v.IsProvider = nil
v.Options = nil
return nil
}
var b bool
if err := json.Unmarshal(data, &b); err == nil {
v.IsProvider = &b
v.Options = nil
return nil
}
var opts CodeActionOptions
if err := json.Unmarshal(data, &opts); err != nil {
return err
}
v.IsProvider = nil
v.Options = &opts
return nil
}
type ExecuteCommandOptions struct {
Commands []string `json:"commands"`
}
type ExecuteCommandParams struct {
Command string `json:"command"`
Arguments []interface{} `json:"arguments,omitempty"`
}
type RenameOptions struct {
PrepareProvider *bool `json:"prepareProvider,omitempty`
}
type BoolOrRenameOptions struct {
IsProvider *bool
Options *RenameOptions
}
// MarshalJSON implements json.Marshaler.
func (v *BoolOrRenameOptions) MarshalJSON() ([]byte, error) {
if v.IsProvider != nil {
return json.Marshal(v.IsProvider)
}
if v.Options != nil {
return json.Marshal(v.Options)
}
return []byte("null"), nil
}
// UnmarshalJSON implements json.Unmarshaler.
func (v *BoolOrRenameOptions) UnmarshalJSON(data []byte) error {
if bytes.Equal(data, []byte("null")) {
v.IsProvider = nil
v.Options = nil
return nil
}
var b bool
if err := json.Unmarshal(data, &b); err == nil {
v.IsProvider = &b
v.Options = nil
return nil
}
var opts RenameOptions
if err := json.Unmarshal(data, &opts); err != nil {
return err
}
v.IsProvider = nil
v.Options = &opts
return nil
}
type SemanticHighlightingOptions struct {
Scopes [][]string `json:"scopes,omitempty"`
}
type CompletionItemKind int
const (
_ CompletionItemKind = iota
CIKText
CIKMethod
CIKFunction
CIKConstructor
CIKField
CIKVariable
CIKClass
CIKInterface
CIKModule
CIKProperty
CIKUnit
CIKValue
CIKEnum
CIKKeyword
CIKSnippet
CIKColor
CIKFile
CIKReference
CIKFolder
CIKEnumMember
CIKConstant
CIKStruct
CIKEvent
CIKOperator
CIKTypeParameter
)
func (c CompletionItemKind) String() string {
return completionItemKindName[c]
}
var completionItemKindName = map[CompletionItemKind]string{
CIKText: "text",
CIKMethod: "method",
CIKFunction: "function",
CIKConstructor: "constructor",
CIKField: "field",
CIKVariable: "variable",
CIKClass: "class",
CIKInterface: "interface",
CIKModule: "module",
CIKProperty: "property",
CIKUnit: "unit",
CIKValue: "value",
CIKEnum: "enum",
CIKKeyword: "keyword",
CIKSnippet: "snippet",
CIKColor: "color",
CIKFile: "file",
CIKReference: "reference",
CIKFolder: "folder",
CIKEnumMember: "enumMember",
CIKConstant: "constant",
CIKStruct: "struct",
CIKEvent: "event",
CIKOperator: "operator",
CIKTypeParameter: "typeParameter",
}
type CompletionItem struct {
Label string `json:"label"`
Kind CompletionItemKind `json:"kind,omitempty"`
Detail string `json:"detail,omitempty"`
Documentation *StringOrMarkupContent `json:"documentation,omitempty"`
SortText string `json:"sortText,omitempty"`
FilterText string `json:"filterText,omitempty"`
InsertText string `json:"insertText,omitempty"`
InsertTextFormat InsertTextFormat `json:"insertTextFormat,omitempty"`
TextEdit *TextEdit `json:"textEdit,omitempty"`
Data interface{} `json:"data,omitempty"`
}
type StringOrMarkupContent struct {
String *string
MarkupContent *MarkupContent
}
// MarshalJSON implements json.Marshaler.
func (v *StringOrMarkupContent) MarshalJSON() ([]byte, error) {
if v.String != nil {
return json.Marshal(v.String)
}
return json.Marshal(v.MarkupContent)
}
// UnmarshalJSON implements json.Unmarshaler.
func (v *StringOrMarkupContent) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err == nil {
v.String = &s
v.MarkupContent = nil
return nil
}
v.String = nil
err := json.Unmarshal(data, &v.MarkupContent)
return err
}
type CompletionList struct {
IsIncomplete bool `json:"isIncomplete"`
Items []CompletionItem `json:"items"`
}
type CompletionTriggerKind int
const (
CTKInvoked CompletionTriggerKind = 1
CTKTriggerCharacter = 2
)
type DocumentationFormat string
const (
DFPlainText DocumentationFormat = "plaintext"
)
type CodeActionKind string
const (
CAKEmpty CodeActionKind = ""
CAKQuickFix CodeActionKind = "quickfix"
CAKRefactor CodeActionKind = "refactor"
CAKRefactorExtract CodeActionKind = "refactor.extract"
CAKRefactorInline CodeActionKind = "refactor.inline"
CAKRefactorRewrite CodeActionKind = "refactor.rewrite"
CAKSource CodeActionKind = "source"
CAKSourceOrganizeImports CodeActionKind = "source.organizeImports"
)
type InsertTextFormat int
const (
ITFPlainText InsertTextFormat = 1
ITFSnippet = 2
)
type CompletionContext struct {
TriggerKind CompletionTriggerKind `json:"triggerKind"`
TriggerCharacter string `json:"triggerCharacter,omitempty"`
}
type CompletionParams struct {
TextDocumentPositionParams
Context CompletionContext `json:"context,omitempty"`
}
// type Hover struct {
// Contents []MarkedString `json:"contents"`
// Range *Range `json:"range,omitempty"`
// }
// type hover Hover
// func (h Hover) MarshalJSON() ([]byte, error) {
// if h.Contents == nil {
// return json.Marshal(hover{
// Contents: []MarkedString{},
// Range: h.Range,
// })
// }
// return json.Marshal(hover(h))
// }
type MarkedString markedString
type markedString struct {
Language string `json:"language"`
Value string `json:"value"`
isRawString bool
}
func (m *MarkedString) UnmarshalJSON(data []byte) error {
if d := strings.TrimSpace(string(data)); len(d) > 0 && d[0] == '"' {
// Raw string
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
m.Value = s
m.isRawString = true
return nil
}
// Language string
ms := (*markedString)(m)
return json.Unmarshal(data, ms)
}
func (m MarkedString) MarshalJSON() ([]byte, error) {
if m.isRawString {
return json.Marshal(m.Value)
}
return json.Marshal((markedString)(m))
}
// RawMarkedString returns a MarkedString consisting of only a raw
// string (i.e., "foo" instead of {"value":"foo", "language":"bar"}).
func RawMarkedString(s string) MarkedString {
return MarkedString{Value: s, isRawString: true}
}
type SignatureHelp struct {
Signatures []SignatureInformation `json:"signatures"`
ActiveSignature int `json:"activeSignature"`
ActiveParameter int `json:"activeParameter"`
}
type SignatureInformation struct {
Label string `json:"label"`
Documentation string `json:"documentation,omitempty"`
Parameters []ParameterInformation `json:"parameters,omitempty"`
}
type ParameterInformation struct {
Label string `json:"label"`
Documentation string `json:"documentation,omitempty"`
}
type ReferenceContext struct {
IncludeDeclaration bool `json:"includeDeclaration"`
// Sourcegraph extension
XLimit int `json:"xlimit,omitempty"`
}
type ReferenceParams struct {
TextDocumentPositionParams
Context ReferenceContext `json:"context"`
}
type DocumentHighlightKind int
const (
Text DocumentHighlightKind = 1
Read = 2
Write = 3
)
type DocumentHighlight struct {
Range Range `json:"range"`
Kind int `json:"kind,omitempty"`
}
type DocumentSymbolParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
}
type SymbolKind int
// The SymbolKind values are defined at https://microsoft.github.io/language-server-protocol/specification.
const (
SKFile SymbolKind = 1
SKModule SymbolKind = 2
SKNamespace SymbolKind = 3
SKPackage SymbolKind = 4
SKClass SymbolKind = 5
SKMethod SymbolKind = 6
SKProperty SymbolKind = 7
SKField SymbolKind = 8
SKConstructor SymbolKind = 9
SKEnum SymbolKind = 10
SKInterface SymbolKind = 11
SKFunction SymbolKind = 12
SKVariable SymbolKind = 13
SKConstant SymbolKind = 14
SKString SymbolKind = 15
SKNumber SymbolKind = 16
SKBoolean SymbolKind = 17
SKArray SymbolKind = 18
SKObject SymbolKind = 19
SKKey SymbolKind = 20
SKNull SymbolKind = 21
SKEnumMember SymbolKind = 22
SKStruct SymbolKind = 23
SKEvent SymbolKind = 24
SKOperator SymbolKind = 25
SKTypeParameter SymbolKind = 26
)
func (s SymbolKind) String() string {
return symbolKindName[s]
}
var symbolKindName = map[SymbolKind]string{
SKFile: "File",
SKModule: "Module",
SKNamespace: "Namespace",
SKPackage: "Package",
SKClass: "Class",
SKMethod: "Method",
SKProperty: "Property",
SKField: "Field",
SKConstructor: "Constructor",
SKEnum: "Enum",
SKInterface: "Interface",
SKFunction: "Function",
SKVariable: "Variable",
SKConstant: "Constant",
SKString: "String",
SKNumber: "Number",
SKBoolean: "Boolean",
SKArray: "Array",
SKObject: "Object",
SKKey: "Key",
SKNull: "Null",
SKEnumMember: "EnumMember",
SKStruct: "Struct",
SKEvent: "Event",
SKOperator: "Operator",
SKTypeParameter: "TypeParameter",
}
type SymbolInformation struct {
Name string `json:"name"`
Kind SymbolKind `json:"kind"`
Location Location `json:"location"`
ContainerName string `json:"containerName,omitempty"`
}
type WorkspaceSymbolParams struct {
Query string `json:"query"`
Limit int `json:"limit"`
}
type ConfigurationParams struct {
Items []ConfigurationItem `json:"items"`
}
type ConfigurationItem struct {
ScopeURI string `json:"scopeUri,omitempty"`
Section string `json:"section,omitempty"`
}
type ConfigurationResult []interface{}
type CodeActionContext struct {
Diagnostics []Diagnostic `json:"diagnostics"`
}
type CodeActionParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
Range Range `json:"range"`
Context CodeActionContext `json:"context"`
}
type CodeLensParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
}
type CodeLens struct {
Range Range `json:"range"`
Command Command `json:"command,omitempty"`
Data interface{} `json:"data,omitempty"`
}
type DocumentFormattingParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
Options FormattingOptions `json:"options"`
}
type FormattingOptions struct {
TabSize int `json:"tabSize"`
InsertSpaces bool `json:"insertSpaces"`
Key string `json:"key"`
}
type RenameParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
Position Position `json:"position"`
NewName string `json:"newName"`
}
type DidOpenTextDocumentParams struct {
TextDocument TextDocumentItem `json:"textDocument"`
}
type DidChangeTextDocumentParams struct {
TextDocument VersionedTextDocumentIdentifier `json:"textDocument"`
ContentChanges []TextDocumentContentChangeEvent `json:"contentChanges"`
}
type TextDocumentContentChangeEvent struct {
Range *Range `json:"range,omitempty"`
RangeLength uint `json:"rangeLength,omitempty"`
Text string `json:"text"`
}
type DidCloseTextDocumentParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
}
type DidSaveTextDocumentParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
}
type MessageType int
const (
MTError MessageType = 1
MTWarning = 2
Info = 3
Log = 4
)
type ShowMessageParams struct {
Type MessageType `json:"type"`
Message string `json:"message"`
}
type MessageActionItem struct {
Title string `json:"title"`
}
type ShowMessageRequestParams struct {
Type MessageType `json:"type"`
Message string `json:"message"`
Actions []MessageActionItem `json:"actions"`
}
type LogMessageParams struct {
Type MessageType `json:"type"`
Message string `json:"message"`
}
type DidChangeConfigurationParams struct {
Settings interface{} `json:"settings"`
}
type FileChangeType int
const (
Created FileChangeType = 1
Changed = 2
Deleted = 3
)
type FileEvent struct {
URI DocumentURI `json:"uri"`
Type int `json:"type"`
}
type DidChangeWatchedFilesParams struct {
Changes []FileEvent `json:"changes"`
}
type PublishDiagnosticsParams struct {
URI DocumentURI `json:"uri"`
Diagnostics []Diagnostic `json:"diagnostics"`
}
type DocumentRangeFormattingParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
Range Range `json:"range"`
Options FormattingOptions `json:"options"`
}
type DocumentOnTypeFormattingParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
Position Position `json:"position"`
Ch string `json:"ch"`
Options FormattingOptions `json:"formattingOptions"`
}
type CancelParams struct {
ID ID `json:"id"`
}
type SemanticHighlightingParams struct {
TextDocument VersionedTextDocumentIdentifier `json:"textDocument"`
Lines []SemanticHighlightingInformation `json:"lines"`
}
// SemanticHighlightingInformation represents a semantic highlighting
// information that has to be applied on a specific line of the text
// document.
type SemanticHighlightingInformation struct {
// Line is the zero-based line position in the text document.
Line int `json:"line"`
// Tokens is a base64 encoded string representing every single highlighted
// characters with its start position, length and the "lookup table" index of
// the semantic highlighting [TextMate scopes](https://manual.macromates.com/en/language_grammars).
// If the `tokens` is empty or not defined, then no highlighted positions are
// available for the line.
Tokens SemanticHighlightingTokens `json:"tokens,omitempty"`
}
type semanticHighlightingInformation struct {
Line int `json:"line"`
Tokens *string `json:"tokens"`
}
// MarshalJSON implements json.Marshaler.
func (v *SemanticHighlightingInformation) MarshalJSON() ([]byte, error) {
tokens := string(v.Tokens.Serialize())
return json.Marshal(&semanticHighlightingInformation{
Line: v.Line,
Tokens: &tokens,
})
}
// UnmarshalJSON implements json.Unmarshaler.
func (v *SemanticHighlightingInformation) UnmarshalJSON(data []byte) error {
var info semanticHighlightingInformation
err := json.Unmarshal(data, &info)
if err != nil {
return err
}
if info.Tokens != nil {
v.Tokens, err = DeserializeSemanticHighlightingTokens([]byte(*info.Tokens))
if err != nil {
return err
}
}
v.Line = info.Line
return nil