Documentation ¶
Overview ¶
Package gdrive provided support for local file system.
Code generated by go generate via cmd/definitions; DO NOT EDIT.
Index ¶
- Constants
- func NewStorager(pairs ...types.Pair) (types.Storager, error)
- func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
- func WithStorageFeatures(v StorageFeatures) Pair
- type DefaultStoragePairs
- type ObjectSystemMetadata
- type Storage
- func (s *Storage) Copy(src string, dst string, pairs ...Pair) (err error)
- func (s *Storage) CopyWithContext(ctx context.Context, src string, dst string, pairs ...Pair) (err error)
- func (s *Storage) Create(path string, pairs ...Pair) (o *Object)
- func (s *Storage) CreateDir(path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) CreateDirWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) Delete(path string, pairs ...Pair) (err error)
- func (s *Storage) DeleteWithContext(ctx context.Context, path string, pairs ...Pair) (err error)
- func (s *Storage) List(path string, pairs ...Pair) (oi *ObjectIterator, err error)
- func (s *Storage) ListWithContext(ctx context.Context, path string, pairs ...Pair) (oi *ObjectIterator, err error)
- func (s *Storage) Metadata(pairs ...Pair) (meta *StorageMeta)
- func (s *Storage) Read(path string, w io.Writer, pairs ...Pair) (n int64, err error)
- func (s *Storage) ReadWithContext(ctx context.Context, path string, w io.Writer, pairs ...Pair) (n int64, err error)
- func (s *Storage) Stat(path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) String() string
- func (s *Storage) Write(path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error)
- func (s *Storage) WriteWithContext(ctx context.Context, path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error)
- type StorageFeatures
- type StorageSystemMetadata
Constants ¶
const Type = "gdrive"
Type is the type for gdrive
Variables ¶
This section is empty.
Functions ¶
func NewStorager ¶
NewStorager will create Storager only.
func WithDefaultStoragePairs ¶
func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
WithDefaultStoragePairs will apply default_storage_pairs value to Options.
func WithStorageFeatures ¶
func WithStorageFeatures(v StorageFeatures) Pair
WithStorageFeatures will apply storage_features value to Options.
Types ¶
type DefaultStoragePairs ¶
type DefaultStoragePairs struct { Copy []Pair Create []Pair CreateDir []Pair Delete []Pair List []Pair Metadata []Pair Read []Pair Stat []Pair Write []Pair }
DefaultStoragePairs is default pairs for specific action
type ObjectSystemMetadata ¶
type ObjectSystemMetadata struct { }
ObjectSystemMetadata stores system metadata for object.
func GetObjectSystemMetadata ¶
func GetObjectSystemMetadata(o *Object) ObjectSystemMetadata
GetObjectSystemMetadata will get ObjectSystemMetadata from Object.
- This function should not be called by service implementer. - The returning ObjectServiceMetadata is read only and should not be modified.
type Storage ¶
type Storage struct { types.UnimplementedStorager types.UnimplementedDirer types.UnimplementedCopier // contains filtered or unexported fields }
Storage is the example client.
func (*Storage) CopyWithContext ¶
func (*Storage) CreateDirWithContext ¶
func (*Storage) DeleteWithContext ¶
func (*Storage) ListWithContext ¶
func (*Storage) ReadWithContext ¶
func (*Storage) StatWithContext ¶
type StorageFeatures ¶
type StorageFeatures struct { }
type StorageSystemMetadata ¶
type StorageSystemMetadata struct { }
StorageSystemMetadata stores system metadata for object.
func GetStorageSystemMetadata ¶
func GetStorageSystemMetadata(s *StorageMeta) StorageSystemMetadata
GetStorageSystemMetadata will get StorageSystemMetadata from Storage.
- This function should not be called by service implementer. - The returning StorageServiceMetadata is read only and should not be modified.