2019-10-28 13:16:55 -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 lsp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
2019-12-07 23:07:30 -07:00
|
|
|
"golang.org/x/tools/internal/lsp/telemetry"
|
2019-10-28 13:16:55 -06:00
|
|
|
"golang.org/x/tools/internal/span"
|
2019-12-07 23:07:30 -07:00
|
|
|
"golang.org/x/tools/internal/telemetry/log"
|
2019-10-28 13:16:55 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func (s *Server) implementation(ctx context.Context, params *protocol.ImplementationParams) ([]protocol.Location, error) {
|
|
|
|
uri := span.NewURI(params.TextDocument.URI)
|
2019-11-15 10:43:45 -07:00
|
|
|
view, err := s.session.ViewOf(uri)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-20 14:38:43 -07:00
|
|
|
snapshot := view.Snapshot()
|
2019-10-28 13:16:55 -06:00
|
|
|
f, err := view.GetFile(ctx, uri)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-10 09:51:34 -07:00
|
|
|
if f.Kind() != source.Go {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2019-12-07 23:07:30 -07:00
|
|
|
phs, err := snapshot.PackageHandles(ctx, snapshot.Handle(ctx, f))
|
2019-11-12 14:33:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-07 23:07:30 -07:00
|
|
|
var (
|
|
|
|
allLocs []protocol.Location
|
|
|
|
seen = make(map[protocol.Location]bool)
|
|
|
|
)
|
|
|
|
for _, ph := range phs {
|
|
|
|
ctx := telemetry.Package.With(ctx, ph.ID())
|
|
|
|
|
|
|
|
ident, err := source.Identifier(ctx, snapshot, f, params.Position, source.SpecificPackageHandle(ph.ID()))
|
|
|
|
if err != nil {
|
|
|
|
if err == source.ErrNoIdentFound {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
log.Error(ctx, "failed to find Identifer", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
locs, err := ident.Implementation(ctx)
|
|
|
|
if err != nil {
|
|
|
|
if err == source.ErrNotAMethod {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
log.Error(ctx, "failed to find Implemenation", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, loc := range locs {
|
|
|
|
if seen[loc] {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
seen[loc] = true
|
|
|
|
allLocs = append(allLocs, loc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return allLocs, nil
|
2019-10-28 13:16:55 -06:00
|
|
|
}
|