-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR #4382: Support height queries for queriers
- Loading branch information
1 parent
61d0f88
commit 8b1d75c
Showing
11 changed files
with
309 additions
and
31 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,2 @@ | ||
#4318 Support height queries. Queries against nodes that have the queried | ||
height pruned will return an error. |
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 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 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,84 @@ | ||
package iavl | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/tendermint/iavl" | ||
) | ||
|
||
var ( | ||
_ Tree = (*immutableTree)(nil) | ||
_ Tree = (*iavl.MutableTree)(nil) | ||
) | ||
|
||
type ( | ||
// Tree defines an interface that both mutable and immutable IAVL trees | ||
// must implement. For mutable IAVL trees, the interface is directly | ||
// implemented by an iavl.MutableTree. For an immutable IAVL tree, a wrapper | ||
// must be made. | ||
Tree interface { | ||
Has(key []byte) bool | ||
Get(key []byte) (index int64, value []byte) | ||
Set(key, value []byte) bool | ||
Remove(key []byte) ([]byte, bool) | ||
SaveVersion() ([]byte, int64, error) | ||
DeleteVersion(version int64) error | ||
Version() int64 | ||
Hash() []byte | ||
VersionExists(version int64) bool | ||
GetVersioned(key []byte, version int64) (int64, []byte) | ||
GetVersionedWithProof(key []byte, version int64) ([]byte, *iavl.RangeProof, error) | ||
GetImmutable(version int64) (*iavl.ImmutableTree, error) | ||
} | ||
|
||
// immutableTree is a simple wrapper around a reference to an iavl.ImmutableTree | ||
// that implements the Tree interface. It should only be used for querying | ||
// and iteration, specifically at previous heights. | ||
immutableTree struct { | ||
*iavl.ImmutableTree | ||
} | ||
) | ||
|
||
func (it *immutableTree) Set(_, _ []byte) bool { | ||
panic("cannot call 'Set' on an immutable IAVL tree") | ||
} | ||
|
||
func (it *immutableTree) Remove(_ []byte) ([]byte, bool) { | ||
panic("cannot call 'Remove' on an immutable IAVL tree") | ||
} | ||
|
||
func (it *immutableTree) SaveVersion() ([]byte, int64, error) { | ||
panic("cannot call 'SaveVersion' on an immutable IAVL tree") | ||
} | ||
|
||
func (it *immutableTree) DeleteVersion(_ int64) error { | ||
panic("cannot call 'DeleteVersion' on an immutable IAVL tree") | ||
} | ||
|
||
func (it *immutableTree) VersionExists(version int64) bool { | ||
return it.Version() == version | ||
} | ||
|
||
func (it *immutableTree) GetVersioned(key []byte, version int64) (int64, []byte) { | ||
if it.Version() != version { | ||
return -1, nil | ||
} | ||
|
||
return it.Get(key) | ||
} | ||
|
||
func (it *immutableTree) GetVersionedWithProof(key []byte, version int64) ([]byte, *iavl.RangeProof, error) { | ||
if it.Version() != version { | ||
return nil, nil, fmt.Errorf("version mismatch on immutable IAVL tree; got: %d, expected: %d", version, it.Version()) | ||
} | ||
|
||
return it.GetWithProof(key) | ||
} | ||
|
||
func (it *immutableTree) GetImmutable(version int64) (*iavl.ImmutableTree, error) { | ||
if it.Version() != version { | ||
return nil, fmt.Errorf("version mismatch on immutable IAVL tree; got: %d, expected: %d", version, it.Version()) | ||
} | ||
|
||
return it.ImmutableTree, nil | ||
} |
Oops, something went wrong.