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-11-21 09:26:10 -07:00
|
|
|
"golang.org/x/tools/internal/telemetry/log"
|
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-11-20 14:38:43 -07:00
|
|
|
func Highlight(ctx context.Context, snapshot Snapshot, f File, 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-11-20 12:26:02 -07:00
|
|
|
fh := snapshot.Handle(ctx, f)
|
2019-11-29 23:17:57 -07:00
|
|
|
phs, err := snapshot.PackageHandles(ctx, fh)
|
2019-11-19 12:18:53 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-29 23:17:57 -07:00
|
|
|
ph, err := WidestCheckPackageHandle(phs)
|
2019-11-19 12:18:53 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-29 23:17:57 -07:00
|
|
|
pkg, err := ph.Check(ctx)
|
2019-11-19 12:18:53 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-29 23:17:57 -07:00
|
|
|
pgh, err := pkg.File(f.URI())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-11-19 12:18:53 -07:00
|
|
|
}
|
2019-11-29 23:17:57 -07:00
|
|
|
file, m, _, err := pgh.Parse(ctx)
|
2019-09-17 09:19:11 -06:00
|
|
|
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
|
|
|
}
|
2019-11-21 09:26:10 -07:00
|
|
|
|
|
|
|
switch path[0].(type) {
|
|
|
|
case *ast.Ident:
|
|
|
|
return highlightIdentifiers(ctx, snapshot, m, path, pkg)
|
|
|
|
case *ast.BranchStmt, *ast.ForStmt, *ast.RangeStmt:
|
|
|
|
return highlightControlFlow(ctx, snapshot, m, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the cursor is in an unidentified area, return empty results.
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func highlightControlFlow(ctx context.Context, snapshot Snapshot, m *protocol.ColumnMapper, path []ast.Node) ([]protocol.Range, error) {
|
|
|
|
// Reverse walk the path till we get to the for loop.
|
|
|
|
var loop ast.Node
|
|
|
|
Outer:
|
|
|
|
for _, n := range path {
|
|
|
|
switch n.(type) {
|
|
|
|
case *ast.ForStmt, *ast.RangeStmt:
|
|
|
|
loop = n
|
|
|
|
break Outer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if loop == nil {
|
|
|
|
// Cursor is not in a for loop.
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var result []protocol.Range
|
|
|
|
|
|
|
|
// Add the for statement.
|
2019-11-22 12:49:12 -07:00
|
|
|
forStmt, err := posToRange(snapshot.View(), m, loop.Pos(), loop.Pos()+3)
|
2019-11-21 09:26:10 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rng, err := forStmt.Range()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
result = append(result, rng)
|
|
|
|
|
|
|
|
ast.Inspect(loop, func(n ast.Node) bool {
|
|
|
|
// Don't traverse any other for loops.
|
|
|
|
switch n.(type) {
|
|
|
|
case *ast.ForStmt, *ast.RangeStmt:
|
|
|
|
return loop == n
|
|
|
|
}
|
|
|
|
|
|
|
|
if n, ok := n.(*ast.BranchStmt); ok {
|
|
|
|
// Add all branch statements in same scope as the identified one.
|
|
|
|
rng, err := nodeToProtocolRange(ctx, snapshot.View(), m, n)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(ctx, "Error getting range for node", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
result = append(result, rng)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func highlightIdentifiers(ctx context.Context, snapshot Snapshot, m *protocol.ColumnMapper, path []ast.Node, pkg Package) ([]protocol.Range, error) {
|
|
|
|
var result []protocol.Range
|
2019-03-25 18:56:05 -06:00
|
|
|
id, ok := path[0].(*ast.Ident)
|
|
|
|
if !ok {
|
2019-11-21 09:26:10 -07:00
|
|
|
return nil, errors.Errorf("highlightIdentifiers called with an ast.Node of type %T", id)
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
2019-11-19 12:18:53 -07:00
|
|
|
|
2019-11-21 09:26:10 -07:00
|
|
|
idObj := pkg.GetTypesInfo().ObjectOf(id)
|
2019-11-19 12:18:53 -07:00
|
|
|
ast.Inspect(path[len(path)-1], func(node ast.Node) bool {
|
|
|
|
n, ok := node.(*ast.Ident)
|
|
|
|
if !ok {
|
|
|
|
return true
|
|
|
|
}
|
2019-11-21 09:26:10 -07:00
|
|
|
if n.Name != id.Name || n.Obj != id.Obj {
|
|
|
|
return false
|
2019-11-19 12:18:53 -07:00
|
|
|
}
|
2019-11-21 09:26:10 -07:00
|
|
|
if nObj := pkg.GetTypesInfo().ObjectOf(n); nObj != idObj {
|
2019-11-19 12:18:53 -07:00
|
|
|
return false
|
|
|
|
}
|
2019-11-21 09:26:10 -07:00
|
|
|
|
2019-11-20 14:38:43 -07:00
|
|
|
if rng, err := nodeToProtocolRange(ctx, snapshot.View(), m, n); err == nil {
|
2019-11-19 12:18:53 -07:00
|
|
|
result = append(result, rng)
|
2019-11-21 09:26:10 -07:00
|
|
|
} else {
|
|
|
|
log.Error(ctx, "Error getting range for node", err)
|
2019-11-19 12:18:53 -07:00
|
|
|
}
|
2019-11-21 09:26:10 -07:00
|
|
|
return false
|
2019-11-19 12:18:53 -07:00
|
|
|
})
|
2019-06-21 15:00:02 -06:00
|
|
|
return result, nil
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|