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

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

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

	"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"
16
	"github.com/ethereum/go-ethereum/event"
O
obscuren 已提交
17
	"github.com/ethereum/go-ethereum/logger"
18
	"github.com/ethereum/go-ethereum/miner"
19
	"github.com/ethereum/go-ethereum/p2p"
O
wip  
obscuren 已提交
20
	"github.com/ethereum/go-ethereum/state"
21
	"github.com/ethereum/go-ethereum/whisper"
O
obscuren 已提交
22
)
O
obscuren 已提交
23

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

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

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

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

	return xeth
}

O
wip  
obscuren 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
func (self *XEth) Backend() Backend { return self.eth }
func (self *XEth) UseState(statedb *state.StateDB) *XEth {
	xeth := &XEth{
		eth:            self.eth,
		blockProcessor: self.blockProcessor,
		chainManager:   self.chainManager,
		whisper:        self.whisper,
		miner:          self.miner,
	}

	xeth.state = NewState(xeth, statedb)
	return xeth
}
func (self *XEth) State() *State { return self.state }

79 80
func (self *XEth) Whisper() *Whisper   { return self.whisper }
func (self *XEth) Miner() *miner.Miner { return self.miner }
O
obscuren 已提交
81

O
obscuren 已提交
82
func (self *XEth) BlockByHash(strHash string) *Block {
O
obscuren 已提交
83 84 85
	hash := fromHex(strHash)
	block := self.chainManager.GetBlock(hash)

O
obscuren 已提交
86
	return NewBlock(block)
O
obscuren 已提交
87 88
}

O
obscuren 已提交
89
func (self *XEth) BlockByNumber(num int32) *Block {
O
obscuren 已提交
90
	if num == -1 {
O
obscuren 已提交
91
		return NewBlock(self.chainManager.CurrentBlock())
O
obscuren 已提交
92 93
	}

O
obscuren 已提交
94
	return NewBlock(self.chainManager.GetBlockByNumber(uint64(num)))
O
obscuren 已提交
95 96
}

O
obscuren 已提交
97
func (self *XEth) Block(v interface{}) *Block {
O
obscuren 已提交
98 99 100 101 102 103 104 105 106 107 108
	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 已提交
109
func (self *XEth) Accounts() []string {
O
obscuren 已提交
110 111 112
	return []string{toHex(self.eth.KeyManager().Address())}
}

O
obscuren 已提交
113
func (self *XEth) PeerCount() int {
O
obscuren 已提交
114 115 116
	return self.eth.PeerCount()
}

O
obscuren 已提交
117
func (self *XEth) IsMining() bool {
118
	return self.miner.Mining()
O
obscuren 已提交
119 120
}

T
Taylor Gerring 已提交
121 122 123 124 125 126 127 128 129 130 131
func (self *XEth) SetMining(shouldmine bool) bool {
	ismining := self.miner.Mining()
	if shouldmine && !ismining {
		self.miner.Start()
	}
	if ismining && !shouldmine {
		self.miner.Stop()
	}
	return self.miner.Mining()
}

O
obscuren 已提交
132
func (self *XEth) IsListening() bool {
O
obscuren 已提交
133 134 135
	return self.eth.IsListening()
}

O
obscuren 已提交
136
func (self *XEth) Coinbase() string {
O
obscuren 已提交
137 138 139
	return toHex(self.eth.KeyManager().Address())
}

O
obscuren 已提交
140
func (self *XEth) NumberToHuman(balance string) string {
O
obscuren 已提交
141 142 143 144 145
	b := ethutil.Big(balance)

	return ethutil.CurrencyToString(b)
}

O
obscuren 已提交
146
func (self *XEth) StorageAt(addr, storageAddr string) string {
O
obscuren 已提交
147 148 149 150 151
	storage := self.State().SafeGet(addr).StorageString(storageAddr)

	return toHex(storage.Bytes())
}

O
obscuren 已提交
152
func (self *XEth) BalanceAt(addr string) string {
O
obscuren 已提交
153 154 155
	return self.State().SafeGet(addr).Balance().String()
}

O
obscuren 已提交
156
func (self *XEth) TxCountAt(address string) int {
157
	return int(self.State().SafeGet(address).Nonce())
O
obscuren 已提交
158 159
}

O
obscuren 已提交
160
func (self *XEth) CodeAt(address string) string {
161
	return toHex(self.State().SafeGet(address).Code())
O
obscuren 已提交
162 163
}

O
obscuren 已提交
164
func (self *XEth) IsContract(address string) bool {
165
	return len(self.State().SafeGet(address).Code()) > 0
O
obscuren 已提交
166 167
}

O
obscuren 已提交
168
func (self *XEth) SecretToAddress(key string) string {
O
obscuren 已提交
169 170 171 172 173 174 175 176
	pair, err := crypto.NewKeyPairFromSec(fromHex(key))
	if err != nil {
		return ""
	}

	return toHex(pair.Address())
}

O
obscuren 已提交
177
func (self *XEth) Execute(addr, value, gas, price, data string) (string, error) {
O
obscuren 已提交
178 179 180 181 182 183 184 185
	return "", nil
}

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

O
obscuren 已提交
186
func (self *XEth) EachStorage(addr string) string {
O
obscuren 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	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 已提交
202
func (self *XEth) ToAscii(str string) string {
O
obscuren 已提交
203 204 205 206 207
	padded := ethutil.RightPadBytes([]byte(str), 32)

	return "0x" + toHex(padded)
}

O
obscuren 已提交
208
func (self *XEth) FromAscii(str string) string {
O
obscuren 已提交
209 210 211 212 213 214 215
	if ethutil.IsHex(str) {
		str = str[2:]
	}

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

O
obscuren 已提交
216
func (self *XEth) FromNumber(str string) string {
O
obscuren 已提交
217 218 219 220 221 222 223
	if ethutil.IsHex(str) {
		str = str[2:]
	}

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

O
obscuren 已提交
224
func (self *XEth) PushTx(encodedTx string) (string, error) {
O
obscuren 已提交
225 226 227 228 229 230 231 232 233 234 235 236
	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
}
237

238 239 240 241 242 243 244 245 246
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 (
O
wip  
obscuren 已提交
247
		statedb = self.State().State() //self.chainManager.TransState()
248
		key     = self.eth.KeyManager().KeyPair()
249
		from    = statedb.GetOrNewStateObject(key.Address())
250 251 252 253 254 255
		block   = self.chainManager.CurrentBlock()
		to      = statedb.GetOrNewStateObject(fromHex(toStr))
		data    = fromHex(dataStr)
		gas     = ethutil.Big(gasStr)
		price   = ethutil.Big(gasPriceStr)
		value   = ethutil.Big(valueStr)
256 257
	)

258 259 260 261 262
	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)
263 264 265 266 267 268 269
	if err != nil {
		return "", err
	}

	return toHex(res), nil
}

270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
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)
	}

294
	var err error
295
	state := self.eth.ChainManager().TxState()
296 297 298
	if balance := state.GetBalance(key.Address()); balance.Cmp(tx.Value()) < 0 {
		return "", fmt.Errorf("insufficient balance. balance=%v tx=%v", balance, tx.Value())
	}
299 300 301 302 303
	nonce := state.GetNonce(key.Address())

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

304
	err = self.eth.TxPool().Add(tx)
305 306 307 308 309 310 311 312 313 314 315
	if err != nil {
		return "", err
	}
	state.SetNonce(key.Address(), nonce+1)

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

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