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
|
// 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 (
"context"
"errors"
"fmt"
"go/ast"
"go/token"
"go/types"
"path/filepath"
"golang.org/x/tools/go/ast/astutil"
"golang.org/x/tools/gopls/internal/cache"
"golang.org/x/tools/gopls/internal/cache/parsego"
"golang.org/x/tools/gopls/internal/file"
"golang.org/x/tools/gopls/internal/protocol"
"golang.org/x/tools/gopls/internal/util/bug"
"golang.org/x/tools/gopls/internal/util/safetoken"
"golang.org/x/tools/internal/event"
)
// PrepareCallHierarchy returns an array of CallHierarchyItem for a file and the position within the file.
func PrepareCallHierarchy(ctx context.Context, snapshot *cache.Snapshot, fh file.Handle, pp protocol.Position) ([]protocol.CallHierarchyItem, error) {
ctx, done := event.Start(ctx, "golang.PrepareCallHierarchy")
defer done()
pkg, pgf, err := NarrowestPackageForFile(ctx, snapshot, fh.URI())
if err != nil {
return nil, err
}
pos, err := pgf.PositionPos(pp)
if err != nil {
return nil, err
}
_, obj, _ := referencedObject(pkg, pgf, pos)
if obj == nil {
return nil, nil
}
if _, ok := obj.Type().Underlying().(*types.Signature); !ok {
return nil, nil
}
declLoc, err := mapPosition(ctx, pkg.FileSet(), snapshot, obj.Pos(), adjustedObjEnd(obj))
if err != nil {
return nil, err
}
rng := declLoc.Range
callHierarchyItem := protocol.CallHierarchyItem{
Name: obj.Name(),
Kind: protocol.Function,
Tags: []protocol.SymbolTag{},
Detail: fmt.Sprintf("%s • %s", obj.Pkg().Path(), filepath.Base(declLoc.URI.Path())),
URI: declLoc.URI,
Range: rng,
SelectionRange: rng,
}
return []protocol.CallHierarchyItem{callHierarchyItem}, nil
}
// IncomingCalls returns an array of CallHierarchyIncomingCall for a file and the position within the file.
func IncomingCalls(ctx context.Context, snapshot *cache.Snapshot, fh file.Handle, pos protocol.Position) ([]protocol.CallHierarchyIncomingCall, error) {
ctx, done := event.Start(ctx, "golang.IncomingCalls")
defer done()
refs, err := references(ctx, snapshot, fh, pos, false)
if err != nil {
if errors.Is(err, ErrNoIdentFound) || errors.Is(err, errNoObjectFound) {
return nil, nil
}
return nil, err
}
// Group references by their enclosing function declaration.
incomingCalls := make(map[protocol.Location]*protocol.CallHierarchyIncomingCall)
for _, ref := range refs {
callItem, err := enclosingNodeCallItem(ctx, snapshot, ref.pkgPath, ref.location)
if err != nil {
event.Error(ctx, fmt.Sprintf("error getting enclosing node for %q", ref.pkgPath), err)
continue
}
loc := protocol.Location{
URI: callItem.URI,
Range: callItem.Range,
}
call, ok := incomingCalls[loc]
if !ok {
call = &protocol.CallHierarchyIncomingCall{From: callItem}
incomingCalls[loc] = call
}
call.FromRanges = append(call.FromRanges, ref.location.Range)
}
// Flatten the map of pointers into a slice of values.
incomingCallItems := make([]protocol.CallHierarchyIncomingCall, 0, len(incomingCalls))
for _, callItem := range incomingCalls {
incomingCallItems = append(incomingCallItems, *callItem)
}
return incomingCallItems, nil
}
// enclosingNodeCallItem creates a CallHierarchyItem representing the function call at loc.
func enclosingNodeCallItem(ctx context.Context, snapshot *cache.Snapshot, pkgPath PackagePath, loc protocol.Location) (protocol.CallHierarchyItem, error) {
// Parse the file containing the reference.
fh, err := snapshot.ReadFile(ctx, loc.URI)
if err != nil {
return protocol.CallHierarchyItem{}, err
}
// TODO(adonovan): opt: before parsing, trim the bodies of functions
// that don't contain the reference, using either a scanner-based
// implementation such as https://go.dev/play/p/KUrObH1YkX8
// (~31% speedup), or a byte-oriented implementation (2x speedup).
pgf, err := snapshot.ParseGo(ctx, fh, parsego.Full)
if err != nil {
return protocol.CallHierarchyItem{}, err
}
start, end, err := pgf.RangePos(loc.Range)
if err != nil {
return protocol.CallHierarchyItem{}, err
}
// Find the enclosing named function, if any.
//
// It is tempting to treat anonymous functions as nodes in the
// call hierarchy, and historically we used to do that,
// poorly; see #64451. However, it is impossible to track
// references to anonymous functions without much deeper
// analysis. Local analysis is tractable, but ultimately it
// can only detect calls from the outer function to the inner
// function.
//
// It is simpler and clearer to treat the top-level named
// function and all its nested functions as one entity, and it
// allows users to recursively expand the tree where, before,
// the chain would be broken by each lambda.
//
// If the selection is in a global var initializer,
// default to the file's package declaration.
path, _ := astutil.PathEnclosingInterval(pgf.File, start, end)
var (
name = pgf.File.Name.Name
kind = protocol.Package
)
start, end = pgf.File.Name.Pos(), pgf.File.Name.End()
for _, node := range path {
switch node := node.(type) {
case *ast.FuncDecl:
name = node.Name.Name
start, end = node.Name.Pos(), node.Name.End()
kind = protocol.Function
case *ast.FuncLit:
// If the call comes from a FuncLit with
// no enclosing FuncDecl, then use the
// FuncLit's extent.
name = "func"
start, end = node.Pos(), node.Type.End() // signature, sans body
kind = protocol.Function
case *ast.ValueSpec:
// If the call comes from a var (or,
// theoretically, const) initializer outside
// any function, then use the ValueSpec.Names span.
name = "init"
start, end = node.Names[0].Pos(), node.Names[len(node.Names)-1].End()
kind = protocol.Variable
}
}
rng, err := pgf.PosRange(start, end)
if err != nil {
return protocol.CallHierarchyItem{}, err
}
return protocol.CallHierarchyItem{
Name: name,
Kind: kind,
Tags: []protocol.SymbolTag{},
Detail: fmt.Sprintf("%s • %s", pkgPath, filepath.Base(fh.URI().Path())),
URI: loc.URI,
Range: rng,
SelectionRange: rng,
}, nil
}
// OutgoingCalls returns an array of CallHierarchyOutgoingCall for a file and the position within the file.
func OutgoingCalls(ctx context.Context, snapshot *cache.Snapshot, fh file.Handle, pp protocol.Position) ([]protocol.CallHierarchyOutgoingCall, error) {
ctx, done := event.Start(ctx, "golang.OutgoingCalls")
defer done()
pkg, pgf, err := NarrowestPackageForFile(ctx, snapshot, fh.URI())
if err != nil {
return nil, err
}
pos, err := pgf.PositionPos(pp)
if err != nil {
return nil, err
}
_, obj, _ := referencedObject(pkg, pgf, pos)
if obj == nil {
return nil, nil
}
if _, ok := obj.Type().Underlying().(*types.Signature); !ok {
return nil, nil
}
if isBuiltin(obj) {
return nil, nil // built-ins have no position
}
declFile := pkg.FileSet().File(obj.Pos())
if declFile == nil {
return nil, bug.Errorf("file not found for %d", obj.Pos())
}
uri := protocol.URIFromPath(declFile.Name())
offset, err := safetoken.Offset(declFile, obj.Pos())
if err != nil {
return nil, err
}
declPkg, declPGF, err := NarrowestPackageForFile(ctx, snapshot, uri)
if err != nil {
return nil, err
}
declPos, err := safetoken.Pos(declPGF.Tok, offset)
if err != nil {
return nil, err
}
declNode, _, _ := findDeclInfo([]*ast.File{declPGF.File}, declPos)
if declNode == nil {
// TODO(rfindley): why don't we return an error here, or even bug.Errorf?
return nil, nil
// return nil, bug.Errorf("failed to find declaration for object %s.%s", obj.Pkg().Path(), obj.Name())
}
type callRange struct {
start, end token.Pos
}
callRanges := []callRange{}
ast.Inspect(declNode, func(n ast.Node) bool {
if call, ok := n.(*ast.CallExpr); ok {
var start, end token.Pos
switch n := call.Fun.(type) {
case *ast.SelectorExpr:
start, end = n.Sel.NamePos, call.Lparen
case *ast.Ident:
start, end = n.NamePos, call.Lparen
case *ast.FuncLit:
// while we don't add the function literal as an 'outgoing' call
// we still want to traverse into it
return true
default:
// ignore any other kind of call expressions
// for ex: direct function literal calls since that's not an 'outgoing' call
return false
}
callRanges = append(callRanges, callRange{start: start, end: end})
}
return true
})
outgoingCalls := map[token.Pos]*protocol.CallHierarchyOutgoingCall{}
for _, callRange := range callRanges {
_, obj, _ := referencedObject(declPkg, declPGF, callRange.start)
if obj == nil {
continue
}
if isBuiltin(obj) {
continue // built-ins have no position
}
outgoingCall, ok := outgoingCalls[obj.Pos()]
if !ok {
loc, err := mapPosition(ctx, declPkg.FileSet(), snapshot, obj.Pos(), obj.Pos()+token.Pos(len(obj.Name())))
if err != nil {
return nil, err
}
outgoingCall = &protocol.CallHierarchyOutgoingCall{
To: protocol.CallHierarchyItem{
Name: obj.Name(),
Kind: protocol.Function,
Tags: []protocol.SymbolTag{},
Detail: fmt.Sprintf("%s • %s", obj.Pkg().Path(), filepath.Base(loc.URI.Path())),
URI: loc.URI,
Range: loc.Range,
SelectionRange: loc.Range,
},
}
outgoingCalls[obj.Pos()] = outgoingCall
}
rng, err := declPGF.PosRange(callRange.start, callRange.end)
if err != nil {
return nil, err
}
outgoingCall.FromRanges = append(outgoingCall.FromRanges, rng)
}
outgoingCallItems := make([]protocol.CallHierarchyOutgoingCall, 0, len(outgoingCalls))
for _, callItem := range outgoingCalls {
outgoingCallItems = append(outgoingCallItems, *callItem)
}
return outgoingCallItems, nil
}
|