Refactor imapsql ExternalStore to use modules

Closes #303
This commit is contained in:
fox.cpp 2021-07-11 21:42:19 +03:00
parent 6c5c5d10c4
commit 09393aed8f
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
8 changed files with 255 additions and 27 deletions

View file

@ -0,0 +1,30 @@
package module
import (
"errors"
"io"
)
type Blob interface {
Sync() error
io.Reader
io.Writer
io.Closer
}
var ErrNoSuchBlob = errors.New("blob_store: no such object")
// BlobStore is the interface used by modules providing large binary object
// storage.
type BlobStore interface {
Create(key string) (Blob, error)
// Open returns the reader for the object specified by
// passed key.
//
// If no such object exists - ErrNoSuchBlob is returned.
Open(key string) (io.ReadCloser, error)
// Delete removes a set of keys from store. Non-existent keys are ignored.
Delete(keys []string) error
}