| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | package core | 
					
						
							| 
									
										
										
										
											2014-07-24 12:04:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2014-08-11 16:23:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/state" | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/vm" | 
					
						
							| 
									
										
										
										
											2014-07-24 12:04:15 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type VMEnv struct { | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | 	state *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	block *types.Block | 
					
						
							|  |  |  | 	tx    *types.Transaction | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	depth int | 
					
						
							| 
									
										
										
										
											2014-07-24 12:04:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func NewEnv(state *state.StateDB, tx *types.Transaction, block *types.Block) *VMEnv { | 
					
						
							| 
									
										
										
										
											2014-07-24 12:04:15 +02:00
										 |  |  | 	return &VMEnv{ | 
					
						
							|  |  |  | 		state: state, | 
					
						
							|  |  |  | 		block: block, | 
					
						
							| 
									
										
										
										
											2014-07-24 12:10:18 +02:00
										 |  |  | 		tx:    tx, | 
					
						
							| 
									
										
										
										
											2014-07-24 12:04:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | func (self *VMEnv) Origin() []byte        { return self.tx.Sender() } | 
					
						
							|  |  |  | func (self *VMEnv) BlockNumber() *big.Int { return self.block.Number } | 
					
						
							|  |  |  | func (self *VMEnv) PrevHash() []byte      { return self.block.PrevHash } | 
					
						
							|  |  |  | func (self *VMEnv) Coinbase() []byte      { return self.block.Coinbase } | 
					
						
							|  |  |  | func (self *VMEnv) Time() int64           { return self.block.Time } | 
					
						
							|  |  |  | func (self *VMEnv) Difficulty() *big.Int  { return self.block.Difficulty } | 
					
						
							|  |  |  | func (self *VMEnv) BlockHash() []byte     { return self.block.Hash() } | 
					
						
							|  |  |  | func (self *VMEnv) Value() *big.Int       { return self.tx.Value } | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (self *VMEnv) State() *state.StateDB { return self.state } | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | func (self *VMEnv) GasLimit() *big.Int    { return self.block.GasLimit } | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | func (self *VMEnv) Depth() int            { return self.depth } | 
					
						
							|  |  |  | func (self *VMEnv) SetDepth(i int)        { self.depth = i } | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | func (self *VMEnv) AddLog(log state.Log) { | 
					
						
							| 
									
										
										
										
											2014-10-30 13:32:50 +01:00
										 |  |  | 	self.state.AddLog(log) | 
					
						
							| 
									
										
										
										
											2014-10-27 11:44:16 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-23 01:01:26 +02:00
										 |  |  | func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error { | 
					
						
							|  |  |  | 	return vm.Transfer(from, to, amount) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (self *VMEnv) vm(addr, data []byte, gas, price, value *big.Int) *Execution { | 
					
						
							|  |  |  | 	evm := vm.New(self, vm.DebugVmTy) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NewExecution(evm, addr, data, gas, price, value) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *VMEnv) Call(me vm.ClosureRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) { | 
					
						
							|  |  |  | 	exe := self.vm(addr, data, gas, price, value) | 
					
						
							|  |  |  | 	return exe.Call(addr, me) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | func (self *VMEnv) CallCode(me vm.ClosureRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) { | 
					
						
							|  |  |  | 	exe := self.vm(me.Address(), data, gas, price, value) | 
					
						
							|  |  |  | 	return exe.Call(addr, me) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *VMEnv) Create(me vm.ClosureRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error, vm.ClosureRef) { | 
					
						
							|  |  |  | 	exe := self.vm(addr, data, gas, price, value) | 
					
						
							|  |  |  | 	return exe.Create(me) | 
					
						
							|  |  |  | } |