5
5
"context"
6
6
"errors"
7
7
"fmt"
8
- "io/fs"
9
8
"os"
10
9
"os/signal"
11
10
"path/filepath"
35
34
globalExcludes []glob.Glob
36
35
formatters map [string ]* format.Formatter
37
36
pipelines map [string ]* format.Pipeline
38
- pathsCh chan string
39
- processedCh chan string
37
+ filesCh chan * walk. File
38
+ processedCh chan * walk. File
40
39
41
40
ErrFailOnChange = errors .New ("unexpected changes detected, --fail-on-change is enabled" )
42
41
)
@@ -142,10 +141,10 @@ func (f *Format) Run() (err error) {
142
141
143
142
// create a channel for paths to be processed
144
143
// we use a multiple of batch size here to allow for greater concurrency
145
- pathsCh = make (chan string , BatchSize * runtime .NumCPU ())
144
+ filesCh = make (chan * walk. File , BatchSize * runtime .NumCPU ())
146
145
147
146
// create a channel for tracking paths that have been processed
148
- processedCh = make (chan string , cap (pathsCh ))
147
+ processedCh = make (chan * walk. File , cap (filesCh ))
149
148
150
149
// start concurrent processing tasks
151
150
eg .Go (updateCache (ctx ))
@@ -185,26 +184,26 @@ func walkFilesystem(ctx context.Context) func() error {
185
184
return fmt .Errorf ("failed to create walker: %w" , err )
186
185
}
187
186
188
- defer close (pathsCh )
187
+ defer close (filesCh )
189
188
190
189
if Cli .NoCache {
191
- return walker .Walk (ctx , func (path string , info fs. FileInfo , err error ) error {
190
+ return walker .Walk (ctx , func (file * walk. File , err error ) error {
192
191
select {
193
192
case <- ctx .Done ():
194
193
return ctx .Err ()
195
194
default :
196
195
// ignore symlinks and directories
197
- if ! (info . IsDir () || info .Mode ()& os .ModeSymlink == os .ModeSymlink ) {
196
+ if ! (file . Info . IsDir () || file . Info .Mode ()& os .ModeSymlink == os .ModeSymlink ) {
198
197
stats .Add (stats .Traversed , 1 )
199
198
stats .Add (stats .Emitted , 1 )
200
- pathsCh <- path
199
+ filesCh <- file
201
200
}
202
201
return nil
203
202
}
204
203
})
205
204
}
206
205
207
- if err = cache .ChangeSet (ctx , walker , pathsCh ); err != nil {
206
+ if err = cache .ChangeSet (ctx , walker , filesCh ); err != nil {
208
207
return fmt .Errorf ("failed to generate change set: %w" , err )
209
208
}
210
209
return nil
@@ -213,19 +212,11 @@ func walkFilesystem(ctx context.Context) func() error {
213
212
214
213
func updateCache (ctx context.Context ) func () error {
215
214
return func () error {
216
- batch := make ([]string , 0 , BatchSize )
217
-
218
- var changes int
215
+ batch := make ([]* walk.File , 0 , BatchSize )
219
216
220
217
processBatch := func () error {
221
- if Cli .NoCache {
222
- changes += len (batch )
223
- } else {
224
- count , err := cache .Update (Cli .TreeRoot , batch )
225
- if err != nil {
226
- return err
227
- }
228
- changes += count
218
+ if err := cache .Update (batch ); err != nil {
219
+ return err
229
220
}
230
221
batch = batch [:0 ]
231
222
return nil
@@ -254,7 +245,7 @@ func updateCache(ctx context.Context) func() error {
254
245
return err
255
246
}
256
247
257
- if Cli .FailOnChange && changes != 0 {
248
+ if Cli .FailOnChange && stats . Value ( stats . Formatted ) != 0 {
258
249
return ErrFailOnChange
259
250
}
260
251
@@ -265,28 +256,28 @@ func updateCache(ctx context.Context) func() error {
265
256
266
257
func applyFormatters (ctx context.Context ) func () error {
267
258
fg , ctx := errgroup .WithContext (ctx )
268
- batches := make (map [string ][]string )
259
+ batches := make (map [string ][]* walk. File )
269
260
270
- tryApply := func (key string , path string ) {
261
+ tryApply := func (key string , file * walk. File ) {
271
262
batch , ok := batches [key ]
272
263
if ! ok {
273
- batch = make ([]string , 0 , BatchSize )
264
+ batch = make ([]* walk. File , 0 , BatchSize )
274
265
}
275
- batch = append (batch , path )
266
+ batch = append (batch , file )
276
267
batches [key ] = batch
277
268
278
269
if len (batch ) == BatchSize {
279
270
pipeline := pipelines [key ]
280
271
281
272
// copy the batch
282
- paths := make ([]string , len (batch ))
283
- copy (paths , batch )
273
+ files := make ([]* walk. File , len (batch ))
274
+ copy (files , batch )
284
275
285
276
fg .Go (func () error {
286
- if err := pipeline .Apply (ctx , paths ); err != nil {
277
+ if err := pipeline .Apply (ctx , files ); err != nil {
287
278
return err
288
279
}
289
- for _ , path := range paths {
280
+ for _ , path := range files {
290
281
processedCh <- path
291
282
}
292
283
return nil
@@ -322,17 +313,19 @@ func applyFormatters(ctx context.Context) func() error {
322
313
close (processedCh )
323
314
}()
324
315
325
- for path := range pathsCh {
316
+ for file := range filesCh {
326
317
var matched bool
327
318
for key , pipeline := range pipelines {
328
- if ! pipeline .Wants (path ) {
319
+ if ! pipeline .Wants (file ) {
329
320
continue
330
321
}
331
322
matched = true
332
- tryApply (key , path )
323
+ tryApply (key , file )
333
324
}
334
325
if matched {
335
326
stats .Add (stats .Matched , 1 )
327
+ } else {
328
+ processedCh <- file
336
329
}
337
330
}
338
331
0 commit comments