2014-07-01 22:13:50 +00:00
|
|
|
package main
|
2014-02-21 11:37:40 +00:00
|
|
|
|
|
|
|
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-06-26 17:41:36 +00:00
|
|
|
"github.com/ethereum/eth-go/ethlog"
|
2014-07-18 10:01:26 +00:00
|
|
|
"github.com/ethereum/eth-go/ethminer"
|
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-07-03 16:35:48 +00:00
|
|
|
"github.com/ethereum/eth-go/ethwire"
|
2014-05-30 11:28:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/utils"
|
2014-04-23 22:01:22 +00:00
|
|
|
"github.com/go-qml/qml"
|
2014-02-28 11:16:46 +00:00
|
|
|
"math/big"
|
2014-07-18 10:29:14 +00:00
|
|
|
"strconv"
|
2014-02-21 11:37:40 +00:00
|
|
|
"strings"
|
2014-06-02 13:16:37 +00:00
|
|
|
"time"
|
2014-02-21 11:37:40 +00:00
|
|
|
)
|
|
|
|
|
2014-06-23 10:41:11 +00:00
|
|
|
var logger = ethlog.NewLogger("GUI")
|
|
|
|
|
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
|
|
|
|
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
|
|
|
uiLib *UiLib
|
2014-02-25 09:54:37 +00:00
|
|
|
|
|
|
|
txDb *ethdb.LDBDatabase
|
|
|
|
|
2014-06-26 17:41:36 +00:00
|
|
|
pub *ethpub.PEthereum
|
2014-06-23 10:41:11 +00:00
|
|
|
logLevel ethlog.LogLevel
|
2014-06-26 17:41:36 +00:00
|
|
|
open bool
|
2014-06-29 19:38:26 +00:00
|
|
|
|
2014-07-03 16:35:48 +00:00
|
|
|
Session string
|
|
|
|
clientIdentity *ethwire.SimpleClientIdentity
|
|
|
|
config *ethutil.ConfigManager
|
2014-07-18 10:01:26 +00:00
|
|
|
|
|
|
|
miner *ethminer.Miner
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Create GUI, but doesn't start it
|
2014-07-03 16:35:48 +00:00
|
|
|
func NewWindow(ethereum *eth.Ethereum, config *ethutil.ConfigManager, clientIdentity *ethwire.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
|
|
|
|
2014-05-13 10:42:01 +00:00
|
|
|
pub := ethpub.NewPEthereum(ethereum)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
2014-07-03 16:35:48 +00:00
|
|
|
return &Gui{eth: ethereum, txDb: db, pub: pub, logLevel: ethlog.LogLevel(logLevel), Session: session, open: false, clientIdentity: clientIdentity, config: config}
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) Start(assetPath string) {
|
2014-05-14 19:34:01 +00:00
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
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-06-04 13:54:33 +00:00
|
|
|
}, {
|
|
|
|
Init: func(p *ethpub.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()
|
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-21 12:00:54 +00:00
|
|
|
context.SetVar("pub", gui.pub)
|
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-06-26 11:13:31 +00:00
|
|
|
var addlog = false
|
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-06-26 11:13:31 +00:00
|
|
|
addlog = true
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
if err != nil {
|
2014-06-23 10:41:11 +00:00
|
|
|
logger.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-23 10:41:11 +00:00
|
|
|
logger.Infoln("Starting GUI")
|
2014-06-26 15:26:14 +00:00
|
|
|
gui.open = true
|
2014-05-31 09:34:37 +00:00
|
|
|
win.Show()
|
2014-06-26 11:13:31 +00:00
|
|
|
// only add the gui logger after window is shown otherwise slider wont be shown
|
|
|
|
if addlog {
|
|
|
|
ethlog.AddLogSystem(gui)
|
|
|
|
}
|
2014-05-12 11:56:29 +00:00
|
|
|
win.Wait()
|
2014-07-03 16:35:48 +00:00
|
|
|
// need to silence gui logger after window closed otherwise logsystem hangs (but do not save loglevel)
|
|
|
|
gui.logLevel = ethlog.Silence
|
2014-06-26 15:26:14 +00:00
|
|
|
gui.open = false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) Stop() {
|
|
|
|
if gui.open {
|
2014-07-03 16:35:48 +00:00
|
|
|
gui.logLevel = ethlog.Silence
|
2014-06-26 15:26:14 +00:00
|
|
|
gui.open = false
|
|
|
|
gui.win.Hide()
|
|
|
|
}
|
|
|
|
logger.Infoln("Stopped")
|
2014-05-12 11:56:29 +00:00
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
|
2014-05-30 11:28:31 +00:00
|
|
|
func (gui *Gui) ToggleMining() {
|
|
|
|
var txt string
|
|
|
|
if gui.eth.Mining {
|
|
|
|
utils.StopMining(gui.eth)
|
|
|
|
txt = "Start mining"
|
|
|
|
} else {
|
|
|
|
utils.StartMining(gui.eth)
|
2014-07-18 10:01:26 +00:00
|
|
|
gui.miner = utils.GetMiner()
|
2014-05-30 11:28:31 +00:00
|
|
|
txt = "Stop mining"
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Set("miningButtonText", txt)
|
|
|
|
}
|
|
|
|
|
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-07-24 12:16:43 +00:00
|
|
|
go func() {
|
2014-07-29 22:17:23 +00:00
|
|
|
go gui.setInitialBlockChain()
|
2014-07-24 12:16:43 +00:00
|
|
|
gui.loadAddressBook()
|
|
|
|
gui.setPeerInfo()
|
2014-07-29 22:17:23 +00:00
|
|
|
gui.readPreviousTransactions()
|
2014-07-24 12:16:43 +00:00
|
|
|
}()
|
2014-05-30 11:04:23 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
go gui.update()
|
|
|
|
|
|
|
|
return 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) {
|
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 {
|
|
|
|
win := comp.CreateWindow(nil)
|
|
|
|
|
|
|
|
gui.win = win
|
|
|
|
gui.uiLib.win = win
|
|
|
|
|
|
|
|
return gui.win
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
2014-06-29 19:38:26 +00: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 16:24:28 +00:00
|
|
|
func (gui *Gui) setInitialBlockChain() {
|
2014-05-27 08:29:39 +00:00
|
|
|
sBlk := gui.eth.BlockChain().LastBlockHash
|
2014-05-26 15:07:20 +00:00
|
|
|
blk := gui.eth.BlockChain().GetBlock(sBlk)
|
2014-05-27 08:29:39 +00:00
|
|
|
for ; blk != nil; blk = gui.eth.BlockChain().GetBlock(sBlk) {
|
|
|
|
sBlk = blk.PrevHash
|
2014-06-29 19:38:26 +00:00
|
|
|
addr := gui.address()
|
2014-06-03 09:48:44 +00:00
|
|
|
|
|
|
|
// Loop through all transactions to see if we missed any while being offline
|
|
|
|
for _, tx := range blk.Transactions() {
|
2014-06-29 19:38:26 +00:00
|
|
|
if bytes.Compare(tx.Sender(), addr) == 0 || bytes.Compare(tx.Recipient, addr) == 0 {
|
2014-06-03 09:48:44 +00:00
|
|
|
if ok, _ := gui.txDb.Get(tx.Hash()); ok == nil {
|
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
type address struct {
|
|
|
|
Name, Address string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) loadAddressBook() {
|
|
|
|
gui.win.Root().Call("clearAddress")
|
2014-07-01 18:10:38 +00:00
|
|
|
|
|
|
|
nameReg := ethpub.EthereumConfig(gui.eth.StateManager()).NameReg()
|
|
|
|
if nameReg != nil {
|
2014-07-21 09:55:50 +00:00
|
|
|
nameReg.EachStorage(func(name string, value *ethutil.Value) {
|
2014-07-02 09:29:59 +00:00
|
|
|
if name[0] != 0 {
|
2014-07-21 09:55:50 +00:00
|
|
|
value.Decode()
|
2014-07-02 09:29:59 +00:00
|
|
|
gui.win.Root().Call("addAddress", struct{ Name, Address string }{name, ethutil.Bytes2Hex(value.Bytes())})
|
|
|
|
}
|
2014-05-31 09:34:37 +00:00
|
|
|
})
|
|
|
|
}
|
2014-05-30 09:50:30 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) readPreviousTransactions() {
|
|
|
|
it := gui.txDb.Db().NewIterator(nil, nil)
|
2014-06-29 19:38:26 +00:00
|
|
|
addr := gui.address()
|
2014-02-25 09:54:37 +00:00
|
|
|
for it.Next() {
|
|
|
|
tx := ethchain.NewTransactionFromBytes(it.Value())
|
|
|
|
|
2014-05-25 22:10:38 +00:00
|
|
|
var inout string
|
2014-06-29 19:38:26 +00:00
|
|
|
if bytes.Compare(tx.Sender(), addr) == 0 {
|
2014-05-25 22:10:38 +00:00
|
|
|
inout = "send"
|
|
|
|
} else {
|
|
|
|
inout = "recv"
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), inout)
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
}
|
|
|
|
|
2014-05-27 09:49:42 +00:00
|
|
|
func (gui *Gui) processBlock(block *ethchain.Block, initial bool) {
|
2014-07-17 20:30:17 +00:00
|
|
|
name := ethpub.FindNameInNameReg(gui.eth.StateManager(), block.Coinbase)
|
|
|
|
b := ethpub.NewPBlock(block)
|
|
|
|
b.Name = name
|
|
|
|
|
|
|
|
gui.win.Root().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 = "-"
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
reactor := gui.eth.Reactor()
|
|
|
|
|
2014-07-17 20:01:39 +00:00
|
|
|
var (
|
|
|
|
blockChan = make(chan ethutil.React, 1)
|
|
|
|
txChan = make(chan ethutil.React, 1)
|
|
|
|
objectChan = make(chan ethutil.React, 1)
|
|
|
|
peerChan = make(chan ethutil.React, 1)
|
|
|
|
chainSyncChan = make(chan ethutil.React, 1)
|
2014-07-18 10:21:34 +00:00
|
|
|
miningChan = make(chan ethutil.React, 1)
|
2014-07-17 20:01:39 +00:00
|
|
|
)
|
2014-05-14 12:57:05 +00:00
|
|
|
|
2014-05-15 12:06:06 +00:00
|
|
|
reactor.Subscribe("newBlock", blockChan)
|
|
|
|
reactor.Subscribe("newTx:pre", txChan)
|
|
|
|
reactor.Subscribe("newTx:post", txChan)
|
2014-07-17 20:01:39 +00:00
|
|
|
reactor.Subscribe("chainSync", chainSyncChan)
|
2014-07-18 10:21:34 +00:00
|
|
|
reactor.Subscribe("miner:start", miningChan)
|
|
|
|
reactor.Subscribe("miner:stop", miningChan)
|
2014-07-01 22:28:45 +00:00
|
|
|
|
|
|
|
nameReg := ethpub.EthereumConfig(gui.eth.StateManager()).NameReg()
|
|
|
|
if nameReg != nil {
|
|
|
|
reactor.Subscribe("object:"+string(nameReg.Address()), objectChan)
|
|
|
|
}
|
2014-05-30 11:04:23 +00:00
|
|
|
reactor.Subscribe("peerList", peerChan)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-07-18 09:57:58 +00:00
|
|
|
peerUpdateTicker := time.NewTicker(5 * time.Second)
|
|
|
|
generalUpdateTicker := time.NewTicker(1 * time.Second)
|
2014-06-02 13:16: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-06-29 19:38:26 +00:00
|
|
|
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(state.GetAccount(gui.address()).Amount)))
|
2014-07-18 09:57:58 +00:00
|
|
|
gui.getObjectByName("syncProgressIndicator").Set("visible", !gui.eth.IsUpToDate())
|
|
|
|
|
|
|
|
lastBlockLabel := gui.getObjectByName("lastBlockLabel")
|
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)
|
2014-05-27 09:49:42 +00:00
|
|
|
gui.processBlock(block, false)
|
2014-06-29 19:38:26 +00:00
|
|
|
if bytes.Compare(block.Coinbase, gui.address()) == 0 {
|
|
|
|
gui.setWalletValue(gui.eth.StateManager().CurrentState().GetAccount(gui.address()).Amount, nil)
|
2014-05-14 12:57:05 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
case txMsg := <-txChan:
|
2014-05-15 12:06:06 +00:00
|
|
|
tx := txMsg.Resource.(*ethchain.Transaction)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-05-15 12:06:06 +00:00
|
|
|
if txMsg.Event == "newTx:pre" {
|
2014-06-29 19:38:26 +00:00
|
|
|
object := state.GetAccount(gui.address())
|
2014-05-08 16:24:28 +00:00
|
|
|
|
2014-06-29 19:38:26 +00:00
|
|
|
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
|
2014-05-25 22:10:38 +00:00
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), "send")
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
|
2014-02-28 11:16:46 +00:00
|
|
|
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
|
2014-06-29 19:38:26 +00:00
|
|
|
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
|
2014-05-25 22:10:38 +00:00
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), "recv")
|
2014-05-08 16:24:28 +00:00
|
|
|
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-06-29 19:38:26 +00:00
|
|
|
object := state.GetAccount(gui.address())
|
|
|
|
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
|
2014-05-08 16:24:28 +00:00
|
|
|
object.SubAmount(tx.Value)
|
2014-06-29 19:38:26 +00:00
|
|
|
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
|
2014-05-08 16:24:28 +00:00
|
|
|
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
|
|
|
|
2014-05-21 10:14:39 +00:00
|
|
|
state.UpdateStateObject(object)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2014-07-17 20:01:39 +00:00
|
|
|
case msg := <-chainSyncChan:
|
|
|
|
sync := msg.Resource.(bool)
|
|
|
|
gui.win.Root().ObjectByName("syncProgressIndicator").Set("visible", sync)
|
|
|
|
|
2014-05-30 09:50:30 +00:00
|
|
|
case <-objectChan:
|
|
|
|
gui.loadAddressBook()
|
2014-05-30 11:04:23 +00:00
|
|
|
case <-peerChan:
|
|
|
|
gui.setPeerInfo()
|
2014-07-18 09:57:58 +00:00
|
|
|
case <-peerUpdateTicker.C:
|
2014-06-02 13:16:37 +00:00
|
|
|
gui.setPeerInfo()
|
2014-07-18 10:21:34 +00:00
|
|
|
case msg := <-miningChan:
|
|
|
|
if msg.Event == "miner:start" {
|
|
|
|
gui.miner = msg.Resource.(*ethminer.Miner)
|
|
|
|
} else {
|
|
|
|
gui.miner = nil
|
|
|
|
}
|
|
|
|
|
2014-07-18 09:57:58 +00:00
|
|
|
case <-generalUpdateTicker.C:
|
2014-07-18 10:29:14 +00:00
|
|
|
statusText := "#" + gui.eth.BlockChain().CurrentBlock.Number.String()
|
2014-07-18 10:01:26 +00:00
|
|
|
if gui.miner != nil {
|
|
|
|
pow := gui.miner.GetPow()
|
2014-07-18 10:29:14 +00:00
|
|
|
if pow.GetHashrate() != 0 {
|
|
|
|
statusText = "Mining @ " + strconv.FormatInt(pow.GetHashrate(), 10) + "Khash - " + statusText
|
|
|
|
}
|
2014-07-18 10:01:26 +00:00
|
|
|
}
|
2014-07-18 10:29:14 +00:00
|
|
|
lastBlockLabel.Set("text", statusText)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-23 00:56:04 +00:00
|
|
|
}
|
|
|
|
|
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")
|
|
|
|
for _, peer := range gui.pub.GetPeers() {
|
|
|
|
gui.win.Root().Call("addPeer", peer)
|
|
|
|
}
|
2014-05-30 11:04:23 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 19:38:26 +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-06-03 12:30:26 +00:00
|
|
|
func (gui *Gui) RegisterName(name string) {
|
2014-07-17 15:10:35 +00:00
|
|
|
name = fmt.Sprintf("\"register\"\n\"%s\"", name)
|
2014-07-01 18:10:38 +00:00
|
|
|
|
|
|
|
gui.pub.Transact(gui.privateKey(), "NameReg", "", "10000", "10000000000000", name)
|
2014-06-03 12:30:26 +00:00
|
|
|
}
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
|
2014-06-29 19:38:26 +00:00
|
|
|
return gui.pub.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data)
|
2014-05-08 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
|
2014-06-29 19:38:26 +00:00
|
|
|
return gui.pub.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data)
|
2014-05-08 16:24:28 +00:00
|
|
|
}
|
2014-05-30 17:36:05 +00:00
|
|
|
|
2014-07-03 16:35:48 +00:00
|
|
|
func (gui *Gui) SetCustomIdentifier(customIdentifier string) {
|
|
|
|
gui.clientIdentity.SetCustomIdentifier(customIdentifier)
|
|
|
|
gui.config.Save("id", customIdentifier)
|
2014-05-30 17:36:05 +00:00
|
|
|
}
|
|
|
|
|
2014-07-03 16:35:48 +00:00
|
|
|
func (gui *Gui) GetCustomIdentifier() string {
|
|
|
|
return gui.clientIdentity.GetCustomIdentifier()
|
2014-05-30 17:36:05 +00:00
|
|
|
}
|
2014-06-14 13:44:32 +00:00
|
|
|
|
2014-06-23 10:41:11 +00:00
|
|
|
// functions that allow Gui to implement interface ethlog.LogSystem
|
|
|
|
func (gui *Gui) SetLogLevel(level ethlog.LogLevel) {
|
|
|
|
gui.logLevel = level
|
2014-07-03 16:35:48 +00:00
|
|
|
gui.config.Save("loglevel", level)
|
2014-06-23 10:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) GetLogLevel() ethlog.LogLevel {
|
|
|
|
return gui.logLevel
|
|
|
|
}
|
|
|
|
|
2014-06-26 11:13:31 +00:00
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2014-06-23 10:41:11 +00:00
|
|
|
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)
|
|
|
|
}
|
2014-06-14 13:44:32 +00:00
|
|
|
}
|