2015-01-06 11:13:57 +00:00
|
|
|
/*
|
|
|
|
This file is part of go-ethereum
|
2014-10-23 13:48:53 +00:00
|
|
|
|
2015-01-06 11:13:57 +00:00
|
|
|
go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @authors
|
|
|
|
* Jeffrey Wilcke <i@jev.io>
|
|
|
|
*/
|
2014-07-01 22:13:50 +00:00
|
|
|
package main
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-09-13 22:13:47 +00:00
|
|
|
import "C"
|
|
|
|
|
2014-02-21 11:37:40 +00:00
|
|
|
import (
|
2014-08-20 08:00:02 +00:00
|
|
|
"encoding/json"
|
2014-02-21 11:37:40 +00:00
|
|
|
"fmt"
|
2015-03-25 14:58:52 +00:00
|
|
|
"io/ioutil"
|
2014-07-29 22:30:57 +00:00
|
|
|
"math/big"
|
2015-05-12 13:20:53 +00:00
|
|
|
"path/filepath"
|
2014-08-23 09:00:15 +00:00
|
|
|
"runtime"
|
2015-02-13 22:55:50 +00:00
|
|
|
"sort"
|
2014-07-29 22:30:57 +00:00
|
|
|
"time"
|
2014-09-14 11:28:28 +00:00
|
|
|
|
2015-03-22 13:25:33 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2014-12-04 09:28:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2014-12-15 12:00:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth"
|
2014-10-23 13:01:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2014-10-31 11:56:05 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2014-12-15 16:14:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ui/qt/qwhisper"
|
2014-10-31 13:30:08 +00:00
|
|
|
"github.com/ethereum/go-ethereum/xeth"
|
2015-01-28 13:51:54 +00:00
|
|
|
"github.com/obscuren/qml"
|
2014-02-21 11:37:40 +00:00
|
|
|
)
|
|
|
|
|
2014-10-31 11:56:05 +00:00
|
|
|
var guilogger = logger.NewLogger("GUI")
|
2014-06-23 10:41:11 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
type ServEv byte
|
|
|
|
|
|
|
|
const (
|
|
|
|
setup ServEv = iota
|
|
|
|
update
|
|
|
|
)
|
|
|
|
|
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
|
2015-01-08 15:38:24 +00:00
|
|
|
eth *eth.Ethereum
|
|
|
|
serviceEvents chan ServEv
|
2014-02-21 16:29:59 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// The public Ethereum library
|
2014-12-15 16:14:02 +00:00
|
|
|
uiLib *UiLib
|
|
|
|
whisper *qwhisper.Whisper
|
2014-02-25 09:54:37 +00:00
|
|
|
|
|
|
|
txDb *ethdb.LDBDatabase
|
|
|
|
|
2015-03-09 22:03:20 +00:00
|
|
|
open bool
|
2014-06-29 19:38:26 +00:00
|
|
|
|
2015-01-28 17:35:49 +00:00
|
|
|
xeth *xeth.XEth
|
2014-08-15 11:16:07 +00:00
|
|
|
|
2015-02-05 02:16:16 +00:00
|
|
|
Session string
|
2014-07-18 10:01:26 +00:00
|
|
|
|
2014-08-20 08:00:02 +00:00
|
|
|
plugins map[string]plugin
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Create GUI, but doesn't start it
|
2015-03-09 22:03:20 +00:00
|
|
|
func NewWindow(ethereum *eth.Ethereum) *Gui {
|
2015-05-12 12:24:11 +00:00
|
|
|
db, err := ethdb.NewLDBDatabase(filepath.Join(ethereum.DataDir, "tx_database"))
|
2014-02-25 09:54:37 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-02-21 16:29:59 +00:00
|
|
|
|
2015-03-09 12:50:05 +00:00
|
|
|
xeth := xeth.New(ethereum, nil)
|
2015-01-08 15:38:24 +00:00
|
|
|
gui := &Gui{eth: ethereum,
|
2015-02-05 02:16:16 +00:00
|
|
|
txDb: db,
|
|
|
|
xeth: xeth,
|
|
|
|
open: false,
|
|
|
|
plugins: make(map[string]plugin),
|
|
|
|
serviceEvents: make(chan ServEv, 1),
|
2015-01-08 15:38:24 +00:00
|
|
|
}
|
2015-05-12 12:24:11 +00:00
|
|
|
data, _ := ioutil.ReadFile(filepath.Join(ethereum.DataDir, "plugins.json"))
|
2015-03-25 14:58:52 +00:00
|
|
|
json.Unmarshal(data, &gui.plugins)
|
2014-08-20 08:00:02 +00:00
|
|
|
|
|
|
|
return gui
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2015-03-15 06:18:58 +00:00
|
|
|
func (gui *Gui) Start(assetPath, libPath string) {
|
2014-05-08 16:24:28 +00:00
|
|
|
defer gui.txDb.Close()
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-11-14 23:29:27 +00:00
|
|
|
guilogger.Infoln("Starting GUI")
|
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
go gui.service()
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Register ethereum functions
|
|
|
|
qml.RegisterTypes("Ethereum", 1, 0, []qml.TypeSpec{{
|
2015-01-28 17:35:49 +00:00
|
|
|
Init: func(p *xeth.Block, obj qml.Object) { p.Number = 0; p.Hash = "" },
|
2014-02-23 00:56:04 +00:00
|
|
|
}, {
|
2015-01-28 17:35:49 +00:00
|
|
|
Init: func(p *xeth.Transaction, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
|
2014-06-04 13:54:33 +00:00
|
|
|
}, {
|
2014-10-31 13:30:08 +00:00
|
|
|
Init: func(p *xeth.KeyVal, obj qml.Object) { p.Key = ""; p.Value = "" },
|
2014-02-21 11:37:40 +00:00
|
|
|
}})
|
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()
|
2015-03-15 06:18:58 +00:00
|
|
|
gui.uiLib = NewUiLib(gui.engine, gui.eth, assetPath, libPath)
|
2014-12-15 16:14:02 +00:00
|
|
|
gui.whisper = qwhisper.New(gui.eth.Whisper())
|
2014-03-05 09:44:33 +00:00
|
|
|
|
|
|
|
// Expose the eth library and the ui library to QML
|
2014-08-12 10:16:21 +00:00
|
|
|
context.SetVar("gui", gui)
|
|
|
|
context.SetVar("eth", gui.uiLib)
|
2015-01-05 16:12:52 +00:00
|
|
|
context.SetVar("shh", gui.whisper)
|
2015-02-19 10:51:38 +00:00
|
|
|
//clipboard.SetQMLClipboard(context)
|
2014-02-28 15:41:30 +00:00
|
|
|
|
2015-01-07 12:17:48 +00:00
|
|
|
win, err := gui.showWallet(context)
|
2014-02-21 11:37:40 +00:00
|
|
|
if err != nil {
|
2014-10-31 11:56:05 +00:00
|
|
|
guilogger.Errorln("asset not found: you can set an alternative asset path on the command line using option 'asset_path'", err)
|
2014-04-23 09:51:48 +00:00
|
|
|
|
2014-02-21 11:37:40 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2014-06-26 15:26:14 +00:00
|
|
|
gui.open = true
|
2014-05-31 09:34:37 +00:00
|
|
|
win.Show()
|
2014-08-12 10:21:50 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
win.Wait()
|
2014-06-26 15:26:14 +00:00
|
|
|
gui.open = false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) Stop() {
|
|
|
|
if gui.open {
|
|
|
|
gui.open = false
|
|
|
|
gui.win.Hide()
|
|
|
|
}
|
2014-08-11 14:24:35 +00:00
|
|
|
|
2014-10-31 11:56:05 +00:00
|
|
|
guilogger.Infoln("Stopped")
|
2014-05-12 11:56:29 +00:00
|
|
|
}
|
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) {
|
2014-09-26 11:38:40 +00:00
|
|
|
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/main.qml"))
|
2014-05-12 11:56:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
gui.createWindow(component)
|
2014-05-12 11:56:29 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
return gui.win, nil
|
|
|
|
}
|
|
|
|
|
2015-02-26 12:22:09 +00:00
|
|
|
func (gui *Gui) GenerateKey() {
|
|
|
|
_, err := gui.eth.AccountManager().NewAccount("hurr")
|
|
|
|
if err != nil {
|
|
|
|
// TODO: UI feedback?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
func (gui *Gui) showKeyImport(context *qml.Context) (*qml.Window, error) {
|
2014-06-29 19:38:26 +00:00
|
|
|
context.SetVar("lib", gui)
|
2014-05-12 11:56:29 +00: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 {
|
2015-01-08 15:38:24 +00:00
|
|
|
gui.win = comp.CreateWindow(nil)
|
|
|
|
gui.uiLib.win = gui.win
|
2014-05-12 11:56:29 +00:00
|
|
|
|
|
|
|
return gui.win
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
2014-06-29 19:38:26 +00:00
|
|
|
|
2014-11-14 23:29:27 +00:00
|
|
|
func (gui *Gui) setInitialChain(ancientBlocks bool) {
|
2014-12-18 12:17:24 +00:00
|
|
|
sBlk := gui.eth.ChainManager().LastBlockHash()
|
2014-10-20 10:03:31 +00:00
|
|
|
blk := gui.eth.ChainManager().GetBlock(sBlk)
|
|
|
|
for ; blk != nil; blk = gui.eth.ChainManager().GetBlock(sBlk) {
|
2014-12-23 13:44:45 +00:00
|
|
|
sBlk = blk.ParentHash()
|
2014-05-27 09:49:42 +00:00
|
|
|
gui.processBlock(blk, true)
|
2014-02-21 12:06:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 09:50:30 +00:00
|
|
|
func (gui *Gui) loadAddressBook() {
|
2015-01-28 17:14:28 +00:00
|
|
|
/*
|
|
|
|
view := gui.getObjectByName("infoView")
|
|
|
|
nameReg := gui.xeth.World().Config().Get("NameReg")
|
|
|
|
if nameReg != nil {
|
|
|
|
it := nameReg.Trie().Iterator()
|
|
|
|
for it.Next() {
|
|
|
|
if it.Key[0] != 0 {
|
2015-03-16 10:27:38 +00:00
|
|
|
view.Call("addAddress", struct{ Name, Address string }{string(it.Key), common.Bytes2Hex(it.Value)})
|
2015-01-28 17:14:28 +00:00
|
|
|
}
|
2015-01-02 11:07:26 +00:00
|
|
|
|
2015-01-28 17:14:28 +00:00
|
|
|
}
|
2015-01-02 11:07:26 +00:00
|
|
|
}
|
2015-01-28 17:14:28 +00:00
|
|
|
*/
|
2014-05-30 09:50:30 +00:00
|
|
|
}
|
|
|
|
|
2014-11-07 11:18:48 +00:00
|
|
|
func (self *Gui) loadMergedMiningOptions() {
|
2015-01-28 17:14:28 +00:00
|
|
|
/*
|
|
|
|
view := self.getObjectByName("mergedMiningModel")
|
|
|
|
|
|
|
|
mergeMining := self.xeth.World().Config().Get("MergeMining")
|
|
|
|
if mergeMining != nil {
|
|
|
|
i := 0
|
|
|
|
it := mergeMining.Trie().Iterator()
|
|
|
|
for it.Next() {
|
|
|
|
view.Call("addMergedMiningOption", struct {
|
|
|
|
Checked bool
|
|
|
|
Name, Address string
|
|
|
|
Id, ItemId int
|
2015-03-16 10:27:38 +00:00
|
|
|
}{false, string(it.Key), common.Bytes2Hex(it.Value), 0, i})
|
2015-01-28 17:14:28 +00:00
|
|
|
|
|
|
|
i++
|
2014-11-07 11:18:48 +00:00
|
|
|
|
2015-01-28 17:14:28 +00:00
|
|
|
}
|
2015-01-02 11:07:26 +00:00
|
|
|
}
|
2015-01-28 17:14:28 +00:00
|
|
|
*/
|
2014-11-07 11:18:48 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 15:58:22 +00:00
|
|
|
func (gui *Gui) insertTransaction(window string, tx *types.Transaction) {
|
2014-08-10 13:57:42 +00:00
|
|
|
var inout string
|
2015-03-22 13:25:33 +00:00
|
|
|
from, _ := tx.From()
|
2015-04-02 19:14:25 +00:00
|
|
|
if gui.eth.AccountManager().HasAccount(from) {
|
2014-08-10 13:57:42 +00:00
|
|
|
inout = "send"
|
|
|
|
} else {
|
|
|
|
inout = "recv"
|
|
|
|
}
|
|
|
|
|
2015-04-10 08:43:08 +00:00
|
|
|
ptx := xeth.NewTx(tx)
|
|
|
|
ptx.Sender = from.Hex()
|
|
|
|
if to := tx.To(); to != nil {
|
|
|
|
ptx.Address = to.Hex()
|
|
|
|
}
|
2014-08-10 13:57:42 +00:00
|
|
|
|
2014-08-13 22:18:37 +00:00
|
|
|
if window == "post" {
|
2014-08-25 10:53:17 +00:00
|
|
|
//gui.getObjectByName("transactionView").Call("addTx", ptx, inout)
|
2014-08-13 22:18:37 +00:00
|
|
|
} else {
|
|
|
|
gui.getObjectByName("pendingTxView").Call("addTx", ptx, inout)
|
|
|
|
}
|
2014-08-10 13:57:42 +00:00
|
|
|
}
|
2014-05-25 22:10:38 +00:00
|
|
|
|
2014-08-10 13:57:42 +00:00
|
|
|
func (gui *Gui) readPreviousTransactions() {
|
2014-11-02 23:30:52 +00:00
|
|
|
it := gui.txDb.NewIterator()
|
2014-08-10 13:57:42 +00:00
|
|
|
for it.Next() {
|
2014-11-18 15:58:22 +00:00
|
|
|
tx := types.NewTransactionFromBytes(it.Value())
|
2014-08-10 13:57:42 +00:00
|
|
|
|
|
|
|
gui.insertTransaction("post", tx)
|
2014-05-25 22:10:38 +00:00
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
}
|
|
|
|
|
2014-11-18 15:58:22 +00:00
|
|
|
func (gui *Gui) processBlock(block *types.Block, initial bool) {
|
2015-03-22 13:25:33 +00:00
|
|
|
name := block.Coinbase().Hex()
|
2015-01-28 17:35:49 +00:00
|
|
|
b := xeth.NewBlock(block)
|
2014-07-17 20:30:17 +00:00
|
|
|
b.Name = name
|
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
gui.getObjectByName("chainView").Call("addBlock", b, initial)
|
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 := "+"
|
2014-05-21 11:37:46 +00:00
|
|
|
if unconfirmedFunds.Cmp(big.NewInt(0)) < 0 {
|
2014-05-14 12:57:05 +00:00
|
|
|
pos = "-"
|
|
|
|
}
|
2015-03-16 10:27:38 +00:00
|
|
|
val := common.CurrencyToString(new(big.Int).Abs(common.BigCopy(unconfirmedFunds)))
|
|
|
|
str = fmt.Sprintf("%v (%s %v)", common.CurrencyToString(amount), pos, val)
|
2014-05-14 12:57:05 +00:00
|
|
|
} else {
|
2015-03-16 10:27:38 +00:00
|
|
|
str = fmt.Sprintf("%v", common.CurrencyToString(amount))
|
2014-05-14 12:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Call("setWalletValue", str)
|
|
|
|
}
|
|
|
|
|
2014-07-18 09:57:58 +00:00
|
|
|
func (self *Gui) getObjectByName(objectName string) qml.Object {
|
|
|
|
return self.win.Root().ObjectByName(objectName)
|
|
|
|
}
|
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
func (gui *Gui) SendCommand(cmd ServEv) {
|
|
|
|
gui.serviceEvents <- cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) service() {
|
|
|
|
for ev := range gui.serviceEvents {
|
|
|
|
switch ev {
|
|
|
|
case setup:
|
|
|
|
go gui.setup()
|
|
|
|
case update:
|
|
|
|
go gui.update()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) setup() {
|
|
|
|
for gui.win == nil {
|
|
|
|
time.Sleep(time.Millisecond * 200)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, plugin := range gui.plugins {
|
|
|
|
guilogger.Infoln("Loading plugin ", plugin.Name)
|
|
|
|
gui.win.Root().Call("addPlugin", plugin.Path, "")
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
2014-11-14 23:29:27 +00:00
|
|
|
go gui.setInitialChain(false)
|
2014-08-12 09:02:33 +00:00
|
|
|
gui.loadAddressBook()
|
2014-11-07 11:18:48 +00:00
|
|
|
gui.loadMergedMiningOptions()
|
2014-08-12 09:02:33 +00:00
|
|
|
gui.setPeerInfo()
|
|
|
|
}()
|
2014-05-14 12:57:05 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
gui.whisper.SetView(gui.getObjectByName("whisperView"))
|
2014-09-07 22:50:25 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
gui.SendCommand(update)
|
|
|
|
}
|
2014-08-20 08:00:02 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
// Simple go routine function that updates the list of peers in the GUI
|
|
|
|
func (gui *Gui) update() {
|
2014-07-18 09:57:58 +00:00
|
|
|
peerUpdateTicker := time.NewTicker(5 * time.Second)
|
2014-09-24 17:57:22 +00:00
|
|
|
generalUpdateTicker := time.NewTicker(500 * time.Millisecond)
|
2014-08-23 09:00:15 +00:00
|
|
|
statsUpdateTicker := time.NewTicker(5 * time.Second)
|
2014-06-02 13:16:37 +00:00
|
|
|
|
2014-07-18 09:57:58 +00:00
|
|
|
lastBlockLabel := gui.getObjectByName("lastBlockLabel")
|
2015-03-05 16:37:00 +00:00
|
|
|
//miningLabel := gui.getObjectByName("miningLabel")
|
2014-04-30 15:13:12 +00:00
|
|
|
|
2014-10-14 17:38:38 +00:00
|
|
|
events := gui.eth.EventMux().Subscribe(
|
2015-02-19 21:33:22 +00:00
|
|
|
core.ChainEvent{},
|
2014-12-04 09:28:02 +00:00
|
|
|
core.TxPreEvent{},
|
|
|
|
core.TxPostEvent{},
|
2014-10-14 17:38:38 +00:00
|
|
|
)
|
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
defer events.Unsubscribe()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case ev, isopen := <-events.Chan():
|
|
|
|
if !isopen {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch ev := ev.(type) {
|
2015-02-19 21:33:22 +00:00
|
|
|
case core.ChainEvent:
|
|
|
|
gui.processBlock(ev.Block, false)
|
2015-01-08 15:38:24 +00:00
|
|
|
case core.TxPreEvent:
|
2015-02-17 22:10:37 +00:00
|
|
|
gui.insertTransaction("pre", ev.Tx)
|
2014-08-10 13:57:42 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
case core.TxPostEvent:
|
2015-02-17 22:10:37 +00:00
|
|
|
gui.getObjectByName("pendingTxView").Call("removeTx", xeth.NewTx(ev.Tx))
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2015-01-08 15:38:24 +00:00
|
|
|
|
|
|
|
case <-peerUpdateTicker.C:
|
|
|
|
gui.setPeerInfo()
|
2015-02-13 22:55:50 +00:00
|
|
|
|
2015-01-08 15:38:24 +00:00
|
|
|
case <-generalUpdateTicker.C:
|
|
|
|
statusText := "#" + gui.eth.ChainManager().CurrentBlock().Number().String()
|
|
|
|
lastBlockLabel.Set("text", statusText)
|
2015-03-02 21:39:07 +00:00
|
|
|
//miningLabel.Set("text", strconv.FormatInt(gui.uiLib.Miner().HashRate(), 10))
|
2015-01-08 15:38:24 +00:00
|
|
|
case <-statsUpdateTicker.C:
|
|
|
|
gui.setStatsPane()
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2015-01-08 15:38:24 +00:00
|
|
|
}
|
2014-02-23 00:56:04 +00:00
|
|
|
}
|
|
|
|
|
2014-08-23 09:00:15 +00:00
|
|
|
func (gui *Gui) setStatsPane() {
|
|
|
|
var memStats runtime.MemStats
|
|
|
|
runtime.ReadMemStats(&memStats)
|
|
|
|
|
|
|
|
statsPane := gui.getObjectByName("statsPane")
|
2014-11-14 12:51:41 +00:00
|
|
|
statsPane.Set("text", fmt.Sprintf(`###### Mist %s (%s) #######
|
2014-09-17 13:58:44 +00:00
|
|
|
|
|
|
|
eth %d (p2p = %d)
|
2014-08-23 09:00:15 +00:00
|
|
|
|
|
|
|
CPU: # %d
|
|
|
|
Goroutines: # %d
|
|
|
|
CGoCalls: # %d
|
|
|
|
|
|
|
|
Alloc: %d
|
|
|
|
Heap Alloc: %d
|
|
|
|
|
|
|
|
CGNext: %x
|
|
|
|
NumGC: %d
|
2014-11-14 12:51:41 +00:00
|
|
|
`, Version, runtime.Version(),
|
2014-12-15 12:00:09 +00:00
|
|
|
eth.ProtocolVersion, 2,
|
2014-09-17 13:58:44 +00:00
|
|
|
runtime.NumCPU, runtime.NumGoroutine(), runtime.NumCgoCall(),
|
2014-08-23 09:00:15 +00:00
|
|
|
memStats.Alloc, memStats.HeapAlloc,
|
|
|
|
memStats.NextGC, memStats.NumGC,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2015-02-19 15:39:20 +00:00
|
|
|
type qmlpeer struct{ Addr, NodeID, Name, Caps string }
|
2015-02-13 22:55:50 +00:00
|
|
|
|
|
|
|
type peersByID []*qmlpeer
|
|
|
|
|
|
|
|
func (s peersByID) Len() int { return len(s) }
|
|
|
|
func (s peersByID) Less(i, j int) bool { return s[i].NodeID < s[j].NodeID }
|
|
|
|
func (s peersByID) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
|
|
|
2014-05-30 11:04:23 +00:00
|
|
|
func (gui *Gui) setPeerInfo() {
|
2015-02-13 22:55:50 +00:00
|
|
|
peers := gui.eth.Peers()
|
|
|
|
qpeers := make(peersByID, len(peers))
|
|
|
|
for i, p := range peers {
|
|
|
|
qpeers[i] = &qmlpeer{
|
|
|
|
NodeID: p.ID().String(),
|
|
|
|
Addr: p.RemoteAddr().String(),
|
2015-02-19 15:39:20 +00:00
|
|
|
Name: p.Name(),
|
2015-02-13 22:55:50 +00:00
|
|
|
Caps: fmt.Sprint(p.Caps()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// we need to sort the peers because they jump around randomly
|
|
|
|
// otherwise. order returned by eth.Peers is random because they
|
|
|
|
// are taken from a map.
|
|
|
|
sort.Sort(qpeers)
|
|
|
|
|
|
|
|
gui.win.Root().Call("setPeerCounters", fmt.Sprintf("%d / %d", len(peers), gui.eth.MaxPeers()))
|
|
|
|
gui.win.Root().Call("clearPeers")
|
|
|
|
for _, p := range qpeers {
|
|
|
|
gui.win.Root().Call("addPeer", p)
|
|
|
|
}
|
2014-05-30 11:04:23 +00:00
|
|
|
}
|
|
|
|
|
2014-12-22 12:23:11 +00: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
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
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))
|
|
|
|
}
|
|
|
|
*/
|