@@ -64,6 +64,19 @@ func Close() error {
64
64
return db .Close ()
65
65
}
66
66
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
+
67
80
func ChangeSet (ctx context.Context , root string , pathsCh chan <- string ) error {
68
81
return db .Update (func (tx * bolt.Tx ) error {
69
82
bucket := tx .Bucket ([]byte (modifiedBucket ))
@@ -83,17 +96,12 @@ func ChangeSet(ctx context.Context, root string, pathsCh chan<- string) error {
83
96
return nil
84
97
}
85
98
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
94
102
}
95
103
96
- changedOrNew := ! (cached .Modified == info .ModTime () && cached .Size == info .Size ())
104
+ changedOrNew := cached == nil || ! (cached .Modified == info .ModTime () && cached .Size == info .Size ())
97
105
98
106
if ! changedOrNew {
99
107
// no change
@@ -107,23 +115,38 @@ func ChangeSet(ctx context.Context, root string, pathsCh chan<- string) error {
107
115
})
108
116
}
109
117
110
- func WriteModTime (paths []string ) error {
118
+ func Update (paths []string ) ( int , error ) {
111
119
if len (paths ) == 0 {
112
- return nil
120
+ return 0 , nil
113
121
}
114
122
115
- return db .Update (func (tx * bolt.Tx ) error {
123
+ var changes int
124
+
125
+ return changes , db .Update (func (tx * bolt.Tx ) error {
116
126
bucket := tx .Bucket ([]byte (modifiedBucket ))
117
127
118
128
for _ , path := range paths {
119
129
if path == "" {
120
130
continue
121
131
}
132
+
133
+ cached , err := getFileInfo (bucket , path )
134
+ if err != nil {
135
+ return err
136
+ }
137
+
122
138
pathInfo , err := os .Stat (path )
123
139
if err != nil {
124
140
return err
125
141
}
126
142
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
+
127
150
cacheInfo := FileInfo {
128
151
Size : pathInfo .Size (),
129
152
Modified : pathInfo .ModTime (),
0 commit comments