| 
									
										
										
										
											2014-10-18 13:31:20 +02:00
										 |  |  | package vm | 
					
						
							| 
									
										
										
										
											2014-10-14 11:48:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2014-12-20 02:21:13 +01:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2014-10-14 11:48:52 +02:00
										 |  |  | 	"math/big" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/ethutil" | 
					
						
							| 
									
										
										
										
											2014-12-03 13:52:13 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/state" | 
					
						
							| 
									
										
										
										
											2014-10-14 11:48:52 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Environment interface { | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | 	State() *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-10-14 11:48:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Origin() []byte | 
					
						
							|  |  |  | 	BlockNumber() *big.Int | 
					
						
							| 
									
										
										
										
											2015-01-03 17:18:43 +01:00
										 |  |  | 	GetHash(n uint64) []byte | 
					
						
							| 
									
										
										
										
											2014-10-14 11:48:52 +02:00
										 |  |  | 	Coinbase() []byte | 
					
						
							|  |  |  | 	Time() int64 | 
					
						
							|  |  |  | 	Difficulty() *big.Int | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | 	GasLimit() *big.Int | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | 	Transfer(from, to Account, amount *big.Int) error | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | 	AddLog(state.Log) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-01 15:29:57 +01:00
										 |  |  | 	VmType() Type | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	Depth() int | 
					
						
							|  |  |  | 	SetDepth(i int) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-02 16:14:12 +01:00
										 |  |  | 	Call(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) | 
					
						
							|  |  |  | 	CallCode(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) | 
					
						
							|  |  |  | 	Create(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error, ContextRef) | 
					
						
							| 
									
										
										
										
											2014-10-14 11:48:52 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | type Account interface { | 
					
						
							|  |  |  | 	SubBalance(amount *big.Int) | 
					
						
							|  |  |  | 	AddBalance(amount *big.Int) | 
					
						
							|  |  |  | 	Balance() *big.Int | 
					
						
							| 
									
										
										
										
											2015-03-12 23:26:58 +01:00
										 |  |  | 	Address() []byte | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // generic transfer method | 
					
						
							|  |  |  | func Transfer(from, to Account, amount *big.Int) error { | 
					
						
							| 
									
										
										
										
											2015-03-12 23:26:58 +01:00
										 |  |  | 	//fmt.Printf(":::%x::: %v < %v\n", from.Address(), from.Balance(), amount) | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | 	if from.Balance().Cmp(amount) < 0 { | 
					
						
							|  |  |  | 		return errors.New("Insufficient balance in account") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	from.SubBalance(amount) | 
					
						
							|  |  |  | 	to.AddBalance(amount) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | type Log struct { | 
					
						
							|  |  |  | 	address []byte | 
					
						
							|  |  |  | 	topics  [][]byte | 
					
						
							|  |  |  | 	data    []byte | 
					
						
							| 
									
										
										
										
											2015-02-22 13:24:26 +01:00
										 |  |  | 	log     uint64 | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Log) Address() []byte { | 
					
						
							|  |  |  | 	return self.address | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Log) Topics() [][]byte { | 
					
						
							|  |  |  | 	return self.topics | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Log) Data() []byte { | 
					
						
							|  |  |  | 	return self.data | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-22 13:24:26 +01:00
										 |  |  | func (self *Log) Number() uint64 { | 
					
						
							|  |  |  | 	return self.log | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | func (self *Log) RlpData() interface{} { | 
					
						
							|  |  |  | 	return []interface{}{self.address, ethutil.ByteSliceToInterface(self.topics), self.data} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-20 02:21:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (self *Log) String() string { | 
					
						
							|  |  |  | 	return fmt.Sprintf("[A=%x T=%x D=%x]", self.address, self.topics, self.data) | 
					
						
							|  |  |  | } |