35 lines
1.2 KiB
Go
35 lines
1.2 KiB
Go
package tracers
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/plugins"
|
|
"github.com/ethereum/go-ethereum/plugins/interfaces"
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
"github.com/ethereum/go-ethereum/log"
|
|
"reflect"
|
|
)
|
|
|
|
func GetPluginTracer(pl *plugins.PluginLoader, name string) (func(*state.StateDB)interfaces.TracerResult, bool) {
|
|
tracers := pl.Lookup("Tracers", func(item interface{}) bool {
|
|
_, ok := item.(*map[string]func(*state.StateDB)interfaces.TracerResult)
|
|
if !ok { log.Warn("Found tracer that did not match type", "tracer", reflect.TypeOf(item) ) }
|
|
return ok
|
|
})
|
|
for _, tmap := range tracers {
|
|
if tracerMap, ok := tmap.(*map[string]func(*state.StateDB)interfaces.TracerResult); ok {
|
|
if tracer, ok := (*tracerMap)[name]; ok {
|
|
return tracer, true
|
|
}
|
|
}
|
|
}
|
|
log.Info("Tracer not found", "name", name, "tracers", len(tracers))
|
|
return nil, false
|
|
}
|
|
|
|
func getPluginTracer(name string) (func(*state.StateDB)interfaces.TracerResult, bool) {
|
|
if plugins.DefaultPluginLoader == nil {
|
|
log.Warn("Attempting GetPluginTracer, but default PluginLoader has not been initialized")
|
|
return nil, false
|
|
}
|
|
return GetPluginTracer(plugins.DefaultPluginLoader, name)
|
|
}
|