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