2022-06-27 09:58:44 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
math "math"
|
|
|
|
"math/big"
|
|
|
|
|
2022-11-14 19:40:14 +00:00
|
|
|
errorsmod "cosmossdk.io/errors"
|
2022-07-28 13:43:49 +00:00
|
|
|
sdkmath "cosmossdk.io/math"
|
2022-11-14 19:40:14 +00:00
|
|
|
errortypes "github.com/cosmos/cosmos-sdk/types/errors"
|
2022-06-27 09:58:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const maxBitLen = 256
|
|
|
|
|
|
|
|
// SafeInt64 checks for overflows while casting a uint64 to int64 value.
|
|
|
|
func SafeInt64(value uint64) (int64, error) {
|
|
|
|
if value > uint64(math.MaxInt64) {
|
2022-11-14 19:40:14 +00:00
|
|
|
return 0, errorsmod.Wrapf(errortypes.ErrInvalidHeight, "uint64 value %v cannot exceed %v", value, int64(math.MaxInt64))
|
2022-06-27 09:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return int64(value), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SafeNewIntFromBigInt constructs Int from big.Int, return error if more than 256bits
|
2022-07-28 13:43:49 +00:00
|
|
|
func SafeNewIntFromBigInt(i *big.Int) (sdkmath.Int, error) {
|
2022-06-27 09:58:44 +00:00
|
|
|
if !IsValidInt256(i) {
|
2022-07-28 13:43:49 +00:00
|
|
|
return sdkmath.NewInt(0), fmt.Errorf("big int out of bound: %s", i)
|
2022-06-27 09:58:44 +00:00
|
|
|
}
|
2022-07-28 13:43:49 +00:00
|
|
|
return sdkmath.NewIntFromBigInt(i), nil
|
2022-06-27 09:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsValidInt256 check the bound of 256 bit number
|
|
|
|
func IsValidInt256(i *big.Int) bool {
|
|
|
|
return i == nil || i.BitLen() <= maxBitLen
|
|
|
|
}
|