github.com/electroneum/electroneum-sc@v0.0.0-20230105223411-3bc1d078281e/eth/tracers/native/tracer.go (about) 1 // Copyright 2021 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 // Package native is a collection of tracers written in go. 18 // 19 // In order to add a native tracer and have it compiled into the binary, a new 20 // file needs to be added to this folder, containing an implementation of the 21 // `eth.tracers.Tracer` interface. 22 // 23 // Aside from implementing the tracer, it also needs to register itself, using the 24 // `register` method -- and this needs to be done in the package initialization. 25 // 26 // Example: 27 // 28 // func init() { 29 // register("noopTracerNative", newNoopTracer) 30 // } 31 package native 32 33 import ( 34 "errors" 35 36 "github.com/electroneum/electroneum-sc/eth/tracers" 37 ) 38 39 // init registers itself this packages as a lookup for tracers. 40 func init() { 41 tracers.RegisterLookup(false, lookup) 42 } 43 44 // ctorFn is the constructor signature of a native tracer. 45 type ctorFn = func(*tracers.Context) tracers.Tracer 46 47 /* 48 ctors is a map of package-local tracer constructors. 49 50 We cannot be certain about the order of init-functions within a package, 51 The go spec (https://golang.org/ref/spec#Package_initialization) says 52 53 > To ensure reproducible initialization behavior, build systems 54 > are encouraged to present multiple files belonging to the same 55 > package in lexical file name order to a compiler. 56 57 Hence, we cannot make the map in init, but must make it upon first use. 58 */ 59 var ctors map[string]ctorFn 60 61 // register is used by native tracers to register their presence. 62 func register(name string, ctor ctorFn) { 63 if ctors == nil { 64 ctors = make(map[string]ctorFn) 65 } 66 ctors[name] = ctor 67 } 68 69 // lookup returns a tracer, if one can be matched to the given name. 70 func lookup(name string, ctx *tracers.Context) (tracers.Tracer, error) { 71 if ctors == nil { 72 ctors = make(map[string]ctorFn) 73 } 74 if ctor, ok := ctors[name]; ok { 75 return ctor(ctx), nil 76 } 77 return nil, errors.New("no tracer found") 78 }