mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-15 07:39:08 +00:00
* simv2: wip * simulation: exec adapter start/stop * simulation: add node status to exec adapter * simulation: initial simulation code * simulation: exec adapter, configure path to executable * simulation: initial docker adapter * simulation: wip kubernetes adapter * simulation: kubernetes adapter proxy * simulation: implement GetAll/StartAll/StopAll * simulation: kuberentes adapter - set env vars and resource limits * simulation: discovery test * simulation: remove port definitions within docker adapter * simulation: simplify wait for healthy loop * simulation: get nat ip addr from interface * simulation: pull docker images automatically * simulation: NodeStatus -> NodeInfo * simulation: move discovery test to example dir * simulation: example snapshot usage * simulation: add goclient specific simulation * simulation: add peer connections to snapshot * simulation: close rpc client * simulation: don't export kubernetes proxy server * simulation: merge simulation code * simulation: don't export nodemap * simulation: rename SimulationSnapshot -> Snapshot * simulation: linting fixes * simulation: add k8s available helper func * simulation: vendor * simulation: fix 'no non-test Go files' when building * simulation: remove errors from interface methods where non were returned * simulation: run getHealthInfo check in parallel
101 lines
2.5 KiB
Go
101 lines
2.5 KiB
Go
package reflect2
|
|
|
|
import (
|
|
"reflect"
|
|
"unsafe"
|
|
)
|
|
|
|
type safeMapType struct {
|
|
safeType
|
|
}
|
|
|
|
func (type2 *safeMapType) Key() Type {
|
|
return type2.safeType.cfg.Type2(type2.Type.Key())
|
|
}
|
|
|
|
func (type2 *safeMapType) MakeMap(cap int) interface{} {
|
|
ptr := reflect.New(type2.Type)
|
|
ptr.Elem().Set(reflect.MakeMap(type2.Type))
|
|
return ptr.Interface()
|
|
}
|
|
|
|
func (type2 *safeMapType) UnsafeMakeMap(cap int) unsafe.Pointer {
|
|
panic("does not support unsafe operation")
|
|
}
|
|
|
|
func (type2 *safeMapType) SetIndex(obj interface{}, key interface{}, elem interface{}) {
|
|
keyVal := reflect.ValueOf(key)
|
|
elemVal := reflect.ValueOf(elem)
|
|
val := reflect.ValueOf(obj)
|
|
val.Elem().SetMapIndex(keyVal.Elem(), elemVal.Elem())
|
|
}
|
|
|
|
func (type2 *safeMapType) UnsafeSetIndex(obj unsafe.Pointer, key unsafe.Pointer, elem unsafe.Pointer) {
|
|
panic("does not support unsafe operation")
|
|
}
|
|
|
|
func (type2 *safeMapType) TryGetIndex(obj interface{}, key interface{}) (interface{}, bool) {
|
|
keyVal := reflect.ValueOf(key)
|
|
if key == nil {
|
|
keyVal = reflect.New(type2.Type.Key()).Elem()
|
|
}
|
|
val := reflect.ValueOf(obj).MapIndex(keyVal)
|
|
if !val.IsValid() {
|
|
return nil, false
|
|
}
|
|
return val.Interface(), true
|
|
}
|
|
|
|
func (type2 *safeMapType) GetIndex(obj interface{}, key interface{}) interface{} {
|
|
val := reflect.ValueOf(obj).Elem()
|
|
keyVal := reflect.ValueOf(key).Elem()
|
|
elemVal := val.MapIndex(keyVal)
|
|
if !elemVal.IsValid() {
|
|
ptr := reflect.New(reflect.PtrTo(val.Type().Elem()))
|
|
return ptr.Elem().Interface()
|
|
}
|
|
ptr := reflect.New(elemVal.Type())
|
|
ptr.Elem().Set(elemVal)
|
|
return ptr.Interface()
|
|
}
|
|
|
|
func (type2 *safeMapType) UnsafeGetIndex(obj unsafe.Pointer, key unsafe.Pointer) unsafe.Pointer {
|
|
panic("does not support unsafe operation")
|
|
}
|
|
|
|
func (type2 *safeMapType) Iterate(obj interface{}) MapIterator {
|
|
m := reflect.ValueOf(obj).Elem()
|
|
return &safeMapIterator{
|
|
m: m,
|
|
keys: m.MapKeys(),
|
|
}
|
|
}
|
|
|
|
func (type2 *safeMapType) UnsafeIterate(obj unsafe.Pointer) MapIterator {
|
|
panic("does not support unsafe operation")
|
|
}
|
|
|
|
type safeMapIterator struct {
|
|
i int
|
|
m reflect.Value
|
|
keys []reflect.Value
|
|
}
|
|
|
|
func (iter *safeMapIterator) HasNext() bool {
|
|
return iter.i != len(iter.keys)
|
|
}
|
|
|
|
func (iter *safeMapIterator) Next() (interface{}, interface{}) {
|
|
key := iter.keys[iter.i]
|
|
elem := iter.m.MapIndex(key)
|
|
iter.i += 1
|
|
keyPtr := reflect.New(key.Type())
|
|
keyPtr.Elem().Set(key)
|
|
elemPtr := reflect.New(elem.Type())
|
|
elemPtr.Elem().Set(elem)
|
|
return keyPtr.Interface(), elemPtr.Interface()
|
|
}
|
|
|
|
func (iter *safeMapIterator) UnsafeNext() (unsafe.Pointer, unsafe.Pointer) {
|
|
panic("does not support unsafe operation")
|
|
}
|