Documentation ¶
Index ¶
- Variables
- func AddLogFile(filepath string, maxSize int)
- func AddLogHandler(handler log.Handler)
- func AllocateShard(numOfAddedNodes, numOfShards int) (int, bool)
- func AppendIfMissing(slice []common.Address, addr common.Address) []common.Address
- func AskForPassphrase(prompt string) string
- func BToMb(b uint64) uint64
- func ConvertFixedDataIntoByteArray(data interface{}) []byte
- func CopyBytes(b []byte) (copiedBytes []byte)
- func CountOneBits(arr []byte) int64
- func EmbedFile(filePath string, constName string)
- func FatalErrMsg(err error, format string, args ...interface{})
- func FatalError(err error)
- func FromHex(s string) []byte
- func GenKeyP2P(ip, port string) (p2p_crypto.PrivKey, p2p_crypto.PubKey, error)
- func GenKeyP2PRand() (p2p_crypto.PrivKey, p2p_crypto.PubKey, error)
- func GetAddressFromBlsPubKey(pubKey *bls.PublicKey) common.Address
- func GetAddressFromBlsPubKeyBytes(pubKeyBytes []byte) common.Address
- func GetLogInstance() log.Logger
- func GetLogger() log.Logger
- func GetPassphraseFromSource(src string) (pass string, err error)
- func GetPendingCXKey(shardID uint32, blockNum uint64) string
- func GetPortFromDiff(port string, diff int) string
- func GetUniqueIDFromIPPort(ip, port string) uint32
- func HasHexPrefix(str string) bool
- func Hex2Bytes(str string) []byte
- func IsHex(str string) bool
- func IsPrivateIP(ip net.IP) bool
- func LeftPadBytes(slice []byte, l int) []byte
- func Load(path string, v interface{}) error
- func LoadKeyFromFile(keyfile string) (key p2p_crypto.PrivKey, pk p2p_crypto.PubKey, err error)
- func LoadPrivateKey(key string) (p2p_crypto.PrivKey, p2p_crypto.PubKey, error)
- func Logger() *zerolog.Logger
- func Marshal(v interface{}) (io.Reader, error)
- func PrintErrMsg(err error, format string, args ...interface{})
- func PrintError(err error)
- func RightPadBytes(slice []byte, l int) []byte
- func Save(path string, v interface{}) error
- func SaveKeyToFile(keyfile string, key p2p_crypto.PrivKey) (err error)
- func SavePrivateKey(key p2p_crypto.PrivKey) (string, error)
- func SetLogContext(_port, _ip string)
- func SetLogVerbosity(verbosity log.Lvl)
- func Unmarshal(r io.Reader, v interface{}) error
- func WithCaller(logger log.Logger) log.Logger
- func WithCallerSkip(logger log.Logger, skip int) log.Logger
- type ConnLogger
- func (cl ConnLogger) ClosedStream(n net.Network, s net.Stream)
- func (cl ConnLogger) Connected(n net.Network, c net.Conn)
- func (cl ConnLogger) Disconnected(n net.Network, c net.Conn)
- func (cl ConnLogger) Listen(n net.Network, ma ma.Multiaddr)
- func (cl ConnLogger) ListenClose(n net.Network, ma ma.Multiaddr)
- func (cl ConnLogger) OpenedStream(n net.Network, s net.Stream)
- type PrivKeyStore
- type TestLogRedirector
- type TestLogger
- type Timeout
- type TimeoutState
Constants ¶
This section is empty.
Variables ¶
var RootConnLogger = NewConnLogger(log.Root())
RootConnLogger is a LibP2P connection logger that logs to Ethereum root logger. See ConnLogger for usage.
Functions ¶
func AddLogFile ¶
AddLogFile creates a StreamHandler that outputs JSON logs into rotating files with specified max file size
func AllocateShard ¶
AllocateShard uses the number of current nodes and number of shards to return the shardNum a new node belongs to, it also tells whether the node is a leader
func AppendIfMissing ¶ added in v1.3.0
AppendIfMissing returns a list of unique addresses
func AskForPassphrase ¶
AskForPassphrase return passphrase using password input
func ConvertFixedDataIntoByteArray ¶
func ConvertFixedDataIntoByteArray(data interface{}) []byte
ConvertFixedDataIntoByteArray converts an empty interface data to a byte array
func CountOneBits ¶
CountOneBits counts the number of 1 bit in byte array
func EmbedFile ¶
EmbedFile Text file embed script for go:generate. This script embeds a text file located at filePath into a string constant named as constName defined in a golang source file located at the current go:generate path.
func FatalErrMsg ¶ added in v1.3.0
FatalErrMsg prints the given error wrapped with the given message in the extended format (%+v) onto stderr, then exits with status 1.
func FatalError ¶ added in v1.3.0
func FatalError(err error)
FatalError prints the given error in the extended format (%+v) onto stderr, then exits with status 1.
func FromHex ¶
FromHex returns the bytes represented by the hexadecimal string s. s may be prefixed with "0x".
func GenKeyP2P ¶
func GenKeyP2P(ip, port string) (p2p_crypto.PrivKey, p2p_crypto.PubKey, error)
GenKeyP2P generates a pair of RSA keys used in libp2p host
func GenKeyP2PRand ¶
func GenKeyP2PRand() (p2p_crypto.PrivKey, p2p_crypto.PubKey, error)
GenKeyP2PRand generates a pair of RSA keys used in libp2p host, using random seed
func GetAddressFromBlsPubKey ¶
GetAddressFromBlsPubKey return the address object from bls pub key.
func GetAddressFromBlsPubKeyBytes ¶ added in v1.3.0
GetAddressFromBlsPubKeyBytes return the address object from bls pub key.
func GetPassphraseFromSource ¶
GetPassphraseFromSource reads a passphrase such as a key-encrypting one non-interactively from the given source.
The source can be "pass:password", "env:var", "file:pathname", "fd:number", or "stdin". See “PASS PHRASE ARGUMENTS” section of openssl(1) for details.
When "stdin" or "fd:" is used, the standard input or the given file descriptor is exhausted. Therefore, this function should be called at most once per program invocation; the second call, if any, may return an empty string if "stdin" or "fd" is used.
func GetPendingCXKey ¶
GetPendingCXKey creates pending CXReceiptsProof key given shardID and blockNum it is to avoid adding duplicated CXReceiptsProof from the same source shard
func GetPortFromDiff ¶
GetPortFromDiff returns the port from base and the diff.
func GetUniqueIDFromIPPort ¶
GetUniqueIDFromIPPort --
func HasHexPrefix ¶
HasHexPrefix validates str begins with '0x' or '0X'.
func IsPrivateIP ¶
IsPrivateIP checks if an IP address is private or not
func LeftPadBytes ¶
LeftPadBytes zero-pads slice to the left up to length l.
func LoadKeyFromFile ¶
func LoadKeyFromFile(keyfile string) (key p2p_crypto.PrivKey, pk p2p_crypto.PubKey, err error)
LoadKeyFromFile load private key from keyfile If the private key is not loadable or no file, it will generate a new random private key
func LoadPrivateKey ¶
func LoadPrivateKey(key string) (p2p_crypto.PrivKey, p2p_crypto.PubKey, error)
LoadPrivateKey parses the key string in base64 format and return PrivKey
func PrintErrMsg ¶ added in v1.3.0
PrintErrMsg prints the given error wrapped with the given message in the extended format (%+v) onto stderr.
func PrintError ¶ added in v1.3.0
func PrintError(err error)
PrintError prints the given error in the extended format (%+v) onto stderr.
func RightPadBytes ¶
RightPadBytes zero-pads slice to the right up to length l.
func SaveKeyToFile ¶
func SaveKeyToFile(keyfile string, key p2p_crypto.PrivKey) (err error)
SaveKeyToFile save private key to keyfile
func SavePrivateKey ¶
func SavePrivateKey(key p2p_crypto.PrivKey) (string, error)
SavePrivateKey convert the PrivKey to base64 format and return string
func SetLogContext ¶
func SetLogContext(_port, _ip string)
SetLogContext used to print out loggings of node with port and ip. Every instance (node, etc..) needs to set this for logging.
func SetLogVerbosity ¶
SetLogVerbosity specifies the verbosity of global logger
func Unmarshal ¶
Unmarshal is a function that unmarshals the data from the reader into the specified value.
func WithCaller ¶
WithCaller logs the caller info in three context items "funcFile", "funcLine", and "funcName".
Types ¶
type ConnLogger ¶
type ConnLogger struct {
// contains filtered or unexported fields
}
ConnLogger is a LibP2P connection logger that logs to an Ethereum logger. It logs all listener/connection/stream open/close activities at debug level. To use one, add it on a LibP2P host swarm as a notifier, ex:
connLogger := utils.NewConnLogger( host.Network().Notify(connLogger)
func NewConnLogger ¶
func NewConnLogger(l log.Logger) *ConnLogger
NewConnLogger returns a new connection logger that uses the given Ethereum logger. See ConnLogger for usage.
func (ConnLogger) ClosedStream ¶
func (cl ConnLogger) ClosedStream(n net.Network, s net.Stream)
ClosedStream logs a stream getting closed.
func (ConnLogger) Connected ¶
func (cl ConnLogger) Connected(n net.Network, c net.Conn)
Connected logs a connection getting opened.
func (ConnLogger) Disconnected ¶
func (cl ConnLogger) Disconnected(n net.Network, c net.Conn)
Disconnected logs a connection getting closed.
func (ConnLogger) Listen ¶
func (cl ConnLogger) Listen(n net.Network, ma ma.Multiaddr)
Listen logs a listener starting listening on an address.
func (ConnLogger) ListenClose ¶
func (cl ConnLogger) ListenClose(n net.Network, ma ma.Multiaddr)
ListenClose logs a listener stopping listening on an address.
func (ConnLogger) OpenedStream ¶
func (cl ConnLogger) OpenedStream(n net.Network, s net.Stream)
OpenedStream logs a new stream getting opened.
type PrivKeyStore ¶
type PrivKeyStore struct {
Key string `json:"key"`
}
PrivKeyStore is used to persist private key to/from file
type TestLogRedirector ¶
type TestLogRedirector struct {
// contains filtered or unexported fields
}
TestLogRedirector is a log15-compatible log handler that logs to the testing object. It is useful when debugging, because it surfaces application log messages – such as ones emitted by the SUT – which are otherwise discarded and not displayed during testing.
Typical usage:
func TestMyFunc(t *testing.T) { l := utils.GetLogInstance() lrd := NewTestLogRedirector(l, t) defer lrd.Close() // Everything sent to the logger l will be printed onto the test log, // until lrd.Close() is called at the end of the function. // Contexts are formatted using the "%#v" format specifier. l.Debug("hello", "audience", "world") // The above prints: hello, audience="world" }
func NewTestLogRedirector ¶
func NewTestLogRedirector(l log.Logger, t TestLogger) *TestLogRedirector
NewTestLogRedirector returns a new testing log redirector. The given logger's handler is saved and replaced by the receiver. Caller shall ensure Close() is called when the redirector is no longer needed.
func (*TestLogRedirector) Close ¶
func (redirector *TestLogRedirector) Close() error
Close restores the log handler back to the original one.
type TestLogger ¶
type TestLogger interface {
Log(args ...interface{})
}
TestLogger is the logging interface implemented by testing.T.
type Timeout ¶
type Timeout struct {
// contains filtered or unexported fields
}
Timeout is the implementation of timeout
func (*Timeout) CheckExpire ¶
CheckExpire checks whether the timeout is reached/expired
func (*Timeout) IsActive ¶
IsActive checks whether timeout clock is active; A timeout is active means it's not stopped caused by stop and also not expired with time elapses longer than duration from start
func (*Timeout) SetDuration ¶
SetDuration set new duration for the timer
type TimeoutState ¶
type TimeoutState int
TimeoutState indicates the state of Timeout class
const ( Active TimeoutState = iota Inactive Expired )
Enum for different TimeoutState