mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
cf0bd633f0
* fork/version detection and unmarshaling support * Update config/params/config.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/detect/configfork.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * PR feedback * move ssz initialization into the detect package * clarify comment * VersionForEpoch is much simpler/clearer in reverse * simpler VersionForEpoch; build AllConfigs in init * use fieldparams for Version * Update proto/detect/configfork_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * remove custom ForkName type, use runtime/version * pr cleanup * random fix from bad gh ui suggestion; privatize * privatize fieldSpec methods; + unit tests * Update proto/detect/configfork.go Co-authored-by: Potuz <potuz@prysmaticlabs.com> * fix bad github ui suggestion * ensure unique versions for simpler config match * fmt & adding unit test for ByState() * table-driven unit test for ByState * TestUnmarshalState * OrderedSchedule -> network/forks per PR feedback * goimports * lint fixes * move proto/detect -> ssz/encoding/detect * use typeUndefined in String * backport config tests from e2e PR * fix config parity test; make debugging it easier * lint * fix fork schedule initialization * cleanup * fix build * fix big ole derp * anything for you, deep source * goimportsss * InitializeForkSchedule in LoadChainConfigFile * PR feedback Co-authored-by: kasey <kasey@users.noreply.github.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
80 lines
1.6 KiB
Go
80 lines
1.6 KiB
Go
package detect
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
|
|
)
|
|
|
|
type fieldType int
|
|
|
|
const (
|
|
typeUndefined fieldType = iota
|
|
typeUint64
|
|
typeBytes4
|
|
)
|
|
|
|
func (f fieldType) String() string {
|
|
switch f {
|
|
case typeUint64:
|
|
return "uint64"
|
|
case typeBytes4:
|
|
return "bytes4"
|
|
case typeUndefined:
|
|
return "undefined"
|
|
default:
|
|
return "invalid"
|
|
}
|
|
}
|
|
|
|
func (f fieldType) Size() int {
|
|
switch f {
|
|
case typeUint64:
|
|
return 8
|
|
case typeBytes4:
|
|
return 4
|
|
default:
|
|
panic("can't determine size for unrecognizedtype ")
|
|
}
|
|
}
|
|
|
|
var errWrongMethodForType = errors.New("wrong fieldSpec method for type")
|
|
var errIndexOutOfRange = errors.New("value index would exceed byte length")
|
|
|
|
type fieldSpec struct {
|
|
offset int
|
|
t fieldType
|
|
}
|
|
|
|
func (f *fieldSpec) uint64(state []byte) (uint64, error) {
|
|
if f.t != typeUint64 {
|
|
return 0, errors.Wrapf(errWrongMethodForType, "called uint64() for type=%s", f.t)
|
|
}
|
|
s, err := f.slice(state)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return binary.LittleEndian.Uint64(s), nil
|
|
}
|
|
|
|
func (f *fieldSpec) bytes4(state []byte) ([4]byte, error) {
|
|
var b4 [4]byte
|
|
if f.t != typeBytes4 {
|
|
return b4, errors.Wrapf(errWrongMethodForType, "called bytes4() with fieldType=%s", f.t)
|
|
}
|
|
val, err := f.slice(state)
|
|
if err != nil {
|
|
return b4, err
|
|
}
|
|
return bytesutil.ToBytes4(val), nil
|
|
}
|
|
|
|
func (f *fieldSpec) slice(value []byte) ([]byte, error) {
|
|
size := f.t.Size()
|
|
if len(value) < f.offset+size {
|
|
return nil, errors.Wrapf(errIndexOutOfRange, "offset=%d, size=%d, byte len=%d", f.offset, size, len(value))
|
|
}
|
|
return value[f.offset : f.offset+size], nil
|
|
}
|