-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See full changelog here: https://github.com/tendermint/iavl/blob/develop/CHANGELOG.md#0110-september-7-2018 * Update to CircleCI 2.0 (#108) * Use 8 bytes to store int64 components of database keys (#107) * Introduce KeyFormat that uses a full 8 bytes for int64 values and avoids string manipulatio/scanning * Add node key and orphan key benchmark * Fix various issue from PR: punctuation, add overflow test, and improve scan function * Remove architecture dependent getter functions (#96) * Remove architecture dependent getter functions * update changelog * Prep Release 0.11.0 (#111) * Bump version and update change-log
- Loading branch information
Showing
16 changed files
with
365 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
jobs: | ||
test: | ||
docker: | ||
- image: circleci/golang:1.10.3 | ||
working_directory: /go/src/github.com/tendermint/iavl | ||
steps: | ||
- checkout | ||
- run: dep ensure -v | ||
- run: make test | ||
|
||
workflows: | ||
version: 2 | ||
test: | ||
jobs: | ||
- test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
package iavl | ||
|
||
import ( | ||
"encoding/binary" | ||
"fmt" | ||
) | ||
|
||
// Provides a fixed-width lexicographically sortable []byte key format | ||
type KeyFormat struct { | ||
prefix byte | ||
layout []int | ||
length int | ||
} | ||
|
||
// Create a []byte key format based on a single byte prefix and fixed width key segments each of whose length is | ||
// specified by by the corresponding element of layout. | ||
// | ||
// For example, to store keys that could index some objects by a version number and their SHA256 hash using the form: | ||
// 'c<version uint64><hash [32]byte>' then you would define the KeyFormat with: | ||
// | ||
// var keyFormat = NewKeyFormat('c', 8, 32) | ||
// | ||
// Then you can create a key with: | ||
// | ||
// func ObjectKey(version uint64, objectBytes []byte) []byte { | ||
// hasher := sha256.New() | ||
// hasher.Sum(nil) | ||
// return keyFormat.Key(version, hasher.Sum(nil)) | ||
// } | ||
func NewKeyFormat(prefix byte, layout ...int) *KeyFormat { | ||
// For prefix byte | ||
length := 1 | ||
for _, l := range layout { | ||
length += int(l) | ||
} | ||
return &KeyFormat{ | ||
prefix: prefix, | ||
layout: layout, | ||
length: length, | ||
} | ||
} | ||
|
||
// Format the byte segments into the key format - will panic if the segment lengths do not match the layout. | ||
func (kf *KeyFormat) KeyBytes(segments ...[]byte) []byte { | ||
key := make([]byte, kf.length) | ||
key[0] = kf.prefix | ||
n := 1 | ||
for i, s := range segments { | ||
l := kf.layout[i] | ||
if len(s) > l { | ||
panic(fmt.Errorf("length of segment %X provided to KeyFormat.KeyBytes() is longer than the %d bytes "+ | ||
"required by layout for segment %d", s, l, i)) | ||
} | ||
n += l | ||
// Big endian so pad on left if not given the full width for this segment | ||
copy(key[n-len(s):n], s) | ||
} | ||
return key[:n] | ||
} | ||
|
||
// Format the args passed into the key format - will panic if the arguments passed do not match the length | ||
// of the segment to which they correspond. When called with no arguments returns the raw prefix (useful as a start | ||
// element of the entire keys space when sorted lexicographically). | ||
func (kf *KeyFormat) Key(args ...interface{}) []byte { | ||
if len(args) > len(kf.layout) { | ||
panic(fmt.Errorf("KeyFormat.Key() is provided with %d args but format only has %d segments", | ||
len(args), len(kf.layout))) | ||
} | ||
segments := make([][]byte, len(args)) | ||
for i, a := range args { | ||
segments[i] = format(a) | ||
} | ||
return kf.KeyBytes(segments...) | ||
} | ||
|
||
// Reads out the bytes associated with each segment of the key format from key. | ||
func (kf *KeyFormat) ScanBytes(key []byte) [][]byte { | ||
segments := make([][]byte, len(kf.layout)) | ||
n := 1 | ||
for i, l := range kf.layout { | ||
n += l | ||
if n > len(key) { | ||
return segments[:i] | ||
} | ||
segments[i] = key[n-l : n] | ||
} | ||
return segments | ||
} | ||
|
||
// Extracts the segments into the values pointed to by each of args. Each arg must be a pointer to int64, uint64, or | ||
// []byte, and the width of the args must match layout. | ||
func (kf *KeyFormat) Scan(key []byte, args ...interface{}) { | ||
segments := kf.ScanBytes(key) | ||
if len(args) > len(segments) { | ||
panic(fmt.Errorf("KeyFormat.Scan() is provided with %d args but format only has %d segments in key %X", | ||
len(args), len(segments), key)) | ||
} | ||
for i, a := range args { | ||
scan(a, segments[i]) | ||
} | ||
} | ||
|
||
// Return the prefix as a string. | ||
func (kf *KeyFormat) Prefix() string { | ||
return string([]byte{kf.prefix}) | ||
} | ||
|
||
func scan(a interface{}, value []byte) { | ||
switch v := a.(type) { | ||
case *int64: | ||
// Negative values will be mapped correctly when read in as uint64 and then type converted | ||
*v = int64(binary.BigEndian.Uint64(value)) | ||
case *uint64: | ||
*v = binary.BigEndian.Uint64(value) | ||
case *[]byte: | ||
*v = value | ||
default: | ||
panic(fmt.Errorf("KeyFormat scan() does not support scanning value of type %T: %v", a, a)) | ||
} | ||
} | ||
|
||
func format(a interface{}) []byte { | ||
switch v := a.(type) { | ||
case uint64: | ||
return formatUint64(v) | ||
case int64: | ||
return formatUint64(uint64(v)) | ||
// Provide formatting from int,uint as a convenience to avoid casting arguments | ||
case uint: | ||
return formatUint64(uint64(v)) | ||
case int: | ||
return formatUint64(uint64(v)) | ||
case []byte: | ||
return v | ||
default: | ||
panic(fmt.Errorf("KeyFormat format() does not support formatting value of type %T: %v", a, a)) | ||
} | ||
} | ||
|
||
func formatUint64(v uint64) []byte { | ||
bs := make([]byte, 8) | ||
binary.BigEndian.PutUint64(bs, v) | ||
return bs | ||
} |
Oops, something went wrong.