Documentation ¶
Overview ¶
Package storage provides implementation contracts and notions used across storage-aware components in hop.
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Descriptor ¶
Descriptor holds information required for Pull syncing. This struct is provided by subscribing to pull index.
func (*Descriptor) String ¶
func (d *Descriptor) String() string
type ModeGet ¶
type ModeGet int
ModeGet enumerates different Getter modes.
const ( // ModeGetRequest: when accessed for retrieval ModeGetRequest ModeGet = iota // ModeGetSync: when accessed for syncing or proof of custody request ModeGetSync // ModeGetLookup: when accessed to lookup a a chunk in feeds or other places ModeGetLookup // ModeGetRequestPin represents request for retrieval of pinned chunk. ModeGetRequestPin )
Getter modes.
type ModePut ¶
type ModePut int
ModePut enumerates different Putter modes.
const ( // ModePutRequest: when a chunk is received as a result of retrieve request and delivery ModePutRequest ModePut = iota // ModePutSync: when a chunk is received via syncing ModePutSync // ModePutUpload: when a chunk is created by local upload ModePutUpload // ModePutUploadPin: the same as ModePutUpload but also pin the chunk atomically with the put ModePutUploadPin // ModePutRequestPin: the same as ModePutRequest but also pin the chunk with the put ModePutRequestPin // ModePutRequestCache forces a retrieved chunk to be stored in the cache ModePutRequestCache )
Putter modes.
type ModeSet ¶
type ModeSet int
ModeSet enumerates different Setter modes.
const ( // ModeSetSync: when a push sync receipt is received for a chunk ModeSetSync ModeSet = iota // ModeSetRemove: when a chunk is removed ModeSetRemove // ModeSetPin: when a chunk is pinned during upload or separately ModeSetPin // ModeSetUnpin: when a chunk is unpinned using a command locally ModeSetUnpin )
Setter modes.
type PullSubscriber ¶
type PullSubscriber interface {
SubscribePull(ctx context.Context, bin uint8, since, until uint64) (c <-chan Descriptor, closed <-chan struct{}, stop func())
}
type StateIterFunc ¶
StateIterFunc is used when iterating through StateStorer key/value pairs
type StateStorer ¶
type StateStorer interface { Get(key string, i interface{}) (err error) Put(key string, i interface{}) (err error) Delete(key string) (err error) Iterate(prefix string, iterFunc StateIterFunc) (err error) // DB returns the underlying DB storage. DB() *leveldb.DB io.Closer }
StateStorer defines methods required to get, set, delete values for different keys and close the underlying resources.
type Storer ¶
type Storer interface { Getter Putter GetMulti(ctx context.Context, mode ModeGet, addrs ...swarm.Address) (ch []swarm.Chunk, err error) Hasser Setter LastPullSubscriptionBinID(bin uint8) (id uint64, err error) PullSubscriber SubscribePush(ctx context.Context, skipf func([]byte) bool) (c <-chan swarm.Chunk, repeat, stop func()) io.Closer }
Click to show internal directories.
Click to hide internal directories.