This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
definition.go
439 lines (392 loc) · 10.3 KB
/
definition.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
package lsp
import (
"context"
"encoding/json"
"errors"
"fmt"
"go/ast"
"go/token"
"go/types"
"log/slog"
"path/filepath"
"strings"
"go.lsp.dev/jsonrpc2"
"go.lsp.dev/protocol"
"go.lsp.dev/uri"
)
func (s *server) Definition(ctx context.Context, reply jsonrpc2.Replier, req jsonrpc2.Request) error {
var params protocol.DefinitionParams
if err := json.Unmarshal(req.Params(), ¶ms); err != nil {
return sendParseError(ctx, reply, err)
}
uri := params.TextDocument.URI
// Get snapshot of the current file
file, ok := s.snapshot.Get(uri.Filename())
if !ok {
return reply(ctx, nil, errors.New("snapshot not found"))
}
// Try parsing current file
pgf, err := file.ParseGno(ctx)
if err != nil {
return reply(ctx, nil, errors.New("cannot parse gno file"))
}
// Load pkg from cache
pkg, ok := s.cache.pkgs.Get(filepath.Dir(string(params.TextDocument.URI.Filename())))
if !ok {
return reply(ctx, nil, nil)
}
info := pkg.TypeCheckResult.info
// Calculate offset and line
offset := file.PositionToOffset(params.Position)
line := params.Position.Line + 1 // starts at 0, so adding 1
slog.Info("definition", "offset", offset)
// Handle definition for import paths
for _, spec := range pgf.File.Imports {
// Inclusive of the end points
if spec.Path.Pos() <= token.Pos(offset) && token.Pos(offset) <= spec.Path.End() {
path := spec.Path.Value[1 : len(spec.Path.Value)-1]
parts := strings.Split(path, "/")
last := parts[len(parts)-1]
pkg := s.completionStore.lookupPkg(last)
if pkg == nil {
return reply(ctx, nil, nil)
}
if len(pkg.Symbols) < 1 {
return reply(ctx, nil, nil)
}
return reply(ctx, protocol.Location{
URI: pkg.Symbols[0].FileURI,
Range: *posToRange(
1,
[]int{0, 0},
),
}, nil)
}
}
// Get path enclosing
paths := pathEnclosingObjNode(pgf.File, token.Pos(offset))
if len(paths) < 2 {
return reply(ctx, nil, nil)
}
switch n := paths[0].(type) {
case *ast.Ident:
_, tv := getTypeAndValue(
*pkg.TypeCheckResult.fset,
info, n.Name,
int(line),
offset,
)
if tv == nil || tv.Type == nil {
switch t := paths[1].(type) {
case *ast.FuncDecl:
if t.Recv != nil {
return definitionMethodDecl(ctx, reply, params, pkg, n, t)
}
return definitionFuncDecl(ctx, reply, params, pkg, n)
case *ast.SelectorExpr:
return definitionSelectorExpr(ctx, s, reply, params, pgf, pkg, paths, n, t, int(line))
default:
return reply(ctx, nil, nil)
}
}
typeStr := tv.Type.String()
m := mode(*tv)
isPackageLevelGlobal := strings.Contains(typeStr, pkg.ImportPath) // better name
// Handle builtins
if _, ok := isBuiltin(n, tv); ok {
return reply(ctx, nil, nil)
}
// local var
if (isPackageLevelGlobal || !strings.Contains(typeStr, "gno.land")) && m == "var" {
return reply(ctx, nil, nil)
}
// local type
if isPackageLevelGlobal && m == "type" {
typeStr := parseType(typeStr, pkg.ImportPath)
return definitionPackageLevelTypes(ctx, reply, params, pkg, n, tv, m, typeStr)
}
// local global and is value
if m == "value" {
typeStr := parseType(typeStr, pkg.ImportPath)
return definitionPackageLevelValue(ctx, reply, params, pkg, n, tv, m, typeStr, isPackageLevelGlobal)
}
return reply(ctx, nil, nil)
default:
return reply(ctx, nil, nil)
}
}
func definitionSelectorExpr(ctx context.Context, s *server, reply jsonrpc2.Replier, params protocol.DefinitionParams, pgf *ParsedGnoFile, pkg *Package, paths []ast.Node, i *ast.Ident, sel *ast.SelectorExpr, line int) error {
exprStr := types.ExprString(sel)
parent := sel.X
parentStr := types.ExprString(parent)
_, tv := getTypeAndValueLight(
*pkg.TypeCheckResult.fset,
pkg.TypeCheckResult.info,
exprStr,
int(line),
)
if tv == nil || tv.Type == nil {
return reply(ctx, nil, nil)
}
tvStr := tv.Type.String()
_, tvParent := getTypeAndValueLight(
*pkg.TypeCheckResult.fset,
pkg.TypeCheckResult.info,
parentStr,
int(line),
)
if tvParent == nil { // can be import
for _, spec := range pgf.File.Imports {
path := spec.Path.Value[1 : len(spec.Path.Value)-1]
parts := strings.Split(path, "/")
last := parts[len(parts)-1]
if last == i.Name { // on pkg name
return reply(ctx, protocol.Location{
URI: params.TextDocument.URI,
Range: *posToRange(
int(1),
[]int{0, 0},
),
}, nil)
} else if last == parentStr { // on package symbol
symbol := s.completionStore.lookupSymbol(parentStr, i.Name)
if symbol == nil {
break
}
fileUri := symbol.FileURI
pos := symbol.Position
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
}
return reply(ctx, nil, nil)
}
tvParentStr := tvParent.Type.String()
if strings.Contains(tvStr, "func") {
if strings.Contains(tvParentStr, pkg.ImportPath) {
return definitionFuncDecl(ctx, reply, params, pkg, i)
}
for _, spec := range pgf.File.Imports {
path := spec.Path.Value[1 : len(spec.Path.Value)-1]
if strings.Contains(tvParentStr, path) { // hover on parent var of kind import
parts := strings.Split(path, "/")
last := parts[len(parts)-1]
pkg := s.completionStore.lookupPkg(last)
if pkg == nil {
break
}
tvParentStrParts := strings.Split(tvParentStr, ".")
parentType := tvParentStrParts[len(tvParentStrParts)-1]
methods, ok := pkg.Methods.Get(parentType)
if !ok {
break
}
var fileUri uri.URI
var pos token.Position
for _, m := range methods {
if m.Name == i.Name {
fileUri = m.FileURI
pos = m.Position
}
}
if fileUri == "" {
break
}
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
}
// can be non gno.land import
// TODO: check if method has the same reciever
// TODO: better load the package and check Methods map
for _, spec := range pgf.File.Imports {
if strings.Contains(spec.Path.Value, "gno.land") {
continue
}
path := spec.Path.Value[1 : len(spec.Path.Value)-1]
symbol := s.completionStore.lookupSymbol(path, i.Name)
if symbol == nil {
continue
}
if symbol.Kind != "func" {
continue
}
fileUri := symbol.FileURI
pos := symbol.Position
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
} else {
var fileUri uri.URI
var pos token.Position
if strings.Contains(tvParentStr, pkg.ImportPath) {
typeName := parseType(tvParentStr, pkg.ImportPath)
for _, s := range pkg.Structures {
if typeName == s.Name {
fileUri = s.FileURI
pos = s.Position
}
}
} else {
for _, spec := range pgf.File.Imports {
path := spec.Path.Value[1 : len(spec.Path.Value)-1]
if !strings.Contains(tvParentStr, path) {
continue
}
parts := strings.Split(path, "/")
last := parts[len(parts)-1]
pkg := s.completionStore.lookupPkg(last)
if pkg == nil {
return reply(ctx, nil, nil)
}
typeName := parseType(tvParentStr, path)
for _, s := range pkg.Structures {
if typeName == s.Name {
fileUri = s.FileURI
pos = s.Position
}
}
}
}
if fileUri == "" {
return reply(ctx, nil, nil)
}
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
return reply(ctx, nil, nil)
}
func definitionMethodDecl(ctx context.Context, reply jsonrpc2.Replier, params protocol.DefinitionParams, pkg *Package, i *ast.Ident, decl *ast.FuncDecl) error {
if decl.Recv.NumFields() != 1 || decl.Recv.List[0].Type == nil {
return reply(ctx, nil, nil)
}
var key string
switch rt := decl.Recv.List[0].Type.(type) {
case *ast.StarExpr:
key = fmt.Sprintf("%s", rt.X)
case *ast.Ident:
key = fmt.Sprintf("%s", rt.Name)
default:
return reply(ctx, nil, nil)
}
methods, ok := pkg.Methods.Get(key)
if !ok {
return reply(ctx, nil, nil)
}
var fileUri uri.URI
var pos token.Position
for _, m := range methods {
if m.Name == i.Name {
fileUri = m.FileURI
pos = m.Position
break
}
}
if fileUri == "" {
return reply(ctx, nil, nil)
}
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
// TODO: handle var doc
func definitionFuncDecl(ctx context.Context, reply jsonrpc2.Replier, params protocol.DefinitionParams, pkg *Package, i *ast.Ident) error {
var fileUri uri.URI
var pos token.Position
for _, s := range pkg.Symbols {
if s.Name == i.Name {
fileUri = s.FileURI
pos = s.Position
break
}
}
if fileUri == "" {
return reply(ctx, nil, nil)
}
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
func definitionPackageLevelValue(ctx context.Context, reply jsonrpc2.Replier, params protocol.DefinitionParams, pkg *Package, i *ast.Ident, tv *types.TypeAndValue, mode, typeStr string, isPackageLevelGlobal bool) error {
var fileUri uri.URI
var pos token.Position
for _, s := range pkg.Symbols {
if s.Name == i.Name {
fileUri = s.FileURI
pos = s.Position
break
}
}
if fileUri == "" {
return reply(ctx, nil, nil)
}
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}
func definitionPackageLevelTypes(ctx context.Context, reply jsonrpc2.Replier, params protocol.DefinitionParams, pkg *Package, i *ast.Ident, tv *types.TypeAndValue, mode, typeName string) error {
// Look into structures
var structure *Structure
for _, st := range pkg.Structures {
if st.Name == fmt.Sprintf("%s", typeName) {
structure = st
break
}
}
var fileUri uri.URI
var pos token.Position
if structure != nil {
fileUri = structure.FileURI
pos = structure.Position
} else { // If not in structures, look into symbols
for _, s := range pkg.Symbols {
if s.Name == i.Name {
fileUri = s.FileURI
pos = s.Position
break
}
}
}
if fileUri == "" {
return reply(ctx, nil, nil)
}
return reply(ctx, protocol.Location{
URI: fileUri,
Range: *posToRange(
int(pos.Line),
[]int{pos.Offset, pos.Offset},
),
}, nil)
}