forked from mirror/go-ethereum
commit
5b34fa538e
@ -0,0 +1,143 @@ |
||||
package vm |
||||
|
||||
import "math/big" |
||||
|
||||
type jumpPtr struct { |
||||
fn instrFn |
||||
valid bool |
||||
} |
||||
|
||||
var jumpTable [256]jumpPtr |
||||
|
||||
func init() { |
||||
jumpTable[ADD] = jumpPtr{opAdd, true} |
||||
jumpTable[SUB] = jumpPtr{opSub, true} |
||||
jumpTable[MUL] = jumpPtr{opMul, true} |
||||
jumpTable[DIV] = jumpPtr{opDiv, true} |
||||
jumpTable[SDIV] = jumpPtr{opSdiv, true} |
||||
jumpTable[MOD] = jumpPtr{opMod, true} |
||||
jumpTable[SMOD] = jumpPtr{opSmod, true} |
||||
jumpTable[EXP] = jumpPtr{opExp, true} |
||||
jumpTable[SIGNEXTEND] = jumpPtr{opSignExtend, true} |
||||
jumpTable[NOT] = jumpPtr{opNot, true} |
||||
jumpTable[LT] = jumpPtr{opLt, true} |
||||
jumpTable[GT] = jumpPtr{opGt, true} |
||||
jumpTable[SLT] = jumpPtr{opSlt, true} |
||||
jumpTable[SGT] = jumpPtr{opSgt, true} |
||||
jumpTable[EQ] = jumpPtr{opEq, true} |
||||
jumpTable[ISZERO] = jumpPtr{opIszero, true} |
||||
jumpTable[AND] = jumpPtr{opAnd, true} |
||||
jumpTable[OR] = jumpPtr{opOr, true} |
||||
jumpTable[XOR] = jumpPtr{opXor, true} |
||||
jumpTable[BYTE] = jumpPtr{opByte, true} |
||||
jumpTable[ADDMOD] = jumpPtr{opAddmod, true} |
||||
jumpTable[MULMOD] = jumpPtr{opMulmod, true} |
||||
jumpTable[SHA3] = jumpPtr{opSha3, true} |
||||
jumpTable[ADDRESS] = jumpPtr{opAddress, true} |
||||
jumpTable[BALANCE] = jumpPtr{opBalance, true} |
||||
jumpTable[ORIGIN] = jumpPtr{opOrigin, true} |
||||
jumpTable[CALLER] = jumpPtr{opCaller, true} |
||||
jumpTable[CALLVALUE] = jumpPtr{opCallValue, true} |
||||
jumpTable[CALLDATALOAD] = jumpPtr{opCalldataLoad, true} |
||||
jumpTable[CALLDATASIZE] = jumpPtr{opCalldataSize, true} |
||||
jumpTable[CALLDATACOPY] = jumpPtr{opCalldataCopy, true} |
||||
jumpTable[CODESIZE] = jumpPtr{opCodeSize, true} |
||||
jumpTable[EXTCODESIZE] = jumpPtr{opExtCodeSize, true} |
||||
jumpTable[CODECOPY] = jumpPtr{opCodeCopy, true} |
||||
jumpTable[EXTCODECOPY] = jumpPtr{opExtCodeCopy, true} |
||||
jumpTable[GASPRICE] = jumpPtr{opGasprice, true} |
||||
jumpTable[BLOCKHASH] = jumpPtr{opBlockhash, true} |
||||
jumpTable[COINBASE] = jumpPtr{opCoinbase, true} |
||||
jumpTable[TIMESTAMP] = jumpPtr{opTimestamp, true} |
||||
jumpTable[NUMBER] = jumpPtr{opNumber, true} |
||||
jumpTable[DIFFICULTY] = jumpPtr{opDifficulty, true} |
||||
jumpTable[GASLIMIT] = jumpPtr{opGasLimit, true} |
||||
jumpTable[POP] = jumpPtr{opPop, true} |
||||
jumpTable[MLOAD] = jumpPtr{opMload, true} |
||||
jumpTable[MSTORE] = jumpPtr{opMstore, true} |
||||
jumpTable[MSTORE8] = jumpPtr{opMstore8, true} |
||||
jumpTable[SLOAD] = jumpPtr{opSload, true} |
||||
jumpTable[SSTORE] = jumpPtr{opSstore, true} |
||||
jumpTable[JUMPDEST] = jumpPtr{opJumpdest, true} |
||||
jumpTable[PC] = jumpPtr{nil, true} |
||||
jumpTable[MSIZE] = jumpPtr{opMsize, true} |
||||
jumpTable[GAS] = jumpPtr{opGas, true} |
||||
jumpTable[CREATE] = jumpPtr{opCreate, true} |
||||
jumpTable[CALL] = jumpPtr{opCall, true} |
||||
jumpTable[CALLCODE] = jumpPtr{opCallCode, true} |
||||
jumpTable[LOG0] = jumpPtr{makeLog(0), true} |
||||
jumpTable[LOG1] = jumpPtr{makeLog(1), true} |
||||
jumpTable[LOG2] = jumpPtr{makeLog(2), true} |
||||
jumpTable[LOG3] = jumpPtr{makeLog(3), true} |
||||
jumpTable[LOG4] = jumpPtr{makeLog(4), true} |
||||
jumpTable[SWAP1] = jumpPtr{makeSwap(1), true} |
||||
jumpTable[SWAP2] = jumpPtr{makeSwap(2), true} |
||||
jumpTable[SWAP3] = jumpPtr{makeSwap(3), true} |
||||
jumpTable[SWAP4] = jumpPtr{makeSwap(4), true} |
||||
jumpTable[SWAP5] = jumpPtr{makeSwap(5), true} |
||||
jumpTable[SWAP6] = jumpPtr{makeSwap(6), true} |
||||
jumpTable[SWAP7] = jumpPtr{makeSwap(7), true} |
||||
jumpTable[SWAP8] = jumpPtr{makeSwap(8), true} |
||||
jumpTable[SWAP9] = jumpPtr{makeSwap(9), true} |
||||
jumpTable[SWAP10] = jumpPtr{makeSwap(10), true} |
||||
jumpTable[SWAP11] = jumpPtr{makeSwap(11), true} |
||||
jumpTable[SWAP12] = jumpPtr{makeSwap(12), true} |
||||
jumpTable[SWAP13] = jumpPtr{makeSwap(13), true} |
||||
jumpTable[SWAP14] = jumpPtr{makeSwap(14), true} |
||||
jumpTable[SWAP15] = jumpPtr{makeSwap(15), true} |
||||
jumpTable[SWAP16] = jumpPtr{makeSwap(16), true} |
||||
jumpTable[PUSH1] = jumpPtr{makePush(1, big.NewInt(1)), true} |
||||
jumpTable[PUSH2] = jumpPtr{makePush(2, big.NewInt(2)), true} |
||||
jumpTable[PUSH3] = jumpPtr{makePush(3, big.NewInt(3)), true} |
||||
jumpTable[PUSH4] = jumpPtr{makePush(4, big.NewInt(4)), true} |
||||
jumpTable[PUSH5] = jumpPtr{makePush(5, big.NewInt(5)), true} |
||||
jumpTable[PUSH6] = jumpPtr{makePush(6, big.NewInt(6)), true} |
||||
jumpTable[PUSH7] = jumpPtr{makePush(7, big.NewInt(7)), true} |
||||
jumpTable[PUSH8] = jumpPtr{makePush(8, big.NewInt(8)), true} |
||||
jumpTable[PUSH9] = jumpPtr{makePush(9, big.NewInt(9)), true} |
||||
jumpTable[PUSH10] = jumpPtr{makePush(10, big.NewInt(10)), true} |
||||
jumpTable[PUSH11] = jumpPtr{makePush(11, big.NewInt(11)), true} |
||||
jumpTable[PUSH12] = jumpPtr{makePush(12, big.NewInt(12)), true} |
||||
jumpTable[PUSH13] = jumpPtr{makePush(13, big.NewInt(13)), true} |
||||
jumpTable[PUSH14] = jumpPtr{makePush(14, big.NewInt(14)), true} |
||||
jumpTable[PUSH15] = jumpPtr{makePush(15, big.NewInt(15)), true} |
||||
jumpTable[PUSH16] = jumpPtr{makePush(16, big.NewInt(16)), true} |
||||
jumpTable[PUSH17] = jumpPtr{makePush(17, big.NewInt(17)), true} |
||||
jumpTable[PUSH18] = jumpPtr{makePush(18, big.NewInt(18)), true} |
||||
jumpTable[PUSH19] = jumpPtr{makePush(19, big.NewInt(19)), true} |
||||
jumpTable[PUSH20] = jumpPtr{makePush(20, big.NewInt(20)), true} |
||||
jumpTable[PUSH21] = jumpPtr{makePush(21, big.NewInt(21)), true} |
||||
jumpTable[PUSH22] = jumpPtr{makePush(22, big.NewInt(22)), true} |
||||
jumpTable[PUSH23] = jumpPtr{makePush(23, big.NewInt(23)), true} |
||||
jumpTable[PUSH24] = jumpPtr{makePush(24, big.NewInt(24)), true} |
||||
jumpTable[PUSH25] = jumpPtr{makePush(25, big.NewInt(25)), true} |
||||
jumpTable[PUSH26] = jumpPtr{makePush(26, big.NewInt(26)), true} |
||||
jumpTable[PUSH27] = jumpPtr{makePush(27, big.NewInt(27)), true} |
||||
jumpTable[PUSH28] = jumpPtr{makePush(28, big.NewInt(28)), true} |
||||
jumpTable[PUSH29] = jumpPtr{makePush(29, big.NewInt(29)), true} |
||||
jumpTable[PUSH30] = jumpPtr{makePush(30, big.NewInt(30)), true} |
||||
jumpTable[PUSH31] = jumpPtr{makePush(31, big.NewInt(31)), true} |
||||
jumpTable[PUSH32] = jumpPtr{makePush(32, big.NewInt(32)), true} |
||||
jumpTable[DUP1] = jumpPtr{makeDup(1), true} |
||||
jumpTable[DUP2] = jumpPtr{makeDup(2), true} |
||||
jumpTable[DUP3] = jumpPtr{makeDup(3), true} |
||||
jumpTable[DUP4] = jumpPtr{makeDup(4), true} |
||||
jumpTable[DUP5] = jumpPtr{makeDup(5), true} |
||||
jumpTable[DUP6] = jumpPtr{makeDup(6), true} |
||||
jumpTable[DUP7] = jumpPtr{makeDup(7), true} |
||||
jumpTable[DUP8] = jumpPtr{makeDup(8), true} |
||||
jumpTable[DUP9] = jumpPtr{makeDup(9), true} |
||||
jumpTable[DUP10] = jumpPtr{makeDup(10), true} |
||||
jumpTable[DUP11] = jumpPtr{makeDup(11), true} |
||||
jumpTable[DUP12] = jumpPtr{makeDup(12), true} |
||||
jumpTable[DUP13] = jumpPtr{makeDup(13), true} |
||||
jumpTable[DUP14] = jumpPtr{makeDup(14), true} |
||||
jumpTable[DUP15] = jumpPtr{makeDup(15), true} |
||||
jumpTable[DUP16] = jumpPtr{makeDup(16), true} |
||||
|
||||
jumpTable[RETURN] = jumpPtr{nil, true} |
||||
jumpTable[SUICIDE] = jumpPtr{nil, true} |
||||
jumpTable[JUMP] = jumpPtr{nil, true} |
||||
jumpTable[JUMPI] = jumpPtr{nil, true} |
||||
jumpTable[STOP] = jumpPtr{nil, true} |
||||
} |
@ -0,0 +1,133 @@ |
||||
// Copyright 2014 The go-ethereum Authors
|
||||
// This file is part of the go-ethereum library.
|
||||
//
|
||||
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Lesser General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// The go-ethereum library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// package filters implements an ethereum filtering system for block,
|
||||
// transactions and log events.
|
||||
package filters |
||||
|
||||
import ( |
||||
"sync" |
||||
|
||||
"github.com/ethereum/go-ethereum/core" |
||||
"github.com/ethereum/go-ethereum/core/vm" |
||||
"github.com/ethereum/go-ethereum/event" |
||||
) |
||||
|
||||
// FilterSystem manages filters that filter specific events such as
|
||||
// block, transaction and log events. The Filtering system can be used to listen
|
||||
// for specific LOG events fired by the EVM (Ethereum Virtual Machine).
|
||||
type FilterSystem struct { |
||||
eventMux *event.TypeMux |
||||
|
||||
filterMu sync.RWMutex |
||||
filterId int |
||||
filters map[int]*Filter |
||||
|
||||
quit chan struct{} |
||||
} |
||||
|
||||
// NewFilterSystem returns a newly allocated filter manager
|
||||
func NewFilterSystem(mux *event.TypeMux) *FilterSystem { |
||||
fs := &FilterSystem{ |
||||
eventMux: mux, |
||||
filters: make(map[int]*Filter), |
||||
} |
||||
go fs.filterLoop() |
||||
return fs |
||||
} |
||||
|
||||
// Stop quits the filter loop required for polling events
|
||||
func (fs *FilterSystem) Stop() { |
||||
close(fs.quit) |
||||
} |
||||
|
||||
// Add adds a filter to the filter manager
|
||||
func (fs *FilterSystem) Add(filter *Filter) (id int) { |
||||
fs.filterMu.Lock() |
||||
defer fs.filterMu.Unlock() |
||||
id = fs.filterId |
||||
fs.filters[id] = filter |
||||
fs.filterId++ |
||||
|
||||
return id |
||||
} |
||||
|
||||
// Remove removes a filter by filter id
|
||||
func (fs *FilterSystem) Remove(id int) { |
||||
fs.filterMu.Lock() |
||||
defer fs.filterMu.Unlock() |
||||
if _, ok := fs.filters[id]; ok { |
||||
delete(fs.filters, id) |
||||
} |
||||
} |
||||
|
||||
// Get retrieves a filter installed using Add The filter may not be modified.
|
||||
func (fs *FilterSystem) Get(id int) *Filter { |
||||
fs.filterMu.RLock() |
||||
defer fs.filterMu.RUnlock() |
||||
return fs.filters[id] |
||||
} |
||||
|
||||
// filterLoop waits for specific events from ethereum and fires their handlers
|
||||
// when the filter matches the requirements.
|
||||
func (fs *FilterSystem) filterLoop() { |
||||
// Subscribe to events
|
||||
events := fs.eventMux.Subscribe( |
||||
//core.PendingBlockEvent{},
|
||||
core.ChainEvent{}, |
||||
core.TxPreEvent{}, |
||||
vm.Logs(nil)) |
||||
|
||||
out: |
||||
for { |
||||
select { |
||||
case <-fs.quit: |
||||
break out |
||||
case event := <-events.Chan(): |
||||
switch event := event.(type) { |
||||
case core.ChainEvent: |
||||
fs.filterMu.RLock() |
||||
for _, filter := range fs.filters { |
||||
if filter.BlockCallback != nil { |
||||
filter.BlockCallback(event.Block, event.Logs) |
||||
} |
||||
} |
||||
fs.filterMu.RUnlock() |
||||
|
||||
case core.TxPreEvent: |
||||
fs.filterMu.RLock() |
||||
for _, filter := range fs.filters { |
||||
if filter.TransactionCallback != nil { |
||||
filter.TransactionCallback(event.Tx) |
||||
} |
||||
} |
||||
fs.filterMu.RUnlock() |
||||
|
||||
case vm.Logs: |
||||
fs.filterMu.RLock() |
||||
for _, filter := range fs.filters { |
||||
if filter.LogsCallback != nil { |
||||
msgs := filter.FilterLogs(event) |
||||
if len(msgs) > 0 { |
||||
filter.LogsCallback(msgs) |
||||
} |
||||
} |
||||
} |
||||
fs.filterMu.RUnlock() |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,127 +0,0 @@ |
||||
// Copyright 2014 The go-ethereum Authors
|
||||
// This file is part of the go-ethereum library.
|
||||
//
|
||||
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Lesser General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// The go-ethereum library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
package filter |
||||
|
||||
// TODO make use of the generic filtering system
|
||||
|
||||
import ( |
||||
"sync" |
||||
|
||||
"github.com/ethereum/go-ethereum/core" |
||||
"github.com/ethereum/go-ethereum/core/state" |
||||
"github.com/ethereum/go-ethereum/event" |
||||
) |
||||
|
||||
type FilterManager struct { |
||||
eventMux *event.TypeMux |
||||
|
||||
filterMu sync.RWMutex |
||||
filterId int |
||||
filters map[int]*core.Filter |
||||
|
||||
quit chan struct{} |
||||
} |
||||
|
||||
func NewFilterManager(mux *event.TypeMux) *FilterManager { |
||||
return &FilterManager{ |
||||
eventMux: mux, |
||||
filters: make(map[int]*core.Filter), |
||||
} |
||||
} |
||||
|
||||
func (self *FilterManager) Start() { |
||||
go self.filterLoop() |
||||
} |
||||
|
||||
func (self *FilterManager) Stop() { |
||||
close(self.quit) |
||||
} |
||||
|
||||
func (self *FilterManager) InstallFilter(filter *core.Filter) (id int) { |
||||
self.filterMu.Lock() |
||||
defer self.filterMu.Unlock() |
||||
id = self.filterId |
||||
self.filters[id] = filter |
||||
self.filterId++ |
||||
|
||||
return id |
||||
} |
||||
|
||||
func (self *FilterManager) UninstallFilter(id int) { |
||||
self.filterMu.Lock() |
||||
defer self.filterMu.Unlock() |
||||
if _, ok := self.filters[id]; ok { |
||||
delete(self.filters, id) |
||||
} |
||||
} |
||||
|
||||
// GetFilter retrieves a filter installed using InstallFilter.
|
||||
// The filter may not be modified.
|
||||
func (self *FilterManager) GetFilter(id int) *core.Filter { |
||||
self.filterMu.RLock() |
||||
defer self.filterMu.RUnlock() |
||||
return self.filters[id] |
||||
} |
||||
|
||||
func (self *FilterManager) filterLoop() { |
||||
// Subscribe to events
|
||||
events := self.eventMux.Subscribe( |
||||
//core.PendingBlockEvent{},
|
||||
core.ChainEvent{}, |
||||
core.TxPreEvent{}, |
||||
state.Logs(nil)) |
||||
|
||||
out: |
||||
for { |
||||
select { |
||||
case <-self.quit: |
||||
break out |
||||
case event := <-events.Chan(): |
||||
switch event := event.(type) { |
||||
case core.ChainEvent: |
||||
self.filterMu.RLock() |
||||
for _, filter := range self.filters { |
||||
if filter.BlockCallback != nil { |
||||
filter.BlockCallback(event.Block, event.Logs) |
||||
} |
||||
} |
||||
self.filterMu.RUnlock() |
||||
|
||||
case core.TxPreEvent: |
||||
self.filterMu.RLock() |
||||
for _, filter := range self.filters { |
||||
if filter.TransactionCallback != nil { |
||||
filter.TransactionCallback(event.Tx) |
||||
} |
||||
} |
||||
self.filterMu.RUnlock() |
||||
|
||||
case state.Logs: |
||||
self.filterMu.RLock() |
||||
for _, filter := range self.filters { |
||||
if filter.LogsCallback != nil { |
||||
msgs := filter.FilterLogs(event) |
||||
if len(msgs) > 0 { |
||||
filter.LogsCallback(msgs) |
||||
} |
||||
} |
||||
} |
||||
self.filterMu.RUnlock() |
||||
} |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue