-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathworkspace_symbol.go
565 lines (514 loc) · 16.6 KB
/
workspace_symbol.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
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package golang
import (
"cmp"
"context"
"fmt"
"path/filepath"
"runtime"
"slices"
"sort"
"strings"
"unicode"
"golang.org/x/tools/gopls/internal/cache"
"golang.org/x/tools/gopls/internal/cache/metadata"
"golang.org/x/tools/gopls/internal/cache/symbols"
"golang.org/x/tools/gopls/internal/fuzzy"
"golang.org/x/tools/gopls/internal/protocol"
"golang.org/x/tools/gopls/internal/settings"
"golang.org/x/tools/internal/event"
)
// maxSymbols defines the maximum number of symbol results that should ever be
// sent in response to a client.
const maxSymbols = 100
// WorkspaceSymbols matches symbols across all views using the given query,
// according to the match semantics parameterized by matcherType and style.
//
// The workspace symbol method is defined in the spec as follows:
//
// The workspace symbol request is sent from the client to the server to
// list project-wide symbols matching the query string.
//
// It is unclear what "project-wide" means here, but given the parameters of
// workspace/symbol do not include any workspace identifier, then it has to be
// assumed that "project-wide" means "across all workspaces". Hence why
// WorkspaceSymbols receives the views []View.
//
// However, it then becomes unclear what it would mean to call WorkspaceSymbols
// with a different configured SymbolMatcher per View. Therefore we assume that
// Session level configuration will define the SymbolMatcher to be used for the
// WorkspaceSymbols method.
func WorkspaceSymbols(ctx context.Context, matcher settings.SymbolMatcher, style settings.SymbolStyle, snapshots []*cache.Snapshot, query string) ([]protocol.SymbolInformation, error) {
ctx, done := event.Start(ctx, "golang.WorkspaceSymbols")
defer done()
if query == "" {
return nil, nil
}
var s symbolizer
switch style {
case settings.DynamicSymbols:
s = dynamicSymbolMatch
case settings.FullyQualifiedSymbols:
s = fullyQualifiedSymbolMatch
case settings.PackageQualifiedSymbols:
s = packageSymbolMatch
default:
panic(fmt.Errorf("unknown symbol style: %v", style))
}
return collectSymbols(ctx, snapshots, matcher, s, query)
}
// A matcherFunc returns the index and score of a symbol match.
//
// See the comment for symbolCollector for more information.
type matcherFunc func(chunks []string) (int, float64)
// A symbolizer returns the best symbol match for a name with pkg, according to
// some heuristic. The symbol name is passed as the slice nameParts of logical
// name pieces. For example, for myType.field the caller can pass either
// []string{"myType.field"} or []string{"myType.", "field"}.
//
// See the comment for symbolCollector for more information.
//
// The space argument is an empty slice with spare capacity that may be used
// to allocate the result.
type symbolizer func(space []string, name string, pkg *metadata.Package, m matcherFunc) ([]string, float64)
func fullyQualifiedSymbolMatch(space []string, name string, pkg *metadata.Package, matcher matcherFunc) ([]string, float64) {
if _, score := dynamicSymbolMatch(space, name, pkg, matcher); score > 0 {
return append(space, string(pkg.PkgPath), ".", name), score
}
return nil, 0
}
func dynamicSymbolMatch(space []string, name string, pkg *metadata.Package, matcher matcherFunc) ([]string, float64) {
if metadata.IsCommandLineArguments(pkg.ID) {
// command-line-arguments packages have a non-sensical package path, so
// just use their package name.
return packageSymbolMatch(space, name, pkg, matcher)
}
var score float64
endsInPkgName := strings.HasSuffix(string(pkg.PkgPath), string(pkg.Name))
// If the package path does not end in the package name, we need to check the
// package-qualified symbol as an extra pass first.
if !endsInPkgName {
pkgQualified := append(space, string(pkg.Name), ".", name)
idx, score := matcher(pkgQualified)
nameStart := len(pkg.Name) + 1
if score > 0 {
// If our match is contained entirely within the unqualified portion,
// just return that.
if idx >= nameStart {
return append(space, name), score
}
// Lower the score for matches that include the package name.
return pkgQualified, score * 0.8
}
}
// Now try matching the fully qualified symbol.
fullyQualified := append(space, string(pkg.PkgPath), ".", name)
idx, score := matcher(fullyQualified)
// As above, check if we matched just the unqualified symbol name.
nameStart := len(pkg.PkgPath) + 1
if idx >= nameStart {
return append(space, name), score
}
// If our package path ends in the package name, we'll have skipped the
// initial pass above, so check if we matched just the package-qualified
// name.
if endsInPkgName && idx >= 0 {
pkgStart := len(pkg.PkgPath) - len(pkg.Name)
if idx >= pkgStart {
return append(space, string(pkg.Name), ".", name), score
}
}
// Our match was not contained within the unqualified or package qualified
// symbol. Return the fully qualified symbol but discount the score.
return fullyQualified, score * 0.6
}
func packageSymbolMatch(space []string, name string, pkg *metadata.Package, matcher matcherFunc) ([]string, float64) {
qualified := append(space, string(pkg.Name), ".", name)
if _, s := matcher(qualified); s > 0 {
return qualified, s
}
return nil, 0
}
func buildMatcher(matcher settings.SymbolMatcher, query string) matcherFunc {
switch matcher {
case settings.SymbolFuzzy:
return parseQuery(query, newFuzzyMatcher)
case settings.SymbolFastFuzzy:
return parseQuery(query, func(query string) matcherFunc {
return fuzzy.NewSymbolMatcher(query).Match
})
case settings.SymbolCaseSensitive:
return matchExact(query)
case settings.SymbolCaseInsensitive:
q := strings.ToLower(query)
exact := matchExact(q)
wrapper := []string{""}
return func(chunks []string) (int, float64) {
s := strings.Join(chunks, "")
wrapper[0] = strings.ToLower(s)
return exact(wrapper)
}
}
panic(fmt.Errorf("unknown symbol matcher: %v", matcher))
}
func newFuzzyMatcher(query string) matcherFunc {
fm := fuzzy.NewMatcher(query)
return func(chunks []string) (int, float64) {
score := float64(fm.ScoreChunks(chunks))
ranges := fm.MatchedRanges()
if len(ranges) > 0 {
return ranges[0], score
}
return -1, score
}
}
// parseQuery parses a field-separated symbol query, extracting the special
// characters listed below, and returns a matcherFunc corresponding to the AND
// of all field queries.
//
// Special characters:
//
// ^ match exact prefix
// $ match exact suffix
// ' match exact
//
// In all three of these special queries, matches are 'smart-cased', meaning
// they are case sensitive if the symbol query contains any upper-case
// characters, and case insensitive otherwise.
func parseQuery(q string, newMatcher func(string) matcherFunc) matcherFunc {
fields := strings.Fields(q)
if len(fields) == 0 {
return func([]string) (int, float64) { return -1, 0 }
}
var funcs []matcherFunc
for _, field := range fields {
var f matcherFunc
switch {
case strings.HasPrefix(field, "^"):
prefix := field[1:]
f = smartCase(prefix, func(chunks []string) (int, float64) {
s := strings.Join(chunks, "")
if strings.HasPrefix(s, prefix) {
return 0, 1
}
return -1, 0
})
case strings.HasPrefix(field, "'"):
exact := field[1:]
f = smartCase(exact, matchExact(exact))
case strings.HasSuffix(field, "$"):
suffix := field[0 : len(field)-1]
f = smartCase(suffix, func(chunks []string) (int, float64) {
s := strings.Join(chunks, "")
if strings.HasSuffix(s, suffix) {
return len(s) - len(suffix), 1
}
return -1, 0
})
default:
f = newMatcher(field)
}
funcs = append(funcs, f)
}
if len(funcs) == 1 {
return funcs[0]
}
return comboMatcher(funcs).match
}
func matchExact(exact string) matcherFunc {
return func(chunks []string) (int, float64) {
s := strings.Join(chunks, "")
if idx := strings.LastIndex(s, exact); idx >= 0 {
return idx, 1
}
return -1, 0
}
}
// smartCase returns a matcherFunc that is case-sensitive if q contains any
// upper-case characters, and case-insensitive otherwise.
func smartCase(q string, m matcherFunc) matcherFunc {
insensitive := strings.ToLower(q) == q
wrapper := []string{""}
return func(chunks []string) (int, float64) {
s := strings.Join(chunks, "")
if insensitive {
s = strings.ToLower(s)
}
wrapper[0] = s
return m(wrapper)
}
}
type comboMatcher []matcherFunc
func (c comboMatcher) match(chunks []string) (int, float64) {
score := 1.0
first := 0
for _, f := range c {
idx, s := f(chunks)
if idx < first {
first = idx
}
score *= s
}
return first, score
}
// collectSymbols calls snapshot.Symbols to walk the syntax trees of
// all files in the views' current snapshots, and returns a sorted,
// scored list of symbols that best match the parameters.
//
// How it matches symbols is parameterized by two interfaces:
// - A matcherFunc determines how well a string symbol matches a query. It
// returns a non-negative score indicating the quality of the match. A score
// of zero indicates no match.
// - A symbolizer determines how we extract the symbol for an object. This
// enables the 'symbolStyle' configuration option.
func collectSymbols(ctx context.Context, snapshots []*cache.Snapshot, matcherType settings.SymbolMatcher, symbolizer symbolizer, query string) ([]protocol.SymbolInformation, error) {
// Extract symbols from all files.
var work []symbolFile
seen := make(map[protocol.DocumentURI]*metadata.Package) // only scan each file once
for _, snapshot := range snapshots {
// Use the root view URIs for determining (lexically)
// whether a URI is in any open workspace.
folderURI := snapshot.Folder()
pathIncluded := cache.PathIncludeFunc(snapshot.Options().DirectoryFilters)
folder := filepath.ToSlash(folderURI.Path())
var (
mps []*metadata.Package
err error
)
if snapshot.Options().SymbolScope == settings.AllSymbolScope {
mps, err = snapshot.AllMetadata(ctx)
} else {
mps, err = snapshot.WorkspaceMetadata(ctx)
}
if err != nil {
return nil, err
}
metadata.RemoveIntermediateTestVariants(&mps)
// We'll process packages in order to consider candidate symbols.
//
// The order here doesn't matter for correctness, but can affect
// performance:
// - As workspace packages score higher than non-workspace packages,
// sort them first to increase the likelihood that non-workspace
// symbols are skipped.
// - As files can be contained in multiple packages, sort by wider
// packages first, to cover all files with fewer packages.
workspacePackages := snapshot.WorkspacePackages()
slices.SortFunc(mps, func(a, b *metadata.Package) int {
_, aworkspace := workspacePackages.Value(a.ID)
_, bworkspace := workspacePackages.Value(b.ID)
if cmp := boolCompare(aworkspace, bworkspace); cmp != 0 {
return -cmp // workspace packages first
}
return -cmp.Compare(len(a.CompiledGoFiles), len(b.CompiledGoFiles)) // widest first
})
// Filter out unneeded mps in place, and collect file<->package
// associations.
var ids []metadata.PackageID
for _, mp := range mps {
used := false
for _, list := range [][]protocol.DocumentURI{mp.GoFiles, mp.CompiledGoFiles} {
for _, uri := range list {
if _, ok := seen[uri]; !ok {
seen[uri] = mp
used = true
}
}
}
if used {
mps[len(ids)] = mp
ids = append(ids, mp.ID)
}
}
mps = mps[:len(ids)]
symbolPkgs, err := snapshot.Symbols(ctx, ids...)
if err != nil {
return nil, err
}
for i, sp := range symbolPkgs {
if sp == nil {
continue
}
mp := mps[i]
for i, syms := range sp.Symbols {
uri := sp.Files[i]
norm := filepath.ToSlash(uri.Path())
nm := strings.TrimPrefix(norm, folder)
if !pathIncluded(nm) {
continue
}
// Only scan each file once.
if seen[uri] != mp {
continue
}
// seen[uri] = true
_, workspace := workspacePackages.Value(mp.ID)
work = append(work, symbolFile{mp, uri, syms, workspace})
}
}
}
// Match symbols in parallel.
// Each worker has its own symbolStore,
// which we merge at the end.
nmatchers := runtime.GOMAXPROCS(-1) // matching is CPU bound
results := make(chan *symbolStore)
for i := range nmatchers {
go func(i int) {
matcher := buildMatcher(matcherType, query)
store := new(symbolStore)
// Assign files to workers in round-robin fashion.
for j := i; j < len(work); j += nmatchers {
matchFile(store, symbolizer, matcher, work[j])
}
results <- store
}(i)
}
// Gather and merge results as they arrive.
var unified symbolStore
for range nmatchers {
store := <-results
for _, syms := range store.res {
if syms != nil {
unified.store(syms)
}
}
}
return unified.results(), nil
}
// symbolFile holds symbol information for a single file.
type symbolFile struct {
mp *metadata.Package
uri protocol.DocumentURI
syms []symbols.Symbol
workspace bool
}
// matchFile scans a symbol file and adds matching symbols to the store.
func matchFile(store *symbolStore, symbolizer symbolizer, matcher matcherFunc, f symbolFile) {
space := make([]string, 0, 3)
for _, sym := range f.syms {
symbolParts, score := symbolizer(space, sym.Name, f.mp, matcher)
// Check if the score is too low before applying any downranking.
if store.tooLow(score) {
continue
}
// Factors to apply to the match score for the purpose of downranking
// results.
//
// These numbers were crudely calibrated based on trial-and-error using a
// small number of sample queries. Adjust as necessary.
//
// All factors are multiplicative, meaning if more than one applies they are
// multiplied together.
const (
// nonWorkspaceFactor is applied to symbols outside the workspace.
// Developers are less likely to want to jump to code that they
// are not actively working on.
nonWorkspaceFactor = 0.5
// nonWorkspaceUnexportedFactor is applied to unexported symbols outside
// the workspace. Since one wouldn't usually jump to unexported
// symbols to understand a package API, they are particularly irrelevant.
nonWorkspaceUnexportedFactor = 0.5
// every field or method nesting level to access the field decreases
// the score by a factor of 1.0 - depth*depthFactor, up to a depth of
// 3.
//
// Use a small constant here, as this exists mostly to break ties
// (e.g. given a type Foo and a field x.Foo, prefer Foo).
depthFactor = 0.01
)
// TODO(rfindley): compute this downranking *before* calling the symbolizer
// (which is expensive), so that we can pre-filter candidates whose score
// will always be too low, even with a perfect match.
startWord := true
exported := true
depth := 0.0
for _, r := range sym.Name {
if startWord && !unicode.IsUpper(r) {
exported = false
}
if r == '.' {
startWord = true
depth++
} else {
startWord = false
}
}
// Apply downranking based on workspace position.
if !f.workspace {
score *= nonWorkspaceFactor
if !exported {
score *= nonWorkspaceUnexportedFactor
}
}
// Apply downranking based on symbol depth.
if depth > 3 {
depth = 3
}
score *= 1.0 - depth*depthFactor
if store.tooLow(score) {
continue
}
si := &scoredSymbol{
score: score,
info: protocol.SymbolInformation{
Name: strings.Join(symbolParts, ""),
Kind: sym.Kind,
Location: protocol.Location{
URI: f.uri,
Range: sym.Range,
},
ContainerName: string(f.mp.PkgPath),
},
}
store.store(si)
}
}
type symbolStore struct {
res [maxSymbols]*scoredSymbol
}
// store inserts si into the sorted results, if si has a high enough score.
func (sc *symbolStore) store(ss *scoredSymbol) {
if sc.tooLow(ss.score) {
return
}
insertAt := sort.Search(len(sc.res), func(i int) bool {
if sc.res[i] == nil {
return true
}
// Sort by score, then symbol length, and finally lexically.
if ss.score != sc.res[i].score {
return ss.score > sc.res[i].score
}
if cmp := cmp.Compare(len(ss.info.Name), len(sc.res[i].info.Name)); cmp != 0 {
return cmp < 0 // shortest first
}
return ss.info.Name < sc.res[i].info.Name
})
if insertAt < len(sc.res)-1 {
copy(sc.res[insertAt+1:], sc.res[insertAt:len(sc.res)-1])
}
sc.res[insertAt] = ss
}
func (sc *symbolStore) tooLow(score float64) bool {
last := sc.res[len(sc.res)-1]
if last == nil {
return false
}
return score <= last.score
}
func (sc *symbolStore) results() []protocol.SymbolInformation {
var res []protocol.SymbolInformation
for _, si := range sc.res {
if si == nil || si.score <= 0 {
return res
}
res = append(res, si.info)
}
return res
}
type scoredSymbol struct {
score float64
info protocol.SymbolInformation
}