Home Download Docs Code Community
import "perkeep/pkg/blobserver/google/cloudstorage"
Overview
Index

Overview ▾

Package cloudstorage registers the "googlecloudstorage" blob storage type, storing blobs on Google Cloud Storage (not Google Drive). See https://cloud.google.com/products/cloud-storage

Index

type Storage
    func (s *Storage) EnumerateBlobs(ctx context.Context, dest chan<- blob.SizedRef, after string, limit int) error
    func (s *Storage) Fetch(ctx context.Context, br blob.Ref) (rc io.ReadCloser, size uint32, err error)
    func (s *Storage) MaxEnumerate() int
    func (s *Storage) ReceiveBlob(ctx context.Context, br blob.Ref, source io.Reader) (blob.SizedRef, error)
    func (s *Storage) RemoveBlobs(ctx context.Context, blobs []blob.Ref) error
    func (s *Storage) ResetStorageGeneration() error
    func (s *Storage) StatBlobs(ctx context.Context, blobs []blob.Ref, fn func(blob.SizedRef) error) error
    func (s *Storage) StorageGeneration() (time.Time, string, error)
    func (s *Storage) SubFetch(ctx context.Context, br blob.Ref, offset, length int64) (rc io.ReadCloser, err error)

Package files

storage.go

type Storage

type Storage struct {
    // contains filtered or unexported fields
}

func (*Storage) EnumerateBlobs

func (s *Storage) EnumerateBlobs(ctx context.Context, dest chan<- blob.SizedRef, after string, limit int) error

func (*Storage) Fetch

func (s *Storage) Fetch(ctx context.Context, br blob.Ref) (rc io.ReadCloser, size uint32, err error)

func (*Storage) MaxEnumerate

func (s *Storage) MaxEnumerate() int

func (*Storage) ReceiveBlob

func (s *Storage) ReceiveBlob(ctx context.Context, br blob.Ref, source io.Reader) (blob.SizedRef, error)

func (*Storage) RemoveBlobs

func (s *Storage) RemoveBlobs(ctx context.Context, blobs []blob.Ref) error

func (*Storage) ResetStorageGeneration

func (s *Storage) ResetStorageGeneration() error

func (*Storage) StatBlobs

func (s *Storage) StatBlobs(ctx context.Context, blobs []blob.Ref, fn func(blob.SizedRef) error) error

func (*Storage) StorageGeneration

func (s *Storage) StorageGeneration() (time.Time, string, error)

func (*Storage) SubFetch

func (s *Storage) SubFetch(ctx context.Context, br blob.Ref, offset, length int64) (rc io.ReadCloser, err error)
Website layout inspired by memcached.
Content by the authors.