Continue reducing code complexity:
* Adds a Min function to Int, and uses that in the slash function * Adds a getHeight helper function to iavlstore * Adds a splitPath function to baseapp * Changes cyclo param from 10 to 11
This commit is contained in:
parent
2b5ccdbf87
commit
0c5358c267
|
@ -324,14 +324,19 @@ func (app *BaseApp) FilterPeerByPubKey(info string) abci.ResponseQuery {
|
||||||
return abci.ResponseQuery{}
|
return abci.ResponseQuery{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements ABCI.
|
func splitPath(requestPath string) (path []string) {
|
||||||
// Delegates to CommitMultiStore if it implements Queryable
|
path = strings.Split(requestPath, "/")
|
||||||
func (app *BaseApp) Query(req abci.RequestQuery) (res abci.ResponseQuery) {
|
|
||||||
path := strings.Split(req.Path, "/")
|
|
||||||
// first element is empty string
|
// first element is empty string
|
||||||
if len(path) > 0 && path[0] == "" {
|
if len(path) > 0 && path[0] == "" {
|
||||||
path = path[1:]
|
path = path[1:]
|
||||||
}
|
}
|
||||||
|
return path
|
||||||
|
}
|
||||||
|
|
||||||
|
// Implements ABCI.
|
||||||
|
// Delegates to CommitMultiStore if it implements Queryable
|
||||||
|
func (app *BaseApp) Query(req abci.RequestQuery) (res abci.ResponseQuery) {
|
||||||
|
path := splitPath(req.Path)
|
||||||
// "/app" prefix for special application queries
|
// "/app" prefix for special application queries
|
||||||
if len(path) >= 2 && path[0] == "app" {
|
if len(path) >= 2 && path[0] == "app" {
|
||||||
var result sdk.Result
|
var result sdk.Result
|
||||||
|
|
|
@ -153,6 +153,20 @@ func (st *iavlStore) ReverseIterator(start, end []byte) Iterator {
|
||||||
return newIAVLIterator(st.tree.Tree(), start, end, false)
|
return newIAVLIterator(st.tree.Tree(), start, end, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle gatest the latest height, if height is 0
|
||||||
|
func getHeight(tree *iavl.VersionedTree, req abci.RequestQuery) int64 {
|
||||||
|
height := req.Height
|
||||||
|
if height == 0 {
|
||||||
|
latest := tree.Version64()
|
||||||
|
if tree.VersionExists(latest - 1) {
|
||||||
|
height = latest - 1
|
||||||
|
} else {
|
||||||
|
height = latest
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return height
|
||||||
|
}
|
||||||
|
|
||||||
// Query implements ABCI interface, allows queries
|
// Query implements ABCI interface, allows queries
|
||||||
//
|
//
|
||||||
// by default we will return from (latest height -1),
|
// by default we will return from (latest height -1),
|
||||||
|
@ -167,24 +181,17 @@ func (st *iavlStore) Query(req abci.RequestQuery) (res abci.ResponseQuery) {
|
||||||
}
|
}
|
||||||
|
|
||||||
tree := st.tree
|
tree := st.tree
|
||||||
height := req.Height
|
|
||||||
if height == 0 {
|
// store the height we chose in the response, with 0 being changed to the
|
||||||
latest := tree.Version64()
|
// latest height
|
||||||
if tree.VersionExists(latest - 1) {
|
res.Height = getHeight(tree, req)
|
||||||
height = latest - 1
|
|
||||||
} else {
|
|
||||||
height = latest
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// store the height we chose in the response
|
|
||||||
res.Height = height
|
|
||||||
|
|
||||||
switch req.Path {
|
switch req.Path {
|
||||||
case "/store", "/key": // Get by key
|
case "/store", "/key": // Get by key
|
||||||
key := req.Data // Data holds the key bytes
|
key := req.Data // Data holds the key bytes
|
||||||
res.Key = key
|
res.Key = key
|
||||||
if req.Prove {
|
if req.Prove {
|
||||||
value, proof, err := tree.GetVersionedWithProof(key, height)
|
value, proof, err := tree.GetVersionedWithProof(key, res.Height)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
res.Log = err.Error()
|
res.Log = err.Error()
|
||||||
break
|
break
|
||||||
|
@ -198,7 +205,7 @@ func (st *iavlStore) Query(req abci.RequestQuery) (res abci.ResponseQuery) {
|
||||||
}
|
}
|
||||||
res.Proof = p
|
res.Proof = p
|
||||||
} else {
|
} else {
|
||||||
_, res.Value = tree.GetVersioned(key, height)
|
_, res.Value = tree.GetVersioned(key, res.Height)
|
||||||
}
|
}
|
||||||
case "/subspace":
|
case "/subspace":
|
||||||
subspace := req.Data
|
subspace := req.Data
|
||||||
|
|
|
@ -5,5 +5,5 @@
|
||||||
"Enable": ["golint", "vet", "ineffassign", "unparam", "unconvert", "misspell", "gocyclo"],
|
"Enable": ["golint", "vet", "ineffassign", "unparam", "unconvert", "misspell", "gocyclo"],
|
||||||
"Deadline": "500s",
|
"Deadline": "500s",
|
||||||
"Vendor": true,
|
"Vendor": true,
|
||||||
"Cyclo": 10
|
"Cyclo": 11
|
||||||
}
|
}
|
17
types/int.go
17
types/int.go
|
@ -37,6 +37,13 @@ func mod(i *big.Int, i2 *big.Int) *big.Int { return new(big.Int).Mod(i, i2) }
|
||||||
|
|
||||||
func neg(i *big.Int) *big.Int { return new(big.Int).Neg(i) }
|
func neg(i *big.Int) *big.Int { return new(big.Int).Neg(i) }
|
||||||
|
|
||||||
|
func min(i *big.Int, i2 *big.Int) *big.Int {
|
||||||
|
if i.Cmp(i2) == 1 {
|
||||||
|
return new(big.Int).Set(i2)
|
||||||
|
}
|
||||||
|
return new(big.Int).Set(i)
|
||||||
|
}
|
||||||
|
|
||||||
// MarshalAmino for custom encoding scheme
|
// MarshalAmino for custom encoding scheme
|
||||||
func marshalAmino(i *big.Int) (string, error) {
|
func marshalAmino(i *big.Int) (string, error) {
|
||||||
bz, err := i.MarshalText()
|
bz, err := i.MarshalText()
|
||||||
|
@ -227,6 +234,11 @@ func (i Int) Neg() (res Int) {
|
||||||
return Int{neg(i.i)}
|
return Int{neg(i.i)}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return the minimum of the ints
|
||||||
|
func MinInt(i1, i2 Int) Int {
|
||||||
|
return Int{min(i1.BigInt(), i2.BigInt())}
|
||||||
|
}
|
||||||
|
|
||||||
func (i Int) String() string {
|
func (i Int) String() string {
|
||||||
return i.i.String()
|
return i.i.String()
|
||||||
}
|
}
|
||||||
|
@ -419,6 +431,11 @@ func (i Uint) DivRaw(i2 uint64) Uint {
|
||||||
return i.Div(NewUint(i2))
|
return i.Div(NewUint(i2))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return the minimum of the Uints
|
||||||
|
func MinUint(i1, i2 Uint) Uint {
|
||||||
|
return Uint{min(i1.BigInt(), i2.BigInt())}
|
||||||
|
}
|
||||||
|
|
||||||
// MarshalAmino defines custom encoding scheme
|
// MarshalAmino defines custom encoding scheme
|
||||||
func (i Uint) MarshalAmino() (string, error) {
|
func (i Uint) MarshalAmino() (string, error) {
|
||||||
if i.i == nil { // Necessary since default Uint initialization has i.i as nil
|
if i.i == nil { // Necessary since default Uint initialization has i.i as nil
|
||||||
|
|
|
@ -81,10 +81,7 @@ func (k Keeper) Slash(ctx sdk.Context, pubkey crypto.PubKey, infractionHeight in
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cannot decrease balance below zero
|
// Cannot decrease balance below zero
|
||||||
sharesToRemove := remainingSlashAmount
|
sharesToRemove := sdk.MinInt(remainingSlashAmount, validator.PoolShares.Amount.RoundInt())
|
||||||
if sharesToRemove.GT(validator.PoolShares.Amount.RoundInt()) {
|
|
||||||
sharesToRemove = validator.PoolShares.Amount.RoundInt()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the current pool
|
// Get the current pool
|
||||||
pool := k.GetPool(ctx)
|
pool := k.GetPool(ctx)
|
||||||
|
@ -163,10 +160,7 @@ func (k Keeper) slashUnbondingDelegation(ctx sdk.Context, unbondingDelegation ty
|
||||||
// Possible since the unbonding delegation may already
|
// Possible since the unbonding delegation may already
|
||||||
// have been slashed, and slash amounts are calculated
|
// have been slashed, and slash amounts are calculated
|
||||||
// according to stake held at time of infraction
|
// according to stake held at time of infraction
|
||||||
unbondingSlashAmount := slashAmount
|
unbondingSlashAmount := sdk.MinInt(slashAmount, unbondingDelegation.Balance.Amount)
|
||||||
if unbondingSlashAmount.GT(unbondingDelegation.Balance.Amount) {
|
|
||||||
unbondingSlashAmount = unbondingDelegation.Balance.Amount
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update unbonding delegation if necessary
|
// Update unbonding delegation if necessary
|
||||||
if !unbondingSlashAmount.IsZero() {
|
if !unbondingSlashAmount.IsZero() {
|
||||||
|
|
Loading…
Reference in New Issue