7121: Log all errors (except the everyday "not found") encountered during CompareAndT...
[arvados.git] / services / keepstore / volume.go
index 64fea34bfe1c32ad9b6b6b33a74c82f8b9f0252f..d17af446a6b2674f9e86330ace0fea457d023e2a 100644 (file)
@@ -15,7 +15,13 @@ type Volume interface {
        // put the returned slice back into the buffer pool when it's
        // finished with it.
        Get(loc string) ([]byte, error)
-       Put(loc string, block []byte) error
+       // Confirm Get() would return a buffer with exactly the same
+       // content as buf. If so, return nil. If not, return
+       // CollisionError or DiskHashError (depending on whether the
+       // data on disk matches the expected hash), or whatever error
+       // was encountered opening/reading the file.
+       Compare(loc string, data []byte) error
+       Put(loc string, data []byte) error
        Touch(loc string) error
        Mtime(loc string) (time.Time, error)
        IndexTo(prefix string, writer io.Writer) error