@@ -14,19 +14,17 @@ import (
14
14
"syscall"
15
15
"time"
16
16
17
- "github.com/numtide/treefmt/walk/cache"
18
- bolt "go.etcd.io/bbolt"
19
-
20
17
"github.com/charmbracelet/log"
21
18
"github.com/gobwas/glob"
22
19
"github.com/numtide/treefmt/config"
23
20
"github.com/numtide/treefmt/format"
24
21
"github.com/numtide/treefmt/stats"
25
22
"github.com/numtide/treefmt/walk"
23
+ "github.com/numtide/treefmt/walk/cache"
26
24
"github.com/spf13/cobra"
27
25
"github.com/spf13/viper"
26
+ bolt "go.etcd.io/bbolt"
28
27
"golang.org/x/sync/errgroup"
29
-
30
28
"mvdan.cc/sh/v3/expand"
31
29
)
32
30
@@ -60,20 +58,23 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
60
58
// Wait until we tick over into the next second before processing to ensure our EPOCH level modtime comparisons
61
59
// for change detection are accurate.
62
60
// This can fail in CI between checkout and running treefmt if everything happens too quickly.
63
- // For humans, the second level precision should not be a problem as they are unlikely to run treefmt in sub-second succession.
61
+ // For humans, the second level precision should not be a problem as they are unlikely to run treefmt in
62
+ // sub-second succession.
64
63
<- time .After (time .Until (startAfter ))
65
64
}
66
65
67
66
// cpu profiling
68
- if cfg .CpuProfile != "" {
69
- cpuProfile , err := os .Create (cfg .CpuProfile )
67
+ if cfg .CPUProfile != "" {
68
+ cpuProfile , err := os .Create (cfg .CPUProfile )
70
69
if err != nil {
71
70
return fmt .Errorf ("failed to open file for writing cpu profile: %w" , err )
72
71
} else if err = pprof .StartCPUProfile (cpuProfile ); err != nil {
73
72
return fmt .Errorf ("failed to start cpu profile: %w" , err )
74
73
}
74
+
75
75
defer func () {
76
76
pprof .StopCPUProfile ()
77
+
77
78
if err := cpuProfile .Close (); err != nil {
78
79
log .Errorf ("failed to close cpu profile: %v" , err )
79
80
}
@@ -99,6 +100,7 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
99
100
100
101
if errors .Is (err , format .ErrCommandNotFound ) && cfg .AllowMissingFormatter {
101
102
log .Debugf ("formatter command not found: %v" , name )
103
+
102
104
continue
103
105
} else if err != nil {
104
106
return fmt .Errorf ("%w: failed to initialise formatter: %v" , err , name )
@@ -110,8 +112,8 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
110
112
111
113
var db * bolt.DB
112
114
115
+ // open the db unless --no-cache was specified
113
116
if ! cfg .NoCache {
114
- // open the db
115
117
db , err = cache .Open (cfg .TreeRoot )
116
118
if err != nil {
117
119
return fmt .Errorf ("failed to open cache: %w" , err )
@@ -123,7 +125,9 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
123
125
log .Errorf ("failed to close cache: %v" , err )
124
126
}
125
127
}()
128
+ }
126
129
130
+ if db != nil {
127
131
// clear the cache if desired
128
132
if cfg .ClearCache {
129
133
if err = cache .Clear (db ); err != nil {
@@ -226,9 +230,7 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
226
230
break
227
231
} else if err != nil {
228
232
// something went wrong
229
- log .Errorf ("failed to read files: %v" , err )
230
- cancel ()
231
- break
233
+ return fmt .Errorf ("failed to read files: %w" , err )
232
234
}
233
235
}
234
236
@@ -243,7 +245,6 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
243
245
return reader .Close ()
244
246
}
245
247
246
- // applyFormatters
247
248
func applyFormatters (
248
249
ctx context.Context ,
249
250
cfg * config.Config ,
@@ -275,7 +276,6 @@ func applyFormatters(
275
276
276
277
// process the batch if it's full, or we've been asked to flush partial batches
277
278
if flush || len (batch ) == BatchSize {
278
-
279
279
// copy the batch as we re-use it for the next batch
280
280
tasks := make ([]* format.Task , len (batch ))
281
281
copy (tasks , batch )
@@ -287,6 +287,7 @@ func applyFormatters(
287
287
formatters := tasks [0 ].Formatters
288
288
289
289
var formatErrors []error
290
+
290
291
for idx := range formatters {
291
292
if err := formatters [idx ].Apply (ctx , tasks ); err != nil {
292
293
formatErrors = append (formatErrors , err )
@@ -330,7 +331,6 @@ func applyFormatters(
330
331
331
332
// iterate the file channel
332
333
for file := range filesCh {
333
-
334
334
// a list of formatters that match this file
335
335
var matches []* format.Formatter
336
336
@@ -392,6 +392,7 @@ func applyFormatters(
392
392
if err := fg .Wait (); err != nil {
393
393
return fmt .Errorf ("formatting failure: %w" , err )
394
394
}
395
+
395
396
return nil
396
397
}
397
398
}
@@ -406,7 +407,6 @@ func postProcessing(
406
407
LOOP:
407
408
for {
408
409
select {
409
-
410
410
// detect ctx cancellation
411
411
case <- ctx .Done ():
412
412
return ctx .Err ()
0 commit comments