xeth.go 7.0 KB
Newer Older
O
obscuren 已提交
1 2 3 4 5
package xeth

/*
 * eXtended ETHereum
 */
O
obscuren 已提交
6

O
obscuren 已提交
7 8 9 10 11 12 13 14
import (
	"bytes"
	"encoding/json"

	"github.com/ethereum/go-ethereum/core"
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/crypto"
	"github.com/ethereum/go-ethereum/ethutil"
15
	"github.com/ethereum/go-ethereum/event"
O
obscuren 已提交
16
	"github.com/ethereum/go-ethereum/logger"
17
	"github.com/ethereum/go-ethereum/miner"
18
	"github.com/ethereum/go-ethereum/p2p"
O
obscuren 已提交
19
	"github.com/ethereum/go-ethereum/state"
20
	"github.com/ethereum/go-ethereum/whisper"
O
obscuren 已提交
21
)
O
obscuren 已提交
22

O
obscuren 已提交
23
var pipelogger = logger.NewLogger("XETH")
O
obscuren 已提交
24 25 26 27 28

// to resolve the import cycle
type Backend interface {
	BlockProcessor() *core.BlockProcessor
	ChainManager() *core.ChainManager
29 30
	TxPool() *core.TxPool
	PeerCount() int
O
obscuren 已提交
31
	IsListening() bool
32 33
	Peers() []*p2p.Peer
	KeyManager() *crypto.KeyManager
O
obscuren 已提交
34
	Db() ethutil.Database
35
	EventMux() *event.TypeMux
36
	Whisper() *whisper.Whisper
37
	Miner() *miner.Miner
O
obscuren 已提交
38 39
}

O
obscuren 已提交
40
type XEth struct {
O
obscuren 已提交
41 42 43
	eth            Backend
	blockProcessor *core.BlockProcessor
	chainManager   *core.ChainManager
44
	state          *State
45
	whisper        *Whisper
46
	miner          *miner.Miner
O
obscuren 已提交
47 48
}

O
obscuren 已提交
49 50
func New(eth Backend) *XEth {
	xeth := &XEth{
O
obscuren 已提交
51 52 53
		eth:            eth,
		blockProcessor: eth.BlockProcessor(),
		chainManager:   eth.ChainManager(),
54
		whisper:        NewWhisper(eth.Whisper()),
55
		miner:          eth.Miner(),
O
obscuren 已提交
56
	}
57
	xeth.state = NewState(xeth)
O
obscuren 已提交
58 59 60 61

	return xeth
}

62 63 64 65
func (self *XEth) Backend() Backend    { return self.eth }
func (self *XEth) State() *State       { return self.state }
func (self *XEth) Whisper() *Whisper   { return self.whisper }
func (self *XEth) Miner() *miner.Miner { return self.miner }
O
obscuren 已提交
66

O
obscuren 已提交
67
func (self *XEth) BlockByHash(strHash string) *Block {
O
obscuren 已提交
68 69 70
	hash := fromHex(strHash)
	block := self.chainManager.GetBlock(hash)

O
obscuren 已提交
71
	return NewBlock(block)
O
obscuren 已提交
72 73
}

O
obscuren 已提交
74
func (self *XEth) BlockByNumber(num int32) *Block {
O
obscuren 已提交
75
	if num == -1 {
O
obscuren 已提交
76
		return NewBlock(self.chainManager.CurrentBlock())
O
obscuren 已提交
77 78
	}

O
obscuren 已提交
79
	return NewBlock(self.chainManager.GetBlockByNumber(uint64(num)))
O
obscuren 已提交
80 81
}

O
obscuren 已提交
82
func (self *XEth) Block(v interface{}) *Block {
O
obscuren 已提交
83 84 85 86 87 88 89 90 91 92 93
	if n, ok := v.(int32); ok {
		return self.BlockByNumber(n)
	} else if str, ok := v.(string); ok {
		return self.BlockByHash(str)
	} else if f, ok := v.(float64); ok { // Don't ask ...
		return self.BlockByNumber(int32(f))
	}

	return nil
}

O
obscuren 已提交
94
func (self *XEth) Accounts() []string {
O
obscuren 已提交
95 96 97
	return []string{toHex(self.eth.KeyManager().Address())}
}

O
obscuren 已提交
98
func (self *XEth) PeerCount() int {
O
obscuren 已提交
99 100 101
	return self.eth.PeerCount()
}

O
obscuren 已提交
102
func (self *XEth) IsMining() bool {
103
	return self.miner.Mining()
O
obscuren 已提交
104 105
}

O
obscuren 已提交
106
func (self *XEth) IsListening() bool {
O
obscuren 已提交
107 108 109
	return self.eth.IsListening()
}

O
obscuren 已提交
110
func (self *XEth) Coinbase() string {
O
obscuren 已提交
111 112 113
	return toHex(self.eth.KeyManager().Address())
}

O
obscuren 已提交
114
func (self *XEth) NumberToHuman(balance string) string {
O
obscuren 已提交
115 116 117 118 119
	b := ethutil.Big(balance)

	return ethutil.CurrencyToString(b)
}

O
obscuren 已提交
120
func (self *XEth) StorageAt(addr, storageAddr string) string {
O
obscuren 已提交
121 122 123 124 125
	storage := self.State().SafeGet(addr).StorageString(storageAddr)

	return toHex(storage.Bytes())
}

O
obscuren 已提交
126
func (self *XEth) BalanceAt(addr string) string {
O
obscuren 已提交
127 128 129
	return self.State().SafeGet(addr).Balance().String()
}

O
obscuren 已提交
130
func (self *XEth) TxCountAt(address string) int {
O
obscuren 已提交
131 132 133
	return int(self.State().SafeGet(address).Nonce)
}

O
obscuren 已提交
134
func (self *XEth) CodeAt(address string) string {
O
obscuren 已提交
135 136 137
	return toHex(self.State().SafeGet(address).Code)
}

O
obscuren 已提交
138
func (self *XEth) IsContract(address string) bool {
O
obscuren 已提交
139 140 141
	return len(self.State().SafeGet(address).Code) > 0
}

O
obscuren 已提交
142
func (self *XEth) SecretToAddress(key string) string {
O
obscuren 已提交
143 144 145 146 147 148 149 150
	pair, err := crypto.NewKeyPairFromSec(fromHex(key))
	if err != nil {
		return ""
	}

	return toHex(pair.Address())
}

O
obscuren 已提交
151
func (self *XEth) Execute(addr, value, gas, price, data string) (string, error) {
O
obscuren 已提交
152 153 154 155 156 157 158 159
	return "", nil
}

type KeyVal struct {
	Key   string `json:"key"`
	Value string `json:"value"`
}

O
obscuren 已提交
160
func (self *XEth) EachStorage(addr string) string {
O
obscuren 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
	var values []KeyVal
	object := self.State().SafeGet(addr)
	it := object.Trie().Iterator()
	for it.Next() {
		values = append(values, KeyVal{toHex(it.Key), toHex(it.Value)})
	}

	valuesJson, err := json.Marshal(values)
	if err != nil {
		return ""
	}

	return string(valuesJson)
}

O
obscuren 已提交
176
func (self *XEth) ToAscii(str string) string {
O
obscuren 已提交
177 178 179 180 181
	padded := ethutil.RightPadBytes([]byte(str), 32)

	return "0x" + toHex(padded)
}

O
obscuren 已提交
182
func (self *XEth) FromAscii(str string) string {
O
obscuren 已提交
183 184 185 186 187 188 189
	if ethutil.IsHex(str) {
		str = str[2:]
	}

	return string(bytes.Trim(fromHex(str), "\x00"))
}

O
obscuren 已提交
190
func (self *XEth) FromNumber(str string) string {
O
obscuren 已提交
191 192 193 194 195 196 197
	if ethutil.IsHex(str) {
		str = str[2:]
	}

	return ethutil.BigD(fromHex(str)).String()
}

O
obscuren 已提交
198
func (self *XEth) PushTx(encodedTx string) (string, error) {
O
obscuren 已提交
199 200 201 202 203 204 205 206 207 208 209 210
	tx := types.NewTransactionFromBytes(fromHex(encodedTx))
	err := self.eth.TxPool().Add(tx)
	if err != nil {
		return "", err
	}

	if tx.To() == nil {
		addr := core.AddressFromMessage(tx)
		return toHex(addr), nil
	}
	return toHex(tx.Hash()), nil
}
211

212 213 214 215 216 217 218 219 220
func (self *XEth) Call(toStr, valueStr, gasStr, gasPriceStr, dataStr string) (string, error) {
	if len(gasStr) == 0 {
		gasStr = "100000"
	}
	if len(gasPriceStr) == 0 {
		gasPriceStr = "1"
	}

	var (
221 222 223 224 225 226 227 228 229
		statedb = self.chainManager.TransState()
		key     = self.eth.KeyManager().KeyPair()
		from    = state.NewStateObject(key.Address(), self.eth.Db())
		block   = self.chainManager.CurrentBlock()
		to      = statedb.GetOrNewStateObject(fromHex(toStr))
		data    = fromHex(dataStr)
		gas     = ethutil.Big(gasStr)
		price   = ethutil.Big(gasPriceStr)
		value   = ethutil.Big(valueStr)
230 231
	)

232 233 234 235 236
	msg := types.NewTransactionMessage(fromHex(toStr), value, gas, price, data)
	msg.Sign(key.PrivateKey)
	vmenv := core.NewEnv(statedb, self.chainManager, msg, block)

	res, err := vmenv.Call(from, to.Address(), data, gas, price, value)
237 238 239 240 241 242 243
	if err != nil {
		return "", err
	}

	return toHex(res), nil
}

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
func (self *XEth) Transact(toStr, valueStr, gasStr, gasPriceStr, codeStr string) (string, error) {

	var (
		to               []byte
		value            = ethutil.NewValue(valueStr)
		gas              = ethutil.NewValue(gasStr)
		price            = ethutil.NewValue(gasPriceStr)
		data             []byte
		key              = self.eth.KeyManager().KeyPair()
		contractCreation bool
	)

	data = fromHex(codeStr)
	to = fromHex(toStr)
	if len(to) == 0 {
		contractCreation = true
	}

	var tx *types.Transaction
	if contractCreation {
		tx = types.NewContractCreationTx(value.BigInt(), gas.BigInt(), price.BigInt(), data)
	} else {
		tx = types.NewTransactionMessage(to, value.BigInt(), gas.BigInt(), price.BigInt(), data)
	}

	state := self.chainManager.TransState()
	nonce := state.GetNonce(key.Address())

	tx.SetNonce(nonce)
	tx.Sign(key.PrivateKey)

	// Do some pre processing for our "pre" events  and hooks
	block := self.chainManager.NewBlock(key.Address())
	coinbase := state.GetOrNewStateObject(key.Address())
	coinbase.SetGasPool(block.GasLimit())
	self.blockProcessor.ApplyTransactions(coinbase, state, block, types.Transactions{tx}, true)

	err := self.eth.TxPool().Add(tx)
	if err != nil {
		return "", err
	}
	state.SetNonce(key.Address(), nonce+1)

	if contractCreation {
		addr := core.AddressFromMessage(tx)
		pipelogger.Infof("Contract addr %x\n", addr)
	}

	if types.IsContractAddr(to) {
		return toHex(core.AddressFromMessage(tx)), nil
	}

	return toHex(tx.Hash()), nil
}