mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [NOD-622] Fix populateTemplateFromCandidates to sort txsForBlockTemplate.txMasses and txsForBlockTemplate.txFees * [NOD-622] Sort transactions in PrepareBlockForTest * [NOD-622] Remove duplicate append of selected transactions
203 lines
5.6 KiB
Go
203 lines
5.6 KiB
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Copyright (c) 2015 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package subnetworkid
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"github.com/pkg/errors"
|
|
"math/big"
|
|
)
|
|
|
|
// IDLength of array used to store the subnetwork ID. See SubnetworkID.
|
|
const IDLength = 20
|
|
|
|
// MaxStringSize is the maximum length of a SubnetworkID string.
|
|
const MaxStringSize = IDLength * 2
|
|
|
|
// ErrIDStrSize describes an error that indicates the caller specified an ID
|
|
// string that has too many characters.
|
|
var ErrIDStrSize = errors.Errorf("max ID string length is %d bytes", MaxStringSize)
|
|
|
|
// SubnetworkID is used in several of the kaspa messages and common structures. It
|
|
// typically represents ripmed160(sha256(data)).
|
|
type SubnetworkID [IDLength]byte
|
|
|
|
var (
|
|
// SubnetworkIDNative is the default subnetwork ID which is used for transactions without related payload data
|
|
SubnetworkIDNative = &SubnetworkID{}
|
|
|
|
// SubnetworkIDCoinbase is the subnetwork ID which is used for the coinbase transaction
|
|
SubnetworkIDCoinbase = &SubnetworkID{1}
|
|
|
|
// SubnetworkIDRegistry is the subnetwork ID which is used for adding new sub networks to the registry
|
|
SubnetworkIDRegistry = &SubnetworkID{2}
|
|
)
|
|
|
|
// String returns the SubnetworkID as the hexadecimal string of the byte-reversed
|
|
// hash.
|
|
func (id SubnetworkID) String() string {
|
|
for i := 0; i < IDLength/2; i++ {
|
|
id[i], id[IDLength-1-i] = id[IDLength-1-i], id[i]
|
|
}
|
|
return hex.EncodeToString(id[:])
|
|
}
|
|
|
|
// Strings returns a slice of strings representing the IDs in the given slice of IDs
|
|
func Strings(ids []SubnetworkID) []string {
|
|
strings := make([]string, len(ids))
|
|
for i, id := range ids {
|
|
strings[i] = id.String()
|
|
}
|
|
|
|
return strings
|
|
}
|
|
|
|
// CloneBytes returns a copy of the bytes which represent the ID as a byte
|
|
// slice.
|
|
//
|
|
// NOTE: It is generally cheaper to just slice the ID directly thereby reusing
|
|
// the same bytes rather than calling this method.
|
|
func (id *SubnetworkID) CloneBytes() []byte {
|
|
newID := make([]byte, IDLength)
|
|
copy(newID, id[:])
|
|
|
|
return newID
|
|
}
|
|
|
|
// SetBytes sets the bytes which represent the ID. An error is returned if
|
|
// the number of bytes passed in is not IDLength.
|
|
func (id *SubnetworkID) SetBytes(newID []byte) error {
|
|
nhlen := len(newID)
|
|
if nhlen != IDLength {
|
|
return errors.Errorf("invalid ID length of %d, want %d", nhlen,
|
|
IDLength)
|
|
}
|
|
copy(id[:], newID)
|
|
|
|
return nil
|
|
}
|
|
|
|
// IsEqual returns true if target is the same as ID.
|
|
func (id *SubnetworkID) IsEqual(target *SubnetworkID) bool {
|
|
if id == nil && target == nil {
|
|
return true
|
|
}
|
|
if id == nil || target == nil {
|
|
return false
|
|
}
|
|
return *id == *target
|
|
}
|
|
|
|
// AreEqual returns true if both slices contain the same IDs.
|
|
// Either slice must not contain duplicates.
|
|
func AreEqual(first []SubnetworkID, second []SubnetworkID) bool {
|
|
if len(first) != len(second) {
|
|
return false
|
|
}
|
|
|
|
for i := range first {
|
|
if first[i] != second[i] {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// New returns a new ID from a byte slice. An error is returned if
|
|
// the number of bytes passed in is not IDLength.
|
|
func New(newID []byte) (*SubnetworkID, error) {
|
|
var sh SubnetworkID
|
|
err := sh.SetBytes(newID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &sh, err
|
|
}
|
|
|
|
// NewFromStr creates a SubnetworkID from a string. The string should be
|
|
// the hexadecimal string of a byte-reversed hash, but any missing characters
|
|
// result in zero padding at the end of the SubnetworkID.
|
|
func NewFromStr(id string) (*SubnetworkID, error) {
|
|
ret := new(SubnetworkID)
|
|
err := Decode(ret, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
// Decode decodes the byte-reversed hexadecimal string encoding of a SubnetworkID to a
|
|
// destination.
|
|
func Decode(dst *SubnetworkID, src string) error {
|
|
// Return error if ID string is too long.
|
|
if len(src) > MaxStringSize {
|
|
return ErrIDStrSize
|
|
}
|
|
|
|
// Hex decoder expects the ID to be a multiple of two. When not, pad
|
|
// with a leading zero.
|
|
var srcBytes []byte
|
|
if len(src)%2 == 0 {
|
|
srcBytes = []byte(src)
|
|
} else {
|
|
srcBytes = make([]byte, 1+len(src))
|
|
srcBytes[0] = '0'
|
|
copy(srcBytes[1:], src)
|
|
}
|
|
|
|
// Hex decode the source bytes to a temporary destination.
|
|
var reversedHash SubnetworkID
|
|
_, err := hex.Decode(reversedHash[IDLength-hex.DecodedLen(len(srcBytes)):], srcBytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Reverse copy from the temporary hash to destination. Because the
|
|
// temporary was zeroed, the written result will be correctly padded.
|
|
for i, b := range reversedHash[:IDLength/2] {
|
|
dst[i], dst[IDLength-1-i] = reversedHash[IDLength-1-i], b
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ToBig converts a SubnetworkID into a big.Int that can be used to
|
|
// perform math comparisons.
|
|
func ToBig(id *SubnetworkID) *big.Int {
|
|
// A Hash is in little-endian, but the big package wants the bytes in
|
|
// big-endian, so reverse them.
|
|
buf := *id
|
|
blen := len(buf)
|
|
for i := 0; i < blen/2; i++ {
|
|
buf[i], buf[blen-1-i] = buf[blen-1-i], buf[i]
|
|
}
|
|
|
|
return new(big.Int).SetBytes(buf[:])
|
|
}
|
|
|
|
// Cmp compares id and target and returns:
|
|
//
|
|
// -1 if id < target
|
|
// 0 if id == target
|
|
// +1 if id > target
|
|
//
|
|
func (id *SubnetworkID) Cmp(target *SubnetworkID) int {
|
|
return ToBig(id).Cmp(ToBig(target))
|
|
}
|
|
|
|
// IsBuiltIn returns true if the subnetwork is a built in subnetwork, which
|
|
// means all nodes, including partial nodes, must validate it, and its transactions
|
|
// always use 0 gas.
|
|
func (id *SubnetworkID) IsBuiltIn() bool {
|
|
return id.IsEqual(SubnetworkIDCoinbase) || id.IsEqual(SubnetworkIDRegistry)
|
|
}
|
|
|
|
// Less returns true iff id a is less than id b
|
|
func Less(a *SubnetworkID, b *SubnetworkID) bool {
|
|
return a.Cmp(b) < 0
|
|
}
|