quorum/ethereal/gui.go

528 lines
13 KiB
Go
Raw Normal View History

2014-07-01 15:13:50 -07:00
package main
2014-02-21 03:37:40 -08:00
2014-09-13 15:13:47 -07:00
// #include "/Users/jeffrey/go/src/github.com/go-qml/qml/cpp/capi.h"
import "C"
2014-02-21 03:37:40 -08:00
import (
2014-02-25 01:54:37 -08:00
"bytes"
2014-08-20 01:00:02 -07:00
"encoding/json"
2014-02-21 03:37:40 -08:00
"fmt"
2014-07-29 15:30:57 -07:00
"math/big"
2014-09-07 15:50:25 -07:00
"path"
2014-08-23 02:00:15 -07:00
"runtime"
2014-07-29 15:30:57 -07:00
"strconv"
"strings"
"time"
2014-09-13 15:13:47 -07:00
"unsafe"
2014-07-29 15:30:57 -07:00
2014-09-13 15:13:47 -07:00
"bitbucket.org/binet/go-ffi/pkg/ffi"
2014-02-21 03:37:40 -08:00
"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-07-18 03:01:26 -07:00
"github.com/ethereum/eth-go/ethminer"
2014-08-10 06:57:42 -07:00
"github.com/ethereum/eth-go/ethpipe"
"github.com/ethereum/eth-go/ethreact"
2014-02-21 03:37:40 -08:00
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
2014-08-15 04:27:43 -07:00
"gopkg.in/qml.v1"
2014-02-21 03:37:40 -08:00
)
2014-09-13 15:13:47 -07:00
func LoadExtension(path string) (uintptr, error) {
lib, err := ffi.NewLibrary(path)
if err != nil {
return 0, err
}
so, err := lib.Fct("sharedObject", ffi.Pointer, nil)
if err != nil {
return 0, err
}
ptr := so()
/*
err = lib.Close()
if err != nil {
return 0, err
}
*/
return ptr.Interface().(uintptr), nil
}
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
qmlDone bool
// 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
logLevel ethlog.LogLevel
2014-06-26 10:41:36 -07:00
open bool
2014-08-15 04:16:07 -07:00
pipe *ethpipe.JSPipe
Session string
clientIdentity *ethwire.SimpleClientIdentity
config *ethutil.ConfigManager
2014-07-18 03:01:26 -07:00
2014-08-20 01:00:02 -07:00
plugins map[string]plugin
miner *ethminer.Miner
stdLog ethlog.LogSystem
2014-02-21 03:37:40 -08:00
}
// Create GUI, but doesn't start it
func NewWindow(ethereum *eth.Ethereum, config *ethutil.ConfigManager, clientIdentity *ethwire.SimpleClientIdentity, 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
2014-08-15 04:16:07 -07:00
pipe := ethpipe.NewJSPipe(ethereum)
2014-08-20 01:00:02 -07:00
gui := &Gui{eth: ethereum, txDb: db, pipe: pipe, logLevel: ethlog.LogLevel(logLevel), Session: session, open: false, clientIdentity: clientIdentity, config: config, plugins: make(map[string]plugin)}
2014-09-07 15:50:25 -07:00
data, _ := ethutil.ReadAllFile(path.Join(ethutil.Config.ExecPath, "plugins.json"))
2014-08-20 01:00:02 -07:00
json.Unmarshal([]byte(data), &gui.plugins)
return gui
2014-02-21 03:37:40 -08:00
}
2014-05-08 09:24:28 -07:00
func (gui *Gui) Start(assetPath string) {
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-08-15 04:16:07 -07:00
Init: func(p *ethpipe.JSBlock, obj qml.Object) { p.Number = 0; p.Hash = "" },
2014-02-22 16:56:04 -08:00
}, {
2014-08-15 04:16:07 -07:00
Init: func(p *ethpipe.JSTransaction, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
}, {
2014-08-15 04:16:07 -07:00
Init: func(p *ethpipe.KeyVal, obj qml.Object) { p.Key = ""; p.Value = "" },
2014-02-21 03:37:40 -08:00
}})
// Create a new QML engine
2014-05-08 09:24:28 -07:00
gui.engine = qml.NewEngine()
context := gui.engine.Context()
gui.uiLib = NewUiLib(gui.engine, gui.eth, assetPath)
// Expose the eth library and the ui library to QML
context.SetVar("gui", gui)
context.SetVar("eth", gui.uiLib)
2014-02-28 07:41:30 -08:00
2014-09-13 15:13:47 -07:00
vec, errr := LoadExtension("/Users/jeffrey/Desktop/build-libqmltest-Desktop_Qt_5_2_1_clang_64bit-Debug/liblibqmltest_debug.dylib")
fmt.Printf("Fetched vec with addr: %#x\n", vec)
if errr != nil {
fmt.Println(errr)
} else {
context.SetVar("vec", (unsafe.Pointer)(vec))
}
// 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()
2014-08-12 03:21:50 -07:00
// 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()
2014-08-12 03:21:50 -07:00
// need to silence gui logger after window closed otherwise logsystem hangs (but do not save loglevel)
gui.logLevel = ethlog.Silence
gui.open = false
}
func (gui *Gui) Stop() {
if gui.open {
gui.logLevel = ethlog.Silence
gui.open = false
gui.win.Hide()
}
gui.uiLib.jsEngine.Stop()
logger.Infoln("Stopped")
2014-05-12 04:56:29 -07:00
}
2014-02-21 16:52:47 -08:00
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
gui.win = gui.createWindow(component)
2014-05-30 04:04:23 -07:00
gui.update()
2014-05-12 04:56:29 -07:00
return gui.win, nil
}
// The done handler will be called by QML when all views have been loaded
func (gui *Gui) Done() {
gui.qmlDone = true
2014-05-12 04:56:29 -07:00
}
2014-07-25 01:41:57 -07:00
func (gui *Gui) ImportKey(filePath string) {
}
2014-05-12 04:56:29 -07:00
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() {
view := gui.getObjectByName("infoView")
view.Call("clearAddress")
2014-07-01 11:10:38 -07:00
2014-08-15 04:16:07 -07:00
nameReg := gui.pipe.World().Config().Get("NameReg")
2014-07-01 11:10:38 -07:00
if nameReg != nil {
2014-07-21 02:55:50 -07:00
nameReg.EachStorage(func(name string, value *ethutil.Value) {
if name[0] != 0 {
2014-07-21 02:55:50 -07:00
value.Decode()
view.Call("addAddress", struct{ Name, Address string }{name, ethutil.Bytes2Hex(value.Bytes())})
}
})
}
}
2014-08-10 06:57:42 -07:00
func (gui *Gui) insertTransaction(window string, tx *ethchain.Transaction) {
nameReg := ethpipe.New(gui.eth).World().Config().Get("NameReg")
addr := gui.address()
2014-02-25 01:54:37 -08:00
2014-08-10 06:57:42 -07:00
var inout string
if bytes.Compare(tx.Sender(), addr) == 0 {
inout = "send"
} else {
inout = "recv"
}
var (
2014-08-15 04:16:07 -07:00
ptx = ethpipe.NewJSTx(tx)
2014-08-10 06:57:42 -07:00
send = nameReg.Storage(tx.Sender())
rec = nameReg.Storage(tx.Recipient)
s, r string
)
if tx.CreatesContract() {
rec = nameReg.Storage(tx.CreationAddress())
}
if send.Len() != 0 {
s = strings.Trim(send.Str(), "\x00")
} else {
s = ethutil.Bytes2Hex(tx.Sender())
}
if rec.Len() != 0 {
r = strings.Trim(rec.Str(), "\x00")
} else {
if tx.CreatesContract() {
r = ethutil.Bytes2Hex(tx.CreationAddress())
2014-05-25 15:10:38 -07:00
} else {
2014-08-10 06:57:42 -07:00
r = ethutil.Bytes2Hex(tx.Recipient)
2014-05-25 15:10:38 -07:00
}
2014-08-10 06:57:42 -07:00
}
ptx.Sender = s
ptx.Address = r
if window == "post" {
2014-08-25 03:53:17 -07:00
//gui.getObjectByName("transactionView").Call("addTx", ptx, inout)
} else {
gui.getObjectByName("pendingTxView").Call("addTx", ptx, inout)
}
2014-08-10 06:57:42 -07:00
}
2014-05-25 15:10:38 -07:00
2014-08-10 06:57:42 -07:00
func (gui *Gui) readPreviousTransactions() {
it := gui.txDb.Db().NewIterator(nil, nil)
for it.Next() {
tx := ethchain.NewTransactionFromBytes(it.Value())
gui.insertTransaction("post", tx)
2014-05-25 15:10:38 -07:00
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) {
2014-08-15 04:16:07 -07:00
name := strings.Trim(gui.pipe.World().Config().Get("NameReg").Storage(block.Coinbase).Str(), "\x00")
b := ethpipe.NewJSBlock(block)
b.Name = name
gui.getObjectByName("chainView").Call("addBlock", b, 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-07-18 02:57:58 -07:00
func (self *Gui) getObjectByName(objectName string) qml.Object {
return self.win.Root().ObjectByName(objectName)
}
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() {
// We have to wait for qml to be done loading all the windows.
for !gui.qmlDone {
time.Sleep(500 * time.Millisecond)
}
go func() {
go gui.setInitialBlockChain()
gui.loadAddressBook()
gui.setPeerInfo()
gui.readPreviousTransactions()
}()
2014-08-20 01:00:02 -07:00
for _, plugin := range gui.plugins {
2014-09-07 15:50:25 -07:00
logger.Infoln("Loading plugin ", plugin.Name)
2014-08-20 01:00:02 -07:00
gui.win.Root().Call("addPlugin", plugin.Path, "")
}
2014-07-17 13:01:39 -07:00
var (
blockChan = make(chan ethreact.Event, 100)
txChan = make(chan ethreact.Event, 100)
objectChan = make(chan ethreact.Event, 100)
peerChan = make(chan ethreact.Event, 100)
chainSyncChan = make(chan ethreact.Event, 100)
miningChan = make(chan ethreact.Event, 100)
2014-07-17 13:01:39 -07:00
)
2014-07-18 02:57:58 -07:00
peerUpdateTicker := time.NewTicker(5 * time.Second)
generalUpdateTicker := time.NewTicker(1 * time.Second)
2014-08-23 02:00:15 -07:00
statsUpdateTicker := time.NewTicker(5 * time.Second)
2014-06-02 06:16:37 -07:00
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)
2014-07-29 15:30:57 -07:00
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(state.GetAccount(gui.address()).Balance)))
2014-07-18 02:57:58 -07:00
gui.getObjectByName("syncProgressIndicator").Set("visible", !gui.eth.IsUpToDate())
lastBlockLabel := gui.getObjectByName("lastBlockLabel")
2014-08-21 11:13:38 -07:00
miningLabel := gui.getObjectByName("miningLabel")
2014-04-30 08:13:12 -07:00
go func() {
for {
select {
case b := <-blockChan:
block := b.Resource.(*ethchain.Block)
gui.processBlock(block, false)
if bytes.Compare(block.Coinbase, gui.address()) == 0 {
2014-07-30 09:02:43 -07:00
gui.setWalletValue(gui.eth.StateManager().CurrentState().GetAccount(gui.address()).Balance, nil)
}
case txMsg := <-txChan:
tx := txMsg.Resource.(*ethchain.Transaction)
2014-02-25 01:54:37 -08:00
if txMsg.Name == "newTx:pre" {
object := state.GetAccount(gui.address())
2014-05-08 09:24:28 -07:00
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
}
2014-07-30 09:02:43 -07:00
gui.setWalletValue(object.Balance, unconfirmedFunds)
2014-08-10 06:57:42 -07:00
gui.insertTransaction("pre", tx)
} else {
object := state.GetAccount(gui.address())
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
object.SubAmount(tx.Value)
2014-08-10 06:57:42 -07:00
2014-08-25 03:53:17 -07:00
//gui.getObjectByName("transactionView").Call("addTx", ethpipe.NewJSTx(tx), "send")
2014-08-10 06:57:42 -07:00
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
object.AddAmount(tx.Value)
2014-08-10 06:57:42 -07:00
2014-08-25 03:53:17 -07:00
//gui.getObjectByName("transactionView").Call("addTx", ethpipe.NewJSTx(tx), "recv")
2014-08-10 06:57:42 -07:00
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
}
2014-07-30 09:02:43 -07:00
gui.setWalletValue(object.Balance, nil)
2014-05-08 09:24:28 -07:00
state.UpdateStateObject(object)
}
2014-07-21 05:30:37 -07:00
case msg := <-chainSyncChan:
sync := msg.Resource.(bool)
gui.win.Root().ObjectByName("syncProgressIndicator").Set("visible", sync)
case <-objectChan:
gui.loadAddressBook()
case <-peerChan:
gui.setPeerInfo()
2014-07-21 05:30:37 -07:00
case <-peerUpdateTicker.C:
gui.setPeerInfo()
2014-07-21 05:30:37 -07:00
case msg := <-miningChan:
if msg.Name == "miner:start" {
gui.miner = msg.Resource.(*ethminer.Miner)
} else {
gui.miner = nil
}
case <-generalUpdateTicker.C:
statusText := "#" + gui.eth.BlockChain().CurrentBlock.Number.String()
2014-08-21 11:13:38 -07:00
lastBlockLabel.Set("text", statusText)
2014-07-21 05:30:37 -07:00
if gui.miner != nil {
pow := gui.miner.GetPow()
2014-08-21 11:13:38 -07:00
miningLabel.Set("text", "Mining @ "+strconv.FormatInt(pow.GetHashrate(), 10)+"Khash")
2014-07-18 03:29:14 -07:00
}
2014-08-23 02:00:15 -07:00
case <-statsUpdateTicker.C:
gui.setStatsPane()
2014-02-25 01:54:37 -08:00
}
}
}()
2014-07-21 05:30:37 -07:00
reactor := gui.eth.Reactor()
reactor.Subscribe("newBlock", blockChan)
reactor.Subscribe("newTx:pre", txChan)
reactor.Subscribe("newTx:post", txChan)
2014-07-21 05:30:37 -07:00
reactor.Subscribe("chainSync", chainSyncChan)
reactor.Subscribe("miner:start", miningChan)
reactor.Subscribe("miner:stop", miningChan)
2014-08-15 04:16:07 -07:00
nameReg := gui.pipe.World().Config().Get("NameReg")
reactor.Subscribe("object:"+string(nameReg.Address()), objectChan)
reactor.Subscribe("peerList", peerChan)
2014-02-22 16:56:04 -08:00
}
2014-08-23 02:00:15 -07:00
func (gui *Gui) setStatsPane() {
var memStats runtime.MemStats
runtime.ReadMemStats(&memStats)
statsPane := gui.getObjectByName("statsPane")
statsPane.Set("text", fmt.Sprintf(`###### Ethereal 0.6.4 (%s) #######
CPU: # %d
Goroutines: # %d
CGoCalls: # %d
Alloc: %d
Heap Alloc: %d
CGNext: %x
NumGC: %d
`, runtime.Version(), runtime.NumCPU, runtime.NumGoroutine(), runtime.NumCgoCall(),
memStats.Alloc, memStats.HeapAlloc,
memStats.NextGC, memStats.NumGC,
))
}
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")
2014-08-17 16:35:42 -07:00
for _, peer := range gui.pipe.Peers() {
2014-06-02 06:16:37 -07:00
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()
}