@@ -17,7 +17,9 @@ import (
17
17
// will be moved.
18
18
var DefaultOrder = []Order {Const , Var , Interface , Type , Func }
19
19
20
- func formatWithCommand (content []byte , output string , opt ReorderConfig ) (newcontent []byte , err error ) {
20
+ const reorderSignature = "// -- "
21
+
22
+ func formatWithCommand (content []byte , output []byte , opt ReorderConfig ) (newcontent []byte , err error ) {
21
23
// we use the format command given by the user
22
24
// on a temporary file we need to create and remove
23
25
tmpfile , err := os .CreateTemp ("" , "" )
@@ -27,7 +29,7 @@ func formatWithCommand(content []byte, output string, opt ReorderConfig) (newcon
27
29
defer os .Remove (tmpfile .Name ())
28
30
29
31
// write the temporary file
30
- if _ , err := tmpfile .Write ([] byte ( output ) ); err != nil {
32
+ if _ , err := tmpfile .Write (output ); err != nil {
31
33
return content , errors .New ("Failed to write temp file: " + err .Error ())
32
34
}
33
35
tmpfile .Close ()
@@ -58,7 +60,7 @@ func processConst(
58
60
* lineNumberWhereInject = info .Constants [name ].OpeningLine
59
61
}
60
62
for ln := sourceCode .OpeningLine - 1 ; ln < sourceCode .ClosingLine ; ln ++ {
61
- originalContent [ln ] = "// -- " + sign
63
+ originalContent [ln ] = reorderSignature + sign
62
64
}
63
65
source = append (source , sourceCode .SourceCode )
64
66
* removedLines += len (info .Constants )
@@ -84,7 +86,7 @@ func processExtractedFunction(
84
86
* lineNumberWhereInject = info .Functions [name ].OpeningLine
85
87
}
86
88
for ln := sourceCode .OpeningLine - 1 ; ln < sourceCode .ClosingLine ; ln ++ {
87
- originalContent [ln ] = "// -- " + sign
89
+ originalContent [ln ] = reorderSignature + sign
88
90
}
89
91
source = append (source , "\n " + sourceCode .SourceCode )
90
92
* removedLines += len (info .Functions )
@@ -113,7 +115,7 @@ func processFunctions(
113
115
* lineNumberWhereInject = info .Functions [name ].OpeningLine
114
116
}
115
117
for ln := sourceCode .OpeningLine - 1 ; ln < sourceCode .ClosingLine ; ln ++ {
116
- originalContent [ln ] = "// -- " + sign
118
+ originalContent [ln ] = reorderSignature + sign
117
119
}
118
120
source = append (source , "\n " + sourceCode .SourceCode )
119
121
* removedLines += len (info .Functions )
@@ -134,7 +136,7 @@ func processInterfaces(
134
136
* lineNumberWhereInject = info .Interfaces [name ].OpeningLine
135
137
}
136
138
for ln := sourceCode .OpeningLine - 1 ; ln < sourceCode .ClosingLine ; ln ++ {
137
- originalContent [ln ] = "// -- " + sign
139
+ originalContent [ln ] = reorderSignature + sign
138
140
}
139
141
source = append (source , sourceCode .SourceCode )
140
142
* removedLines += len (info .Interfaces )
@@ -155,7 +157,7 @@ func processTypes(
155
157
}
156
158
// replace the definitions by "// -- line to remove
157
159
for ln := info .Types [typename ].OpeningLine - 1 ; ln < info .Types [typename ].ClosingLine ; ln ++ {
158
- originalContent [ln ] = "// -- " + sign
160
+ originalContent [ln ] = reorderSignature + sign
159
161
}
160
162
* removedLines += info .Types [typename ].ClosingLine - info .Types [typename ].OpeningLine
161
163
// add the struct definition to "source"
@@ -164,7 +166,7 @@ func processTypes(
164
166
// same for constructors
165
167
for _ , constructor := range info .Constructors [typename ] {
166
168
for ln := constructor .OpeningLine - 1 ; ln < constructor .ClosingLine ; ln ++ {
167
- originalContent [ln ] = "// -- " + sign
169
+ originalContent [ln ] = reorderSignature + sign
168
170
}
169
171
// add the constructor to "source"
170
172
source = append (source , "\n " + constructor .SourceCode )
@@ -174,7 +176,7 @@ func processTypes(
174
176
// same for methods
175
177
for _ , method := range info .Methods [typename ] {
176
178
for ln := method .OpeningLine - 1 ; ln < method .ClosingLine ; ln ++ {
177
- originalContent [ln ] = "// -- " + sign
179
+ originalContent [ln ] = reorderSignature + sign
178
180
}
179
181
// add the method to "source"
180
182
source = append (source , "\n " + method .SourceCode )
@@ -196,7 +198,7 @@ func processVars(
196
198
* lineNumberWhereInject = info .Variables [name ].OpeningLine
197
199
}
198
200
for ln := sourceCode .OpeningLine - 1 ; ln < sourceCode .ClosingLine ; ln ++ {
199
- originalContent [ln ] = "// -- " + sign
201
+ originalContent [ln ] = reorderSignature + sign
200
202
}
201
203
source = append (source , sourceCode .SourceCode )
202
204
* removedLines += len (info .Variables )
@@ -218,22 +220,7 @@ func ReorderSource(opt ReorderConfig) (string, error) {
218
220
if opt .DefOrder == nil {
219
221
opt .DefOrder = DefaultOrder
220
222
}
221
- if len (opt .DefOrder ) != len (DefaultOrder ) {
222
- // wich one is missing?
223
- for _ , order := range DefaultOrder {
224
- found := false
225
- for _ , defOrder := range opt .DefOrder {
226
- if order == defOrder {
227
- found = true
228
- break
229
- }
230
- }
231
- if ! found {
232
- // add it to the end
233
- opt .DefOrder = append (opt .DefOrder , order )
234
- }
235
- }
236
- }
223
+ findMissingOrderElement (& opt )
237
224
238
225
var content []byte
239
226
var err error
@@ -258,33 +245,18 @@ func ReorderSource(opt ReorderConfig) (string, error) {
258
245
259
246
// sort methods by name
260
247
for _ , method := range info .Methods {
261
- sort .Slice (method , func (i , j int ) bool {
262
- return method [i ].Name < method [j ].Name
263
- })
248
+ sortGoTypes (method )
264
249
}
265
250
266
251
for _ , constructor := range info .Constructors {
267
- sort .Slice (constructor , func (i , j int ) bool {
268
- return constructor [i ].Name < constructor [j ].Name
269
- })
252
+ sortGoTypes (constructor )
270
253
}
271
254
272
- functionNames := make ([]string , 0 , len (info .Functions ))
273
- for functionName := range info .Functions {
274
- functionNames = append (functionNames , functionName )
275
- }
255
+ functionNames := getKeys (info .Functions )
256
+ varNames := getKeys (info .Variables )
257
+ constNames := getKeys (info .Constants )
276
258
sort .Strings (functionNames )
277
-
278
- varNames := make ([]string , 0 , len (info .Variables ))
279
- for varName := range info .Variables {
280
- varNames = append (varNames , varName )
281
- }
282
259
sort .Strings (varNames )
283
-
284
- constNames := make ([]string , 0 , len (info .Constants ))
285
- for constName := range info .Constants {
286
- constNames = append (constNames , constName )
287
- }
288
260
sort .Strings (constNames )
289
261
290
262
if opt .ReorderStructs {
@@ -375,34 +347,91 @@ func ReorderSource(opt ReorderConfig) (string, error) {
375
347
originalContent = append (originalContent [:lineNumberWhereInject ], append (source , originalContent [lineNumberWhereInject :]... )... )
376
348
377
349
// remove the lines that were marked as "// -- line to remove"
378
- temp := []string {}
379
- for _ , line := range originalContent {
380
- if line != "// -- " + sign {
381
- temp = append (temp , line )
350
+ originalContent = removeSignedLine (originalContent , sign )
351
+ output := []byte (strings .Join (originalContent , "\n " ))
352
+
353
+ // write in a temporary file and use "gofmt" to format it
354
+ //newcontent := []byte(output)
355
+ newcontent , err := formatSource (content , output , opt )
356
+ if err != nil {
357
+ return string (content ), err
358
+ }
359
+
360
+ if opt .Diff {
361
+ return doDiff (content , newcontent , opt .Filename )
362
+ }
363
+ return string (newcontent ), nil
364
+ }
365
+
366
+ // findMissingOrderElement finds the missing order element.
367
+ // If the default order is not complete, it will add the missing elements.
368
+ func findMissingOrderElement (opt * ReorderConfig ) {
369
+
370
+ if len (opt .DefOrder ) != len (DefaultOrder ) {
371
+ // wich one is missing?
372
+ for _ , order := range DefaultOrder {
373
+ found := false
374
+ for _ , defOrder := range opt .DefOrder {
375
+ if order == defOrder {
376
+ found = true
377
+ break
378
+ }
379
+ }
380
+ if ! found {
381
+ // add it to the end
382
+ opt .DefOrder = append (opt .DefOrder , order )
383
+ }
382
384
}
383
385
}
384
- originalContent = temp
385
- output := strings .Join (originalContent , "\n " )
386
+ }
387
+
388
+ func sortGoTypes (v []* GoType ) {
389
+ sort .Slice (v , func (i , j int ) bool {
390
+ return v [i ].Name < v [j ].Name
391
+ })
392
+ }
393
+
394
+ func getKeys (m map [string ]* GoType ) []string {
395
+ keys := make ([]string , len (m ))
396
+ i := 0
397
+ for k := range m {
398
+ keys [i ] = k
399
+ i ++
400
+ }
401
+ return keys
402
+ }
403
+
404
+ func formatSource (content , output []byte , opt ReorderConfig ) ([]byte , error ) {
386
405
387
406
// write in a temporary file and use "gofmt" to format it
388
407
//newcontent := []byte(output)
389
408
var newcontent []byte
409
+ var err error
390
410
switch opt .FormatCommand {
391
411
case "gofmt" :
392
412
// format the temporary file
393
413
newcontent , err = format .Source ([]byte (output ))
394
414
if err != nil {
395
- return string ( content ) , errors .New ("Failed to format source: " + err .Error ())
415
+ return content , errors .New ("Failed to format source: " + err .Error ())
396
416
}
397
417
default :
398
418
newcontent , err = formatWithCommand (content , output , opt )
399
419
if err != nil {
400
- return string ( content ) , errors .New ("Failed to format source: " + err .Error ())
420
+ return content , errors .New ("Failed to format source: " + err .Error ())
401
421
}
402
422
}
403
423
404
- if opt .Diff {
405
- return doDiff (content , newcontent , opt .Filename )
424
+ return newcontent , nil
425
+ }
426
+
427
+ func removeSignedLine (originalContent []string , sign string ) []string {
428
+ // remove the lines that were marked as "// -- line to remove"
429
+ temp := []string {}
430
+ for _ , line := range originalContent {
431
+ if line != reorderSignature + sign {
432
+ temp = append (temp , line )
433
+ }
406
434
}
407
- return string (newcontent ), nil
435
+
436
+ return temp
408
437
}
0 commit comments