2018-11-07 10:58:55 -07: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.
|
|
|
|
|
2018-12-05 15:00:36 -07:00
|
|
|
// Package source provides core features for use by Go editors and tools.
|
2018-11-07 10:58:55 -07:00
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2018-11-14 18:42:30 -07:00
|
|
|
"fmt"
|
|
|
|
"go/ast"
|
2018-11-07 10:58:55 -07:00
|
|
|
"go/format"
|
2019-01-17 09:59:05 -07:00
|
|
|
"go/token"
|
|
|
|
"strings"
|
2018-11-14 18:42:30 -07:00
|
|
|
|
|
|
|
"golang.org/x/tools/go/ast/astutil"
|
2018-12-14 15:00:24 -07:00
|
|
|
"golang.org/x/tools/imports"
|
2019-01-17 09:59:05 -07:00
|
|
|
"golang.org/x/tools/internal/lsp/diff"
|
2018-11-07 10:58:55 -07:00
|
|
|
)
|
|
|
|
|
2018-12-14 15:00:24 -07:00
|
|
|
// Format formats a file with a given range.
|
2018-12-05 15:00:36 -07:00
|
|
|
func Format(ctx context.Context, f File, rng Range) ([]TextEdit, error) {
|
2019-02-13 11:23:28 -07:00
|
|
|
fAST := f.GetAST()
|
2018-11-14 18:42:30 -07:00
|
|
|
path, exact := astutil.PathEnclosingInterval(fAST, rng.Start, rng.End)
|
|
|
|
if !exact || len(path) == 0 {
|
|
|
|
return nil, fmt.Errorf("no exact AST node matching the specified range")
|
|
|
|
}
|
|
|
|
node := path[0]
|
|
|
|
// format.Node can fail when the AST contains a bad expression or
|
|
|
|
// statement. For now, we preemptively check for one.
|
|
|
|
// TODO(rstambler): This should really return an error from format.Node.
|
|
|
|
var isBad bool
|
|
|
|
ast.Inspect(node, func(n ast.Node) bool {
|
|
|
|
switch n.(type) {
|
|
|
|
case *ast.BadDecl, *ast.BadExpr, *ast.BadStmt:
|
|
|
|
isBad = true
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if isBad {
|
|
|
|
return nil, fmt.Errorf("unable to format file due to a badly formatted AST")
|
|
|
|
}
|
2018-11-07 10:58:55 -07:00
|
|
|
// format.Node changes slightly from one release to another, so the version
|
|
|
|
// of Go used to build the LSP server will determine how it formats code.
|
|
|
|
// This should be acceptable for all users, who likely be prompted to rebuild
|
|
|
|
// the LSP server on each Go release.
|
2019-02-13 11:23:28 -07:00
|
|
|
fset := f.GetFileSet()
|
2018-11-07 10:58:55 -07:00
|
|
|
buf := &bytes.Buffer{}
|
2018-12-05 15:00:36 -07:00
|
|
|
if err := format.Node(buf, fset, node); err != nil {
|
2018-11-07 10:58:55 -07:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-20 10:20:02 -07:00
|
|
|
return computeTextEdits(f, buf.String()), nil
|
2018-12-14 15:00:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Imports formats a file using the goimports tool.
|
2019-02-13 14:08:29 -07:00
|
|
|
func Imports(ctx context.Context, f File, rng Range) ([]TextEdit, error) {
|
|
|
|
formatted, err := imports.Process(f.GetToken().Name(), f.GetContent(), nil)
|
2018-12-14 15:00:24 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-20 10:20:02 -07:00
|
|
|
return computeTextEdits(f, string(formatted)), nil
|
2018-12-14 15:00:24 -07:00
|
|
|
}
|
|
|
|
|
2019-02-20 10:20:02 -07:00
|
|
|
func computeTextEdits(file File, formatted string) (edits []TextEdit) {
|
2019-02-13 14:08:29 -07:00
|
|
|
u := strings.SplitAfter(string(file.GetContent()), "\n")
|
|
|
|
tok := file.GetToken()
|
2019-01-17 09:59:05 -07:00
|
|
|
f := strings.SplitAfter(formatted, "\n")
|
|
|
|
for _, op := range diff.Operations(u, f) {
|
2019-02-12 11:51:16 -07:00
|
|
|
start := lineStart(tok, op.I1+1)
|
|
|
|
if start == token.NoPos && op.I1 == len(u) {
|
|
|
|
start = tok.Pos(tok.Size())
|
|
|
|
}
|
|
|
|
end := lineStart(tok, op.I2+1)
|
|
|
|
if end == token.NoPos && op.I2 == len(u) {
|
|
|
|
end = tok.Pos(tok.Size())
|
|
|
|
}
|
2019-01-17 09:59:05 -07:00
|
|
|
switch op.Kind {
|
|
|
|
case diff.Delete:
|
|
|
|
// Delete: unformatted[i1:i2] is deleted.
|
|
|
|
edits = append(edits, TextEdit{
|
|
|
|
Range: Range{
|
2019-02-12 11:51:16 -07:00
|
|
|
Start: start,
|
|
|
|
End: end,
|
2019-01-17 09:59:05 -07:00
|
|
|
},
|
|
|
|
})
|
|
|
|
case diff.Insert:
|
|
|
|
// Insert: formatted[j1:j2] is inserted at unformatted[i1:i1].
|
|
|
|
edits = append(edits, TextEdit{
|
|
|
|
Range: Range{
|
2019-02-12 11:51:16 -07:00
|
|
|
Start: start,
|
|
|
|
End: start,
|
2019-01-17 09:59:05 -07:00
|
|
|
},
|
|
|
|
NewText: op.Content,
|
|
|
|
})
|
|
|
|
}
|
2018-12-14 15:00:24 -07:00
|
|
|
}
|
2019-01-17 09:59:05 -07:00
|
|
|
return edits
|
2018-11-07 10:58:55 -07:00
|
|
|
}
|