@@ -152,7 +152,7 @@ WriteRequest.prototype.onwrite = function (err, e) {
152
152
}
153
153
154
154
if ( ! err ) {
155
- this . file . updateSize ( e . currentTarget . length , this . truncating )
155
+ this . file . updateSize ( e . currentTarget . length )
156
156
}
157
157
158
158
if ( this . truncating ) {
@@ -166,6 +166,7 @@ WriteRequest.prototype.onwrite = function (err, e) {
166
166
167
167
WriteRequest . prototype . truncate = function ( ) {
168
168
this . truncating = true
169
+ this . file . truncate ( )
169
170
this . writer . truncate ( this . req . offset )
170
171
}
171
172
@@ -176,21 +177,23 @@ WriteRequest.prototype.lock = function () {
176
177
}
177
178
178
179
WriteRequest . prototype . run = function ( req ) {
179
- var file = this . file
180
+ this . file . getWritableFile ( ( err , file ) => {
181
+ if ( err ) return req . callback ( err )
180
182
181
- this . req = req
182
- if ( ! this . writer || this . writer . length !== file . size ) return this . makeWriter ( )
183
+ this . req = req
184
+ if ( ! this . writer || this . writer . length !== file . size ) return this . makeWriter ( )
183
185
184
- const end = req . offset + req . size
185
- if ( end > file . size && ! this . lock ( ) ) return
186
+ const end = req . offset + req . size
187
+ if ( end > file . size && ! this . lock ( ) ) return
186
188
187
- if ( req . offset > this . writer . length ) {
188
- if ( req . offset > file . size ) return this . truncate ( )
189
- return this . makeWriter ( )
190
- }
189
+ if ( req . offset > this . writer . length ) {
190
+ if ( req . offset > file . size ) return this . truncate ( )
191
+ return this . makeWriter ( )
192
+ }
191
193
192
- this . writer . seek ( req . offset )
193
- this . writer . write ( new Blob ( [ req . data ] , TYPE ) )
194
+ this . writer . seek ( req . offset )
195
+ this . writer . write ( new Blob ( [ req . data ] , TYPE ) )
196
+ } )
194
197
}
195
198
196
199
function Mutex ( ) {
@@ -246,12 +249,6 @@ ReadRequest.prototype.onread = function (err, buf) {
246
249
const req = this . req
247
250
248
251
if ( err && this . retry ) {
249
- if ( err . name === 'NotReadableError' ) {
250
- this . file . clearFile ( )
251
- this . run ( req )
252
- return
253
- }
254
-
255
252
this . retry = false
256
253
if ( this . lock ( this ) ) {
257
254
this . file . clearFile ( )
@@ -289,44 +286,53 @@ class EntryFile {
289
286
this . _lock = mutexify ( )
290
287
this . _file = null
291
288
this . _size = 0
292
- }
293
-
294
- get locked ( ) {
295
- return this . _lock . locked
289
+ this . _truncated = false
296
290
}
297
291
298
292
get size ( ) {
299
293
return this . _size
300
294
}
301
295
302
- updateSize ( size , truncating = false ) {
303
- if ( truncating || size > this . _size ) {
296
+ updateSize ( size ) {
297
+ if ( ! this . _truncated ) {
304
298
this . _size = size
305
299
}
306
300
307
301
this . clearFile ( )
308
302
}
309
303
304
+ truncate ( ) {
305
+ this . _truncated = true
306
+ }
307
+
310
308
clearFile ( ) {
311
309
this . _file = null
312
310
}
313
311
314
312
get ( cb ) {
315
- if ( this . _file ) {
316
- cb ( null , this . _file )
317
- return
313
+ if ( this . _file && ! this . _truncated ) {
314
+ return cb ( null , this . _file )
318
315
}
319
316
320
317
this . _lock ( release => {
321
- if ( this . _file ) {
318
+ if ( this . _file && ! this . _truncated ) {
322
319
return release ( cb , null , this . _file )
323
320
}
324
321
325
322
this . _entry . file ( file => {
323
+ this . _truncated = false
326
324
this . _file = file
327
325
this . _size = file . size
328
326
release ( cb , null , file )
329
327
} , err => release ( cb , err ) )
330
328
} )
331
329
}
330
+
331
+ getWritableFile ( cb ) {
332
+ if ( ! this . _truncated ) {
333
+ return cb ( null , this )
334
+ }
335
+
336
+ this . get ( cb )
337
+ }
332
338
}
0 commit comments