2014-08-15 11:05:13 +00:00
|
|
|
package ethpipe
|
|
|
|
|
|
|
|
import (
|
2014-08-20 11:05:26 +00:00
|
|
|
"bytes"
|
2014-08-15 11:05:13 +00:00
|
|
|
"encoding/json"
|
2014-08-20 07:59:09 +00:00
|
|
|
"fmt"
|
2014-08-15 11:05:13 +00:00
|
|
|
"sync/atomic"
|
|
|
|
|
|
|
|
"github.com/ethereum/eth-go/ethchain"
|
|
|
|
"github.com/ethereum/eth-go/ethcrypto"
|
2014-08-20 07:59:09 +00:00
|
|
|
"github.com/ethereum/eth-go/ethreact"
|
|
|
|
"github.com/ethereum/eth-go/ethstate"
|
2014-08-15 11:05:13 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
type JSPipe struct {
|
|
|
|
*Pipe
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewJSPipe(eth ethchain.EthManager) *JSPipe {
|
|
|
|
return &JSPipe{New(eth)}
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) BlockByHash(strHash string) *JSBlock {
|
2014-08-15 11:05:13 +00:00
|
|
|
hash := ethutil.Hex2Bytes(strHash)
|
|
|
|
block := self.obj.BlockChain().GetBlock(hash)
|
|
|
|
|
|
|
|
return NewJSBlock(block)
|
|
|
|
}
|
|
|
|
|
2014-08-20 11:36:54 +00:00
|
|
|
func (self *JSPipe) GetBlockByNumber(num int32) *JSBlock {
|
|
|
|
if num == -1 {
|
|
|
|
return NewJSBlock(self.obj.BlockChain().CurrentBlock)
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewJSBlock(self.obj.BlockChain().GetBlockByNumber(uint64(num)))
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) Key() *JSKey {
|
2014-08-15 11:05:13 +00:00
|
|
|
return NewJSKey(self.obj.KeyManager().KeyPair())
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) StateObject(addr string) *JSObject {
|
2014-08-15 11:05:13 +00:00
|
|
|
object := &Object{self.World().safeGet(ethutil.Hex2Bytes(addr))}
|
|
|
|
|
|
|
|
return NewJSObject(object)
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) PeerCount() int {
|
2014-08-15 11:05:13 +00:00
|
|
|
return self.obj.PeerCount()
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) Peers() []JSPeer {
|
2014-08-15 11:05:13 +00:00
|
|
|
var peers []JSPeer
|
|
|
|
for peer := self.obj.Peers().Front(); peer != nil; peer = peer.Next() {
|
|
|
|
p := peer.Value.(ethchain.Peer)
|
|
|
|
// we only want connected peers
|
|
|
|
if atomic.LoadInt32(p.Connected()) != 0 {
|
|
|
|
peers = append(peers, *NewJSPeer(p))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return peers
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) IsMining() bool {
|
2014-08-15 11:05:13 +00:00
|
|
|
return self.obj.IsMining()
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) IsListening() bool {
|
2014-08-15 11:05:13 +00:00
|
|
|
return self.obj.IsListening()
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) CoinBase() string {
|
2014-08-15 11:05:13 +00:00
|
|
|
return ethutil.Bytes2Hex(self.obj.KeyManager().Address())
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) BalanceAt(addr string) string {
|
|
|
|
return self.World().SafeGet(ethutil.Hex2Bytes(addr)).Balance.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSPipe) NumberToHuman(balance string) string {
|
|
|
|
b := ethutil.Big(balance)
|
|
|
|
|
|
|
|
return ethutil.CurrencyToString(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSPipe) StorageAt(addr, storageAddr string) string {
|
2014-08-20 07:59:09 +00:00
|
|
|
storage := self.World().SafeGet(ethutil.Hex2Bytes(addr)).Storage(ethutil.Hex2Bytes(storageAddr))
|
|
|
|
return storage.BigInt().String()
|
2014-08-15 11:05:13 +00:00
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) TxCountAt(address string) int {
|
2014-08-15 11:05:13 +00:00
|
|
|
return int(self.World().SafeGet(ethutil.Hex2Bytes(address)).Nonce)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSPipe) IsContract(address string) bool {
|
|
|
|
return len(self.World().SafeGet(ethutil.Hex2Bytes(address)).Code) > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSPipe) SecretToAddress(key string) string {
|
|
|
|
pair, err := ethcrypto.NewKeyPairFromSec(ethutil.Hex2Bytes(key))
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return ethutil.Bytes2Hex(pair.Address())
|
|
|
|
}
|
|
|
|
|
|
|
|
type KeyVal struct {
|
|
|
|
Key string `json:"key"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) EachStorage(addr string) string {
|
2014-08-15 11:05:13 +00:00
|
|
|
var values []KeyVal
|
|
|
|
object := self.World().SafeGet(ethutil.Hex2Bytes(addr))
|
|
|
|
object.EachStorage(func(name string, value *ethutil.Value) {
|
|
|
|
value.Decode()
|
|
|
|
values = append(values, KeyVal{ethutil.Bytes2Hex([]byte(name)), ethutil.Bytes2Hex(value.Bytes())})
|
|
|
|
})
|
|
|
|
|
|
|
|
valuesJson, err := json.Marshal(values)
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(valuesJson)
|
|
|
|
}
|
|
|
|
|
2014-08-20 11:05:26 +00:00
|
|
|
func (self *JSPipe) ToAscii(str string) string {
|
|
|
|
padded := ethutil.RightPadBytes([]byte(str), 32)
|
|
|
|
|
|
|
|
return "0x" + ethutil.Bytes2Hex(padded)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSPipe) FromAscii(str string) string {
|
|
|
|
if ethutil.IsHex(str) {
|
|
|
|
str = str[2:]
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(bytes.Trim(ethutil.Hex2Bytes(str), "\x00"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSPipe) FromNumber(str string) string {
|
|
|
|
if ethutil.IsHex(str) {
|
|
|
|
str = str[2:]
|
|
|
|
}
|
|
|
|
|
|
|
|
return ethutil.BigD(ethutil.Hex2Bytes(str)).String()
|
|
|
|
}
|
|
|
|
|
2014-08-15 11:05:13 +00:00
|
|
|
func (self *JSPipe) Transact(key, toStr, valueStr, gasStr, gasPriceStr, codeStr string) (*JSReceipt, error) {
|
|
|
|
var hash []byte
|
|
|
|
var contractCreation bool
|
|
|
|
if len(toStr) == 0 {
|
|
|
|
contractCreation = true
|
|
|
|
} else {
|
|
|
|
// Check if an address is stored by this address
|
|
|
|
addr := self.World().Config().Get("NameReg").StorageString(toStr).Bytes()
|
|
|
|
if len(addr) > 0 {
|
|
|
|
hash = addr
|
|
|
|
} else {
|
|
|
|
hash = ethutil.Hex2Bytes(toStr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var keyPair *ethcrypto.KeyPair
|
|
|
|
var err error
|
|
|
|
if ethutil.IsHex(key) {
|
|
|
|
keyPair, err = ethcrypto.NewKeyPairFromSec([]byte(ethutil.Hex2Bytes(key[2:])))
|
|
|
|
} else {
|
|
|
|
keyPair, err = ethcrypto.NewKeyPairFromSec([]byte(ethutil.Hex2Bytes(key)))
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
value = ethutil.Big(valueStr)
|
|
|
|
gas = ethutil.Big(gasStr)
|
|
|
|
gasPrice = ethutil.Big(gasPriceStr)
|
|
|
|
data []byte
|
|
|
|
tx *ethchain.Transaction
|
|
|
|
)
|
|
|
|
|
|
|
|
if ethutil.IsHex(codeStr) {
|
|
|
|
data = ethutil.Hex2Bytes(codeStr[2:])
|
|
|
|
} else {
|
|
|
|
data = ethutil.Hex2Bytes(codeStr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if contractCreation {
|
|
|
|
tx = ethchain.NewContractCreationTx(value, gas, gasPrice, data)
|
|
|
|
} else {
|
|
|
|
tx = ethchain.NewTransactionMessage(hash, value, gas, gasPrice, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
acc := self.obj.StateManager().TransState().GetOrNewStateObject(keyPair.Address())
|
|
|
|
tx.Nonce = acc.Nonce
|
|
|
|
acc.Nonce += 1
|
|
|
|
self.obj.StateManager().TransState().UpdateStateObject(acc)
|
|
|
|
|
|
|
|
tx.Sign(keyPair.PrivateKey)
|
|
|
|
self.obj.TxPool().QueueTransaction(tx)
|
|
|
|
|
|
|
|
if contractCreation {
|
|
|
|
logger.Infof("Contract addr %x", tx.CreationAddress())
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewJSReciept(contractCreation, tx.CreationAddress(), tx.Hash(), keyPair.Address()), nil
|
|
|
|
}
|
2014-08-17 10:41:52 +00:00
|
|
|
|
|
|
|
func (self *JSPipe) CompileMutan(code string) string {
|
|
|
|
data, err := self.Pipe.CompileMutan(code)
|
|
|
|
if err != nil {
|
|
|
|
return err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
return ethutil.Bytes2Hex(data)
|
|
|
|
}
|
2014-08-18 08:17:45 +00:00
|
|
|
|
2014-08-20 07:59:09 +00:00
|
|
|
func (self *JSPipe) Watch(object map[string]interface{}) *JSFilter {
|
|
|
|
return NewJSFilterFromMap(object, self.Pipe.obj)
|
|
|
|
/*} else if str, ok := object.(string); ok {
|
|
|
|
println("str")
|
|
|
|
return NewJSFilterFromString(str, self.Pipe.obj)
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2014-08-18 08:17:45 +00:00
|
|
|
func (self *JSPipe) Messages(object map[string]interface{}) string {
|
2014-08-20 07:59:09 +00:00
|
|
|
filter := self.Watch(object)
|
2014-08-20 11:05:26 +00:00
|
|
|
filter.Uninstall()
|
2014-08-20 07:59:09 +00:00
|
|
|
|
|
|
|
return filter.Messages()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
type JSFilter struct {
|
|
|
|
eth ethchain.EthManager
|
|
|
|
*ethchain.Filter
|
|
|
|
quit chan bool
|
|
|
|
|
|
|
|
BlockCallback func(*ethchain.Block)
|
|
|
|
MessageCallback func(ethstate.Messages)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewJSFilterFromMap(object map[string]interface{}, eth ethchain.EthManager) *JSFilter {
|
|
|
|
filter := &JSFilter{eth, ethchain.NewFilterFromMap(object, eth), make(chan bool), nil, nil}
|
|
|
|
|
|
|
|
go filter.mainLoop()
|
|
|
|
|
|
|
|
return filter
|
|
|
|
}
|
2014-08-18 08:17:45 +00:00
|
|
|
|
2014-08-20 07:59:09 +00:00
|
|
|
func NewJSFilterFromString(str string, eth ethchain.EthManager) *JSFilter {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSFilter) MessagesToJson(messages ethstate.Messages) string {
|
2014-08-18 08:17:45 +00:00
|
|
|
var msgs []JSMessage
|
|
|
|
for _, m := range messages {
|
|
|
|
msgs = append(msgs, NewJSMessage(m))
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := json.Marshal(msgs)
|
|
|
|
if err != nil {
|
|
|
|
return "{\"error\":" + err.Error() + "}"
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(b)
|
|
|
|
}
|
2014-08-20 07:59:09 +00:00
|
|
|
|
|
|
|
func (self *JSFilter) Messages() string {
|
|
|
|
return self.MessagesToJson(self.Find())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSFilter) mainLoop() {
|
2014-08-20 11:05:26 +00:00
|
|
|
blockChan := make(chan ethreact.Event, 5)
|
|
|
|
messageChan := make(chan ethreact.Event, 5)
|
2014-08-20 07:59:09 +00:00
|
|
|
// Subscribe to events
|
|
|
|
reactor := self.eth.Reactor()
|
|
|
|
reactor.Subscribe("newBlock", blockChan)
|
|
|
|
reactor.Subscribe("messages", messageChan)
|
|
|
|
out:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-self.quit:
|
|
|
|
break out
|
|
|
|
case block := <-blockChan:
|
|
|
|
if block, ok := block.Resource.(*ethchain.Block); ok {
|
|
|
|
if self.BlockCallback != nil {
|
|
|
|
self.BlockCallback(block)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case msg := <-messageChan:
|
|
|
|
if messages, ok := msg.Resource.(ethstate.Messages); ok {
|
|
|
|
if self.MessageCallback != nil {
|
2014-08-20 11:05:26 +00:00
|
|
|
println("messages!")
|
2014-08-20 07:59:09 +00:00
|
|
|
msgs := self.FilterMessages(messages)
|
2014-08-20 11:05:26 +00:00
|
|
|
if len(msgs) > 0 {
|
|
|
|
self.MessageCallback(msgs)
|
|
|
|
}
|
2014-08-20 07:59:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSFilter) Changed(object interface{}) {
|
|
|
|
fmt.Printf("%T\n", object)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *JSFilter) Uninstall() {
|
|
|
|
self.quit <- true
|
|
|
|
}
|