Documentation ¶
Index ¶
- func Get(storage *StorageEngine, addr *objectSDK.Address) (*object.Object, error)
- func GetRange(storage *StorageEngine, addr *objectSDK.Address, rng *objectSDK.Range) ([]byte, error)
- func Head(storage *StorageEngine, addr *objectSDK.Address) (*object.Object, error)
- func HeadRaw(storage *StorageEngine, addr *objectSDK.Address, raw bool) (*object.Object, error)
- func List(storage *StorageEngine, limit uint64) ([]*object.Address, error)
- func Put(storage *StorageEngine, obj *object.Object) error
- func Select(storage *StorageEngine, cid *container.ID, fs object.SearchFilters) ([]*object.Address, error)
- type DeletePrm
- type DeleteRes
- type ExistsPrm
- type ExistsRes
- type GetPrm
- type GetRes
- type HeadPrm
- type HeadRes
- type Info
- type InhumePrm
- type InhumeRes
- type Option
- type PutPrm
- type PutRes
- type RngPrm
- type RngRes
- type SelectPrm
- type SelectRes
- type StorageEngine
- func (e *StorageEngine) AddShard(opts ...shard.Option) (*shard.ID, error)
- func (e *StorageEngine) Close() error
- func (e *StorageEngine) Delete(prm *DeletePrm) (*DeleteRes, error)
- func (e *StorageEngine) DumpInfo() (i Info)
- func (e *StorageEngine) Exists(prm *ExistsPrm) (*ExistsRes, error)
- func (e *StorageEngine) Get(prm *GetPrm) (*GetRes, error)
- func (e *StorageEngine) GetRange(prm *RngPrm) (*RngRes, error)
- func (e *StorageEngine) Head(prm *HeadPrm) (*HeadRes, error)
- func (e *StorageEngine) Inhume(prm *InhumePrm) (*InhumeRes, error)
- func (e *StorageEngine) Init() error
- func (e *StorageEngine) List(limit uint64) (*SelectRes, error)
- func (e *StorageEngine) Open() error
- func (e *StorageEngine) Put(prm *PutPrm) (*PutRes, error)
- func (e *StorageEngine) Select(prm *SelectPrm) (*SelectRes, error)
- func (e *StorageEngine) SetShardMode(id *shard.ID, m shard.Mode) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetRange ¶
func GetRange(storage *StorageEngine, addr *objectSDK.Address, rng *objectSDK.Range) ([]byte, error)
GetRange reads object payload range from local storage by provided address.
func List ¶
func List(storage *StorageEngine, limit uint64) ([]*object.Address, error)
List returns `limit` available physically storage object addresses in engine. If limit is zero, then returns all available object addresses.
func Put ¶
func Put(storage *StorageEngine, obj *object.Object) error
Put writes provided object to local storage.
func Select ¶
func Select(storage *StorageEngine, cid *container.ID, fs object.SearchFilters) ([]*object.Address, error)
Select selects objects from local storage using provided filters.
Types ¶
type DeletePrm ¶
type DeletePrm struct {
// contains filtered or unexported fields
}
DeletePrm groups the parameters of Delete operation.
type ExistsPrm ¶
type ExistsPrm struct {
// contains filtered or unexported fields
}
ExistsPrm groups the parameters of Exists operation.
type ExistsRes ¶
type ExistsRes struct {
// contains filtered or unexported fields
}
ExistsRes groups resulting values of Exists operation.
type GetPrm ¶
type GetPrm struct {
// contains filtered or unexported fields
}
GetPrm groups the parameters of Get operation.
type GetRes ¶
type GetRes struct {
// contains filtered or unexported fields
}
GetRes groups resulting values of Get operation.
type HeadPrm ¶
type HeadPrm struct {
// contains filtered or unexported fields
}
HeadPrm groups the parameters of Head operation.
func (*HeadPrm) WithAddress ¶
WithAddress is a Head option to set the address of the requested object.
Option is required.
type HeadRes ¶
type HeadRes struct {
// contains filtered or unexported fields
}
HeadRes groups resulting values of Head operation.
type InhumePrm ¶
type InhumePrm struct {
// contains filtered or unexported fields
}
InhumePrm encapsulates parameters for inhume operation.
type Option ¶
type Option func(*cfg)
Option represents StorageEngine's constructor option.
func WithLogger ¶
WithLogger returns option to set StorageEngine's logger.
type PutPrm ¶
type PutPrm struct {
// contains filtered or unexported fields
}
PutPrm groups the parameters of Put operation.
type RngPrm ¶
type RngPrm struct {
// contains filtered or unexported fields
}
RngPrm groups the parameters of GetRange operation.
func (*RngPrm) WithAddress ¶
WithAddress is a GetRng option to set the address of the requested object.
Option is required.
type RngRes ¶
type RngRes struct {
// contains filtered or unexported fields
}
GetRes groups resulting values of GetRange operation.
type SelectPrm ¶
type SelectPrm struct {
// contains filtered or unexported fields
}
SelectPrm groups the parameters of Select operation.
func (*SelectPrm) WithContainerID ¶
WithContainerID is a Select option to set the container id to search in.
func (*SelectPrm) WithFilters ¶
func (p *SelectPrm) WithFilters(fs object.SearchFilters) *SelectPrm
WithFilters is a Select option to set the object filters.
type SelectRes ¶
type SelectRes struct {
// contains filtered or unexported fields
}
SelectRes groups resulting values of Select operation.
func (*SelectRes) AddressList ¶
AddressList returns list of addresses of the selected objects.
type StorageEngine ¶
type StorageEngine struct {
// contains filtered or unexported fields
}
StorageEngine represents NeoFS local storage engine.
func New ¶
func New(opts ...Option) *StorageEngine
New creates, initializes and returns new StorageEngine instance.
func (*StorageEngine) AddShard ¶
AddShard adds a new shard to the storage engine.
Returns any error encountered that did not allow adding a shard. Otherwise returns the ID of the added shard.
func (*StorageEngine) Close ¶
func (e *StorageEngine) Close() error
Close releases all StorageEngine's components.
func (*StorageEngine) Delete ¶
func (e *StorageEngine) Delete(prm *DeletePrm) (*DeleteRes, error)
Delete removes objects from the shards.
func (*StorageEngine) DumpInfo ¶
func (e *StorageEngine) DumpInfo() (i Info)
DumpInfo returns information about the StorageEngine.
func (*StorageEngine) Exists ¶
func (e *StorageEngine) Exists(prm *ExistsPrm) (*ExistsRes, error)
Exists checks if object is presented in storage engine
Returns any error encountered that does not allow to unambiguously determine the presence of an object.
func (*StorageEngine) Get ¶
func (e *StorageEngine) Get(prm *GetPrm) (*GetRes, error)
Get reads an object from local storage.
Returns any error encountered that did not allow to completely read the object part.
Returns ErrNotFound if requested object is missing in local storage.
func (*StorageEngine) GetRange ¶
func (e *StorageEngine) GetRange(prm *RngPrm) (*RngRes, error)
GetRange reads part of an object from local storage.
Returns any error encountered that did not allow to completely read the object part.
Returns ErrNotFound if requested object is missing in local storage. Returns ErrAlreadyRemoved if requested object is inhumed. Returns ErrRangeOutOfBounds if requested object range is out of bounds.
func (*StorageEngine) Head ¶
func (e *StorageEngine) Head(prm *HeadPrm) (*HeadRes, error)
Head reads object header from local storage.
Returns any error encountered that did not allow to completely read the object header.
Returns object.ErrNotFound if requested object is missing in local storage. Returns object.ErrAlreadyRemoved if requested object was inhumed.
func (*StorageEngine) Inhume ¶
func (e *StorageEngine) Inhume(prm *InhumePrm) (*InhumeRes, error)
Inhume calls metabase. Inhume method to mark object as removed. It won't be removed physically from shard until `Delete` operation.
func (*StorageEngine) Init ¶
func (e *StorageEngine) Init() error
Init initializes all StorageEngine's components.
func (*StorageEngine) List ¶
func (e *StorageEngine) List(limit uint64) (*SelectRes, error)
List returns `limit` available physically storage object addresses in engine. If limit is zero, then returns all available object addresses.
func (*StorageEngine) Open ¶
func (e *StorageEngine) Open() error
Open opens all StorageEngine's components.
func (*StorageEngine) Put ¶
func (e *StorageEngine) Put(prm *PutPrm) (*PutRes, error)
Put saves the object to local storage.
Returns any error encountered that did not allow to completely save the object.
func (*StorageEngine) Select ¶
func (e *StorageEngine) Select(prm *SelectPrm) (*SelectRes, error)
Select selects the objects from local storage that match select parameters.
Returns any error encountered that did not allow to completely select the objects.
func (*StorageEngine) SetShardMode ¶
SetShardMode sets mode of the shard with provided identifier.
Returns an error if shard mode was not set, or shard was not found in storage engine.