2019-03-25 18:56:05 -06:00
|
|
|
// Copyright 2019 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 source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"go/ast"
|
|
|
|
|
|
|
|
"golang.org/x/tools/go/ast/astutil"
|
2019-09-05 16:54:05 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
2019-03-25 18:56:05 -06:00
|
|
|
"golang.org/x/tools/internal/span"
|
2019-08-13 13:07:39 -06:00
|
|
|
"golang.org/x/tools/internal/telemetry/trace"
|
2019-08-06 13:13:11 -06:00
|
|
|
errors "golang.org/x/xerrors"
|
2019-03-25 18:56:05 -06:00
|
|
|
)
|
|
|
|
|
2019-09-05 16:54:05 -06:00
|
|
|
func Highlight(ctx context.Context, view View, uri span.URI, pos protocol.Position) ([]protocol.Range, error) {
|
2019-06-26 20:46:12 -06:00
|
|
|
ctx, done := trace.StartSpan(ctx, "source.Highlight")
|
|
|
|
defer done()
|
2019-07-11 19:05:55 -06:00
|
|
|
|
2019-09-16 16:17:51 -06:00
|
|
|
f, err := view.GetFile(ctx, uri)
|
2019-09-05 16:54:05 -06:00
|
|
|
if err != nil {
|
2019-07-11 19:05:55 -06:00
|
|
|
return nil, err
|
2019-05-20 13:23:02 -06:00
|
|
|
}
|
2019-09-27 11:17:59 -06:00
|
|
|
fh := view.Snapshot().Handle(ctx, f)
|
|
|
|
ph := view.Session().Cache().ParseGoHandle(fh, ParseFull)
|
2019-09-17 09:19:11 -06:00
|
|
|
file, m, _, err := ph.Parse(ctx)
|
|
|
|
if err != nil {
|
2019-09-16 16:17:51 -06:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-09-05 16:54:05 -06:00
|
|
|
spn, err := m.PointSpan(pos)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rng, err := spn.Range(m.Converter)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
path, _ := astutil.PathEnclosingInterval(file, rng.Start, rng.Start)
|
2019-03-25 18:56:05 -06:00
|
|
|
if len(path) == 0 {
|
2019-10-07 10:55:38 -06:00
|
|
|
return nil, errors.Errorf("no enclosing position found for %v:%v", int(pos.Line), int(pos.Character))
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
|
|
|
id, ok := path[0].(*ast.Ident)
|
|
|
|
if !ok {
|
2019-10-07 10:55:38 -06:00
|
|
|
// If the cursor is not within an identifier, return empty results.
|
|
|
|
return []protocol.Range{}, nil
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
2019-09-05 16:54:05 -06:00
|
|
|
var result []protocol.Range
|
2019-03-25 18:56:05 -06:00
|
|
|
if id.Obj != nil {
|
|
|
|
ast.Inspect(path[len(path)-1], func(n ast.Node) bool {
|
|
|
|
if n, ok := n.(*ast.Ident); ok && n.Obj == id.Obj {
|
2019-09-16 16:17:51 -06:00
|
|
|
rng, err := nodeToProtocolRange(ctx, view, m, n)
|
2019-03-25 18:56:05 -06:00
|
|
|
if err == nil {
|
2019-09-05 16:54:05 -06:00
|
|
|
result = append(result, rng)
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
2019-06-21 15:00:02 -06:00
|
|
|
return result, nil
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|