forked from incu6us/goimports-reviser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
387 lines (335 loc) · 10.1 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
package main
import (
"crypto/md5"
"encoding/hex"
"flag"
"fmt"
"log"
"os"
"os/user"
"path"
"path/filepath"
"strings"
"github.com/incu6us/goimports-reviser/v3/helper"
"github.com/incu6us/goimports-reviser/v3/reviser"
)
const (
projectNameArg = "project-name"
versionArg = "version"
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"
// Deprecated options
localArg = "local"
filePathArg = "file-path"
)
// Project build specific vars
var (
Tag string
Commit string
SourceURL string
GoVersion string
shouldShowVersion *bool
shouldRemoveUnusedImports *bool
shouldSetAlias *bool
shouldFormat *bool
shouldApplyToGeneratedFiles *bool
listFileName *bool
setExitStatus *bool
isRecursive *bool
isUseCache *bool
)
var (
projectName, companyPkgPrefixes, output, importsOrder 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(
&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.
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.",
)
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.",
)
if Tag != "" {
shouldShowVersion = flag.Bool(
versionArg,
false,
"Show version.",
)
}
}
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()
}
func printVersion() {
fmt.Printf(
"version: %s\nbuild with: %s\ntag: %s\ncommit: %s\nsource: %s\n",
strings.TrimPrefix(Tag, "v"),
GoVersion,
Tag,
Commit,
SourceURL,
)
}
func main() {
deprecatedMessagesCh := make(chan string, 10)
flag.Parse()
if shouldShowVersion != nil && *shouldShowVersion {
printVersion()
return
}
originPath := flag.Arg(0)
if filePath != "" {
deprecatedMessagesCh <- fmt.Sprintf("-%s is deprecated. Put file name as last argument to the command(Example: goimports-reviser -rm-unused -set-alias -format goimports-reviser/main.go)", filePathArg)
originPath = filePath
}
if originPath == "" {
originPath = reviser.StandardInput
}
if err := validateRequiredParam(originPath); err != nil {
fmt.Printf("%s\n\n", err)
printUsage()
os.Exit(1)
}
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 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 {
fmt.Printf("%s\n\n", err)
printUsage()
os.Exit(1)
}
options = append(options, reviser.WithImportsOrder(order))
}
originProjectName, err := helper.DetermineProjectName(projectName, originPath)
if err != nil {
fmt.Printf("%s\n\n", err)
printUsage()
os.Exit(1)
}
close(deprecatedMessagesCh)
if _, ok := reviser.IsDir(originPath); ok {
err := reviser.NewSourceDir(originProjectName, originPath, *isRecursive).Fix(options...)
if err != nil {
log.Fatalf("Failed to fix directory: %+v\n", err)
}
return
}
originPath, err = filepath.Abs(originPath)
if err != nil {
log.Fatalf("Failed to get abs path: %+v\n", err)
}
var formattedOutput []byte
var hasChange 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
return
}
}
formattedOutput, hasChange, 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 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, hasChange, err = reviser.NewSourceFile(originProjectName, originPath).Fix(options...)
if err != nil {
log.Fatalf("Failed to fix file: %+v\n", err)
}
}
resultPostProcess(hasChange, deprecatedMessagesCh, originPath, formattedOutput)
}
func resultPostProcess(hasChange bool, deprecatedMessagesCh chan string, originFilePath string, formattedOutput []byte) {
if !hasChange && *listFileName {
printDeprecations(deprecatedMessagesCh)
return
}
if hasChange && *listFileName && output != "write" {
fmt.Println(originFilePath)
} else if output == "stdout" || originFilePath == reviser.StandardInput {
fmt.Print(string(formattedOutput))
} else if output == "file" || output == "write" {
if !hasChange {
printDeprecations(deprecatedMessagesCh)
return
}
if err := os.WriteFile(originFilePath, formattedOutput, 0644); err != nil {
log.Fatalf("failed to write fixed result to file(%s): %+v\n", originFilePath, err)
}
if *listFileName {
fmt.Println(originFilePath)
}
} else {
log.Fatalf(`invalid output "%s" specified`, output)
}
if hasChange && *setExitStatus {
os.Exit(1)
}
printDeprecations(deprecatedMessagesCh)
}
func validateRequiredParam(filePath string) error {
if filePath == reviser.StandardInput {
stat, _ := os.Stdin.Stat()
if stat.Mode()&os.ModeNamedPipe == 0 {
// no data on stdin
return fmt.Errorf("-%s should be set", filePathArg)
}
}
return nil
}
func printDeprecations(deprecatedMessagesCh chan string) {
var hasDeprecations bool
for deprecatedMessage := range deprecatedMessagesCh {
hasDeprecations = true
fmt.Printf("%s\n", deprecatedMessage)
}
if hasDeprecations {
fmt.Printf("All changes to file are applied, but command-line syntax should be fixed\n")
os.Exit(1)
}
}