2019-08-28 19:48:29 -06:00
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FoldingRangeInfo struct {
|
2019-09-05 18:14:09 -06:00
|
|
|
mappedRange
|
|
|
|
Kind protocol.FoldingRangeKind
|
2019-08-28 19:48:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// FoldingRange gets all of the folding range for f.
|
2019-12-17 16:57:54 -07:00
|
|
|
func FoldingRange(ctx context.Context, snapshot Snapshot, fh FileHandle, lineFoldingOnly bool) (ranges []*FoldingRangeInfo, err error) {
|
2019-08-28 19:48:29 -06:00
|
|
|
// TODO(suzmue): consider limiting the number of folding ranges returned, and
|
|
|
|
// implement a way to prioritize folding ranges in that case.
|
2020-07-21 13:15:06 -06:00
|
|
|
pgf, err := snapshot.ParseGo(ctx, fh, ParseFull)
|
2019-08-28 19:48:29 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-20 14:38:43 -07:00
|
|
|
fset := snapshot.View().Session().Cache().FileSet()
|
2019-08-28 19:48:29 -06:00
|
|
|
|
|
|
|
// Get folding ranges for comments separately as they are not walked by ast.Inspect.
|
2020-07-21 13:15:06 -06:00
|
|
|
ranges = append(ranges, commentsFoldingRange(fset, pgf.Mapper, pgf.File)...)
|
2019-08-28 19:48:29 -06:00
|
|
|
|
2019-08-30 12:11:42 -06:00
|
|
|
foldingFunc := foldingRange
|
|
|
|
if lineFoldingOnly {
|
|
|
|
foldingFunc = lineFoldingRange
|
|
|
|
}
|
2019-08-28 19:48:29 -06:00
|
|
|
|
2019-08-30 12:11:42 -06:00
|
|
|
visit := func(n ast.Node) bool {
|
2020-07-21 13:15:06 -06:00
|
|
|
rng := foldingFunc(fset, pgf.Mapper, n)
|
2019-08-30 12:11:42 -06:00
|
|
|
if rng != nil {
|
|
|
|
ranges = append(ranges, rng)
|
2019-08-28 19:48:29 -06:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
// Walk the ast and collect folding ranges.
|
2020-07-21 13:15:06 -06:00
|
|
|
ast.Inspect(pgf.File, visit)
|
2019-08-28 19:48:29 -06:00
|
|
|
|
|
|
|
sort.Slice(ranges, func(i, j int) bool {
|
2019-09-05 18:14:09 -06:00
|
|
|
irng, _ := ranges[i].Range()
|
|
|
|
jrng, _ := ranges[j].Range()
|
|
|
|
return protocol.CompareRange(irng, jrng) < 0
|
2019-08-28 19:48:29 -06:00
|
|
|
})
|
2019-09-05 18:14:09 -06:00
|
|
|
|
2019-08-28 19:48:29 -06:00
|
|
|
return ranges, nil
|
|
|
|
}
|
|
|
|
|
2019-08-30 12:11:42 -06:00
|
|
|
// foldingRange calculates the folding range for n.
|
2019-11-20 14:38:43 -07:00
|
|
|
func foldingRange(fset *token.FileSet, m *protocol.ColumnMapper, n ast.Node) *FoldingRangeInfo {
|
2019-08-30 12:11:42 -06:00
|
|
|
var kind protocol.FoldingRangeKind
|
|
|
|
var start, end token.Pos
|
|
|
|
switch n := n.(type) {
|
|
|
|
case *ast.BlockStmt:
|
|
|
|
// Fold from position of "{" to position of "}".
|
|
|
|
start, end = n.Lbrace+1, n.Rbrace
|
|
|
|
case *ast.CaseClause:
|
|
|
|
// Fold from position of ":" to end.
|
|
|
|
start, end = n.Colon+1, n.End()
|
|
|
|
case *ast.CallExpr:
|
|
|
|
// Fold from position of "(" to position of ")".
|
|
|
|
start, end = n.Lparen+1, n.Rparen
|
|
|
|
case *ast.FieldList:
|
|
|
|
// Fold from position of opening parenthesis/brace, to position of
|
|
|
|
// closing parenthesis/brace.
|
|
|
|
start, end = n.Opening+1, n.Closing
|
|
|
|
case *ast.GenDecl:
|
|
|
|
// If this is an import declaration, set the kind to be protocol.Imports.
|
|
|
|
if n.Tok == token.IMPORT {
|
|
|
|
kind = protocol.Imports
|
|
|
|
}
|
|
|
|
start, end = n.Lparen+1, n.Rparen
|
2020-06-03 12:38:26 -06:00
|
|
|
case *ast.CompositeLit:
|
|
|
|
// Fold from position of "{" to position of "}".
|
|
|
|
start, end = n.Lbrace+1, n.Rbrace
|
2019-08-30 12:11:42 -06:00
|
|
|
}
|
|
|
|
if !start.IsValid() || !end.IsValid() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &FoldingRangeInfo{
|
2019-11-22 13:20:08 -07:00
|
|
|
mappedRange: newMappedRange(fset, m, start, end),
|
|
|
|
Kind: kind,
|
2019-08-30 12:11:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// lineFoldingRange calculates the line folding range for n.
|
2019-11-20 14:38:43 -07:00
|
|
|
func lineFoldingRange(fset *token.FileSet, m *protocol.ColumnMapper, n ast.Node) *FoldingRangeInfo {
|
2019-09-05 18:14:09 -06:00
|
|
|
|
2019-08-30 12:11:42 -06:00
|
|
|
// TODO(suzmue): include trailing empty lines before the closing
|
|
|
|
// parenthesis/brace.
|
|
|
|
var kind protocol.FoldingRangeKind
|
|
|
|
var start, end token.Pos
|
|
|
|
switch n := n.(type) {
|
|
|
|
case *ast.BlockStmt:
|
|
|
|
// Fold lines between "{" and "}".
|
|
|
|
if !n.Lbrace.IsValid() || !n.Rbrace.IsValid() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
nStmts := len(n.List)
|
|
|
|
if nStmts == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Don't want to fold if the start is on the same line as the brace.
|
|
|
|
if fset.Position(n.Lbrace).Line == fset.Position(n.List[0].Pos()).Line {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Don't want to fold if the end is on the same line as the brace.
|
|
|
|
if fset.Position(n.Rbrace).Line == fset.Position(n.List[nStmts-1].End()).Line {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
start, end = n.Lbrace+1, n.List[nStmts-1].End()
|
|
|
|
case *ast.CaseClause:
|
|
|
|
// Fold from position of ":" to end.
|
|
|
|
start, end = n.Colon+1, n.End()
|
|
|
|
case *ast.FieldList:
|
|
|
|
// Fold lines between opening parenthesis/brace and closing parenthesis/brace.
|
|
|
|
if !n.Opening.IsValid() || !n.Closing.IsValid() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
nFields := len(n.List)
|
|
|
|
if nFields == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Don't want to fold if the start is on the same line as the parenthesis/brace.
|
|
|
|
if fset.Position(n.Opening).Line == fset.Position(n.List[nFields-1].End()).Line {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Don't want to fold if the end is on the same line as the parenthesis/brace.
|
|
|
|
if fset.Position(n.Closing).Line == fset.Position(n.List[nFields-1].End()).Line {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
start, end = n.Opening+1, n.List[nFields-1].End()
|
|
|
|
case *ast.GenDecl:
|
|
|
|
// If this is an import declaration, set the kind to be protocol.Imports.
|
|
|
|
if n.Tok == token.IMPORT {
|
|
|
|
kind = protocol.Imports
|
|
|
|
}
|
|
|
|
// Fold from position of "(" to position of ")".
|
|
|
|
if !n.Lparen.IsValid() || !n.Rparen.IsValid() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
nSpecs := len(n.Specs)
|
|
|
|
if nSpecs == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Don't want to fold if the end is on the same line as the parenthesis/brace.
|
|
|
|
if fset.Position(n.Lparen).Line == fset.Position(n.Specs[0].Pos()).Line {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Don't want to fold if the end is on the same line as the parenthesis/brace.
|
|
|
|
if fset.Position(n.Rparen).Line == fset.Position(n.Specs[nSpecs-1].End()).Line {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
start, end = n.Lparen+1, n.Specs[nSpecs-1].End()
|
2020-06-03 12:38:26 -06:00
|
|
|
case *ast.CompositeLit:
|
|
|
|
// Fold lines between "{" and "}".
|
|
|
|
if !n.Lbrace.IsValid() || !n.Rbrace.IsValid() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if len(n.Elts) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
start, end = n.Lbrace+1, n.Elts[len(n.Elts)-1].End()
|
2019-08-30 12:11:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check that folding positions are valid.
|
|
|
|
if !start.IsValid() || !end.IsValid() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Do not fold if the start and end lines are the same.
|
|
|
|
if fset.Position(start).Line == fset.Position(end).Line {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &FoldingRangeInfo{
|
2019-11-22 13:20:08 -07:00
|
|
|
mappedRange: newMappedRange(fset, m, start, end),
|
|
|
|
Kind: kind,
|
2019-08-30 12:11:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-28 19:48:29 -06:00
|
|
|
// commentsFoldingRange returns the folding ranges for all comment blocks in file.
|
|
|
|
// The folding range starts at the end of the first comment, and ends at the end of the
|
|
|
|
// comment block and has kind protocol.Comment.
|
2019-11-20 14:38:43 -07:00
|
|
|
func commentsFoldingRange(fset *token.FileSet, m *protocol.ColumnMapper, file *ast.File) (comments []*FoldingRangeInfo) {
|
2019-08-28 19:48:29 -06:00
|
|
|
for _, commentGrp := range file.Comments {
|
|
|
|
// Don't fold single comments.
|
|
|
|
if len(commentGrp.List) <= 1 {
|
|
|
|
continue
|
|
|
|
}
|
2019-08-30 12:11:42 -06:00
|
|
|
comments = append(comments, &FoldingRangeInfo{
|
2019-11-22 13:20:08 -07:00
|
|
|
// Fold from the end of the first line comment to the end of the comment block.
|
|
|
|
mappedRange: newMappedRange(fset, m, commentGrp.List[0].End(), commentGrp.End()),
|
|
|
|
Kind: protocol.Comment,
|
2019-08-28 19:48:29 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
return comments
|
|
|
|
}
|