mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
436493350e
1. changes sentinel to use an http-like interface 2. moves hexutil, crypto/blake2b, metrics packages to erigon-lib
127 lines
3.0 KiB
Go
127 lines
3.0 KiB
Go
// Copyright 2014 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// Package common contains various helper functions.
|
|
package common
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/hex"
|
|
"github.com/ledgerwatch/erigon-lib/common"
|
|
)
|
|
|
|
// FromHex returns the bytes represented by the hexadecimal string s.
|
|
// s may be prefixed with "0x".
|
|
func FromHex(s string) []byte {
|
|
if has0xPrefix(s) {
|
|
s = s[2:]
|
|
}
|
|
if len(s)%2 == 1 {
|
|
s = "0" + s
|
|
}
|
|
return common.Hex2Bytes(s)
|
|
}
|
|
|
|
// has0xPrefix validates str begins with '0x' or '0X'.
|
|
func has0xPrefix(str string) bool {
|
|
return len(str) >= 2 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X')
|
|
}
|
|
|
|
// isHexCharacter returns bool of c being a valid hexadecimal.
|
|
func isHexCharacter(c byte) bool {
|
|
return ('0' <= c && c <= '9') || ('a' <= c && c <= 'f') || ('A' <= c && c <= 'F')
|
|
}
|
|
|
|
// isHex validates whether each byte is valid hexadecimal string.
|
|
func isHex(str string) bool {
|
|
if len(str)%2 != 0 {
|
|
return false
|
|
}
|
|
for _, c := range []byte(str) {
|
|
if !isHexCharacter(c) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Bytes2Hex returns the hexadecimal encoding of d.
|
|
func Bytes2Hex(d []byte) string {
|
|
return hex.EncodeToString(d)
|
|
}
|
|
|
|
// RightPadBytes zero-pads slice to the right up to length l.
|
|
func RightPadBytes(slice []byte, l int) []byte {
|
|
if l <= len(slice) {
|
|
return slice
|
|
}
|
|
|
|
padded := make([]byte, l)
|
|
copy(padded, slice)
|
|
|
|
return padded
|
|
}
|
|
|
|
// LeftPadBytes zero-pads slice to the left up to length l.
|
|
func LeftPadBytes(slice []byte, l int) []byte {
|
|
if l <= len(slice) {
|
|
return slice
|
|
}
|
|
|
|
padded := make([]byte, l)
|
|
copy(padded[l-len(slice):], slice)
|
|
|
|
return padded
|
|
}
|
|
|
|
// TrimLeftZeroes returns a subslice of s without leading zeroes
|
|
func TrimLeftZeroes(s []byte) []byte {
|
|
idx := 0
|
|
for ; idx < len(s); idx++ {
|
|
if s[idx] != 0 {
|
|
break
|
|
}
|
|
}
|
|
return s[idx:]
|
|
}
|
|
|
|
// TrimRightZeroes returns a subslice of s without trailing zeroes
|
|
func TrimRightZeroes(s []byte) []byte {
|
|
idx := len(s)
|
|
for ; idx > 0; idx-- {
|
|
if s[idx-1] != 0 {
|
|
break
|
|
}
|
|
}
|
|
return s[:idx]
|
|
}
|
|
|
|
func KeyCmp(key1, key2 []byte) (int, bool) {
|
|
switch {
|
|
//both keys are empty
|
|
case len(key1) == 0 && len(key2) == 0:
|
|
return 0, true
|
|
// key1 is empty
|
|
case len(key1) == 0 && len(key2) != 0:
|
|
return 1, false
|
|
// key2 is empty
|
|
case len(key1) != 0 && len(key2) == 0:
|
|
return -1, false
|
|
default:
|
|
return bytes.Compare(key1, key2), false
|
|
}
|
|
}
|