mirror of
https://github.com/golang/go
synced 2024-11-05 21:36:12 -07:00
ca5866bcf9
In preparation for later changes to the workspace Symbol method, we add a separate configuration option keyed by "symbolMatcher" that specifies the type of matcher to use for workspace symbol requests. We also define a new type SymbolMatcher, the type of this new option. We require SymbolMatcher to be a separate type from Matcher because a later CL adds a type of symbol matcher that does not make sense in the context of other uses of Matcher, e.g. completion. Change-Id: Icde7d270b9efb64444f35675a8d0b48ad3b8b3dd Reviewed-on: https://go-review.googlesource.com/c/tools/+/228122 Reviewed-by: Robert Findley <rfindley@google.com>
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
// 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 cmd
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
"golang.org/x/tools/internal/tool"
|
|
)
|
|
|
|
// workspaceSymbol implements the workspace_symbol verb for gopls.
|
|
type workspaceSymbol struct {
|
|
Matcher string `flag:"matcher" help:"specifies the type of matcher: fuzzy, caseSensitive, or caseInsensitive.\nThe default is caseInsensitive."`
|
|
|
|
app *Application
|
|
}
|
|
|
|
func (r *workspaceSymbol) Name() string { return "workspace_symbol" }
|
|
func (r *workspaceSymbol) Usage() string { return "<query>" }
|
|
func (r *workspaceSymbol) ShortHelp() string { return "search symbols in workspace" }
|
|
func (r *workspaceSymbol) DetailedHelp(f *flag.FlagSet) {
|
|
fmt.Fprint(f.Output(), `
|
|
Example:
|
|
|
|
$ gopls workspace_symbol -matcher fuzzy 'wsymbols'
|
|
|
|
gopls workspace_symbol flags are:
|
|
`)
|
|
f.PrintDefaults()
|
|
}
|
|
|
|
func (r *workspaceSymbol) Run(ctx context.Context, args ...string) error {
|
|
if len(args) != 1 {
|
|
return tool.CommandLineErrorf("workspace_symbol expects 1 argument")
|
|
}
|
|
|
|
opts := r.app.options
|
|
r.app.options = func(o *source.Options) {
|
|
if opts != nil {
|
|
opts(o)
|
|
}
|
|
switch r.Matcher {
|
|
case "fuzzy":
|
|
o.SymbolMatcher = source.SymbolFuzzy
|
|
case "caseSensitive":
|
|
o.SymbolMatcher = source.SymbolCaseSensitive
|
|
default:
|
|
o.SymbolMatcher = source.SymbolCaseInsensitive
|
|
}
|
|
}
|
|
|
|
conn, err := r.app.connect(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer conn.terminate(ctx)
|
|
|
|
p := protocol.WorkspaceSymbolParams{
|
|
Query: args[0],
|
|
}
|
|
|
|
symbols, err := conn.Symbol(ctx, &p)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, s := range symbols {
|
|
f := conn.AddFile(ctx, fileURI(s.Location.URI))
|
|
span, err := f.mapper.Span(s.Location)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("%s %s %s\n", span, s.Name, s.Kind)
|
|
}
|
|
|
|
return nil
|
|
}
|