Documentation ¶
Index ¶
- Constants
- func NewTestBucket(t testing.TB) (objstore.Bucket, func(), error)
- func NewTestBucketFromConfig(t testing.TB, c Config, reuseBucket bool) (objstore.Bucket, func(), error)
- type Bucket
- func (b *Bucket) Attributes(ctx context.Context, name string) (objstore.ObjectAttributes, error)
- func (b *Bucket) Close() error
- func (b *Bucket) Delete(ctx context.Context, name string) error
- func (b *Bucket) Exists(ctx context.Context, name string) (bool, error)
- func (b *Bucket) Get(ctx context.Context, name string) (io.ReadCloser, error)
- func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error)
- func (b *Bucket) IsAccessDeniedErr(err error) bool
- func (b *Bucket) IsObjNotFoundErr(err error) bool
- func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error, ...) error
- func (b *Bucket) IterWithAttributes(ctx context.Context, dir string, ...) error
- func (b *Bucket) Name() string
- func (b *Bucket) Provider() objstore.ObjProvider
- func (b *Bucket) SupportedIterOptions() []objstore.IterOptionType
- func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) error
- type Config
Constants ¶
View Source
const PartSize = 1024 * 1024 * 128
PartSize is a part size for multi part upload.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Bucket ¶
type Bucket struct {
// contains filtered or unexported fields
}
Bucket implements the store.Bucket interface.
func NewBucket ¶
func NewBucket(logger log.Logger, conf []byte, component string, wrapRoundtripper func(http.RoundTripper) http.RoundTripper) (*Bucket, error)
NewBucket returns a new Bucket using the provided oss config values.
func NewBucketWithConfig ¶
func NewBucketWithConfig(logger log.Logger, config Config, component string, wrapRoundtripper func(http.RoundTripper) http.RoundTripper) (*Bucket, error)
NewBucketWithConfig returns a new Bucket using the provided oss config struct.
func (*Bucket) Attributes ¶
Attributes returns information about the specified object.
func (*Bucket) IsAccessDeniedErr ¶
IsAccessDeniedErr returns true if access to object is denied.
func (*Bucket) IsObjNotFoundErr ¶
IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations.
func (*Bucket) Iter ¶
func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error, options ...objstore.IterOption) error
Iter calls f for each entry in the given directory. The argument to f is the full object name including the prefix of the inspected directory.
func (*Bucket) IterWithAttributes ¶
func (b *Bucket) IterWithAttributes(ctx context.Context, dir string, f func(attrs objstore.IterObjectAttributes) error, options ...objstore.IterOption) error
func (*Bucket) Provider ¶
func (b *Bucket) Provider() objstore.ObjProvider
func (*Bucket) SupportedIterOptions ¶
func (b *Bucket) SupportedIterOptions() []objstore.IterOptionType
Click to show internal directories.
Click to hide internal directories.