2014-02-21 11:37:40 +00:00
|
|
|
package ethui
|
|
|
|
|
|
|
|
import (
|
2014-02-25 09:54:37 +00:00
|
|
|
"bytes"
|
2014-02-21 11:37:40 +00:00
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"github.com/ethereum/eth-go"
|
|
|
|
"github.com/ethereum/eth-go/ethchain"
|
2014-02-25 09:54:37 +00:00
|
|
|
"github.com/ethereum/eth-go/ethdb"
|
2014-02-21 11:37:40 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
|
|
"github.com/niemeyer/qml"
|
2014-02-28 11:16:46 +00:00
|
|
|
"math/big"
|
2014-02-21 11:37:40 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Block interface exposed to QML
|
|
|
|
type Block struct {
|
|
|
|
Number int
|
|
|
|
Hash string
|
|
|
|
}
|
|
|
|
|
2014-02-23 00:56:04 +00:00
|
|
|
type Tx struct {
|
|
|
|
Value, Hash, Address string
|
2014-04-11 21:05:02 +00:00
|
|
|
Contract bool
|
2014-02-23 00:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTxFromTransaction(tx *ethchain.Transaction) *Tx {
|
|
|
|
hash := hex.EncodeToString(tx.Hash())
|
|
|
|
sender := hex.EncodeToString(tx.Recipient)
|
2014-04-11 21:05:02 +00:00
|
|
|
isContract := len(tx.Data) > 0
|
2014-02-23 00:56:04 +00:00
|
|
|
|
2014-04-11 21:05:02 +00:00
|
|
|
return &Tx{Hash: hash, Value: ethutil.CurrencyToString(tx.Value), Address: sender, Contract: isContract}
|
2014-02-23 00:56:04 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Creates a new QML Block from a chain block
|
|
|
|
func NewBlockFromBlock(block *ethchain.Block) *Block {
|
|
|
|
info := block.BlockInfo()
|
|
|
|
hash := hex.EncodeToString(block.Hash())
|
|
|
|
|
|
|
|
return &Block{Number: int(info.Number), Hash: hash}
|
|
|
|
}
|
|
|
|
|
2014-02-21 11:37:40 +00:00
|
|
|
type Gui struct {
|
2014-02-22 22:19:38 +00:00
|
|
|
// The main application window
|
|
|
|
win *qml.Window
|
|
|
|
// QML Engine
|
2014-02-21 11:37:40 +00:00
|
|
|
engine *qml.Engine
|
|
|
|
component *qml.Common
|
2014-02-22 22:19:38 +00:00
|
|
|
// The ethereum interface
|
|
|
|
eth *eth.Ethereum
|
2014-02-21 16:29:59 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// The public Ethereum library
|
2014-02-21 16:29:59 +00:00
|
|
|
lib *EthLib
|
2014-02-25 09:54:37 +00:00
|
|
|
|
|
|
|
txDb *ethdb.LDBDatabase
|
|
|
|
|
|
|
|
addr []byte
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Create GUI, but doesn't start it
|
2014-02-21 11:37:40 +00:00
|
|
|
func New(ethereum *eth.Ethereum) *Gui {
|
2014-03-05 09:57:14 +00:00
|
|
|
lib := &EthLib{stateManager: ethereum.StateManager(), blockChain: ethereum.BlockChain(), txPool: ethereum.TxPool()}
|
2014-02-25 09:54:37 +00:00
|
|
|
db, err := ethdb.NewLDBDatabase("tx_database")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-02-21 16:29:59 +00:00
|
|
|
|
2014-04-10 18:53:12 +00:00
|
|
|
data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
|
|
|
|
// On first run we won't have any keys yet, so this would crash.
|
|
|
|
// Therefor we check if we are ready to actually start this process
|
|
|
|
var addr []byte
|
|
|
|
if len(data) > 0 {
|
|
|
|
key := ethutil.Config.Db.GetKeys()[0]
|
|
|
|
addr = key.Address()
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-04-10 18:53:12 +00:00
|
|
|
ethereum.StateManager().WatchAddr(addr)
|
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
return &Gui{eth: ethereum, lib: lib, txDb: db, addr: addr}
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-03-27 10:14:04 +00:00
|
|
|
func (ui *Gui) Start(assetPath string) {
|
2014-02-25 09:54:37 +00:00
|
|
|
defer ui.txDb.Close()
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Register ethereum functions
|
|
|
|
qml.RegisterTypes("Ethereum", 1, 0, []qml.TypeSpec{{
|
2014-02-21 11:37:40 +00:00
|
|
|
Init: func(p *Block, obj qml.Object) { p.Number = 0; p.Hash = "" },
|
2014-02-23 00:56:04 +00:00
|
|
|
}, {
|
|
|
|
Init: func(p *Tx, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
|
2014-02-21 11:37:40 +00:00
|
|
|
}})
|
|
|
|
|
2014-03-21 10:16:41 +00:00
|
|
|
ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", "0.1"))
|
2014-02-21 11:37:40 +00:00
|
|
|
ethutil.Config.Log.Infoln("[GUI] Starting GUI")
|
2014-02-22 22:19:38 +00:00
|
|
|
// Create a new QML engine
|
2014-02-21 11:37:40 +00:00
|
|
|
ui.engine = qml.NewEngine()
|
2014-03-05 09:44:33 +00:00
|
|
|
context := ui.engine.Context()
|
|
|
|
|
|
|
|
// Expose the eth library and the ui library to QML
|
|
|
|
context.SetVar("eth", ui.lib)
|
2014-03-27 10:14:04 +00:00
|
|
|
uiLib := NewUiLib(ui.engine, ui.eth, assetPath)
|
|
|
|
context.SetVar("ui", uiLib)
|
2014-02-28 15:41:30 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Load the main QML interface
|
2014-04-10 18:53:12 +00:00
|
|
|
data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
|
|
|
|
var err error
|
|
|
|
var component qml.Object
|
|
|
|
firstRun := len(data) == 0
|
|
|
|
|
|
|
|
if firstRun {
|
|
|
|
component, err = ui.engine.LoadFile(uiLib.AssetPath("qml/first_run.qml"))
|
|
|
|
} else {
|
|
|
|
component, err = ui.engine.LoadFile(uiLib.AssetPath("qml/wallet.qml"))
|
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
if err != nil {
|
2014-04-10 18:53:12 +00:00
|
|
|
ethutil.Config.Log.Infoln("FATAL: asset not found: you can set an alternative asset path on on the command line using option 'asset_path'")
|
2014-04-23 09:51:48 +00:00
|
|
|
|
2014-02-21 11:37:40 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.win = component.CreateWindow(nil)
|
2014-04-11 16:50:31 +00:00
|
|
|
uiLib.win = ui.win
|
2014-04-12 04:12:10 +00:00
|
|
|
db := &Debugger{ui.win, make(chan bool)}
|
|
|
|
ui.lib.Db = db
|
|
|
|
uiLib.Db = db
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Register the ui as a block processor
|
2014-03-05 09:44:33 +00:00
|
|
|
//ui.eth.BlockManager.SecondaryBlockProcessor = ui
|
2014-02-25 09:54:37 +00:00
|
|
|
//ui.eth.TxPool.SecondaryProcessor = ui
|
2014-02-21 12:06:17 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Add the ui as a log system so we can log directly to the UGI
|
2014-02-22 00:52:47 +00:00
|
|
|
ethutil.Config.Log.AddLogSystem(ui)
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Loads previous blocks
|
2014-04-10 18:53:12 +00:00
|
|
|
if firstRun == false {
|
|
|
|
go ui.setInitialBlockChain()
|
|
|
|
go ui.readPreviousTransactions()
|
|
|
|
go ui.update()
|
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
|
|
|
ui.win.Show()
|
|
|
|
ui.win.Wait()
|
2014-02-25 09:54:37 +00:00
|
|
|
|
|
|
|
ui.eth.Stop()
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-21 12:06:17 +00:00
|
|
|
func (ui *Gui) setInitialBlockChain() {
|
2014-02-22 22:19:38 +00:00
|
|
|
// Load previous 10 blocks
|
2014-03-05 09:44:33 +00:00
|
|
|
chain := ui.eth.BlockChain().GetChain(ui.eth.BlockChain().CurrentBlock.Hash(), 10)
|
2014-02-21 12:06:17 +00:00
|
|
|
for _, block := range chain {
|
|
|
|
ui.ProcessBlock(block)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
func (ui *Gui) readPreviousTransactions() {
|
2014-02-28 11:16:46 +00:00
|
|
|
it := ui.txDb.Db().NewIterator(nil, nil)
|
2014-02-25 09:54:37 +00:00
|
|
|
for it.Next() {
|
|
|
|
tx := ethchain.NewTransactionFromBytes(it.Value())
|
|
|
|
|
|
|
|
ui.win.Root().Call("addTx", NewTxFromTransaction(tx))
|
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
}
|
|
|
|
|
2014-02-21 11:37:40 +00:00
|
|
|
func (ui *Gui) ProcessBlock(block *ethchain.Block) {
|
|
|
|
ui.win.Root().Call("addBlock", NewBlockFromBlock(block))
|
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
// Simple go routine function that updates the list of peers in the GUI
|
|
|
|
func (ui *Gui) update() {
|
2014-02-28 11:16:46 +00:00
|
|
|
txChan := make(chan ethchain.TxMsg, 1)
|
2014-03-05 09:44:33 +00:00
|
|
|
ui.eth.TxPool().Subscribe(txChan)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-04-16 02:08:25 +00:00
|
|
|
account := ui.eth.StateManager().GetAddrState(ui.addr).Object
|
2014-02-28 11:16:46 +00:00
|
|
|
unconfirmedFunds := new(big.Int)
|
2014-02-25 10:24:04 +00:00
|
|
|
ui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(account.Amount)))
|
2014-02-25 09:54:37 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case txMsg := <-txChan:
|
|
|
|
tx := txMsg.Tx
|
|
|
|
|
|
|
|
if txMsg.Type == ethchain.TxPre {
|
|
|
|
if bytes.Compare(tx.Sender(), ui.addr) == 0 {
|
2014-02-28 11:16:46 +00:00
|
|
|
ui.win.Root().Call("addTx", NewTxFromTransaction(tx))
|
|
|
|
ui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
|
2014-03-05 09:44:33 +00:00
|
|
|
ui.eth.StateManager().GetAddrState(ui.addr).Nonce += 1
|
2014-02-28 11:16:46 +00:00
|
|
|
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
|
2014-02-25 09:54:37 +00:00
|
|
|
} else if bytes.Compare(tx.Recipient, ui.addr) == 0 {
|
2014-02-28 11:16:46 +00:00
|
|
|
ui.win.Root().Call("addTx", NewTxFromTransaction(tx))
|
|
|
|
ui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
|
|
|
|
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pos := "+"
|
|
|
|
if unconfirmedFunds.Cmp(big.NewInt(0)) >= 0 {
|
|
|
|
pos = "-"
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2014-02-28 11:16:46 +00:00
|
|
|
val := ethutil.CurrencyToString(new(big.Int).Abs(ethutil.BigCopy(unconfirmedFunds)))
|
|
|
|
str := fmt.Sprintf("%v (%s %v)", ethutil.CurrencyToString(account.Amount), pos, val)
|
|
|
|
|
|
|
|
ui.win.Root().Call("setWalletValue", str)
|
2014-02-25 09:54:37 +00:00
|
|
|
} else {
|
2014-02-28 11:16:46 +00:00
|
|
|
amount := account.Amount
|
2014-02-25 09:54:37 +00:00
|
|
|
if bytes.Compare(tx.Sender(), ui.addr) == 0 {
|
2014-02-28 11:16:46 +00:00
|
|
|
amount.Sub(account.Amount, tx.Value)
|
2014-02-25 09:54:37 +00:00
|
|
|
} else if bytes.Compare(tx.Recipient, ui.addr) == 0 {
|
2014-02-28 11:16:46 +00:00
|
|
|
amount.Add(account.Amount, tx.Value)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2014-02-28 11:16:46 +00:00
|
|
|
|
|
|
|
ui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(amount)))
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
accountAmount := ui.eth.BlockManager.GetAddrState(ui.addr).Account.Amount
|
|
|
|
ui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", accountAmount))
|
|
|
|
|
|
|
|
ui.win.Root().Call("setPeers", fmt.Sprintf("%d / %d", ui.eth.Peers().Len(), ui.eth.MaxPeers))
|
|
|
|
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|
2014-02-23 00:56:04 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Logging functions that log directly to the GUI interface
|
2014-02-22 00:52:47 +00:00
|
|
|
func (ui *Gui) Println(v ...interface{}) {
|
2014-02-22 22:19:38 +00:00
|
|
|
str := strings.TrimRight(fmt.Sprintln(v...), "\n")
|
|
|
|
lines := strings.Split(str, "\n")
|
|
|
|
for _, line := range lines {
|
|
|
|
ui.win.Root().Call("addLog", line)
|
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *Gui) Printf(format string, v ...interface{}) {
|
|
|
|
str := strings.TrimRight(fmt.Sprintf(format, v...), "\n")
|
2014-02-22 22:19:38 +00:00
|
|
|
lines := strings.Split(str, "\n")
|
|
|
|
for _, line := range lines {
|
|
|
|
ui.win.Root().Call("addLog", line)
|
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
}
|