2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00
restic/internal/restic/repository.go

72 lines
2.2 KiB
Go
Raw Normal View History

package restic
2017-06-03 15:39:57 +00:00
import (
"context"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/crypto"
2017-06-03 15:39:57 +00:00
)
2016-08-31 21:07:50 +00:00
// Repository stores data in a backend. It provides high-level functions and
// transparently encrypts/decrypts data.
type Repository interface {
// Backend returns the backend used by the repository
Backend() Backend
2016-08-31 21:07:50 +00:00
Key() *crypto.Key
SetIndex(MasterIndex) error
2016-08-31 18:29:54 +00:00
Index() MasterIndex
2017-06-04 09:16:55 +00:00
SaveFullIndex(context.Context) error
SaveIndex(context.Context) error
LoadIndex(context.Context) error
2016-08-31 18:29:54 +00:00
Config() Config
LookupBlobSize(ID, BlobType) (uint, bool)
2018-01-23 20:21:54 +00:00
// List calls the function fn for each file of type t in the repository.
// When an error is returned by fn, processing stops and List() returns the
// error.
//
// The function fn is called in the same Goroutine List() was called from.
List(ctx context.Context, t FileType, fn func(ID, int64) error) error
ListPack(context.Context, ID, int64) ([]Blob, int64, error)
Flush(context.Context) error
2017-06-04 09:16:55 +00:00
SaveUnpacked(context.Context, FileType, []byte) (ID, error)
SaveJSONUnpacked(context.Context, FileType, interface{}) (ID, error)
2016-08-31 18:29:54 +00:00
LoadJSONUnpacked(ctx context.Context, t FileType, id ID, dest interface{}) error
// LoadAndDecrypt loads and decrypts the file with the given type and ID,
// using the supplied buffer (which must be empty). If the buffer is nil, a
// new buffer will be allocated and returned.
LoadAndDecrypt(ctx context.Context, buf []byte, t FileType, id ID) (data []byte, err error)
LoadBlob(context.Context, BlobType, ID, []byte) ([]byte, error)
SaveBlob(context.Context, BlobType, []byte, ID, bool) (ID, bool, error)
2016-09-03 18:55:22 +00:00
2017-06-04 09:16:55 +00:00
LoadTree(context.Context, ID) (*Tree, error)
SaveTree(context.Context, *Tree) (ID, error)
2016-08-31 18:29:54 +00:00
}
2016-08-31 20:39:36 +00:00
// Lister allows listing files in a backend.
type Lister interface {
List(context.Context, FileType, func(FileInfo) error) error
2016-08-31 20:39:36 +00:00
}
// MasterIndex keeps track of the blobs are stored within files.
type MasterIndex interface {
2016-08-31 18:58:57 +00:00
Has(ID, BlobType) bool
Lookup(ID, BlobType) []PackedBlob
2016-08-31 21:07:50 +00:00
Count(BlobType) uint
Packs() IDSet
2017-06-18 12:45:02 +00:00
// Each returns a channel that yields all blobs known to the index. When
// the context is cancelled, the background goroutine terminates. This
// blocks any modification of the index.
Each(ctx context.Context) <-chan PackedBlob
2016-08-31 18:29:54 +00:00
}