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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
package main
import (
"go/ast"
"go/format"
"go/parser"
"go/token"
"reflect"
"regexp"
"strings"
)
var (
closingBracePattern = regexp.MustCompile(`^\s*[\}\)]`)
openingBracePattern = regexp.MustCompile(`[\{\(]\s*$`)
caseLabelPattern = regexp.MustCompile(`^\s*(case\s|default\s*:)|(^\s+.*:\s*$)`)
)
func isCommentOnly(sourceLine string) bool {
for characterIndex := range len(sourceLine) {
character := sourceLine[characterIndex]
if character == ' ' || character == '\t' {
continue
}
return len(sourceLine) > characterIndex+1 && sourceLine[characterIndex] == '/' && sourceLine[characterIndex+1] == '/'
}
return false
}
func isPackageLine(trimmedLine string) bool {
return len(trimmedLine) > 8 && trimmedLine[:8] == "package "
}
func countRawStringDelimiters(sourceLine string) int {
delimiterCount := 0
insideDoubleQuotedString := false
insideCharacterLiteral := false
for characterIndex := 0; characterIndex < len(sourceLine); characterIndex++ {
character := sourceLine[characterIndex]
if insideCharacterLiteral {
if character == '\\' && characterIndex+1 < len(sourceLine) {
characterIndex++
continue
}
if character == '\'' {
insideCharacterLiteral = false
}
continue
}
if insideDoubleQuotedString {
if character == '\\' && characterIndex+1 < len(sourceLine) {
characterIndex++
continue
}
if character == '"' {
insideDoubleQuotedString = false
}
continue
}
if character == '\'' {
insideCharacterLiteral = true
continue
}
if character == '"' {
insideDoubleQuotedString = true
continue
}
if character == '`' {
delimiterCount++
}
}
return delimiterCount
}
type CommentMode int
const (
CommentsFollow CommentMode = iota
CommentsPrecede
CommentsStandalone
)
type Formatter struct {
CommentMode CommentMode
}
type lineInformation struct {
statementType string
isTopLevel bool
isScoped bool
isStartLine bool
}
func (f *Formatter) Format(source []byte) ([]byte, error) {
formattedSource, err := format.Source(source)
if err != nil {
return nil, err
}
tokenFileSet := token.NewFileSet()
parsedFile, err := parser.ParseFile(tokenFileSet, "", formattedSource, parser.ParseComments)
if err != nil {
return nil, err
}
lineInformationMap := f.buildLineInfo(tokenFileSet, parsedFile)
return f.rewrite(formattedSource, lineInformationMap), nil
}
func isGeneralDeclarationScoped(generalDeclaration *ast.GenDecl) bool {
for _, specification := range generalDeclaration.Specs {
if typeSpecification, isTypeSpecification := specification.(*ast.TypeSpec); isTypeSpecification {
switch typeSpecification.Type.(type) {
case *ast.StructType, *ast.InterfaceType:
return true
}
}
}
return false
}
func (f *Formatter) buildLineInfo(tokenFileSet *token.FileSet, parsedFile *ast.File) map[int]*lineInformation {
lineInformationMap := make(map[int]*lineInformation)
tokenFile := tokenFileSet.File(parsedFile.Pos())
if tokenFile == nil {
return lineInformationMap
}
for _, declaration := range parsedFile.Decls {
startLine := tokenFile.Line(declaration.Pos())
endLine := tokenFile.Line(declaration.End())
statementType := ""
isScoped := false
switch typedDeclaration := declaration.(type) {
case *ast.GenDecl:
statementType = typedDeclaration.Tok.String()
isScoped = isGeneralDeclarationScoped(typedDeclaration)
case *ast.FuncDecl:
statementType = "func"
isScoped = true
default:
statementType = reflect.TypeOf(declaration).String()
}
lineInformationMap[startLine] = &lineInformation{statementType: statementType, isTopLevel: true, isScoped: isScoped, isStartLine: true}
lineInformationMap[endLine] = &lineInformation{statementType: statementType, isTopLevel: true, isScoped: isScoped, isStartLine: false}
}
ast.Inspect(parsedFile, func(astNode ast.Node) bool {
if astNode == nil {
return true
}
switch typedNode := astNode.(type) {
case *ast.BlockStmt:
f.processBlock(tokenFile, typedNode, lineInformationMap)
case *ast.CaseClause:
f.processStatementList(tokenFile, typedNode.Body, lineInformationMap)
case *ast.CommClause:
f.processStatementList(tokenFile, typedNode.Body, lineInformationMap)
}
return true
})
return lineInformationMap
}
func (f *Formatter) processBlock(tokenFile *token.File, blockStatement *ast.BlockStmt, lineInformationMap map[int]*lineInformation) {
if blockStatement == nil {
return
}
f.processStatementList(tokenFile, blockStatement.List, lineInformationMap)
}
func (f *Formatter) processStatementList(tokenFile *token.File, statements []ast.Stmt, lineInformationMap map[int]*lineInformation) {
for _, statement := range statements {
startLine := tokenFile.Line(statement.Pos())
endLine := tokenFile.Line(statement.End())
statementType := ""
isScoped := false
switch typedStatement := statement.(type) {
case *ast.DeclStmt:
if generalDeclaration, isGeneralDeclaration := typedStatement.Decl.(*ast.GenDecl); isGeneralDeclaration {
statementType = generalDeclaration.Tok.String()
} else {
statementType = reflect.TypeOf(statement).String()
}
case *ast.IfStmt, *ast.ForStmt, *ast.RangeStmt, *ast.SwitchStmt,
*ast.TypeSwitchStmt, *ast.SelectStmt, *ast.BlockStmt:
statementType = reflect.TypeOf(statement).String()
isScoped = true
default:
statementType = reflect.TypeOf(statement).String()
}
existingStart := lineInformationMap[startLine]
if existingStart == nil || !existingStart.isStartLine {
lineInformationMap[startLine] = &lineInformation{statementType: statementType, isTopLevel: false, isScoped: isScoped, isStartLine: true}
}
existingEnd := lineInformationMap[endLine]
if existingEnd == nil || !existingEnd.isStartLine {
lineInformationMap[endLine] = &lineInformation{statementType: statementType, isTopLevel: false, isScoped: isScoped, isStartLine: false}
}
switch typedStatement := statement.(type) {
case *ast.IfStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInformationMap)
if typedStatement.Else != nil {
if elseBlock, isBlockStatement := typedStatement.Else.(*ast.BlockStmt); isBlockStatement {
f.processBlock(tokenFile, elseBlock, lineInformationMap)
} else if elseIfStatement, isIfStatement := typedStatement.Else.(*ast.IfStmt); isIfStatement {
f.processIfStatement(tokenFile, elseIfStatement, lineInformationMap)
}
}
case *ast.ForStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInformationMap)
case *ast.RangeStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInformationMap)
case *ast.SwitchStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInformationMap)
case *ast.TypeSwitchStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInformationMap)
case *ast.SelectStmt:
f.processBlock(tokenFile, typedStatement.Body, lineInformationMap)
case *ast.BlockStmt:
f.processBlock(tokenFile, typedStatement, lineInformationMap)
}
}
}
func (f *Formatter) processIfStatement(tokenFile *token.File, ifStatement *ast.IfStmt, lineInformationMap map[int]*lineInformation) {
startLine := tokenFile.Line(ifStatement.Pos())
endLine := tokenFile.Line(ifStatement.End())
existingStart := lineInformationMap[startLine]
if existingStart == nil || !existingStart.isStartLine {
lineInformationMap[startLine] = &lineInformation{statementType: "*ast.IfStmt", isTopLevel: false, isScoped: true, isStartLine: true}
}
existingEnd := lineInformationMap[endLine]
if existingEnd == nil || !existingEnd.isStartLine {
lineInformationMap[endLine] = &lineInformation{statementType: "*ast.IfStmt", isTopLevel: false, isScoped: true, isStartLine: false}
}
f.processBlock(tokenFile, ifStatement.Body, lineInformationMap)
if ifStatement.Else != nil {
if elseBlock, isBlockStatement := ifStatement.Else.(*ast.BlockStmt); isBlockStatement {
f.processBlock(tokenFile, elseBlock, lineInformationMap)
} else if elseIfStatement, isIfStatement := ifStatement.Else.(*ast.IfStmt); isIfStatement {
f.processIfStatement(tokenFile, elseIfStatement, lineInformationMap)
}
}
}
func (f *Formatter) rewrite(formattedSource []byte, lineInformationMap map[int]*lineInformation) []byte {
sourceLines := strings.Split(string(formattedSource), "\n")
resultLines := make([]string, 0, len(sourceLines))
previousWasOpenBrace := false
previousStatementType := ""
previousWasComment := false
previousWasTopLevel := false
previousWasScoped := false
insideRawString := false
for lineIndex, currentLine := range sourceLines {
backtickCount := countRawStringDelimiters(currentLine)
wasInsideRawString := insideRawString
if backtickCount%2 == 1 {
insideRawString = !insideRawString
}
if wasInsideRawString {
resultLines = append(resultLines, currentLine)
continue
}
lineNumber := lineIndex + 1
trimmedLine := strings.TrimSpace(currentLine)
if trimmedLine == "" {
continue
}
isClosingBrace := closingBracePattern.MatchString(currentLine)
isOpeningBrace := openingBracePattern.MatchString(currentLine)
isCaseLabel := caseLabelPattern.MatchString(currentLine)
isCommentOnlyLine := isCommentOnly(currentLine)
isPackageDeclaration := isPackageLine(trimmedLine)
currentInformation := lineInformationMap[lineNumber]
currentStatementType := ""
if currentInformation != nil {
currentStatementType = currentInformation.statementType
}
if isPackageDeclaration {
currentStatementType = "package"
}
needsBlankLine := false
currentIsTopLevel := currentInformation != nil && currentInformation.isTopLevel
currentIsScoped := currentInformation != nil && currentInformation.isScoped
if len(resultLines) > 0 && !previousWasOpenBrace && !isClosingBrace && !isCaseLabel {
if currentIsTopLevel && previousWasTopLevel && currentStatementType != previousStatementType {
if f.CommentMode == CommentsFollow && previousWasComment {
} else {
needsBlankLine = true
}
} else if currentInformation != nil && (currentIsScoped || previousWasScoped) {
if f.CommentMode == CommentsFollow && previousWasComment {
} else {
needsBlankLine = true
}
} else if currentStatementType != "" && previousStatementType != "" && currentStatementType != previousStatementType {
if f.CommentMode == CommentsFollow && previousWasComment {
} else {
needsBlankLine = true
}
}
if f.CommentMode == CommentsFollow && isCommentOnlyLine && !previousWasComment {
nextLineNumber := f.findNextNonCommentLine(sourceLines, lineIndex+1)
if nextLineNumber > 0 {
nextInformation := lineInformationMap[nextLineNumber]
if nextInformation != nil {
nextIsTopLevel := nextInformation.isTopLevel
nextIsScoped := nextInformation.isScoped
if nextIsTopLevel && previousWasTopLevel && nextInformation.statementType != previousStatementType {
needsBlankLine = true
} else if nextIsScoped || previousWasScoped {
needsBlankLine = true
} else if nextInformation.statementType != "" && previousStatementType != "" && nextInformation.statementType != previousStatementType {
needsBlankLine = true
}
}
}
}
}
if needsBlankLine {
resultLines = append(resultLines, "")
}
resultLines = append(resultLines, currentLine)
previousWasOpenBrace = isOpeningBrace || isCaseLabel
previousWasComment = isCommentOnlyLine
if currentInformation != nil {
previousStatementType = currentInformation.statementType
previousWasTopLevel = currentInformation.isTopLevel
previousWasScoped = currentInformation.isScoped
} else if currentStatementType != "" {
previousStatementType = currentStatementType
previousWasTopLevel = false
previousWasScoped = false
}
}
outputString := strings.Join(resultLines, "\n")
if !strings.HasSuffix(outputString, "\n") {
outputString += "\n"
}
return []byte(outputString)
}
func (f *Formatter) findNextNonCommentLine(sourceLines []string, startLineIndex int) int {
for lineIndex := startLineIndex; lineIndex < len(sourceLines); lineIndex++ {
trimmedLine := strings.TrimSpace(sourceLines[lineIndex])
if trimmedLine == "" {
continue
}
if isCommentOnly(sourceLines[lineIndex]) {
continue
}
return lineIndex + 1
}
return 0
}
|