2021-06-30 15:06:19 +00:00
|
|
|
// Package v1 defines how the beacon chain state for Ethereum
|
2020-07-06 20:52:53 +00:00
|
|
|
// functions in the running beacon node, using an advanced,
|
|
|
|
// immutable implementation of the state data structure.
|
|
|
|
//
|
|
|
|
// BeaconState getters may be accessed from inside or outside the package. To
|
|
|
|
// avoid duplicating locks, we have internal and external versions of the
|
|
|
|
// getter The external function carries out the short-circuit conditions,
|
|
|
|
// obtains a read lock, then calls the internal function. The internal function
|
|
|
|
// carries out the short-circuit conditions and returns the required data
|
|
|
|
// without further locking, allowing it to be used by other package-level
|
|
|
|
// functions that already hold a lock. Hence the functions look something
|
|
|
|
// like this:
|
|
|
|
//
|
|
|
|
// func (b *BeaconState) Foo() uint64 {
|
|
|
|
// // Short-circuit conditions.
|
2021-03-02 12:37:36 +00:00
|
|
|
// if !b.hasInnerState() {
|
2020-07-06 20:52:53 +00:00
|
|
|
// return 0
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// // Read lock.
|
|
|
|
// b.lock.RLock()
|
|
|
|
// defer b.lock.RUnlock()
|
|
|
|
//
|
|
|
|
// // Internal getter.
|
|
|
|
// return b.foo()
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// func (b *BeaconState) foo() uint64 {
|
|
|
|
// // Short-circuit conditions.
|
2021-03-02 12:37:36 +00:00
|
|
|
// if !b.hasInnerState() {
|
2020-07-06 20:52:53 +00:00
|
|
|
// return 0
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return b.state.foo
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// Although it is technically possible to remove the short-circuit conditions
|
|
|
|
// from the external function, that would require every read to obtain a lock
|
|
|
|
// even if the data was not present, leading to potential slowdowns.
|
2021-06-30 15:06:19 +00:00
|
|
|
package v1
|