-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
244 lines (209 loc) · 6.95 KB
/
types.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
package main
import (
"encoding/json"
"os"
protocol "github.com/tliron/glsp/protocol_3_16"
)
type QatSession struct {
handler protocol.Handler
workspaces []protocol.WorkspaceFolder
files []File
}
type File struct {
uri string
version protocol.Integer
content string
isOpen bool
}
type Position struct {
Line protocol.UInteger `json:"line"`
Character protocol.UInteger `json:"character"`
}
type FileRange struct {
Path string `json:"path"`
Start Position `json:"start"`
End Position `json:"end"`
}
func (self FileRange) IsSamePathAs(pathVal string) bool {
selfPathInfo, err := os.Lstat(self.Path)
if err != nil {
Server.Log.Error("Error getting FileInfo of path: " + self.Path)
return false
}
pathValInfo, err := os.Lstat(pathVal)
if err != nil {
Server.Log.Error("Error getting FileInfo of path: " + pathVal)
return false
}
return os.SameFile(selfPathInfo, pathValInfo)
}
func (self FileRange) IsWithin(pathVal string, pos Position) bool {
return self.IsSamePathAs(pathVal) && ((self.Start.Line < pos.Line) && (self.End.Line > pos.Line)) || ((self.Start.Line == pos.Line) && (self.Start.Character <= pos.Character) && (self.End.Line == pos.Line) && (self.End.Character >= pos.Character)) || ((self.Start.Line == pos.Line) && (self.Start.Character <= pos.Character)) || ((self.End.Line == pos.Line) && (self.End.Character >= pos.Character))
}
func (self FileRange) IsRightAfter(pathVal string, pos Position) bool {
return self.IsSamePathAs(pathVal) && (self.End.Line == pos.Line) && ((self.End.Character + 1) == pos.Character)
}
// CODE INFO TYPES
type Visibility struct {
Nature string `json:"nature"`
HasModule bool `json:"hasModule"`
ModuleID string `json:"moduleID"`
HasType bool `json:"hasType"`
TypeID string `json:"typeID"`
}
type BroughtMention struct {
ModuleID string `json:"module"`
Range FileRange `json:"range"`
}
type Mod struct {
Info struct {
ID string `json:"moduleID"`
FullName string `json:"fullName"`
IsFilesystemLib bool `json:"isFilesystemLib"`
ModuleType string `json:"moduleType"`
Visibility Visibility `json:"visibility"`
HasModuleInitialiser bool `json:"hasModuleInitialiser"`
IntegerBitwidths []json.Number `json:"integerBitwidths"`
UnsignedBitwidths []json.Number `json:"unsignedBitwidths"`
FilesystemBroughtMentions []FileRange `json:"filesystemBroughtMentions"`
} `json:"info"`
Range FileRange `json:"origin"`
Mentions []FileRange `json:"mentions"`
BroughtMentions []BroughtMention `json:"broughtMentions"`
}
type LocalValue struct {
Info struct {
Name string `json:"name"`
TypeID string `json:"typeID"`
TypeName string `json:"type"`
IsVariable bool `json:"isVariable"`
FunctionID string `json:"functionID"`
} `json:"info"`
Range FileRange `json:"origin"`
Mentions []FileRange `json:"mentions"`
}
type Argument struct {
TypeID string `json:"typeID"`
Name *string `json:"name,omitempty"`
IsVar bool `json:"isVar"`
}
type Function struct {
Info struct {
Name string `json:"name"`
FullName string `json:"fullName"`
ID string `json:"functionID"`
Arguments []Argument `json:"arguments"`
GenericArgs []GenericArgument `json:"genericArguments"`
ModuleID string `json:"moduleID"`
Visibility Visibility `json:"visibility"`
IsVariadic bool `json:"isVariadic"`
LocalValues []LocalValue `json:"locals"`
DefinitionRange *FileRange `json:"definitionRange,omitempty"`
} `json:"info"`
Range FileRange `json:"origin"`
Mentions []FileRange `json:"mentions"`
BroughtMentions []BroughtMention `json:"broughtMentions"`
}
// Function - GenericEntity interface
func (self Function) IsGeneric() bool {
return len(self.Info.GenericArgs) != 0
}
func (self Function) GenericArgumentCount() int {
return len(self.Info.GenericArgs)
}
func (self Function) HasGenericArgument(name string) bool {
for _, arg := range self.Info.GenericArgs {
if arg.Name == name {
return true
}
}
return false
}
func (self Function) GetGenericArgument(name string) *GenericArgument {
for _, arg := range self.Info.GenericArgs {
if arg.Name == name {
return &arg
}
}
return nil
}
type GenericFunction struct {
Info struct {
Name string `json:"name"`
FullName string `json:"fullName"`
ID string `json:"functionID"`
GenericParameters []GenericAbstractParameter `json:"genericParameters"`
ModuleID string `json:"moduleID"`
Visibility Visibility `json:"visibility"`
} `json:"info"`
Range FileRange `json:"origin"`
Mentions []FileRange `json:"mentions"`
BroughtMentions []BroughtMention `json:"broughtMentions"`
}
type StructField struct {
Info struct {
Name string `json:"name"`
TypeID string `json:"typeID"`
TypeName string `json:"type"`
IsVar bool `json:"isVariable"`
Visibility Visibility `json:"visibility"`
} `json:"info"`
Range FileRange `json:"origin"`
Mentions []FileRange `json:"mentions"`
}
type StaticField struct {
Info struct {
ParentID string `json:"parentID"`
TypeID string `json:"typeID"`
TypeName string `json:"type"`
Name string `json:"name"`
FullName string `json:"fullName"`
Visibility Visibility `json:"visibility"`
IsVar bool `json:"isVariable"`
ModuleID string `json:"moduleID"`
} `json:"info"`
Range FileRange `json:"origin"`
Mentions []FileRange `json:"mentions"`
BroughtMentions []BroughtMention `json:"broughtMentions"`
}
type GenericAbstractParameter struct {
Kind string `json:"genericKind"`
Index json.Number `json:"index"`
Name string `json:"name"`
HasDefault bool `json:"hasDefault"`
DefaultValue *string `json:"defaultValueString,omitempty"`
Range FileRange `json:"range"`
}
type TypeField struct {
Type Type
Name string
}
type TypeStaticField struct {
Type Type
Name string
}
type Type interface {
GetID() string
GetFullName() string
IsTriviallyCopyable() bool
IsTriviallyMovable() bool
IsCopyConstructible() bool
IsCopyAssignable() bool
IsMoveConstructible() bool
IsMoveAssignable() bool
HasFields() bool
GetFields() []TypeField
HasStaticFields() bool
GetStaticFields() []TypeStaticField
HasMethods() bool
GetMethods() []MethodSignature
HasStaticMethods() bool
GetStaticMethods() []FunctionSignature
}
type GenericEntity interface {
IsGeneric() bool
GenericArgumentCount() uint32
HasGenericArgument(name string) bool
GetGenericArgument(name string) *GenericArgument
}
var allTypes map[string]Type