Documentation
¶
Index ¶
- Variables
- func MapEvents(eventMappings EventMappings) router.MiddlewareFunc
- func MapStates(stateMappings StateMappings) router.MiddlewareFunc
- type EventImpl
- type EventMapper
- type EventMappers
- type EventMapping
- type EventMappingOpt
- type EventMappings
- type InstanceKeyer
- type MappedState
- type Namer
- type ProtoEventMapper
- type ProtoStateMapper
- type StateImpl
- func (s *StateImpl) Delete(entry interface{}) (err error)
- func (s *StateImpl) Exists(entry interface{}) (exists bool, err error)
- func (s *StateImpl) Get(entry interface{}, target ...interface{}) (result interface{}, err error)
- func (s *StateImpl) GetHistory(key interface{}, target interface{}) (result state.HistoryEntryList, err error)
- func (s *StateImpl) GetInt(key interface{}, defaultValue int) (result int, err error)
- func (s *StateImpl) Insert(entry interface{}, value ...interface{}) (err error)
- func (s *StateImpl) List(namespace interface{}, target ...interface{}) (result interface{}, err error)
- func (s *StateImpl) ListWith(schema interface{}, key state.Key) (result interface{}, err error)
- func (s *StateImpl) Logger() *shim.ChaincodeLogger
- func (s *StateImpl) MappingNamespace(schema interface{}) (state.Key, error)
- func (s *StateImpl) Put(entry interface{}, value ...interface{}) (err error)
- func (s *StateImpl) UseKeyTransformer(kt state.KeyTransformer) state.State
- func (s *StateImpl) UseStateGetTransformer(fb state.FromBytesTransformer) state.State
- func (s *StateImpl) UseStatePutTransformer(tb state.ToBytesTransformer) state.State
- type StateMapper
- type StateMappers
- type StateMapping
- type StateMappingOpt
- func List(list proto.Message) StateMappingOpt
- func PKeyAttr(attrs ...string) StateMappingOpt
- func PKeyComplexId(pkeySchema interface{}) StateMappingOpt
- func PKeyId() StateMappingOpt
- func PKeySchema(pkeySchema interface{}) StateMappingOpt
- func PKeyer(pkeyer InstanceKeyer) StateMappingOpt
- func StateNamespace(namespace state.Key) StateMappingOpt
- type StateMappingOptions
- type StateMappings
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrEntryTypeNotSupported entry type has no appropriate mapper type ErrEntryTypeNotSupported = errors.New(`entry type not supported for mapping`) // ErrEntryTypeNotDefined ErrStateMappingNotFound = errors.New(`state mapping not found`) // ErrEventMappingNotFound ErrEventMappingNotFound = errors.New(`event mapping not found`) )
View Source
var ( ErrFieldNotExists = errors.New(`field is not exists`) ErrPrimaryKeyerNotDefined = errors.New(`primary keyer is not defined`) )
Functions ¶
func MapEvents ¶
func MapEvents(eventMappings EventMappings) router.MiddlewareFunc
func MapStates ¶
func MapStates(stateMappings StateMappings) router.MiddlewareFunc
Types ¶
type EventImpl ¶
type EventImpl struct {
// contains filtered or unexported fields
}
func NewEvent ¶
func NewEvent(stub shim.ChaincodeStubInterface, mappings EventMappings) *EventImpl
func (*EventImpl) UseNameTransformer ¶
func (e *EventImpl) UseNameTransformer(nt state.StringTransformer) state.Event
func (*EventImpl) UseSetTransformer ¶
func (e *EventImpl) UseSetTransformer(tb state.ToBytesTransformer) state.Event
type EventMapper ¶
type EventMappers ¶
type EventMapping ¶
type EventMapping struct {
// contains filtered or unexported fields
}
func (EventMapping) Name ¶
func (em EventMapping) Name(instance interface{}) (string, error)
func (EventMapping) Schema ¶
func (em EventMapping) Schema() interface{}
type EventMappingOpt ¶
type EventMappingOpt func(*EventMapping)
type EventMappings ¶
type EventMappings map[string]*EventMapping
func (EventMappings) Add ¶
func (emm EventMappings) Add(schema interface{}, opts ...EventMappingOpt) EventMappings
func (EventMappings) Exists ¶
func (emm EventMappings) Exists(entry interface{}) bool
func (EventMappings) Get ¶
func (emm EventMappings) Get(entry interface{}) (EventMapper, error)
type InstanceKeyer ¶
type MappedState ¶
type ProtoEventMapper ¶
type ProtoEventMapper struct {
// contains filtered or unexported fields
}
func NewProtoEventMapper ¶
func NewProtoEventMapper(instance interface{}, eventMapper EventMapper) (*ProtoEventMapper, error)
func (*ProtoEventMapper) Name ¶
func (em *ProtoEventMapper) Name() (string, error)
func (*ProtoEventMapper) ToBytes ¶
func (em *ProtoEventMapper) ToBytes() ([]byte, error)
type ProtoStateMapper ¶
type ProtoStateMapper struct {
// contains filtered or unexported fields
}
func NewProtoStateMapper ¶
func NewProtoStateMapper(instance interface{}, stateMapper StateMapper) (*ProtoStateMapper, error)
func (*ProtoStateMapper) ToBytes ¶
func (pm *ProtoStateMapper) ToBytes() ([]byte, error)
type StateImpl ¶
type StateImpl struct {
// contains filtered or unexported fields
}
func (*StateImpl) GetHistory ¶
func (s *StateImpl) GetHistory(key interface{}, target interface{}) (result state.HistoryEntryList, err error)
func (*StateImpl) Logger ¶
func (s *StateImpl) Logger() *shim.ChaincodeLogger
func (*StateImpl) MappingNamespace ¶
func (*StateImpl) UseKeyTransformer ¶
func (s *StateImpl) UseKeyTransformer(kt state.KeyTransformer) state.State
func (*StateImpl) UseStateGetTransformer ¶
func (s *StateImpl) UseStateGetTransformer(fb state.FromBytesTransformer) state.State
func (*StateImpl) UseStatePutTransformer ¶
func (s *StateImpl) UseStatePutTransformer(tb state.ToBytesTransformer) state.State
type StateMapper ¶
type StateMappers ¶
type StateMappers interface {
Exists(schema interface{}) (exists bool)
Map(schema interface{}) (keyValue state.KeyValue, err error)
Get(schema interface{}) (stateMapper StateMapper, err error)
}
StateMappers interface for mappers collection
type StateMapping ¶
type StateMapping struct {
// contains filtered or unexported fields
}
func (*StateMapping) List ¶ added in v0.4.2
func (sm *StateMapping) List() interface{}
func (*StateMapping) Namespace ¶
func (sm *StateMapping) Namespace() state.Key
func (*StateMapping) PrimaryKey ¶
func (sm *StateMapping) PrimaryKey(entity interface{}) (state.Key, error)
func (*StateMapping) Schema ¶
func (sm *StateMapping) Schema() interface{}
type StateMappingOpt ¶
type StateMappingOpt func(*StateMapping, StateMappings)
func List ¶ added in v0.4.2
func List(list proto.Message) StateMappingOpt
func PKeyAttr ¶
func PKeyAttr(attrs ...string) StateMappingOpt
func PKeyComplexId ¶ added in v0.4.2
func PKeyComplexId(pkeySchema interface{}) StateMappingOpt
func PKeyId ¶
func PKeyId() StateMappingOpt
func PKeySchema ¶
func PKeySchema(pkeySchema interface{}) StateMappingOpt
PKeySchema registers all fields from pkeySchema as part of primary key also register keyer for pkeySchema with with namespace from current schema
func PKeyer ¶
func PKeyer(pkeyer InstanceKeyer) StateMappingOpt
func StateNamespace ¶
func StateNamespace(namespace state.Key) StateMappingOpt
StateNamespace sets namespace for mapping
type StateMappingOptions ¶
type StateMappingOptions struct {
// contains filtered or unexported fields
}
type StateMappings ¶
type StateMappings map[string]*StateMapping
func (StateMappings) Add ¶
func (smm StateMappings) Add(schema interface{}, opts ...StateMappingOpt) StateMappings
func (StateMappings) Exists ¶
func (smm StateMappings) Exists(entry interface{}) bool
func (StateMappings) Get ¶
func (smm StateMappings) Get(entry interface{}) (StateMapper, error)
Click to show internal directories.
Click to hide internal directories.