* feat(orm): add KeyCodec * WIP * code coverage * add DefaultValue test * fix range key check * revert DefaultValue * fix range check * feat(orm): add ormkv.Codec's * WIP * add UniqueKeyCodec * add IndexKeyCodec * fixes * add SeqCodec * add doc comments * test fields * refactor field names * Update orm/encoding/ormkv/index_key.go Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> * Update orm/encoding/ormkv/index_key.go Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> * Update orm/encoding/ormkv/index_key.go Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> * Update orm/encoding/ormkv/unique_key.go Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> * add tests for entry strings * address review comments * fix non-deterministic string rendering and tests * Update x/auth/middleware/priority_test.go Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> * Update x/auth/middleware/priority_test.go Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com>
29 lines
989 B
Go
29 lines
989 B
Go
package ormkv
|
|
|
|
import "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
// EntryCodec defines an interfaces for decoding and encoding entries in the
|
|
// kv-store backing an ORM instance. EntryCodec's enable full logical decoding
|
|
// of ORM data.
|
|
type EntryCodec interface {
|
|
|
|
// DecodeEntry decodes a kv-pair into an Entry.
|
|
DecodeEntry(k, v []byte) (Entry, error)
|
|
|
|
// EncodeEntry encodes an entry into a kv-pair.
|
|
EncodeEntry(entry Entry) (k, v []byte, err error)
|
|
}
|
|
|
|
// IndexCodec defines an interfaces for encoding and decoding index-keys in the
|
|
// kv-store.
|
|
type IndexCodec interface {
|
|
EntryCodec
|
|
|
|
// DecodeIndexKey decodes a kv-pair into index-fields and primary-key field
|
|
// values. These fields may or may not overlap depending on the index.
|
|
DecodeIndexKey(k, v []byte) (indexFields, primaryKey []protoreflect.Value, err error)
|
|
|
|
// EncodeKVFromMessage encodes a kv-pair for the index from a message.
|
|
EncodeKVFromMessage(message protoreflect.Message) (k, v []byte, err error)
|
|
}
|