-
-
Notifications
You must be signed in to change notification settings - Fork 288
/
Copy pathDTO.fs
436 lines (347 loc) · 12.3 KB
/
DTO.fs
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
namespace Ionide.VSCode.FSharp
[<ReflectedDefinition>]
module DTO =
type Pos = { Line: int; Column: int }
type ParseRequest =
{ FileName: string
IsAsync: bool
Lines: string[]
Version: int }
type ProjectRequest = { FileName: string }
type DeclarationsRequest =
{ FileName: string
Lines: string[]
Version: int }
type HelptextRequest = { Symbol: string }
type PositionRequest =
{ FileName: string
Line: int
Column: int
Filter: string }
type CompletionRequest =
{ FileName: string
SourceLine: string
Line: int
Column: int
Filter: string
IncludeKeywords: bool
IncludeExternal: bool
Version: int }
type WorkspacePeekRequest =
{ Directory: string
Deep: int
ExcludedDirs: string[] }
type RangesAtPositionRequest = { FileName: string; Positions: Pos[] }
type WorkspaceLoadRequest =
{ Files: string[]
DisableInMemoryProjectReferences: bool }
type DocumentationForSymbolRequest = { XmlSig: string; Assembly: string }
type OverloadSignature = { Signature: string; Comment: string }
type TooltipSignature =
{ Signature: string
Comment: string
Footer: string }
type DocumentationDescription =
{ XmlKey: string
Constructors: string list
Fields: string list
Functions: string list
Interfaces: string list
Attributes: string list
DeclaredTypes: string list
Signature: string
Comment: string
FooterLines: string list }
type Error =
{
/// 1-indexed first line of the error block
StartLine: int
/// 1-indexed first column of the error block
StartColumn: int
/// 1-indexed last line of the error block
EndLine: int
/// 1-indexed last column of the error block
EndColumn: int
/// Description of the error
Message: string
///Severity of the error - warning or error
Severity: string
/// Type of the Error
Subcategory: string
///File Name
FileName: string
}
type ErrorResp = { File: string; Errors: Error[] }
type Declaration =
{ File: string; Line: int; Column: int }
type Completion =
{ Name: string
ReplacementText: string
Glyph: string
GlyphChar: string
NamespaceToOpen: string }
type SymbolUse =
{ FileName: string
StartLine: int
StartColumn: int
EndLine: int
EndColumn: int
IsFromDefinition: bool
IsFromAttribute: bool
IsFromComputationExpression: bool
IsFromDispatchSlotImplementation: bool
IsFromPattern: bool
IsFromType: bool }
type SymbolUses = { Name: string; Uses: SymbolUse array }
type AdditionalEdit =
{ Text: string
Line: int
Column: int
Type: string }
type Helptext =
{ Name: string
Overloads: OverloadSignature[][]
AdditionalEdit: AdditionalEdit }
type OverloadParameter =
{ Name: string
CanonicalTypeTextForSorting: string
Display: string
Description: string }
type Overload =
{ Tip: OverloadSignature[][]
TypeText: string
Parameters: OverloadParameter[]
IsStaticArguments: bool }
type Method =
{ Name: string
CurrentParameter: int
Overloads: Overload[] }
type Range =
{ StartColumn: int
StartLine: int
EndColumn: int
EndLine: int }
type Symbol =
{ UniqueName: string
Name: string
Glyph: string
GlyphChar: string
IsTopLevel: bool
Range: Range
BodyRange: Range
File: string
EnclosingEntity: string
IsAbstract: bool }
type Symbols =
{ Declaration: Symbol
Nested: Symbol[] }
type Fix =
{ FromRange: Range
FromText: string
ToText: string }
type Lint =
{ Info: string
Input: string
Range: Range
Fix: Fix }
type AnalyzerMsg =
{ Type: string
Message: string
Code: string
Severity: string
Range: Range
Fixes: Fix[] }
type AnalyzerResponse =
{ File: string
Messages: AnalyzerMsg[] }
type ProjectFilePath = string
type SourceFilePath = string
type ResolvedReferencePath = string
type ProjectLoading = { Project: ProjectFilePath }
type ProjectResponseInfoDotnetSdk =
{ IsTestProject: bool
Configuration: string
IsPackable: bool
TargetFramework: string
TargetFrameworkIdentifier: string
TargetFrameworkVersion: string
RestoreSuccess: bool
TargetFrameworks: string list
RunCmd: RunCmd option
IsPublishable: bool option }
and [<RequireQualifiedAccess>] RunCmd = { Command: string; Arguments: string }
type ProjectResponseItem =
{ Name: string
FilePath: string
VirtualPath: string
Metadata: Map<string, string> }
type ProjectReference =
{ RelativePath: string
ProjectFileName: string }
type PackageReference =
{ Name: string
Version: string
FullPath: string }
type Project =
{ Project: ProjectFilePath
Files: SourceFilePath array
Output: string
References: ResolvedReferencePath array
ProjectReferences: ProjectReference array
PackageReferences: PackageReference array
Logs: Map<string, string>
OutputType: string
Info: ProjectResponseInfoDotnetSdk
Items: ProjectResponseItem array
AdditionalInfo: Map<string, string> }
type FsdnRequest = { Signature: string }
type OpenNamespace =
{ Namespace: string
Name: string
Type: string
Line: int
Column: int
MultipleNames: bool }
type QualifySymbol = { Name: string; Qualifier: string }
type ResolveNamespace =
{ Opens: OpenNamespace[]
Qualifies: QualifySymbol[]
Word: string }
type UnionCaseGenerator = { Text: string; Position: Pos }
type RecordStubCaseGenerator = { Text: string; Position: Pos }
type InterfaceStubGenerator = { Text: string; Position: Pos }
type Parameter = { Name: string; Type: string }
type SignatureData =
{ OutputType: string
Parameters: Parameter list list
Generics: string list }
type RangesAtPosition = { Ranges: Range list list }
type WorkspacePeek = { Found: WorkspacePeekFound[] }
and WorkspacePeekFound =
| Fsproj of WorkspacePeekFoundFsproj
| Directory of WorkspacePeekFoundDirectory
| Solution of WorkspacePeekFoundSolution
and WorkspacePeekFoundFsproj =
{ Fsproj: string }
and WorkspacePeekFoundDirectory =
{ Directory: string; Fsprojs: string[] }
and WorkspacePeekFoundSolution =
{ Path: string
Items: WorkspacePeekFoundSolutionItem[]
Configurations: WorkspacePeekFoundSolutionConfiguration[] }
and [<RequireQualifiedAccess>] WorkspacePeekFoundSolutionItem =
{ Guid: string
Name: string
Kind: WorkspacePeekFoundSolutionItemKind }
and WorkspacePeekFoundSolutionItemKind =
| MsbuildFormat of WorkspacePeekFoundSolutionItemKindMsbuildFormat
| Folder of WorkspacePeekFoundSolutionItemKindFolder
and [<RequireQualifiedAccess>] WorkspacePeekFoundSolutionItemKindMsbuildFormat =
{ Configurations: WorkspacePeekFoundSolutionConfiguration[] }
and [<RequireQualifiedAccess>] WorkspacePeekFoundSolutionItemKindFolder =
{ Items: WorkspacePeekFoundSolutionItem[]
Files: string[] }
and [<RequireQualifiedAccess>] WorkspacePeekFoundSolutionConfiguration =
{ Id: string
ConfigurationName: string
PlatformName: string }
type FsdnResponse = { Functions: string[] }
type HighlightingRange =
{ range: Fable.Import.VSCode.Vscode.Range
tokenType: string }
type HighlightingResponse = { highlights: HighlightingRange[] }
type ResponseError<'T> =
{ Code: int
Message: string
AdditionalData: 'T }
[<RequireQualifiedAccess>]
type ErrorCodes =
| GenericError = 1
| ProjectNotRestored = 100
| ProjectParsingFailed = 101
| LanguageNotSupported = 102
module ErrorDataTypes =
type ProjectNotRestoredData = { Project: ProjectFilePath }
type ProjectParsingFailedData = { Project: ProjectFilePath }
type LanguageNotSupportedData = { Project: ProjectFilePath }
[<RequireQualifiedAccess>]
type ErrorData =
| GenericError
| ProjectNotRestored of ErrorDataTypes.ProjectNotRestoredData
| ProjectParsingFailed of ErrorDataTypes.ProjectParsingFailedData
| LangugageNotSupported of ErrorDataTypes.LanguageNotSupportedData
type UnusedDeclaration = { Range: Range; IsThisMember: bool }
type UnusedDeclarations = { Declarations: UnusedDeclaration[] }
type UnusedOpens = { Declarations: Range[] }
type SimplifiedNameData =
{ RelativeName: string
UnnecessaryRange: Range }
type SimplifiedName = { Names: SimplifiedNameData[] }
type CompileData = { Code: int }
type PipelineHint =
{ Line: int
Types: string[]
PrecedingNonPipeExprLine: int option }
type TestAdapterEntry =
{ name: string
range: Fable.Import.VSCode.Vscode.Range
childs: TestAdapterEntry[]
id: int
list: bool
``type``: string
moduleType: string }
type TestForFile =
{ file: string
tests: TestAdapterEntry[] }
type Result<'T> = { Kind: string; Data: 'T }
type HelptextResult = Result<Helptext>
type CompletionResult = Result<Completion[]>
type SymbolUseResult = Result<SymbolUses>
type TooltipResult = Result<TooltipSignature[][]>
type ParseResult = Result<ErrorResp>
type FindDeclarationResult = Result<Declaration>
type MethodResult = Result<Method>
type DeclarationResult = Result<Symbols[]>
type LintResult = Result<Lint[]>
type ProjectResult = Result<Project>
type ProjectLoadingResult = Result<ProjectLoading>
type ResolveNamespaceResult = Result<ResolveNamespace>
type UnionCaseGeneratorResult = Result<UnionCaseGenerator>
type SignatureDataResult = Result<SignatureData>
type WorkspacePeekResult = Result<WorkspacePeek>
type UnusedOpensResult = Result<UnusedOpens>
type UnusedDeclarationsResult = Result<UnusedDeclarations>
type SimplifiedNameResult = Result<SimplifiedName>
type RangesAtPositionsResult = Result<RangesAtPosition>
type CompileResult = Result<CompileData>
type AnalyzerResult = Result<AnalyzerResponse>
type FsdnResult = Result<FsdnResponse>
type HighlightingResult = Result<HighlightingResponse>
type FSharpLiterateResult = Result<string>
type PipelineHintsResult = Result<PipelineHint array>
type TestResult = Result<TestForFile>
module DotnetNew =
type Template =
{ Name: string
ShortName: string
Tags: string list }
type DotnetNewListRequest = { Query: string }
type DotnetNewRunRequest =
{ Template: string
Output: string option
Name: string option }
type DotnetNewListResponse = Result<Template list>
type DotnetNewRunResponse = Result<string>
module FsProj =
type DotnetProjectRequest = { Target: string; Reference: string }
type DotnetFileRequest =
{ FsProj: string
FileVirtualPath: string }
type DotnetFile2Request =
{ FsProj: string
FileVirtualPath: string
NewFile: string }
type DotnetRenameFileRequest =
{ FsProj: string
OldFileVirtualPath: string
NewFileName: string }