-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
main.go
497 lines (439 loc) · 13.3 KB
/
main.go
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
package main
import (
"crypto/md5"
"encoding/hex"
"errors"
"flag"
"fmt"
"log"
"os"
"os/user"
"path"
"path/filepath"
"regexp"
"runtime/debug"
"strings"
"github.com/incu6us/goimports-reviser/v3/helper"
"github.com/incu6us/goimports-reviser/v3/reviser"
)
const (
projectNameArg = "project-name"
versionArg = "version"
versionOnlyArg = "version-only"
removeUnusedImportsArg = "rm-unused"
setAliasArg = "set-alias"
companyPkgPrefixesArg = "company-prefixes"
outputArg = "output"
importsOrderArg = "imports-order"
formatArg = "format"
listDiffFileNameArg = "list-diff"
setExitStatusArg = "set-exit-status"
recursiveArg = "recursive"
useCacheArg = "use-cache"
applyToGeneratedFiles = "apply-to-generated-files"
excludesArg = "excludes"
// using a regex here so that this will work with forked repos (at least on github.com)
modulePathRegex = `^github.com/[\w-]+/goimports-reviser(/v\d+)?@?`
separateNamedArg = "separate-named"
// Deprecated options
localArg = "local"
filePathArg = "file-path"
)
// Project build specific vars
var (
Tag string
Commit string
SourceURL string
GoVersion string
shouldShowVersion *bool
shouldShowVersionOnly *bool
shouldRemoveUnusedImports *bool
shouldSetAlias *bool
shouldFormat *bool
shouldApplyToGeneratedFiles *bool
shouldSeparateNamedImports *bool
listFileName *bool
setExitStatus *bool
isRecursive *bool
isUseCache *bool
modulePathMatcher = regexp.MustCompile(modulePathRegex)
)
var (
projectName, companyPkgPrefixes, output, importsOrder, excludes string
// Deprecated
localPkgPrefixes, filePath string
)
func init() {
flag.StringVar(
&filePath,
filePathArg,
"",
"Deprecated. Put file name as an argument(last item) of command line.",
)
flag.StringVar(
&excludes,
excludesArg,
"",
"Exclude files or dirs, example: '.git/,proto/*.go'.",
)
flag.StringVar(
&projectName,
projectNameArg,
"",
"Your project name(ex.: github.com/incu6us/goimports-reviser). Optional parameter.",
)
flag.StringVar(
&companyPkgPrefixes,
companyPkgPrefixesArg,
"",
"Company package prefixes which will be placed after 3rd-party group by default(if defined). Values should be comma-separated. Optional parameters.",
)
flag.StringVar(
&localPkgPrefixes,
localArg,
"",
"Deprecated",
)
flag.StringVar(
&output,
outputArg,
"file",
`Can be "file", "write" or "stdout". Whether to write the formatted content back to the file or to stdout. When "write" together with "-list-diff" will list the file name and write back to the file. Optional parameter.`,
)
flag.StringVar(
&importsOrder,
importsOrderArg,
"std,general,company,project",
`Your imports groups can be sorted in your way.
std - std import group;
general - libs for general purpose;
company - inter-org or your company libs(if you set '-company-prefixes'-option, then 4th group will be split separately. In other case, it will be the part of general purpose libs);
project - your local project dependencies;
blanked - imports with "_" alias;
dotted - imports with "." alias.
Optional parameter.`,
)
listFileName = flag.Bool(
listDiffFileNameArg,
false,
"Option will list files whose formatting differs from goimports-reviser. Optional parameter.",
)
setExitStatus = flag.Bool(
setExitStatusArg,
false,
"set the exit status to 1 if a change is needed/made. Optional parameter.",
)
shouldRemoveUnusedImports = flag.Bool(
removeUnusedImportsArg,
false,
"Remove unused imports. Optional parameter.",
)
shouldSetAlias = flag.Bool(
setAliasArg,
false,
"Set alias for versioned package names, like 'github.com/go-pg/pg/v9'. "+
"In this case import will be set as 'pg \"github.com/go-pg/pg/v9\"'. Optional parameter.",
)
shouldFormat = flag.Bool(
formatArg,
false,
"Option will perform additional formatting. Optional parameter.",
)
shouldSeparateNamedImports = flag.Bool(
separateNamedArg,
false,
"Option will separate named imports from the rest of the imports, per group. Optional parameter.",
)
isRecursive = flag.Bool(
recursiveArg,
false,
"Apply rules recursively if target is a directory. In case of ./... execution will be recursively applied by default. Optional parameter.",
)
isUseCache = flag.Bool(
useCacheArg,
false,
"Use cache to improve performance. Optional parameter.",
)
shouldApplyToGeneratedFiles = flag.Bool(
applyToGeneratedFiles,
false,
"Apply imports sorting and formatting(if the option is set) to generated files. Generated file is a file with first comment which starts with comment '// Code generated'. Optional parameter.",
)
shouldShowVersion = flag.Bool(
versionArg,
false,
"Show version information",
)
shouldShowVersionOnly = flag.Bool(
versionOnlyArg,
false,
"Show only the version string",
)
}
func printUsage() {
if _, err := fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0]); err != nil {
log.Fatalf("failed to print usage: %s", err)
}
flag.PrintDefaults()
}
// printUsageAndExit prints usage and exits with status 0
// if err is nil, otherwise it prints the error and exits with status 1
func printUsageAndExit(err error) {
printUsage()
if err != nil {
log.Fatalf("%s", err)
}
os.Exit(0)
}
func getBuildInfo() *debug.BuildInfo {
bi, ok := debug.ReadBuildInfo()
if !ok {
return nil
}
return bi
}
func getMyModuleInfo(bi *debug.BuildInfo) (*debug.Module, error) {
if bi == nil {
return nil, errors.New("no build info available")
}
// depending on the context in which we are called, the main module may not be set
if bi.Main.Path != "" {
return &bi.Main, nil
}
// if the main module is not set, we need to find the dep that contains our module
for _, m := range bi.Deps {
if modulePathMatcher.MatchString(m.Path) {
return m, nil
}
}
return nil, errors.New("no matching module found in build info")
}
func printVersion() {
if Tag != "" {
fmt.Printf(
"version: %s\nbuilt with: %s\ntag: %s\ncommit: %s\nsource: %s\n",
strings.TrimPrefix(Tag, "v"),
GoVersion,
Tag,
Commit,
SourceURL,
)
return
}
bi := getBuildInfo()
myModule, err := getMyModuleInfo(bi)
if err != nil {
log.Fatalf("failed to get my module info: %s", err)
}
fmt.Printf(
"version: %s\nbuilt with: %s\ntag: %s\ncommit: %s\nsource: %s\n",
strings.TrimPrefix(myModule.Version, "v"),
bi.GoVersion,
myModule.Version,
"n/a",
myModule.Path,
)
}
func printVersionOnly() {
if Tag != "" {
fmt.Println(strings.TrimPrefix(Tag, "v"))
return
}
bi := getBuildInfo()
myModule, err := getMyModuleInfo(bi)
if err != nil {
log.Fatalf("failed to get my module info: %s", err)
}
fmt.Println(strings.TrimPrefix(myModule.Version, "v"))
}
func main() {
deprecatedMessagesCh := make(chan string, 10)
flag.Parse()
if shouldShowVersionOnly != nil && *shouldShowVersionOnly {
printVersionOnly()
return
}
if shouldShowVersion != nil && *shouldShowVersion {
printVersion()
return
}
originPaths := flag.Args()
if filePath != "" {
deprecatedMessagesCh <- fmt.Sprintf("-%s is deprecated. Put file name(s) as last argument to the command(Example: goimports-reviser -rm-unused -set-alias -format goimports-reviser/main.go)", filePathArg)
originPaths = append(originPaths, filePath)
}
if len(originPaths) == 0 {
printUsageAndExit(errors.New("no file(s) or directory(ies) specified on input"))
}
if len(originPaths) == 1 && originPaths[0] == "-" {
originPaths[0] = reviser.StandardInput
if err := validateRequiredParam(originPaths[0]); err != nil {
printUsageAndExit(err)
}
}
var options reviser.SourceFileOptions
if shouldRemoveUnusedImports != nil && *shouldRemoveUnusedImports {
options = append(options, reviser.WithRemovingUnusedImports)
}
if shouldSetAlias != nil && *shouldSetAlias {
options = append(options, reviser.WithUsingAliasForVersionSuffix)
}
if shouldFormat != nil && *shouldFormat {
options = append(options, reviser.WithCodeFormatting)
}
if shouldApplyToGeneratedFiles == nil || !*shouldApplyToGeneratedFiles {
options = append(options, reviser.WithSkipGeneratedFile)
}
if shouldSeparateNamedImports != nil && *shouldSeparateNamedImports {
options = append(options, reviser.WithSeparatedNamedImports)
}
if localPkgPrefixes != "" {
if companyPkgPrefixes != "" {
companyPkgPrefixes = localPkgPrefixes
}
deprecatedMessagesCh <- fmt.Sprintf(`-%s is deprecated and will be removed soon. Use -%s instead.`, localArg, companyPkgPrefixesArg)
}
if companyPkgPrefixes != "" {
options = append(options, reviser.WithCompanyPackagePrefixes(companyPkgPrefixes))
}
if importsOrder != "" {
order, err := reviser.StringToImportsOrders(importsOrder)
if err != nil {
printUsageAndExit(err)
}
options = append(options, reviser.WithImportsOrder(order))
}
close(deprecatedMessagesCh)
var hasChange bool
log.Printf("Paths: %v\n", originPaths)
for _, originPath := range originPaths {
log.Printf("Processing %s\n", originPath)
originProjectName, err := helper.DetermineProjectName(projectName, originPath, helper.OSGetwdOption)
if err != nil {
printUsageAndExit(fmt.Errorf("Could not determine project name for path %s: %s", originPath, err))
}
if _, ok := reviser.IsDir(originPath); ok {
if *listFileName {
unformattedFiles, err := reviser.NewSourceDir(originProjectName, originPath, *isRecursive, excludes).Find(options...)
if err != nil {
log.Fatalf("Failed to find unformatted files %s: %+v\n", originPath, err)
}
fmt.Printf("%s\n", unformattedFiles.String())
continue
}
err := reviser.NewSourceDir(originProjectName, originPath, *isRecursive, excludes).Fix(options...)
if err != nil {
log.Fatalf("Failed to fix directory %s: %+v\n", originPath, err)
}
continue
}
if originPath != reviser.StandardInput {
originPath, err = filepath.Abs(originPath)
if err != nil {
log.Fatalf("Failed to get abs path: %+v\n", err)
}
}
var formattedOutput []byte
var pathHasChange bool
if *isUseCache {
hash := md5.Sum([]byte(originPath))
u, err := user.Current()
if err != nil {
log.Fatalf("Failed to get current user: %+v\n", err)
}
cacheDir := path.Join(u.HomeDir, ".cache", "goimports-reviser")
if err = os.MkdirAll(cacheDir, os.ModePerm); err != nil {
log.Fatalf("Failed to create cache directory: %+v\n", err)
}
cacheFile := path.Join(cacheDir, hex.EncodeToString(hash[:]))
var cacheContent, fileContent []byte
if cacheContent, err = os.ReadFile(cacheFile); err == nil {
// compare file content hash
var fileHashHex string
if fileContent, err = os.ReadFile(originPath); err == nil {
fileHash := md5.Sum(fileContent)
fileHashHex = hex.EncodeToString(fileHash[:])
}
if string(cacheContent) == fileHashHex {
// point to cache
continue
}
}
formattedOutput, _, pathHasChange, err = reviser.NewSourceFile(originProjectName, originPath).Fix(options...)
if err != nil {
log.Fatalf("Failed to fix file: %+v\n", err)
}
fileHash := md5.Sum(formattedOutput)
fileHashHex := hex.EncodeToString(fileHash[:])
if fileInfo, err := os.Stat(cacheFile); err != nil || fileInfo.IsDir() {
if _, err = os.Create(cacheFile); err != nil {
log.Fatalf("Failed to create cache file: %+v\n", err)
}
}
file, _ := os.OpenFile(cacheFile, os.O_RDWR, os.ModePerm)
defer func() {
_ = file.Close()
}()
if err = file.Truncate(0); err != nil {
log.Fatalf("Failed file truncate: %+v\n", err)
}
if _, err = file.Seek(0, 0); err != nil {
log.Fatalf("Failed file seek: %+v\n", err)
}
if _, err = file.WriteString(fileHashHex); err != nil {
log.Fatalf("Failed to write file hash: %+v\n", err)
}
} else {
formattedOutput, _, pathHasChange, err = reviser.NewSourceFile(originProjectName, originPath).Fix(options...)
if err != nil {
log.Fatalf("Failed to fix file: %+v\n", err)
}
}
if !hasChange && pathHasChange {
hasChange = pathHasChange
}
resultPostProcess(hasChange, originPath, formattedOutput)
}
printDeprecations(deprecatedMessagesCh)
if hasChange && *setExitStatus {
os.Exit(1)
}
}
func resultPostProcess(hasChange bool, originFilePath string, formattedOutput []byte) {
switch {
case hasChange && *listFileName && output != "write":
fmt.Println(originFilePath)
case output == "stdout" || originFilePath == reviser.StandardInput:
fmt.Print(string(formattedOutput))
case output == "file" || output == "write":
if err := os.WriteFile(originFilePath, formattedOutput, 0o644); err != nil {
log.Fatalf("failed to write fixed result to file(%s): %+v\n", originFilePath, err)
}
if *listFileName {
fmt.Println(originFilePath)
}
default:
log.Fatalf(`invalid output %q specified`, output)
}
}
func validateRequiredParam(filePath string) error {
if filePath == reviser.StandardInput {
stat, _ := os.Stdin.Stat()
if stat.Mode()&os.ModeNamedPipe == 0 {
// no data on stdin
return errors.New("no data on stdin")
}
}
return nil
}
func printDeprecations(deprecatedMessagesCh chan string) {
var hasDeprecations bool
for deprecatedMessage := range deprecatedMessagesCh {
hasDeprecations = true
log.Printf("%s\n", deprecatedMessage)
}
if hasDeprecations {
log.Printf("All changes to file are applied, but command-line syntax should be fixed\n")
os.Exit(1)
}
}