2018-02-04 19:54:51 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
2018-03-23 20:36:59 +00:00
|
|
|
"encoding/json"
|
2018-03-02 15:24:09 +00:00
|
|
|
"fmt"
|
2018-05-09 05:20:16 +00:00
|
|
|
"strings"
|
2018-02-04 19:54:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const uint160Size = 20
|
|
|
|
|
|
|
|
// Uint160 is a 20 byte long unsigned integer.
|
|
|
|
type Uint160 [uint160Size]uint8
|
|
|
|
|
2018-03-02 15:24:09 +00:00
|
|
|
// Uint160DecodeString attempts to decode the given string into an Uint160.
|
2018-11-26 15:56:45 +00:00
|
|
|
func Uint160DecodeString(s string) (Uint160, error) {
|
|
|
|
var u Uint160
|
2018-03-02 15:24:09 +00:00
|
|
|
if len(s) != uint160Size*2 {
|
|
|
|
return u, fmt.Errorf("expected string size of %d got %d", uint160Size*2, len(s))
|
|
|
|
}
|
|
|
|
b, err := hex.DecodeString(s)
|
|
|
|
if err != nil {
|
|
|
|
return u, err
|
|
|
|
}
|
|
|
|
return Uint160DecodeBytes(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint160DecodeBytes attempts to decode the given bytes into an Uint160.
|
|
|
|
func Uint160DecodeBytes(b []byte) (u Uint160, err error) {
|
|
|
|
if len(b) != uint160Size {
|
|
|
|
return u, fmt.Errorf("expected byte size of %d got %d", uint160Size, len(b))
|
|
|
|
}
|
2019-01-25 11:20:35 +00:00
|
|
|
copy(u[:], b)
|
2018-03-02 15:24:09 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bytes returns the byte slice representation of u.
|
|
|
|
func (u Uint160) Bytes() []byte {
|
2018-11-26 15:56:45 +00:00
|
|
|
return u[:]
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
|
2018-03-25 10:45:54 +00:00
|
|
|
// BytesReverse return a reversed byte representation of u.
|
|
|
|
func (u Uint160) BytesReverse() []byte {
|
|
|
|
return ArrayReverse(u.Bytes())
|
|
|
|
}
|
|
|
|
|
2018-02-04 19:54:51 +00:00
|
|
|
// String implements the stringer interface.
|
|
|
|
func (u Uint160) String() string {
|
2018-03-02 15:24:09 +00:00
|
|
|
return hex.EncodeToString(u.Bytes())
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
2018-02-07 14:16:50 +00:00
|
|
|
|
2019-08-22 12:35:18 +00:00
|
|
|
// ReverseString is the same as String, but returnes an inversed representation.
|
|
|
|
func (u Uint160) ReverseString() string {
|
|
|
|
return hex.EncodeToString(u.BytesReverse())
|
|
|
|
}
|
|
|
|
|
2018-02-07 14:16:50 +00:00
|
|
|
// Equals returns true if both Uint256 values are the same.
|
|
|
|
func (u Uint160) Equals(other Uint160) bool {
|
2018-11-26 15:56:45 +00:00
|
|
|
return u == other
|
2018-02-07 14:16:50 +00:00
|
|
|
}
|
2018-03-23 20:36:59 +00:00
|
|
|
|
2018-05-09 05:20:16 +00:00
|
|
|
// UnmarshalJSON implements the json unmarshaller interface.
|
|
|
|
func (u *Uint160) UnmarshalJSON(data []byte) (err error) {
|
|
|
|
var js string
|
|
|
|
if err = json.Unmarshal(data, &js); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-19 13:22:33 +00:00
|
|
|
js = strings.TrimPrefix(js, "0x")
|
2018-05-09 05:20:16 +00:00
|
|
|
*u, err = Uint160DecodeString(js)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-03-23 20:36:59 +00:00
|
|
|
// MarshalJSON implements the json marshaller interface.
|
|
|
|
func (u Uint160) MarshalJSON() ([]byte, error) {
|
2018-11-26 15:56:45 +00:00
|
|
|
return []byte(`"0x` + u.String() + `"`), nil
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|