mirror of
https://github.com/golang/go
synced 2024-11-19 02:54:42 -07:00
6e267b5cc7
New tests include cases for anonymous structs, composite literals, ranking of results in binary expressions, and import cycles. Change-Id: Ic02e84e09101bb9873fc1705bba2594d655bb45b Reviewed-on: https://go-review.googlesource.com/c/153443 Reviewed-by: Ian Cottrell <iancottrell@google.com>
139 lines
4.5 KiB
Go
139 lines
4.5 KiB
Go
// 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 (
|
|
"bytes"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
)
|
|
|
|
func toProtocolCompletionItems(candidates []source.CompletionItem, prefix string, pos protocol.Position, snippetsSupported, signatureHelpEnabled bool) []protocol.CompletionItem {
|
|
insertTextFormat := protocol.PlainTextFormat
|
|
if snippetsSupported {
|
|
insertTextFormat = protocol.SnippetTextFormat
|
|
}
|
|
sort.SliceStable(candidates, func(i, j int) bool {
|
|
return candidates[i].Score > candidates[j].Score
|
|
})
|
|
var items []protocol.CompletionItem
|
|
for i, candidate := range candidates {
|
|
// Matching against the label.
|
|
if !strings.HasPrefix(candidate.Label, prefix) {
|
|
continue
|
|
}
|
|
insertText, triggerSignatureHelp := labelToProtocolSnippets(candidate.Label, candidate.Kind, insertTextFormat, signatureHelpEnabled)
|
|
if strings.HasPrefix(insertText, prefix) {
|
|
insertText = insertText[len(prefix):]
|
|
}
|
|
item := protocol.CompletionItem{
|
|
Label: candidate.Label,
|
|
Detail: candidate.Detail,
|
|
Kind: float64(toProtocolCompletionItemKind(candidate.Kind)),
|
|
InsertTextFormat: insertTextFormat,
|
|
TextEdit: &protocol.TextEdit{
|
|
NewText: insertText,
|
|
Range: protocol.Range{
|
|
Start: pos,
|
|
End: pos,
|
|
},
|
|
},
|
|
// InsertText is deprecated in favor of TextEdit.
|
|
InsertText: insertText,
|
|
// This is a hack so that the client sorts completion results in the order
|
|
// according to their score. This can be removed upon the resolution of
|
|
// https://github.com/Microsoft/language-server-protocol/issues/348.
|
|
SortText: fmt.Sprintf("%05d", i),
|
|
}
|
|
// If we are completing a function, we should trigger signature help if possible.
|
|
if triggerSignatureHelp && signatureHelpEnabled {
|
|
item.Command = &protocol.Command{
|
|
Command: "editor.action.triggerParameterHints",
|
|
}
|
|
}
|
|
items = append(items, item)
|
|
}
|
|
return items
|
|
}
|
|
|
|
func toProtocolCompletionItemKind(kind source.CompletionItemKind) protocol.CompletionItemKind {
|
|
switch kind {
|
|
case source.InterfaceCompletionItem:
|
|
return protocol.InterfaceCompletion
|
|
case source.StructCompletionItem:
|
|
return protocol.StructCompletion
|
|
case source.TypeCompletionItem:
|
|
return protocol.TypeParameterCompletion // ??
|
|
case source.ConstantCompletionItem:
|
|
return protocol.ConstantCompletion
|
|
case source.FieldCompletionItem:
|
|
return protocol.FieldCompletion
|
|
case source.ParameterCompletionItem, source.VariableCompletionItem:
|
|
return protocol.VariableCompletion
|
|
case source.FunctionCompletionItem:
|
|
return protocol.FunctionCompletion
|
|
case source.MethodCompletionItem:
|
|
return protocol.MethodCompletion
|
|
case source.PackageCompletionItem:
|
|
return protocol.ModuleCompletion // ??
|
|
default:
|
|
return protocol.TextCompletion
|
|
}
|
|
}
|
|
|
|
func labelToProtocolSnippets(label string, kind source.CompletionItemKind, insertTextFormat protocol.InsertTextFormat, signatureHelpEnabled bool) (string, bool) {
|
|
switch kind {
|
|
case source.ConstantCompletionItem:
|
|
// The label for constants is of the format "<identifier> = <value>".
|
|
// We should not insert the " = <value>" part of the label.
|
|
if i := strings.Index(label, " ="); i >= 0 {
|
|
return label[:i], false
|
|
}
|
|
case source.FunctionCompletionItem, source.MethodCompletionItem:
|
|
var trimmed, params string
|
|
if i := strings.Index(label, "("); i >= 0 {
|
|
trimmed = label[:i]
|
|
params = strings.Trim(label[i:], "()")
|
|
}
|
|
if params == "" || trimmed == "" {
|
|
return label, true
|
|
}
|
|
// Don't add parameters or parens for the plaintext insert format.
|
|
if insertTextFormat == protocol.PlainTextFormat {
|
|
return trimmed, true
|
|
}
|
|
// If we do have signature help enabled, the user can see parameters as
|
|
// they type in the function, so we just return empty parentheses.
|
|
if signatureHelpEnabled {
|
|
return trimmed + "($1)", true
|
|
}
|
|
// If signature help is not enabled, we should give the user parameters
|
|
// that they can tab through. The insert text format follows the
|
|
// specification defined by Microsoft for LSP. The "$", "}, and "\"
|
|
// characters should be escaped.
|
|
r := strings.NewReplacer(
|
|
`\`, `\\`,
|
|
`}`, `\}`,
|
|
`$`, `\$`,
|
|
)
|
|
b := bytes.NewBufferString(trimmed)
|
|
b.WriteByte('(')
|
|
for i, p := range strings.Split(params, ",") {
|
|
if i != 0 {
|
|
b.WriteString(", ")
|
|
}
|
|
fmt.Fprintf(b, "${%v:%v}", i+1, r.Replace(strings.Trim(p, " ")))
|
|
}
|
|
b.WriteByte(')')
|
|
return b.String(), false
|
|
|
|
}
|
|
return label, false
|
|
}
|