summaryrefslogtreecommitdiff
path: root/common/copy.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/copy.go')
-rw-r--r--common/copy.go32
1 files changed, 17 insertions, 15 deletions
diff --git a/common/copy.go b/common/copy.go
index bee6515..1d273dc 100644
--- a/common/copy.go
+++ b/common/copy.go
@@ -36,29 +36,31 @@ func CopyToFileWithBuffer(
}()
for {
- if err = ctx.Err(); err != nil {
+ select {
+ case <-ctx.Done():
return
- }
- nRead, err = in.Read(buffer[off:Min[int](off+chunkSize, bufSize)])
- if err != nil {
- return
- }
- off += nRead
- if off == bufSize {
- // buffer is full
- var nWritten int
- nWritten, err = out.Write(buffer)
+ default:
+ nRead, err = in.Read(buffer[off:Min[int](off+chunkSize, bufSize)])
if err != nil {
return
}
- if syncFile {
- err = out.Sync()
+ off += nRead
+ if off == bufSize {
+ // buffer is full
+ var nWritten int
+ nWritten, err = out.Write(buffer)
if err != nil {
return
}
+ if syncFile {
+ err = out.Sync()
+ if err != nil {
+ return
+ }
+ }
+ written += int64(nWritten)
+ off = 0
}
- written += int64(nWritten)
- off = 0
}
}
}