@@ -33,17 +33,14 @@ const (
33
33
34
34
var ErrFailOnChange = errors .New ("unexpected changes detected, --fail-on-change is enabled" )
35
35
36
- func Run (v * viper.Viper , cmd * cobra.Command , paths []string ) error {
36
+ func Run (v * viper.Viper , statz * stats. Stats , cmd * cobra.Command , paths []string ) error {
37
37
cmd .SilenceUsage = true
38
38
39
39
cfg , err := config .FromViper (v )
40
40
if err != nil {
41
41
return fmt .Errorf ("failed to load config: %w" , err )
42
42
}
43
43
44
- // initialise stats collection
45
- stats .Init ()
46
-
47
44
if cfg .CI {
48
45
log .Info ("ci mode enabled" )
49
46
@@ -191,10 +188,10 @@ func Run(v *viper.Viper, cmd *cobra.Command, paths []string) error {
191
188
processedCh := make (chan * format.Task , cap (filesCh ))
192
189
193
190
// start concurrent processing tasks in reverse order
194
- eg .Go (updateCache (ctx , cfg , processedCh ))
195
- eg .Go (detectFormatted (ctx , cfg , formattedCh , processedCh ))
196
- eg .Go (applyFormatters (ctx , cfg , globalExcludes , formatters , filesCh , formattedCh ))
197
- eg .Go (walkFilesystem (ctx , cfg , paths , filesCh ))
191
+ eg .Go (updateCache (ctx , cfg , statz , processedCh ))
192
+ eg .Go (detectFormatted (ctx , cfg , statz , formattedCh , processedCh ))
193
+ eg .Go (applyFormatters (ctx , cfg , statz , globalExcludes , formatters , filesCh , formattedCh ))
194
+ eg .Go (walkFilesystem (ctx , cfg , statz , paths , filesCh ))
198
195
199
196
// wait for everything to complete
200
197
return eg .Wait ()
@@ -203,6 +200,7 @@ func Run(v *viper.Viper, cmd *cobra.Command, paths []string) error {
203
200
func walkFilesystem (
204
201
ctx context.Context ,
205
202
cfg * config.Config ,
203
+ statz * stats.Stats ,
206
204
paths []string ,
207
205
filesCh chan * walk.File ,
208
206
) func () error {
@@ -258,8 +256,8 @@ func walkFilesystem(
258
256
case <- ctx .Done ():
259
257
return ctx .Err ()
260
258
default :
261
- stats .Add (stats .Traversed , 1 )
262
- stats .Add (stats .Emitted , 1 )
259
+ statz .Add (stats .Traversed , 1 )
260
+ statz .Add (stats .Emitted , 1 )
263
261
filesCh <- file
264
262
return nil
265
263
}
@@ -268,7 +266,7 @@ func walkFilesystem(
268
266
269
267
// otherwise we pass the walker to the cache and have it generate files for processing based on whether or not
270
268
// they have been added/changed since the last invocation
271
- if err = cache .ChangeSet (ctx , walker , filesCh ); err != nil {
269
+ if err = cache .ChangeSet (ctx , statz , walker , filesCh ); err != nil {
272
270
return fmt .Errorf ("failed to generate change set: %w" , err )
273
271
}
274
272
return nil
@@ -279,6 +277,7 @@ func walkFilesystem(
279
277
func applyFormatters (
280
278
ctx context.Context ,
281
279
cfg * config.Config ,
280
+ statz * stats.Stats ,
282
281
globalExcludes []glob.Glob ,
283
282
formatters map [string ]* format.Formatter ,
284
283
filesCh chan * walk.File ,
@@ -389,7 +388,7 @@ func applyFormatters(
389
388
}
390
389
} else {
391
390
// record the match
392
- stats .Add (stats .Matched , 1 )
391
+ statz .Add (stats .Matched , 1 )
393
392
// create a new format task, add it to a batch based on its batch key and try to apply if the batch is full
394
393
task := format .NewTask (file , matches )
395
394
tryApply (& task )
@@ -409,7 +408,13 @@ func applyFormatters(
409
408
}
410
409
}
411
410
412
- func detectFormatted (ctx context.Context , cfg * config.Config , formattedCh chan * format.Task , processedCh chan * format.Task ) func () error {
411
+ func detectFormatted (
412
+ ctx context.Context ,
413
+ cfg * config.Config ,
414
+ statz * stats.Stats ,
415
+ formattedCh chan * format.Task ,
416
+ processedCh chan * format.Task ,
417
+ ) func () error {
413
418
return func () error {
414
419
defer func () {
415
420
// close formatted channel
@@ -438,7 +443,7 @@ func detectFormatted(ctx context.Context, cfg *config.Config, formattedCh chan *
438
443
439
444
if changed {
440
445
// record the change
441
- stats .Add (stats .Formatted , 1 )
446
+ statz .Add (stats .Formatted , 1 )
442
447
443
448
logMethod := log .Debug
444
449
if cfg .FailOnChange {
@@ -466,7 +471,12 @@ func detectFormatted(ctx context.Context, cfg *config.Config, formattedCh chan *
466
471
}
467
472
}
468
473
469
- func updateCache (ctx context.Context , cfg * config.Config , processedCh chan * format.Task ) func () error {
474
+ func updateCache (
475
+ ctx context.Context ,
476
+ cfg * config.Config ,
477
+ statz * stats.Stats ,
478
+ processedCh chan * format.Task ,
479
+ ) func () error {
470
480
return func () error {
471
481
// used to batch updates for more efficient txs
472
482
batch := make ([]* format.Task , 0 , BatchSize )
@@ -544,13 +554,13 @@ func updateCache(ctx context.Context, cfg *config.Config, processedCh chan *form
544
554
}
545
555
546
556
// if fail on change has been enabled, check that no files were actually formatted, throwing an error if so
547
- if cfg .FailOnChange && stats .Value (stats .Formatted ) != 0 {
557
+ if cfg .FailOnChange && statz .Value (stats .Formatted ) != 0 {
548
558
return ErrFailOnChange
549
559
}
550
560
551
561
// print stats to stdout unless we are processing stdin and printing the results to stdout
552
562
if ! cfg .Stdin {
553
- stats .Print ()
563
+ statz .Print ()
554
564
}
555
565
556
566
return nil
0 commit comments