Skip to content

Commit 18bdb72

Browse files
committed
feat: compare with cache before reporting a file as changed
1 parent 12aa9a7 commit 18bdb72

File tree

2 files changed

+43
-16
lines changed

2 files changed

+43
-16
lines changed

internal/cache/cache.go

+35-12
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,19 @@ func Close() error {
6464
return db.Close()
6565
}
6666

67+
func getFileInfo(bucket *bolt.Bucket, path string) (*FileInfo, error) {
68+
b := bucket.Get([]byte(path))
69+
if b != nil {
70+
var cached FileInfo
71+
if err := msgpack.Unmarshal(b, &cached); err != nil {
72+
return nil, errors.Annotatef(err, "failed to unmarshal cache info for path '%v'", path)
73+
}
74+
return &cached, nil
75+
} else {
76+
return nil, nil
77+
}
78+
}
79+
6780
func ChangeSet(ctx context.Context, root string, pathsCh chan<- string) error {
6881
return db.Update(func(tx *bolt.Tx) error {
6982
bucket := tx.Bucket([]byte(modifiedBucket))
@@ -83,17 +96,12 @@ func ChangeSet(ctx context.Context, root string, pathsCh chan<- string) error {
8396
return nil
8497
}
8598

86-
b := bucket.Get([]byte(path))
87-
88-
var cached FileInfo
89-
90-
if b != nil {
91-
if err = msgpack.Unmarshal(b, &cached); err != nil {
92-
return errors.Annotatef(err, "failed to unmarshal cache info for path '%v'", path)
93-
}
99+
cached, err := getFileInfo(bucket, path)
100+
if err != nil {
101+
return err
94102
}
95103

96-
changedOrNew := !(cached.Modified == info.ModTime() && cached.Size == info.Size())
104+
changedOrNew := cached == nil || !(cached.Modified == info.ModTime() && cached.Size == info.Size())
97105

98106
if !changedOrNew {
99107
// no change
@@ -107,23 +115,38 @@ func ChangeSet(ctx context.Context, root string, pathsCh chan<- string) error {
107115
})
108116
}
109117

110-
func WriteModTime(paths []string) error {
118+
func Update(paths []string) (int, error) {
111119
if len(paths) == 0 {
112-
return nil
120+
return 0, nil
113121
}
114122

115-
return db.Update(func(tx *bolt.Tx) error {
123+
var changes int
124+
125+
return changes, db.Update(func(tx *bolt.Tx) error {
116126
bucket := tx.Bucket([]byte(modifiedBucket))
117127

118128
for _, path := range paths {
119129
if path == "" {
120130
continue
121131
}
132+
133+
cached, err := getFileInfo(bucket, path)
134+
if err != nil {
135+
return err
136+
}
137+
122138
pathInfo, err := os.Stat(path)
123139
if err != nil {
124140
return err
125141
}
126142

143+
if cached == nil || !(cached.Modified == pathInfo.ModTime() && cached.Size == pathInfo.Size()) {
144+
changes += 1
145+
} else {
146+
// no change to write
147+
continue
148+
}
149+
127150
cacheInfo := FileInfo{
128151
Size: pathInfo.Size(),
129152
Modified: pathInfo.ModTime(),

internal/cli/format.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func (f *Format) Run() error {
8080
batchSize := 1024
8181
batch := make([]string, batchSize)
8282

83-
var pending, completed int
83+
var pending, completed, changes int
8484

8585
LOOP:
8686
for {
@@ -98,9 +98,11 @@ func (f *Format) Run() error {
9898
}
9999
batch = append(batch, path)
100100
if len(batch) == batchSize {
101-
if err := cache.WriteModTime(batch); err != nil {
101+
count, err := cache.Update(batch)
102+
if err != nil {
102103
return err
103104
}
105+
changes += count
104106
batch = batch[:0]
105107
}
106108

@@ -113,11 +115,13 @@ func (f *Format) Run() error {
113115
}
114116

115117
// final flush
116-
if err := cache.WriteModTime(batch); err != nil {
118+
count, err := cache.Update(batch)
119+
if err != nil {
117120
return err
118121
}
122+
changes += count
119123

120-
println(fmt.Sprintf("%v files changed in %v", completed, time.Now().Sub(start)))
124+
println(fmt.Sprintf("%v files changed in %v", changes, time.Now().Sub(start)))
121125
return nil
122126
})
123127

0 commit comments

Comments
 (0)