mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-06 22:23:56 -05:00
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package consensus_types
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"sync/atomic"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/runtime/version"
|
|
errors2 "github.com/pkg/errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNilObjectWrapped is returned in a constructor when the underlying object is nil.
|
|
ErrNilObjectWrapped = errors.New("attempted to wrap nil object")
|
|
// ErrUnsupportedField is returned when a getter/setter access is not supported.
|
|
ErrUnsupportedField = errors.New("unsupported getter")
|
|
// ErrOutOfBounds is returned when a slice or array index does not exist.
|
|
)
|
|
|
|
// ErrNotSupported constructs a message informing about an unsupported field access.
|
|
func ErrNotSupported(funcName string, ver int) error {
|
|
return errors2.Wrap(ErrUnsupportedField, fmt.Sprintf("%s is not supported for %s", funcName, version.String(ver)))
|
|
}
|
|
|
|
// ThreadSafeEnumerator is a thread-safe counter of all objects created since the node's start.
|
|
type ThreadSafeEnumerator struct {
|
|
counter atomic.Uint64
|
|
}
|
|
|
|
// Inc increments the enumerator and returns the new object count.
|
|
func (c *ThreadSafeEnumerator) Inc() uint64 {
|
|
return c.counter.Add(1)
|
|
}
|