2019-04-24 09:33:45 -06:00
|
|
|
// Copyright 2018 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"
|
2019-11-28 00:00:44 -07:00
|
|
|
"fmt"
|
2019-07-07 16:25:19 -06:00
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
2019-04-24 09:33:45 -06:00
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
2019-07-07 16:25:19 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
2019-04-24 09:33:45 -06:00
|
|
|
"golang.org/x/tools/internal/span"
|
2019-08-13 13:07:39 -06:00
|
|
|
"golang.org/x/tools/internal/telemetry/log"
|
|
|
|
"golang.org/x/tools/internal/telemetry/tag"
|
2019-04-24 09:33:45 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func (s *Server) documentLink(ctx context.Context, params *protocol.DocumentLinkParams) ([]protocol.DocumentLink, 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-12-17 16:57:54 -07:00
|
|
|
fh, err := view.Snapshot().GetFile(ctx, uri)
|
2019-08-16 11:49:17 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-10 09:51:34 -07:00
|
|
|
if fh.Identity().Kind == source.Mod {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2019-09-17 09:19:11 -06:00
|
|
|
file, m, _, err := view.Session().Cache().ParseGoHandle(fh, source.ParseFull).Parse(ctx)
|
|
|
|
if err != nil {
|
2019-07-11 19:05:55 -06:00
|
|
|
return nil, err
|
2019-05-17 11:45:50 -06:00
|
|
|
}
|
2019-07-07 16:25:19 -06:00
|
|
|
var links []protocol.DocumentLink
|
|
|
|
ast.Inspect(file, func(node ast.Node) bool {
|
|
|
|
switch n := node.(type) {
|
|
|
|
case *ast.ImportSpec:
|
|
|
|
target, err := strconv.Unquote(n.Path.Value)
|
|
|
|
if err != nil {
|
2019-07-14 21:08:10 -06:00
|
|
|
log.Error(ctx, "cannot unquote import path", err, tag.Of("Path", n.Path.Value))
|
2019-07-07 16:25:19 -06:00
|
|
|
return false
|
|
|
|
}
|
2019-11-13 21:53:00 -07:00
|
|
|
if target == "" {
|
|
|
|
return false
|
|
|
|
}
|
2019-11-28 00:00:44 -07:00
|
|
|
target = fmt.Sprintf("https://%s/%s", view.Options().LinkTarget, target)
|
2019-11-13 21:53:00 -07:00
|
|
|
l, err := toProtocolLink(view, m, target, n.Path.Pos()+1, n.Path.End()-1)
|
2019-07-12 13:16:29 -06:00
|
|
|
if err != nil {
|
2019-07-14 21:08:10 -06:00
|
|
|
log.Error(ctx, "cannot initialize DocumentLink", err, tag.Of("Path", n.Path.Value))
|
2019-07-12 13:16:29 -06:00
|
|
|
return false
|
|
|
|
}
|
2019-07-07 16:25:19 -06:00
|
|
|
links = append(links, l)
|
|
|
|
return false
|
|
|
|
case *ast.BasicLit:
|
|
|
|
if n.Kind != token.STRING {
|
|
|
|
return false
|
|
|
|
}
|
2019-12-23 23:49:21 -07:00
|
|
|
l, err := findLinksInString(view, n.Value, n.Pos(), m)
|
2019-07-07 16:25:19 -06:00
|
|
|
if err != nil {
|
2019-07-14 21:08:10 -06:00
|
|
|
log.Error(ctx, "cannot find links in string", err)
|
2019-07-07 16:25:19 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
links = append(links, l...)
|
|
|
|
return false
|
2019-04-24 09:33:45 -06:00
|
|
|
}
|
2019-07-07 16:25:19 -06:00
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
for _, commentGroup := range file.Comments {
|
|
|
|
for _, comment := range commentGroup.List {
|
2019-12-23 23:49:21 -07:00
|
|
|
l, err := findLinksInString(view, comment.Text, comment.Pos(), m)
|
2019-07-07 16:25:19 -06:00
|
|
|
if err != nil {
|
2019-07-14 21:08:10 -06:00
|
|
|
log.Error(ctx, "cannot find links in comment", err)
|
2019-07-07 16:25:19 -06:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
links = append(links, l...)
|
2019-04-24 09:33:45 -06:00
|
|
|
}
|
2019-07-07 16:25:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return links, nil
|
|
|
|
}
|
|
|
|
|
2019-12-23 23:49:21 -07:00
|
|
|
func findLinksInString(view source.View, src string, pos token.Pos, mapper *protocol.ColumnMapper) ([]protocol.DocumentLink, error) {
|
2019-07-11 19:05:55 -06:00
|
|
|
var links []protocol.DocumentLink
|
2019-12-23 23:49:21 -07:00
|
|
|
for _, urlIndex := range view.Options().URLRegexp.FindAllIndex([]byte(src), -1) {
|
2019-12-02 21:43:19 -07:00
|
|
|
var target string
|
2019-07-11 19:05:55 -06:00
|
|
|
start := urlIndex[0]
|
|
|
|
end := urlIndex[1]
|
|
|
|
startPos := token.Pos(int(pos) + start)
|
|
|
|
endPos := token.Pos(int(pos) + end)
|
2019-12-10 09:51:34 -07:00
|
|
|
target = src[start:end]
|
|
|
|
l, err := toProtocolLink(view, mapper, target, startPos, endPos)
|
2019-07-11 19:05:55 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
links = append(links, l)
|
|
|
|
}
|
|
|
|
return links, nil
|
|
|
|
}
|
|
|
|
|
2019-07-07 16:25:19 -06:00
|
|
|
func toProtocolLink(view source.View, mapper *protocol.ColumnMapper, target string, start, end token.Pos) (protocol.DocumentLink, error) {
|
|
|
|
spn, err := span.NewRange(view.Session().Cache().FileSet(), start, end).Span()
|
|
|
|
if err != nil {
|
|
|
|
return protocol.DocumentLink{}, err
|
|
|
|
}
|
|
|
|
rng, err := mapper.Range(spn)
|
|
|
|
if err != nil {
|
|
|
|
return protocol.DocumentLink{}, err
|
|
|
|
}
|
|
|
|
l := protocol.DocumentLink{
|
|
|
|
Range: rng,
|
|
|
|
Target: target,
|
|
|
|
}
|
|
|
|
return l, nil
|
|
|
|
}
|