Documentation ¶
Overview ¶
iface package containing common structures and interfaces of orbitdb
Index ¶
- type AccessControllerConstructor
- type BaseOrbitDB
- type CreateDBOptions
- type DetermineAddressOptions
- type EventLogStore
- type IndexConstructor
- type KeyValueStore
- type NewStoreOptions
- type OnWritePrototype
- type OrbitDB
- type OrbitDBKVStore
- type OrbitDBKVStoreProvider
- type OrbitDBLogStore
- type OrbitDBLogStoreProvider
- type Store
- type StoreConstructor
- type StoreIndex
- type StreamOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessControllerConstructor ¶ added in v1.0.0
type AccessControllerConstructor func(context.Context, BaseOrbitDB, accesscontroller.ManifestParams) (accesscontroller.Interface, error)
AccessControllerConstructor Required prototype for custom controllers constructors
type BaseOrbitDB ¶ added in v1.0.0
type BaseOrbitDB interface { // IPFS Returns the instance of the IPFS API used by the current DB IPFS() coreapi.CoreAPI // Identity Returns the identity used by the current DB Identity() *identityprovider.Identity // Open Opens an existing data store Open(ctx context.Context, dbAddress string, options *CreateDBOptions) (Store, error) // Create Creates a new store Create(ctx context.Context, name string, storeType string, options *CreateDBOptions) (Store, error) // Close Closes the current DB and all the related stores Close() error // DetermineAddress Returns the store address for the given parameters DetermineAddress(ctx context.Context, name string, storeType string, options *DetermineAddressOptions) (address.Address, error) // RegisterStoreType Registers a new store type RegisterStoreType(storeType string, constructor StoreConstructor) // RegisterStoreType Removes a store type UnregisterStoreType(storeType string) // RegisterAccessControllerType Registers a new access controller type RegisterAccessControllerType(AccessControllerConstructor) error // UnregisterAccessControllerType Unregisters an access controller type UnregisterAccessControllerType(string) // GetAccessControllerType Retrieves an access controller type constructor if it exists GetAccessControllerType(string) (AccessControllerConstructor, bool) }
BaseOrbitDB Provides the main OrbitDB interface used to open and create stores
type CreateDBOptions ¶
type CreateDBOptions struct { Directory *string Overwrite *bool LocalOnly *bool Create *bool StoreType *string AccessControllerAddress string AccessController accesscontroller.ManifestParams Replicate *bool Keystore keystore.Interface Cache datastore.Datastore Identity *identityprovider.Identity }
CreateDBOptions lists the arguments to create a store
type DetermineAddressOptions ¶
type DetermineAddressOptions struct { OnlyHash *bool Replicate *bool AccessController accesscontroller.ManifestParams }
DetermineAddressOptions Lists the arguments used to determine a store address
type EventLogStore ¶
type EventLogStore interface { Store // Add Appends data to the log Add(ctx context.Context, data []byte) (operation.Operation, error) // Get Fetches an entry of the log Get(ctx context.Context, cid cid.Cid) (operation.Operation, error) // Stream Populates a chan of entries from this store Stream(ctx context.Context, resultChan chan operation.Operation, options *StreamOptions) error // List Fetches a list of operation that occurred on this store List(ctx context.Context, options *StreamOptions) ([]operation.Operation, error) }
EventLogStore A type of store that provides an append only log
type IndexConstructor ¶
type IndexConstructor func(publicKey []byte) StoreIndex
IndexConstructor Defines the expected constructor for a custom index
type KeyValueStore ¶
type KeyValueStore interface { Store // All Returns a consolidated key value map from the entries of this store All() map[string][]byte // Put Sets the value for a key of the map Put(ctx context.Context, key string, value []byte) (operation.Operation, error) // Delete Clears the value for a key of the map Delete(ctx context.Context, key string) (operation.Operation, error) // Get Retrieves the value for a key of the map Get(ctx context.Context, key string) ([]byte, error) }
EventLogStore A type of store that provides a key value store
type NewStoreOptions ¶
type NewStoreOptions struct { Index IndexConstructor AccessController accesscontroller.Interface Cache datastore.Datastore CacheDestroy func() error ReplicationConcurrency uint ReferenceCount *int Replicate *bool MaxHistory *int Directory string }
NewStoreOptions Lists the options to create a new store
type OnWritePrototype ¶
type OnWritePrototype func(ctx context.Context, addr cid.Cid, entry ipfslog.Entry, heads []cid.Cid) error
OnWritePrototype Defines the callback function prototype which is triggered on a write
type OrbitDB ¶
type OrbitDB interface { BaseOrbitDB OrbitDBKVStoreProvider OrbitDBLogStoreProvider }
OrbitDB Provides an OrbitDB interface with the default access controllers and store types
type OrbitDBKVStore ¶ added in v1.0.0
type OrbitDBKVStore interface { BaseOrbitDB OrbitDBKVStoreProvider }
OrbitDBKVStore An OrbitDB instance providing a KeyValue store
type OrbitDBKVStoreProvider ¶ added in v1.0.0
type OrbitDBKVStoreProvider interface { // KeyValue Creates or opens an KeyValueStore KeyValue(ctx context.Context, address string, options *CreateDBOptions) (KeyValueStore, error) }
OrbitDBLogStoreProvider Exposes a method providing a key value store
type OrbitDBLogStore ¶ added in v1.0.0
type OrbitDBLogStore interface { BaseOrbitDB OrbitDBLogStoreProvider }
OrbitDBLogStore An OrbitDB instance providing an Event Log store
type OrbitDBLogStoreProvider ¶ added in v1.0.0
type OrbitDBLogStoreProvider interface { // Log Creates or opens an EventLogStore Log(ctx context.Context, address string, options *CreateDBOptions) (EventLogStore, error) }
OrbitDBLogStoreProvider Exposes a method providing an event log store
type Store ¶
type Store interface { events.EmitterInterface // Close Closes the store Close() error // Address Returns the address for the current store Address() address.Address // Index Returns the StoreIndex struct for the current store instance Index() StoreIndex // Type Returns the current store type as a string Type() string // ReplicationStatus Returns the current ReplicationInfo status ReplicationStatus() replicator.ReplicationInfo // Drop Removes all the local store content Drop() error // Load Fetches entries on the network Load(ctx context.Context, amount int) error // Sync Merges stores with the given heads Sync(ctx context.Context, heads []ipfslog.Entry) error // LoadMoreFrom Loads more entries from the given CIDs LoadMoreFrom(ctx context.Context, amount uint, entries []cid.Cid) // SaveSnapshot Save the current state of the store and returns a CID SaveSnapshot(ctx context.Context) (cid.Cid, error) // LoadFromSnapshot Loads store content from a snapshot LoadFromSnapshot(ctx context.Context) error // OpLog Returns the underlying IPFS Log instance for the store OpLog() ipfslog.Log // IPFS Returns the IPFS instance for the store IPFS() coreapi.CoreAPI // DBName Returns the store name as a string DBName() string // Identity Returns the identity used for the current store Identity() *identityprovider.Identity // AccessController Returns the access controller for this store AccessController() accesscontroller.Interface // AddOperation Adds an operation to this store AddOperation(ctx context.Context, op operation.Operation, onProgressCallback chan<- ipfslog.Entry) (ipfslog.Entry, error) }
Store Defines the operations common to all stores types
type StoreConstructor ¶
type StoreConstructor func(context.Context, coreapi.CoreAPI, *identityprovider.Identity, address.Address, *NewStoreOptions) (Store, error)
StoreConstructor Defines the expected constructor for a custom store
type StoreIndex ¶
type StoreIndex interface { // Get Returns the state of the datastore, ie. most up-to-date data Get(key string) interface{} // UpdateIndex Applies operations to the Index and updates the state UpdateIndex(log ipfslog.Log, entries []ipfslog.Entry) error }
StoreIndex Index contains the state of a datastore, ie. what data we currently have.
Index receives a call from a Store when the operations log for the Store was updated, ie. new operations were added. In updateIndex, the Index implements its CRDT logic: add, remove or update items in the data structure. Each new operation received from the operations log is applied in order onto the current state, ie. each new operation changes the data and the state changes.
Implementing each CRDT as an Index, we can implement both operation-based and state-based CRDTs with the same higher level abstractions. To read the current state of the database, Index provides a single public function: `get()`. It is up to the Store to decide what kind of query capabilities it provides to the consumer.
type StreamOptions ¶
type StreamOptions struct { GT *cid.Cid GTE *cid.Cid LT *cid.Cid LTE *cid.Cid Amount *int }
StreamOptions Defines the parameters that can be given to the Stream function of an EventLogStore