1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
package main
import (
"go/ast"
"go/format"
"go/parser"
"go/token"
"reflect"
"regexp"
"strings"
)
type CommentMode int
const (
CommentsFollow CommentMode = iota
CommentsPrecede
CommentsStandalone
)
type Formatter struct {
CommentMode CommentMode
}
type lineInfo struct {
statementType string
isTopLevel bool
isScoped bool
isStartLine bool
}
func (f *Formatter) Format(source []byte) ([]byte, error) {
formatted, err := format.Source(source)
if err != nil {
return nil, err
}
fileSet := token.NewFileSet()
file, err := parser.ParseFile(fileSet, "", formatted, parser.ParseComments)
if err != nil {
return nil, err
}
lineInfoMap := f.buildLineInfo(fileSet, file)
return f.rewrite(formatted, lineInfoMap), nil
}
func (f *Formatter) buildLineInfo(fileSet *token.FileSet, file *ast.File) map[int]*lineInfo {
lineInfoMap := make(map[int]*lineInfo)
tokenFile := fileSet.File(file.Pos())
if tokenFile == nil {
return lineInfoMap
}
for _, declaration := range file.Decls {
startLine := tokenFile.Line(declaration.Pos())
endLine := tokenFile.Line(declaration.End())
typeName := reflect.TypeOf(declaration).String()
lineInfoMap[startLine] = &lineInfo{statementType: typeName, isTopLevel: true, isStartLine: true}
lineInfoMap[endLine] = &lineInfo{statementType: typeName, isTopLevel: true, isStartLine: false}
}
ast.Inspect(file, func(node ast.Node) bool {
if node == nil {
return true
}
switch typedNode := node.(type) {
case *ast.BlockStmt:
f.processBlock(tokenFile, typedNode, lineInfoMap)
case *ast.CaseClause:
f.processStatementList(tokenFile, typedNode.Body, lineInfoMap)
case *ast.CommClause:
f.processStatementList(tokenFile, typedNode.Body, lineInfoMap)
}
return true
})
return lineInfoMap
}
func (f *Formatter) processBlock(tokenFile *token.File, block *ast.BlockStmt, lineInfoMap map[int]*lineInfo) {
if block == nil {
return
}
f.processStatementList(tokenFile, block.List, lineInfoMap)
}
func (f *Formatter) processStatementList(tokenFile *token.File, statements []ast.Stmt, lineInfoMap map[int]*lineInfo) {
for _, statement := range statements {
startLine := tokenFile.Line(statement.Pos())
endLine := tokenFile.Line(statement.End())
typeName := reflect.TypeOf(statement).String()
isScoped := false
switch statement.(type) {
case *ast.IfStmt, *ast.ForStmt, *ast.RangeStmt, *ast.SwitchStmt,
*ast.TypeSwitchStmt, *ast.SelectStmt, *ast.BlockStmt:
isScoped = true
}
existingStart := lineInfoMap[startLine]
if existingStart == nil || !existingStart.isStartLine {
lineInfoMap[startLine] = &lineInfo{statementType: typeName, isTopLevel: false, isScoped: isScoped, isStartLine: true}
}
existingEnd := lineInfoMap[endLine]
if existingEnd == nil || !existingEnd.isStartLine {
lineInfoMap[endLine] = &lineInfo{statementType: typeName, isTopLevel: false, isScoped: isScoped, isStartLine: false}
}
switch typedStatement := statement.(type) {
case *ast.IfStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInfoMap)
if typedStatement.Else != nil {
if elseBlock, isBlockStatement := typedStatement.Else.(*ast.BlockStmt); isBlockStatement {
f.processBlock(tokenFile, elseBlock, lineInfoMap)
} else if elseIfStatement, isIfStatement := typedStatement.Else.(*ast.IfStmt); isIfStatement {
f.processIfStatement(tokenFile, elseIfStatement, lineInfoMap)
}
}
case *ast.ForStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInfoMap)
case *ast.RangeStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInfoMap)
case *ast.SwitchStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInfoMap)
case *ast.TypeSwitchStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInfoMap)
case *ast.SelectStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInfoMap)
case *ast.BlockStmt:
f.processBlock(tokenFile, typedStatement, lineInfoMap)
}
}
}
func (f *Formatter) processIfStatement(tokenFile *token.File, ifStatement *ast.IfStmt, lineInfoMap map[int]*lineInfo) {
startLine := tokenFile.Line(ifStatement.Pos())
endLine := tokenFile.Line(ifStatement.End())
existingStart := lineInfoMap[startLine]
if existingStart == nil || !existingStart.isStartLine {
lineInfoMap[startLine] = &lineInfo{statementType: "*ast.IfStmt", isTopLevel: false, isScoped: true, isStartLine: true}
}
existingEnd := lineInfoMap[endLine]
if existingEnd == nil || !existingEnd.isStartLine {
lineInfoMap[endLine] = &lineInfo{statementType: "*ast.IfStmt", isTopLevel: false, isScoped: true, isStartLine: false}
}
f.processBlock(tokenFile, ifStatement.Body, lineInfoMap)
if ifStatement.Else != nil {
if elseBlock, isBlockStatement := ifStatement.Else.(*ast.BlockStmt); isBlockStatement {
f.processBlock(tokenFile, elseBlock, lineInfoMap)
} else if elseIfStatement, isIfStatement := ifStatement.Else.(*ast.IfStmt); isIfStatement {
f.processIfStatement(tokenFile, elseIfStatement, lineInfoMap)
}
}
}
func (f *Formatter) rewrite(source []byte, lineInfoMap map[int]*lineInfo) []byte {
lines := strings.Split(string(source), "\n")
var result []string
closingBracePattern := regexp.MustCompile(`^\s*[\}\)]`)
openingBracePattern := regexp.MustCompile(`[\{\(]\s*$`)
caseLabelPattern := regexp.MustCompile(`^\s*(case\s+.*|default\s*):\s*$`)
commentOnlyPattern := regexp.MustCompile(`^\s*//`)
packageLinePattern := regexp.MustCompile(`^package\s+`)
previousWasOpenBrace := false
previousType := ""
previousWasComment := false
previousWasTopLevel := false
insideRawString := false
for index, line := range lines {
backtickCount := strings.Count(line, "`")
wasInsideRawString := insideRawString
if backtickCount%2 == 1 {
insideRawString = !insideRawString
}
if wasInsideRawString {
result = append(result, line)
continue
}
lineNumber := index + 1
trimmed := strings.TrimSpace(line)
isBlank := trimmed == ""
isClosingBrace := closingBracePattern.MatchString(line)
isOpeningBrace := openingBracePattern.MatchString(line)
isCaseLabel := caseLabelPattern.MatchString(line)
isCommentOnlyLine := commentOnlyPattern.MatchString(line)
isPackageLine := packageLinePattern.MatchString(trimmed)
if isBlank {
continue
}
info := lineInfoMap[lineNumber]
currentType := ""
if info != nil {
currentType = info.statementType
}
if isPackageLine {
currentType = "package"
}
needsBlank := false
currentIsTopLevel := info != nil && info.isTopLevel
currentIsScoped := info != nil && info.isScoped
if len(result) > 0 && !previousWasOpenBrace && !isClosingBrace && !isCaseLabel {
if currentIsTopLevel && previousWasTopLevel {
if f.CommentMode == CommentsFollow && previousWasComment {
} else {
needsBlank = true
}
} else if currentIsScoped {
if f.CommentMode == CommentsFollow && previousWasComment {
} else {
needsBlank = true
}
} else if currentType != "" && previousType != "" && currentType != previousType {
if f.CommentMode == CommentsFollow && previousWasComment {
} else {
needsBlank = true
}
}
if f.CommentMode == CommentsFollow && isCommentOnlyLine && !previousWasComment {
nextLineNumber := f.findNextNonCommentLine(lines, index+1)
if nextLineNumber > 0 {
nextInfo := lineInfoMap[nextLineNumber]
if nextInfo != nil {
nextIsTopLevel := nextInfo.isTopLevel
nextIsScoped := nextInfo.isScoped
if nextIsTopLevel && previousWasTopLevel {
needsBlank = true
} else if nextIsScoped {
needsBlank = true
} else if nextInfo.statementType != "" && previousType != "" && nextInfo.statementType != previousType {
needsBlank = true
}
}
}
}
}
if needsBlank {
result = append(result, "")
}
result = append(result, line)
previousWasOpenBrace = isOpeningBrace || isCaseLabel
previousWasComment = isCommentOnlyLine
if info != nil {
previousType = info.statementType
previousWasTopLevel = info.isTopLevel
} else if currentType != "" {
previousType = currentType
previousWasTopLevel = false
}
}
output := strings.Join(result, "\n")
if !strings.HasSuffix(output, "\n") {
output += "\n"
}
return []byte(output)
}
func (f *Formatter) findNextNonCommentLine(lines []string, startIndex int) int {
commentOnlyPattern := regexp.MustCompile(`^\s*//`)
for index := startIndex; index < len(lines); index++ {
trimmed := strings.TrimSpace(lines[index])
if trimmed == "" {
continue
}
if commentOnlyPattern.MatchString(lines[index]) {
continue
}
return index + 1
}
return 0
}
|