X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/52cca9dc7c50ef8c54c9dc83a2ccf0129c27485e..8626abb0a44cfc303bef3552a7bc57163c79231a:/services/keepstore/volume_unix.go?ds=sidebyside diff --git a/services/keepstore/volume_unix.go b/services/keepstore/volume_unix.go index 74bee52387..6c0f5c4e97 100644 --- a/services/keepstore/volume_unix.go +++ b/services/keepstore/volume_unix.go @@ -26,6 +26,7 @@ type UnixVolume struct { readonly bool } +// Touch sets the timestamp for the given locator to the current time func (v *UnixVolume) Touch(loc string) error { if v.readonly { return MethodDisabledError @@ -49,13 +50,14 @@ func (v *UnixVolume) Touch(loc string) error { return syscall.Utime(p, &utime) } +// Mtime returns the stored timestamp for the given locator. func (v *UnixVolume) Mtime(loc string) (time.Time, error) { p := v.blockPath(loc) - if fi, err := os.Stat(p); err != nil { + fi, err := os.Stat(p) + if err != nil { return time.Time{}, err - } else { - return fi.ModTime(), nil } + return fi.ModTime(), nil } // Lock the locker (if one is in use), open the file for reading, and @@ -79,7 +81,7 @@ func (v *UnixVolume) stat(path string) (os.FileInfo, error) { if err == nil { if stat.Size() < 0 { err = os.ErrInvalid - } else if stat.Size() > BLOCKSIZE { + } else if stat.Size() > BlockSize { err = TooLongError } } @@ -120,6 +122,13 @@ func (v *UnixVolume) Compare(loc string, expect []byte) error { bufLen := 1 << 20 if int64(bufLen) > stat.Size() { bufLen = int(stat.Size()) + if bufLen < 1 { + // len(buf)==0 would prevent us from handling + // empty files the same way as non-empty + // files, because reading 0 bytes at a time + // never reaches EOF. + bufLen = 1 + } } cmp := expect buf := make([]byte, bufLen) @@ -288,6 +297,7 @@ func (v *UnixVolume) IndexTo(prefix string, w io.Writer) error { } } +// Delete deletes the block data from the unix storage func (v *UnixVolume) Delete(loc string) error { // Touch() must be called before calling Write() on a block. Touch() // also uses lockfile(). This avoids a race condition between Write() @@ -315,7 +325,7 @@ func (v *UnixVolume) Delete(loc string) error { } defer unlockfile(f) - // If the block has been PUT in the last blob_signature_ttl + // If the block has been PUT in the last blobSignatureTTL // seconds, return success without removing the block. This // protects data from garbage collection until it is no longer // possible for clients to retrieve the unreferenced blocks @@ -323,7 +333,7 @@ func (v *UnixVolume) Delete(loc string) error { if fi, err := os.Stat(p); err != nil { return err } else { - if time.Since(fi.ModTime()) < blob_signature_ttl { + if time.Since(fi.ModTime()) < blobSignatureTTL { return nil } } @@ -343,7 +353,7 @@ func (v *UnixVolume) blockPath(loc string) string { } // IsFull returns true if the free space on the volume is less than -// MIN_FREE_KILOBYTES. +// MinFreeKilobytes. // func (v *UnixVolume) IsFull() (isFull bool) { fullSymlink := v.root + "/full" @@ -359,7 +369,7 @@ func (v *UnixVolume) IsFull() (isFull bool) { } if avail, err := v.FreeDiskSpace(); err == nil { - isFull = avail < MIN_FREE_KILOBYTES + isFull = avail < MinFreeKilobytes } else { log.Printf("%s: FreeDiskSpace: %s\n", v, err) isFull = false @@ -391,6 +401,7 @@ func (v *UnixVolume) String() string { return fmt.Sprintf("[UnixVolume %s]", v.root) } +// Writable returns false if all future Put, Mtime, and Delete calls are expected to fail. func (v *UnixVolume) Writable() bool { return !v.readonly }