plugeth/cmd/mist/gui.go

560 lines
14 KiB
Go
Raw Normal View History

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-02-25 09:54:37 +00:00
"bytes"
2014-08-20 08:00:02 +00:00
"encoding/json"
2014-02-21 11:37:40 +00:00
"fmt"
"io/ioutil"
2014-07-29 22:30:57 +00:00
"math/big"
"os"
2014-09-07 22:50:25 +00:00
"path"
2014-08-23 09:00:15 +00:00
"runtime"
2014-07-29 22:30:57 +00:00
"strconv"
"time"
2014-09-14 11:28:28 +00:00
2014-12-04 09:28:02 +00:00
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethutil"
2014-10-31 11:56:05 +00:00
"github.com/ethereum/go-ethereum/logger"
2014-10-31 13:56:42 +00:00
"github.com/ethereum/go-ethereum/miner"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/ui/qt/qwhisper"
2014-10-31 13:30:08 +00:00
"github.com/ethereum/go-ethereum/xeth"
2014-08-15 11:27:43 +00:00
"gopkg.in/qml.v1"
2014-02-21 11:37:40 +00:00
)
2014-10-31 11:56:05 +00:00
var guilogger = logger.NewLogger("GUI")
type ServEv byte
const (
setup ServEv = iota
update
)
2014-02-21 11:37:40 +00:00
type Gui struct {
// The main application window
win *qml.Window
// QML Engine
2014-02-21 11:37:40 +00:00
engine *qml.Engine
component *qml.Common
// The ethereum interface
eth *eth.Ethereum
serviceEvents chan ServEv
2014-02-21 16:29:59 +00:00
// The public Ethereum library
uiLib *UiLib
whisper *qwhisper.Whisper
2014-02-25 09:54:37 +00:00
txDb *ethdb.LDBDatabase
2014-10-31 11:56:05 +00:00
logLevel logger.LogLevel
2014-06-26 17:41:36 +00:00
open bool
xeth *xeth.JSXEth
2014-08-15 11:16:07 +00:00
Session string
clientIdentity *p2p.SimpleClientIdentity
config *ethutil.ConfigManager
2014-07-18 10:01:26 +00:00
2014-08-20 08:00:02 +00:00
plugins map[string]plugin
2015-01-04 13:20:16 +00:00
miner *miner.Miner
2014-02-21 11:37:40 +00:00
}
// Create GUI, but doesn't start it
func NewWindow(ethereum *eth.Ethereum, config *ethutil.ConfigManager, clientIdentity *p2p.SimpleClientIdentity, session string, logLevel int) *Gui {
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
xeth := xeth.NewJSXEth(ethereum)
gui := &Gui{eth: ethereum,
txDb: db,
xeth: xeth,
logLevel: logger.LogLevel(logLevel),
Session: session,
open: false,
clientIdentity: clientIdentity,
config: config,
plugins: make(map[string]plugin),
serviceEvents: make(chan ServEv, 1),
}
2014-09-07 22:50:25 +00:00
data, _ := ethutil.ReadAllFile(path.Join(ethutil.Config.ExecPath, "plugins.json"))
2014-08-20 08:00:02 +00:00
json.Unmarshal([]byte(data), &gui.plugins)
return gui
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-11-14 23:29:27 +00:00
guilogger.Infoln("Starting GUI")
go gui.service()
// Register ethereum functions
qml.RegisterTypes("Ethereum", 1, 0, []qml.TypeSpec{{
2014-10-31 13:30:08 +00:00
Init: func(p *xeth.JSBlock, obj qml.Object) { p.Number = 0; p.Hash = "" },
2014-02-23 00:56:04 +00:00
}, {
2014-10-31 13:30:08 +00:00
Init: func(p *xeth.JSTransaction, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
}, {
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
}})
// Create a new QML engine
2014-05-08 16:24:28 +00:00
gui.engine = qml.NewEngine()
context := gui.engine.Context()
gui.uiLib = NewUiLib(gui.engine, gui.eth, assetPath)
gui.whisper = qwhisper.New(gui.eth.Whisper())
// Expose the eth library and the ui library to QML
context.SetVar("gui", gui)
context.SetVar("eth", gui.uiLib)
2015-01-05 16:12:52 +00:00
context.SetVar("shh", gui.whisper)
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-02-21 11:37:40 +00:00
panic(err)
}
gui.open = true
win.Show()
2014-08-12 10:21:50 +00:00
2014-10-31 11:56:05 +00:00
// only add the gui guilogger after window is shown otherwise slider wont be shown
2015-01-07 12:17:48 +00:00
logger.AddLogSystem(gui)
2014-05-12 11:56:29 +00:00
win.Wait()
2014-08-12 10:21:50 +00:00
2014-10-31 11:56:05 +00:00
// need to silence gui guilogger after window closed otherwise logsystem hangs (but do not save loglevel)
gui.logLevel = logger.Silence
gui.open = false
}
func (gui *Gui) Stop() {
if gui.open {
2014-10-31 11:56:05 +00:00
gui.logLevel = logger.Silence
gui.open = false
gui.win.Hide()
}
gui.uiLib.jsEngine.Stop()
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-02-21 11:37:40 +00:00
gui.createWindow(component)
2014-05-12 11:56:29 +00:00
return gui.win, nil
}
2014-07-25 08:41:57 +00:00
func (gui *Gui) ImportKey(filePath string) {
}
2014-05-12 11:56:29 +00:00
func (gui *Gui) showKeyImport(context *qml.Context) (*qml.Window, error) {
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 {
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
}
func (gui *Gui) ImportAndSetPrivKey(secret string) bool {
err := gui.eth.KeyManager().InitFromString(gui.Session, 0, secret)
if err != nil {
2014-10-31 11:56:05 +00:00
guilogger.Errorln("unable to import: ", err)
return false
}
2014-10-31 11:56:05 +00:00
guilogger.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 {
2014-10-31 11:56:05 +00:00
guilogger.Errorln("unable to create key: ", err)
return "", "", "", ""
}
return gui.eth.KeyManager().KeyPair().AsStrings()
}
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)
}
}
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 {
view.Call("addAddress", struct{ Name, Address string }{string(it.Key), ethutil.Bytes2Hex(it.Value)})
}
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
*/
}
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
}{false, string(it.Key), ethutil.Bytes2Hex(it.Value), 0, i})
i++
2015-01-28 17:14:28 +00:00
}
2015-01-02 11:07:26 +00:00
}
2015-01-28 17:14:28 +00:00
*/
}
func (gui *Gui) insertTransaction(window string, tx *types.Transaction) {
addr := gui.address()
2014-02-25 09:54:37 +00:00
2014-08-10 13:57:42 +00:00
var inout string
if bytes.Compare(tx.From(), addr) == 0 {
2014-08-10 13:57:42 +00:00
inout = "send"
} else {
inout = "recv"
}
var (
2015-01-07 12:17:48 +00:00
ptx = xeth.NewJSTx(tx)
2015-01-28 17:14:28 +00:00
send = ethutil.Bytes2Hex(tx.From())
rec = ethutil.Bytes2Hex(tx.To())
2014-08-10 13:57:42 +00:00
)
2015-01-28 17:14:28 +00:00
ptx.Sender = send
ptx.Address = rec
2014-08-10 13:57:42 +00:00
if window == "post" {
2014-08-25 10:53:17 +00:00
//gui.getObjectByName("transactionView").Call("addTx", ptx, inout)
} 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() {
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()
}
func (gui *Gui) processBlock(block *types.Block, initial bool) {
2015-01-28 17:14:28 +00:00
name := ethutil.Bytes2Hex(block.Coinbase())
2014-10-31 13:30:08 +00:00
b := xeth.NewJSBlock(block)
b.Name = name
gui.getObjectByName("chainView").Call("addBlock", b, initial)
2014-02-21 11:37:40 +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 {
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 09:57:58 +00:00
func (self *Gui) getObjectByName(objectName string) qml.Object {
return self.win.Root().ObjectByName(objectName)
}
func loadJavascriptAssets(gui *Gui) (jsfiles string) {
for _, fn := range []string{"ext/q.js", "ext/eth.js/main.js", "ext/eth.js/qt.js", "ext/setup.js"} {
f, err := os.Open(gui.uiLib.AssetPath(fn))
if err != nil {
fmt.Println(err)
continue
}
content, err := ioutil.ReadAll(f)
if err != nil {
fmt.Println(err)
continue
}
jsfiles += string(content)
}
return
}
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, "")
}
go func() {
2014-11-14 23:29:27 +00:00
go gui.setInitialChain(false)
gui.loadAddressBook()
gui.loadMergedMiningOptions()
gui.setPeerInfo()
}()
// Inject javascript files each time navigation is requested.
// Unfortunately webview.experimental.userScripts injects _after_
// the page has loaded which kind of renders it useless...
2015-01-09 11:45:09 +00:00
//jsfiles := loadJavascriptAssets(gui)
gui.getObjectByName("webView").On("navigationRequested", func() {
2015-01-09 11:45:09 +00:00
//gui.getObjectByName("webView").Call("injectJs", jsfiles)
})
gui.whisper.SetView(gui.getObjectByName("whisperView"))
2014-09-07 22:50:25 +00:00
gui.SendCommand(update)
}
2014-08-20 08:00:02 +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-12-10 18:59:12 +00:00
state := gui.eth.ChainManager().TransState()
2014-04-30 15:13:12 +00:00
2014-10-22 23:01:41 +00:00
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(state.GetAccount(gui.address()).Balance())))
2014-07-18 09:57:58 +00:00
lastBlockLabel := gui.getObjectByName("lastBlockLabel")
2014-08-21 18:13:38 +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(
//eth.PeerListEvent{},
2014-12-04 09:28:02 +00:00
core.NewBlockEvent{},
core.TxPreEvent{},
core.TxPostEvent{},
2014-10-14 17:38:38 +00:00
)
defer events.Unsubscribe()
for {
select {
case ev, isopen := <-events.Chan():
if !isopen {
return
}
switch ev := ev.(type) {
case core.NewBlockEvent:
gui.processBlock(ev.Block, false)
if bytes.Compare(ev.Block.Coinbase(), gui.address()) == 0 {
gui.setWalletValue(gui.eth.ChainManager().State().GetBalance(gui.address()), nil)
}
2014-05-08 16:24:28 +00:00
case core.TxPreEvent:
tx := ev.Tx
tstate := gui.eth.ChainManager().TransState()
cstate := gui.eth.ChainManager().State()
taccount := tstate.GetAccount(gui.address())
caccount := cstate.GetAccount(gui.address())
unconfirmedFunds := new(big.Int).Sub(taccount.Balance(), caccount.Balance())
2014-08-10 13:57:42 +00:00
gui.setWalletValue(taccount.Balance(), unconfirmedFunds)
gui.insertTransaction("pre", tx)
2014-08-10 13:57:42 +00:00
case core.TxPostEvent:
tx := ev.Tx
object := state.GetAccount(gui.address())
2014-08-10 13:57:42 +00:00
if bytes.Compare(tx.From(), gui.address()) == 0 {
object.SubAmount(tx.Value())
2014-10-14 17:38:38 +00:00
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
} else if bytes.Compare(tx.To(), gui.address()) == 0 {
object.AddAmount(tx.Value())
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
}
2014-07-21 12:30:37 +00:00
gui.setWalletValue(object.Balance(), nil)
state.UpdateStateObject(object)
2014-02-25 09:54:37 +00:00
}
case <-peerUpdateTicker.C:
gui.setPeerInfo()
case <-generalUpdateTicker.C:
statusText := "#" + gui.eth.ChainManager().CurrentBlock().Number().String()
lastBlockLabel.Set("text", statusText)
miningLabel.Set("text", "Mining @ "+strconv.FormatInt(gui.uiLib.miner.GetPow().GetHashrate(), 10)+"Khash")
/*
blockLength := gui.eth.BlockPool().BlocksProcessed
chainLength := gui.eth.BlockPool().ChainLength
var (
pct float64 = 1.0 / float64(chainLength) * float64(blockLength)
dlWidget = gui.win.Root().ObjectByName("downloadIndicator")
dlLabel = gui.win.Root().ObjectByName("downloadLabel")
)
dlWidget.Set("value", pct)
dlLabel.Set("text", fmt.Sprintf("%d / %d", blockLength, chainLength))
*/
case <-statsUpdateTicker.C:
gui.setStatsPane()
2014-02-25 09:54:37 +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(),
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,
))
}
2014-05-30 11:04:23 +00:00
func (gui *Gui) setPeerInfo() {
gui.win.Root().Call("setPeers", fmt.Sprintf("%d / %d", gui.eth.PeerCount(), gui.eth.MaxPeers))
2014-06-02 13:16:37 +00:00
gui.win.Root().Call("resetPeers")
2015-01-28 17:14:28 +00:00
//for _, peer := range gui.xeth.Peers() {
//gui.win.Root().Call("addPeer", peer)
//}
2014-05-30 11:04:23 +00:00
}
func (gui *Gui) privateKey() string {
return ethutil.Bytes2Hex(gui.eth.KeyManager().PrivateKey())
}
func (gui *Gui) address() []byte {
return gui.eth.KeyManager().Address()
}
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))
}
*/