restic/backend/interface.go

72 lines
1.9 KiB
Go
Raw Normal View History

2014-09-23 22:39:12 +02:00
package backend
2016-01-23 17:08:03 +01:00
import "io"
2014-10-07 23:19:26 +02:00
2015-03-28 11:50:23 +01:00
// Type is the type of a Blob.
2014-09-23 22:39:12 +02:00
type Type string
2016-01-23 12:46:20 +01:00
// These are the different data types a backend can store.
2014-09-23 22:39:12 +02:00
const (
Data Type = "data"
2014-09-23 22:39:12 +02:00
Key = "key"
Lock = "lock"
Snapshot = "snapshot"
2015-04-26 15:48:35 +02:00
Index = "index"
Config = "config"
2014-10-04 16:49:39 +02:00
)
2016-01-23 12:46:20 +01:00
// Backend is used to store and access data.
2015-03-28 11:50:23 +01:00
type Backend interface {
2016-01-23 12:46:20 +01:00
// Location returns a string that describes the type and location of the
// repository.
2015-03-28 11:50:23 +01:00
Location() string
2014-10-07 23:19:26 +02:00
2015-03-28 11:50:23 +01:00
// Create creates a new Blob. The data is available only after Finalize()
// has been called on the returned Blob.
Create() (Blob, error)
// GetReader returns an io.ReadCloser for the Blob with the given name of
// type t at offset and length.
GetReader(t Type, name string, offset, length uint) (io.ReadCloser, error)
2015-03-28 11:50:23 +01:00
// Test a boolean value whether a Blob with the name and type exists.
Test(t Type, name string) (bool, error)
2014-12-21 15:57:41 +01:00
2015-03-28 11:50:23 +01:00
// Remove removes a Blob with type t and name.
Remove(t Type, name string) error
2014-12-21 15:57:41 +01:00
2015-03-28 11:50:23 +01:00
// Close the backend
Close() error
Lister
2016-01-23 14:12:12 +01:00
// Load returns the data stored in the backend for h at the given offset
// and saves it in p. Load has the same semantics as io.ReaderAt.
Load(h Handle, p []byte, off int64) (int, error)
2014-12-21 15:57:41 +01:00
}
2016-01-23 12:46:20 +01:00
// Lister implements listing data items stored in a backend.
2015-03-28 11:50:23 +01:00
type Lister interface {
// List returns a channel that yields all names of blobs of type t in an
// arbitrary order. A goroutine is started for this. If the channel done is
// closed, sending stops.
2015-03-28 11:50:23 +01:00
List(t Type, done <-chan struct{}) <-chan string
2014-12-21 15:57:41 +01:00
}
2014-10-04 19:20:15 +02:00
2016-01-23 12:46:20 +01:00
// Deleter are backends that allow to self-delete all content stored in them.
2014-12-21 17:02:49 +01:00
type Deleter interface {
2015-03-28 11:50:23 +01:00
// Delete the complete repository.
2014-12-21 15:57:41 +01:00
Delete() error
}
2016-01-23 12:46:20 +01:00
// Blob is old.
2015-03-28 11:50:23 +01:00
type Blob interface {
io.Writer
2014-12-21 15:57:41 +01:00
2015-03-28 11:50:23 +01:00
// Finalize moves the data blob to the final location for type and name.
Finalize(t Type, name string) error
2015-03-28 11:50:23 +01:00
// Size returns the number of bytes written to the backend so far.
Size() uint
2014-12-21 15:57:41 +01:00
}