quorum/ethereal/gui.go

411 lines
10 KiB
Go
Raw Normal View History

2014-07-01 15:13:50 -07:00
package main
2014-02-21 03:37:40 -08:00
import (
2014-02-25 01:54:37 -08:00
"bytes"
2014-02-21 03:37:40 -08:00
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
2014-02-25 01:54:37 -08:00
"github.com/ethereum/eth-go/ethdb"
2014-06-26 10:41:36 -07:00
"github.com/ethereum/eth-go/ethlog"
2014-05-02 04:55:58 -07:00
"github.com/ethereum/eth-go/ethpub"
2014-02-21 03:37:40 -08:00
"github.com/ethereum/eth-go/ethutil"
2014-05-30 04:28:31 -07:00
"github.com/ethereum/go-ethereum/utils"
"github.com/go-qml/qml"
"math/big"
2014-02-21 03:37:40 -08:00
"strings"
2014-06-02 06:16:37 -07:00
"time"
2014-02-21 03:37:40 -08:00
)
var logger = ethlog.NewLogger("GUI")
2014-02-21 03:37:40 -08:00
type Gui struct {
// The main application window
win *qml.Window
// QML Engine
2014-02-21 03:37:40 -08:00
engine *qml.Engine
component *qml.Common
// The ethereum interface
eth *eth.Ethereum
2014-02-21 08:29:59 -08:00
// The public Ethereum library
2014-05-12 04:56:29 -07:00
uiLib *UiLib
2014-02-25 01:54:37 -08:00
txDb *ethdb.LDBDatabase
2014-06-26 10:41:36 -07:00
pub *ethpub.PEthereum
logLevel ethlog.LogLevel
2014-06-26 10:41:36 -07:00
open bool
Session string
2014-02-21 03:37:40 -08:00
}
// Create GUI, but doesn't start it
2014-07-01 15:13:50 -07:00
func NewWindow(ethereum *eth.Ethereum, session string, logLevel int) *Gui {
2014-02-25 01:54:37 -08:00
db, err := ethdb.NewLDBDatabase("tx_database")
if err != nil {
panic(err)
}
2014-02-21 08:29:59 -08:00
pub := ethpub.NewPEthereum(ethereum)
2014-05-08 09:24:28 -07:00
return &Gui{eth: ethereum, txDb: db, pub: pub, logLevel: ethlog.LogLevel(logLevel), Session: session, open: false}
2014-02-21 03:37:40 -08:00
}
2014-05-08 09:24:28 -07:00
func (gui *Gui) Start(assetPath string) {
2014-07-01 07:24:34 -07:00
const version = "0.5.16"
2014-05-14 12:34:01 -07:00
2014-05-08 09:24:28 -07:00
defer gui.txDb.Close()
2014-02-25 01:54:37 -08:00
// Register ethereum functions
qml.RegisterTypes("Ethereum", 1, 0, []qml.TypeSpec{{
2014-05-02 04:55:58 -07:00
Init: func(p *ethpub.PBlock, obj qml.Object) { p.Number = 0; p.Hash = "" },
2014-02-22 16:56:04 -08:00
}, {
2014-05-02 04:55:58 -07:00
Init: func(p *ethpub.PTx, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
}, {
Init: func(p *ethpub.KeyVal, obj qml.Object) { p.Key = ""; p.Value = "" },
2014-02-21 03:37:40 -08:00
}})
2014-06-12 01:06:02 -07:00
ethutil.Config.SetClientString("Ethereal")
2014-05-30 10:36:05 -07:00
// Create a new QML engine
2014-05-08 09:24:28 -07:00
gui.engine = qml.NewEngine()
context := gui.engine.Context()
// Expose the eth library and the ui library to QML
2014-05-08 09:24:28 -07:00
context.SetVar("eth", gui)
2014-05-21 05:00:54 -07:00
context.SetVar("pub", gui.pub)
2014-05-12 04:56:29 -07:00
gui.uiLib = NewUiLib(gui.engine, gui.eth, assetPath)
context.SetVar("ui", gui.uiLib)
2014-02-28 07:41:30 -08:00
// Load the main QML interface
data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
2014-05-12 04:56:29 -07:00
var win *qml.Window
var err error
var addlog = false
2014-05-12 04:56:29 -07:00
if len(data) == 0 {
win, err = gui.showKeyImport(context)
} else {
2014-05-12 04:56:29 -07:00
win, err = gui.showWallet(context)
addlog = true
}
2014-02-21 03:37:40 -08:00
if err != nil {
logger.Errorln("asset not found: you can set an alternative asset path on the command line using option 'asset_path'", err)
2014-02-21 03:37:40 -08:00
panic(err)
}
logger.Infoln("Starting GUI")
gui.open = true
win.Show()
// only add the gui logger after window is shown otherwise slider wont be shown
if addlog {
ethlog.AddLogSystem(gui)
}
2014-05-12 04:56:29 -07:00
win.Wait()
// need to silence gui logger after window closed otherwise logsystem hangs
gui.SetLogLevel(ethlog.Silence)
gui.open = false
}
func (gui *Gui) Stop() {
if gui.open {
gui.SetLogLevel(ethlog.Silence)
gui.open = false
gui.win.Hide()
}
logger.Infoln("Stopped")
2014-05-12 04:56:29 -07:00
}
2014-02-21 16:52:47 -08:00
2014-05-30 04:28:31 -07:00
func (gui *Gui) ToggleMining() {
var txt string
if gui.eth.Mining {
utils.StopMining(gui.eth)
txt = "Start mining"
} else {
utils.StartMining(gui.eth)
txt = "Stop mining"
}
gui.win.Root().Set("miningButtonText", txt)
}
2014-05-12 04:56:29 -07: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-02-21 03:37:40 -08:00
2014-05-12 04:56:29 -07:00
win := gui.createWindow(component)
2014-02-25 01:54:37 -08:00
2014-05-30 04:04:23 -07:00
gui.setInitialBlockChain()
gui.loadAddressBook()
gui.readPreviousTransactions()
gui.setPeerInfo()
2014-05-12 04:56:29 -07:00
go gui.update()
return win, nil
}
func (gui *Gui) showKeyImport(context *qml.Context) (*qml.Window, error) {
context.SetVar("lib", gui)
2014-05-12 04:56:29 -07:00
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
return gui.win
2014-02-21 03:37:40 -08:00
}
func (gui *Gui) ImportAndSetPrivKey(secret string) bool {
err := gui.eth.KeyManager().InitFromString(gui.Session, 0, secret)
if err != nil {
logger.Errorln("unable to import: ", err)
return false
}
logger.Errorln("successfully imported: ", err)
return true
}
func (gui *Gui) CreateAndSetPrivKey() (string, string, string, string) {
err := gui.eth.KeyManager().Init(gui.Session, 0, true)
if err != nil {
logger.Errorln("unable to create key: ", err)
return "", "", "", ""
}
return gui.eth.KeyManager().KeyPair().AsStrings()
}
2014-05-08 09:24:28 -07:00
func (gui *Gui) setInitialBlockChain() {
2014-05-27 01:29:39 -07:00
sBlk := gui.eth.BlockChain().LastBlockHash
2014-05-26 08:07:20 -07:00
blk := gui.eth.BlockChain().GetBlock(sBlk)
2014-05-27 01:29:39 -07:00
for ; blk != nil; blk = gui.eth.BlockChain().GetBlock(sBlk) {
sBlk = blk.PrevHash
addr := gui.address()
// Loop through all transactions to see if we missed any while being offline
for _, tx := range blk.Transactions() {
if bytes.Compare(tx.Sender(), addr) == 0 || bytes.Compare(tx.Recipient, addr) == 0 {
if ok, _ := gui.txDb.Get(tx.Hash()); ok == nil {
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
}
}
}
2014-05-27 02:49:42 -07:00
gui.processBlock(blk, true)
}
}
type address struct {
Name, Address string
}
func (gui *Gui) loadAddressBook() {
gui.win.Root().Call("clearAddress")
2014-07-01 11:10:38 -07:00
nameReg := ethpub.EthereumConfig(gui.eth.StateManager()).NameReg()
if nameReg != nil {
nameReg.State().EachStorage(func(name string, value *ethutil.Value) {
if name[0] != 0 {
gui.win.Root().Call("addAddress", struct{ Name, Address string }{name, ethutil.Bytes2Hex(value.Bytes())})
}
})
}
}
2014-05-08 09:24:28 -07:00
func (gui *Gui) readPreviousTransactions() {
it := gui.txDb.Db().NewIterator(nil, nil)
addr := gui.address()
2014-02-25 01:54:37 -08:00
for it.Next() {
tx := ethchain.NewTransactionFromBytes(it.Value())
2014-05-25 15:10:38 -07:00
var inout string
if bytes.Compare(tx.Sender(), addr) == 0 {
2014-05-25 15:10:38 -07:00
inout = "send"
} else {
inout = "recv"
}
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), inout)
2014-02-25 01:54:37 -08:00
}
it.Release()
}
2014-05-27 02:49:42 -07:00
func (gui *Gui) processBlock(block *ethchain.Block, initial bool) {
gui.win.Root().Call("addBlock", ethpub.NewPBlock(block), initial)
2014-02-21 03:37:40 -08:00
}
func (gui *Gui) setWalletValue(amount, unconfirmedFunds *big.Int) {
var str string
if unconfirmedFunds != nil {
pos := "+"
2014-05-21 04:37:46 -07:00
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 01:54:37 -08:00
// Simple go routine function that updates the list of peers in the GUI
2014-05-08 09:24:28 -07:00
func (gui *Gui) update() {
reactor := gui.eth.Reactor()
2014-05-15 05:06:06 -07:00
blockChan := make(chan ethutil.React, 1)
txChan := make(chan ethutil.React, 1)
objectChan := make(chan ethutil.React, 1)
2014-05-30 04:04:23 -07:00
peerChan := make(chan ethutil.React, 1)
2014-05-15 05:06:06 -07:00
reactor.Subscribe("newBlock", blockChan)
reactor.Subscribe("newTx:pre", txChan)
reactor.Subscribe("newTx:post", txChan)
2014-07-01 15:28:45 -07:00
nameReg := ethpub.EthereumConfig(gui.eth.StateManager()).NameReg()
if nameReg != nil {
reactor.Subscribe("object:"+string(nameReg.Address()), objectChan)
}
2014-05-30 04:04:23 -07:00
reactor.Subscribe("peerList", peerChan)
2014-02-25 01:54:37 -08:00
2014-06-02 06:16:37 -07:00
ticker := time.NewTicker(5 * time.Second)
2014-05-08 09:24:28 -07:00
state := gui.eth.StateManager().TransState()
2014-04-30 08:13:12 -07:00
2014-05-08 09:24:28 -07:00
unconfirmedFunds := new(big.Int)
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(state.GetAccount(gui.address()).Amount)))
2014-04-30 08:13:12 -07:00
2014-02-25 01:54:37 -08:00
for {
select {
case b := <-blockChan:
block := b.Resource.(*ethchain.Block)
2014-05-27 02:49:42 -07:00
gui.processBlock(block, false)
if bytes.Compare(block.Coinbase, gui.address()) == 0 {
gui.setWalletValue(gui.eth.StateManager().CurrentState().GetAccount(gui.address()).Amount, nil)
}
2014-02-25 01:54:37 -08:00
case txMsg := <-txChan:
2014-05-15 05:06:06 -07:00
tx := txMsg.Resource.(*ethchain.Transaction)
2014-02-25 01:54:37 -08:00
2014-05-15 05:06:06 -07:00
if txMsg.Event == "newTx:pre" {
object := state.GetAccount(gui.address())
2014-05-08 09:24:28 -07:00
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
2014-05-25 15:10:38 -07:00
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), "send")
2014-05-08 09:24:28 -07:00
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
2014-05-25 15:10:38 -07:00
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), "recv")
2014-05-08 09:24:28 -07:00
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
}
gui.setWalletValue(object.Amount, unconfirmedFunds)
2014-02-25 01:54:37 -08:00
} else {
object := state.GetAccount(gui.address())
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
2014-05-08 09:24:28 -07:00
object.SubAmount(tx.Value)
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
2014-05-08 09:24:28 -07:00
object.AddAmount(tx.Value)
2014-02-25 01:54:37 -08:00
}
gui.setWalletValue(object.Amount, nil)
2014-05-08 09:24:28 -07:00
2014-05-21 03:14:39 -07:00
state.UpdateStateObject(object)
2014-02-25 01:54:37 -08:00
}
case <-objectChan:
gui.loadAddressBook()
2014-05-30 04:04:23 -07:00
case <-peerChan:
gui.setPeerInfo()
2014-06-02 06:16:37 -07:00
case <-ticker.C:
gui.setPeerInfo()
2014-02-25 01:54:37 -08:00
}
}
2014-02-22 16:56:04 -08:00
}
2014-05-30 04:04:23 -07:00
func (gui *Gui) setPeerInfo() {
gui.win.Root().Call("setPeers", fmt.Sprintf("%d / %d", gui.eth.PeerCount(), gui.eth.MaxPeers))
2014-06-02 06:16:37 -07:00
gui.win.Root().Call("resetPeers")
for _, peer := range gui.pub.GetPeers() {
gui.win.Root().Call("addPeer", peer)
}
2014-05-30 04:04:23 -07:00
}
func (gui *Gui) privateKey() string {
return ethutil.Bytes2Hex(gui.eth.KeyManager().PrivateKey())
}
func (gui *Gui) address() []byte {
return gui.eth.KeyManager().Address()
}
func (gui *Gui) RegisterName(name string) {
2014-07-01 11:10:38 -07:00
name = fmt.Sprintf("\"%s\"", name)
gui.pub.Transact(gui.privateKey(), "NameReg", "", "10000", "10000000000000", name)
}
2014-05-08 09:24:28 -07:00
func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
return gui.pub.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data)
2014-05-08 09:24:28 -07:00
}
func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
return gui.pub.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data)
2014-05-08 09:24:28 -07:00
}
2014-05-30 10:36:05 -07:00
func (gui *Gui) ChangeClientId(id string) {
ethutil.Config.SetIdentifier(id)
}
func (gui *Gui) ClientId() string {
return ethutil.Config.Identifier
}
// functions that allow Gui to implement interface ethlog.LogSystem
func (gui *Gui) SetLogLevel(level ethlog.LogLevel) {
gui.logLevel = level
}
func (gui *Gui) GetLogLevel() ethlog.LogLevel {
return gui.logLevel
}
// this extra function needed to give int typecast value to gui widget
// that sets initial loglevel to default
func (gui *Gui) GetLogLevelInt() int {
return int(gui.logLevel)
}
func (gui *Gui) Println(v ...interface{}) {
gui.printLog(fmt.Sprintln(v...))
}
func (gui *Gui) Printf(format string, v ...interface{}) {
gui.printLog(fmt.Sprintf(format, v...))
}
// Print function that logs directly to the GUI
func (gui *Gui) printLog(s string) {
str := strings.TrimRight(s, "\n")
lines := strings.Split(str, "\n")
for _, line := range lines {
gui.win.Root().Call("addLog", line)
}
}