github.com/codysnider/go-ethereum@v1.10.18-0.20220420071915-14f4ae99222a/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 /* 18 Package native is a collection of tracers written in go. 19 20 In order to add a native tracer and have it compiled into the binary, a new 21 file needs to be added to this folder, containing an implementation of the 22 `eth.tracers.Tracer` interface. 23 24 Aside from implementing the tracer, it also needs to register itself, using the 25 `register` method -- and this needs to be done in the package initialization. 26 27 Example: 28 29 ```golang 30 func init() { 31 register("noopTracerNative", newNoopTracer) 32 } 33 ``` 34 */ 35 package native 36 37 import ( 38 "errors" 39 40 "github.com/ethereum/go-ethereum/eth/tracers" 41 ) 42 43 // init registers itself this packages as a lookup for tracers. 44 func init() { 45 tracers.RegisterLookup(false, lookup) 46 } 47 48 // ctorFn is the constructor signature of a native tracer. 49 type ctorFn = func(*tracers.Context) tracers.Tracer 50 51 /* 52 ctors is a map of package-local tracer constructors. 53 54 We cannot be certain about the order of init-functions within a package, 55 The go spec (https://golang.org/ref/spec#Package_initialization) says 56 57 > To ensure reproducible initialization behavior, build systems 58 > are encouraged to present multiple files belonging to the same 59 > package in lexical file name order to a compiler. 60 61 Hence, we cannot make the map in init, but must make it upon first use. 62 */ 63 var ctors map[string]ctorFn 64 65 // register is used by native tracers to register their presence. 66 func register(name string, ctor ctorFn) { 67 if ctors == nil { 68 ctors = make(map[string]ctorFn) 69 } 70 ctors[name] = ctor 71 } 72 73 // lookup returns a tracer, if one can be matched to the given name. 74 func lookup(name string, ctx *tracers.Context) (tracers.Tracer, error) { 75 if ctors == nil { 76 ctors = make(map[string]ctorFn) 77 } 78 if ctor, ok := ctors[name]; ok { 79 return ctor(ctx), nil 80 } 81 return nil, errors.New("no tracer found") 82 }