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
|
|
|
"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-05-02 11:55:58 +00:00
|
|
|
"github.com/ethereum/eth-go/ethpub"
|
2014-02-21 11:37:40 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-04-23 22:01:22 +00:00
|
|
|
"github.com/go-qml/qml"
|
2014-05-09 23:57:10 +00:00
|
|
|
"github.com/obscuren/mutan"
|
2014-02-28 11:16:46 +00:00
|
|
|
"math/big"
|
2014-02-21 11:37:40 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
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-05-12 11:56:29 +00:00
|
|
|
lib *EthLib
|
|
|
|
uiLib *UiLib
|
2014-02-25 09:54:37 +00:00
|
|
|
|
|
|
|
txDb *ethdb.LDBDatabase
|
|
|
|
|
|
|
|
addr []byte
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
pub *ethpub.PEthereum
|
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
|
|
|
// 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
|
2014-05-14 11:55:08 +00:00
|
|
|
if ethutil.GetKeyRing().Len() != 0 {
|
|
|
|
addr = ethutil.GetKeyRing().Get(0).Address()
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-05-13 10:42:01 +00:00
|
|
|
pub := ethpub.NewPEthereum(ethereum)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
return &Gui{eth: ethereum, lib: lib, txDb: db, addr: addr, pub: pub}
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) Start(assetPath string) {
|
|
|
|
defer gui.txDb.Close()
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Register ethereum functions
|
|
|
|
qml.RegisterTypes("Ethereum", 1, 0, []qml.TypeSpec{{
|
2014-05-02 11:55:58 +00:00
|
|
|
Init: func(p *ethpub.PBlock, obj qml.Object) { p.Number = 0; p.Hash = "" },
|
2014-02-23 00:56:04 +00:00
|
|
|
}, {
|
2014-05-02 11:55:58 +00:00
|
|
|
Init: func(p *ethpub.PTx, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
|
2014-02-21 11:37:40 +00:00
|
|
|
}})
|
|
|
|
|
2014-05-13 14:37:15 +00:00
|
|
|
ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", "0.5.0 RC4"))
|
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-05-08 16:24:28 +00:00
|
|
|
gui.engine = qml.NewEngine()
|
|
|
|
context := gui.engine.Context()
|
2014-03-05 09:44:33 +00:00
|
|
|
|
|
|
|
// Expose the eth library and the ui library to QML
|
2014-05-08 16:24:28 +00:00
|
|
|
context.SetVar("eth", gui)
|
2014-05-12 11:56:29 +00:00
|
|
|
gui.uiLib = NewUiLib(gui.engine, gui.eth, assetPath)
|
|
|
|
context.SetVar("ui", gui.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"))
|
2014-05-12 11:56:29 +00:00
|
|
|
|
|
|
|
var win *qml.Window
|
2014-04-10 18:53:12 +00:00
|
|
|
var err error
|
2014-05-12 11:56:29 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
win, err = gui.showKeyImport(context)
|
2014-04-10 18:53:12 +00:00
|
|
|
} else {
|
2014-05-12 11:56:29 +00:00
|
|
|
win, err = gui.showWallet(context)
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
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)
|
|
|
|
}
|
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
win.Show()
|
|
|
|
win.Wait()
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
gui.eth.Stop()
|
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) {
|
|
|
|
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/wallet.qml"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
win := gui.createWindow(component)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
go gui.setInitialBlockChain()
|
|
|
|
go gui.readPreviousTransactions()
|
|
|
|
go gui.update()
|
|
|
|
|
|
|
|
return win, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) showKeyImport(context *qml.Context) (*qml.Window, error) {
|
|
|
|
context.SetVar("lib", gui.lib)
|
|
|
|
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/first_run.qml"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return gui.createWindow(component), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) createWindow(comp qml.Object) *qml.Window {
|
|
|
|
win := comp.CreateWindow(nil)
|
|
|
|
|
|
|
|
gui.win = win
|
|
|
|
gui.uiLib.win = win
|
|
|
|
|
|
|
|
db := &Debugger{gui.win, make(chan bool)}
|
|
|
|
gui.lib.Db = db
|
|
|
|
gui.uiLib.Db = db
|
|
|
|
|
|
|
|
return gui.win
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) setInitialBlockChain() {
|
2014-02-22 22:19:38 +00:00
|
|
|
// Load previous 10 blocks
|
2014-05-08 16:24:28 +00:00
|
|
|
chain := gui.eth.BlockChain().GetChain(gui.eth.BlockChain().CurrentBlock.Hash(), 10)
|
2014-02-21 12:06:17 +00:00
|
|
|
for _, block := range chain {
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.processBlock(block)
|
2014-02-21 12:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) readPreviousTransactions() {
|
|
|
|
it := gui.txDb.Db().NewIterator(nil, nil)
|
2014-02-25 09:54:37 +00:00
|
|
|
for it.Next() {
|
|
|
|
tx := ethchain.NewTransactionFromBytes(it.Value())
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx))
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) processBlock(block *ethchain.Block) {
|
|
|
|
gui.win.Root().Call("addBlock", ethpub.NewPBlock(block))
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 12:57:05 +00:00
|
|
|
func (gui *Gui) setWalletValue(amount, unconfirmedFunds *big.Int) {
|
|
|
|
var str string
|
|
|
|
if unconfirmedFunds != nil {
|
|
|
|
pos := "+"
|
|
|
|
if unconfirmedFunds.Cmp(big.NewInt(0)) >= 0 {
|
|
|
|
pos = "-"
|
|
|
|
}
|
|
|
|
val := ethutil.CurrencyToString(new(big.Int).Abs(ethutil.BigCopy(unconfirmedFunds)))
|
|
|
|
str = fmt.Sprintf("%v (%s %v)", ethutil.CurrencyToString(amount), pos, val)
|
|
|
|
} else {
|
|
|
|
str = fmt.Sprintf("%v", ethutil.CurrencyToString(amount))
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Call("setWalletValue", str)
|
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
// Simple go routine function that updates the list of peers in the GUI
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) update() {
|
2014-05-14 12:57:05 +00:00
|
|
|
blockChan := make(chan ethutil.React, 1)
|
|
|
|
reactor := gui.eth.Reactor()
|
|
|
|
|
|
|
|
reactor.Subscribe("newBlock", blockChan)
|
|
|
|
|
2014-02-28 11:16:46 +00:00
|
|
|
txChan := make(chan ethchain.TxMsg, 1)
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.eth.TxPool().Subscribe(txChan)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
state := gui.eth.StateManager().TransState()
|
2014-04-30 15:13:12 +00:00
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
unconfirmedFunds := new(big.Int)
|
2014-05-13 09:59:03 +00:00
|
|
|
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(state.GetAccount(gui.addr).Amount)))
|
2014-04-30 15:13:12 +00:00
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
for {
|
|
|
|
select {
|
2014-05-14 12:57:05 +00:00
|
|
|
case b := <-blockChan:
|
|
|
|
block := b.Resource.(*ethchain.Block)
|
|
|
|
if bytes.Compare(block.Coinbase, gui.addr) == 0 {
|
|
|
|
gui.setWalletValue(gui.eth.StateManager().ProcState().GetAccount(gui.addr).Amount, nil)
|
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
case txMsg := <-txChan:
|
|
|
|
tx := txMsg.Tx
|
|
|
|
|
|
|
|
if txMsg.Type == ethchain.TxPre {
|
2014-05-13 09:59:03 +00:00
|
|
|
object := state.GetAccount(gui.addr)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 && object.Nonce <= tx.Nonce {
|
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx))
|
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
|
|
|
|
object.Nonce += 1
|
|
|
|
state.SetStateObject(object)
|
2014-02-28 11:16:46 +00:00
|
|
|
|
|
|
|
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
|
2014-05-08 16:24:28 +00:00
|
|
|
} else if bytes.Compare(tx.Recipient, gui.addr) == 0 {
|
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx))
|
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
2014-02-28 11:16:46 +00:00
|
|
|
|
|
|
|
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
|
|
|
|
}
|
|
|
|
|
2014-05-14 12:57:05 +00:00
|
|
|
gui.setWalletValue(object.Amount, unconfirmedFunds)
|
2014-02-25 09:54:37 +00:00
|
|
|
} else {
|
2014-05-13 09:59:03 +00:00
|
|
|
object := state.GetAccount(gui.addr)
|
2014-05-08 16:24:28 +00:00
|
|
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 {
|
|
|
|
object.SubAmount(tx.Value)
|
|
|
|
} else if bytes.Compare(tx.Recipient, gui.addr) == 0 {
|
|
|
|
object.AddAmount(tx.Value)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2014-02-28 11:16:46 +00:00
|
|
|
|
2014-05-14 12:57:05 +00:00
|
|
|
gui.setWalletValue(object.Amount, nil)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
state.SetStateObject(object)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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-05-08 16:24:28 +00:00
|
|
|
func (gui *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 {
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.win.Root().Call("addLog", line)
|
2014-02-22 22:19:38 +00:00
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) Printf(format string, v ...interface{}) {
|
2014-02-22 00:52:47 +00:00
|
|
|
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 {
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.win.Root().Call("addLog", line)
|
2014-02-22 22:19:38 +00:00
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
}
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
|
2014-05-14 11:55:08 +00:00
|
|
|
keyPair := ethutil.GetKeyRing().Get(0)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
return gui.pub.Transact(ethutil.Hex(keyPair.PrivateKey), recipient, value, gas, gasPrice, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
|
2014-05-14 11:55:08 +00:00
|
|
|
keyPair := ethutil.GetKeyRing().Get(0)
|
2014-05-09 23:57:10 +00:00
|
|
|
|
2014-05-10 14:22:57 +00:00
|
|
|
mainInput, initInput := mutan.PreParse(data)
|
2014-05-09 23:57:10 +00:00
|
|
|
|
|
|
|
return gui.pub.Create(ethutil.Hex(keyPair.PrivateKey), value, gas, gasPrice, initInput, mainInput)
|
2014-05-08 16:24:28 +00:00
|
|
|
}
|