2016-08-31 19:10:10 +02:00
|
|
|
package restic
|
|
|
|
|
2017-06-03 17:39:57 +02:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
)
|
2017-01-22 12:32:20 +01:00
|
|
|
|
2016-08-31 19:10:10 +02:00
|
|
|
// Backend is used to store and access data.
|
|
|
|
type Backend interface {
|
|
|
|
// Location returns a string that describes the type and location of the
|
|
|
|
// repository.
|
|
|
|
Location() string
|
|
|
|
|
2016-08-31 20:29:54 +02:00
|
|
|
// Test a boolean value whether a File with the name and type exists.
|
2017-06-03 17:39:57 +02:00
|
|
|
Test(ctx context.Context, h Handle) (bool, error)
|
2016-08-31 19:10:10 +02:00
|
|
|
|
2017-12-22 18:34:17 +01:00
|
|
|
// Remove removes a File described by h.
|
2017-06-03 17:39:57 +02:00
|
|
|
Remove(ctx context.Context, h Handle) error
|
2016-08-31 19:10:10 +02:00
|
|
|
|
|
|
|
// Close the backend
|
|
|
|
Close() error
|
|
|
|
|
2018-03-03 14:20:54 +01:00
|
|
|
// Save stores the data from rd under the given handle.
|
|
|
|
Save(ctx context.Context, h Handle, rd RewindReader) error
|
2016-08-31 19:10:10 +02:00
|
|
|
|
2018-01-16 23:59:16 -05:00
|
|
|
// Load runs fn with a reader that yields the contents of the file at h at the
|
2017-01-23 17:20:08 +01:00
|
|
|
// given offset. If length is larger than zero, only a portion of the file
|
2018-01-16 23:59:16 -05:00
|
|
|
// is read.
|
|
|
|
//
|
|
|
|
// The function fn may be called multiple times during the same Load invocation
|
|
|
|
// and therefore must be idempotent.
|
|
|
|
//
|
|
|
|
// Implementations are encouraged to use backend.DefaultLoad
|
|
|
|
Load(ctx context.Context, h Handle, length int, offset int64, fn func(rd io.Reader) error) error
|
2017-01-22 22:01:12 +01:00
|
|
|
|
2016-08-31 20:29:54 +02:00
|
|
|
// Stat returns information about the File identified by h.
|
2017-06-03 17:39:57 +02:00
|
|
|
Stat(ctx context.Context, h Handle) (FileInfo, error)
|
2016-08-31 19:10:10 +02:00
|
|
|
|
2018-01-20 13:43:07 +01:00
|
|
|
// List runs fn for each file in the backend which has the type t. When an
|
|
|
|
// error occurs (or fn returns an error), List stops and returns it.
|
2018-01-23 21:21:54 +01:00
|
|
|
//
|
2018-01-24 10:25:40 -05:00
|
|
|
// The function fn is called exactly once for each file during successful
|
|
|
|
// execution and at most once in case of an error.
|
|
|
|
//
|
2018-01-23 21:21:54 +01:00
|
|
|
// The function fn is called in the same Goroutine that List() is called
|
|
|
|
// from.
|
2018-01-20 13:43:07 +01:00
|
|
|
List(ctx context.Context, t FileType, fn func(FileInfo) error) error
|
2017-06-15 13:40:27 +02:00
|
|
|
|
|
|
|
// IsNotExist returns true if the error was caused by a non-existing file
|
|
|
|
// in the backend.
|
|
|
|
IsNotExist(err error) bool
|
2017-10-14 13:38:17 +02:00
|
|
|
|
|
|
|
// Delete removes all data in the backend.
|
|
|
|
Delete(ctx context.Context) error
|
2016-08-31 19:10:10 +02:00
|
|
|
}
|
|
|
|
|
2018-01-20 13:43:07 +01:00
|
|
|
// FileInfo is contains information about a file in the backend.
|
|
|
|
type FileInfo struct {
|
|
|
|
Size int64
|
|
|
|
Name string
|
|
|
|
}
|