aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gui.go
blob: e223fe26267678d1bf5ef8134468bb4dc769f3fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package ethui

import (
    "bufio"
    "encoding/hex"
    "fmt"
    "github.com/ethereum/eth-go"
    "github.com/ethereum/eth-go/ethchain"
    "github.com/ethereum/eth-go/ethutil"
    "github.com/niemeyer/qml"
    "strings"
    "time"
)

type Gui struct {
    win       *qml.Window
    engine    *qml.Engine
    component *qml.Common
    eth       *eth.Ethereum
}

func New(ethereum *eth.Ethereum) *Gui {
    return &Gui{eth: ethereum}
}

type Block struct {
    Number int
    Hash   string
}

func NewBlockFromBlock(block *ethchain.Block) *Block {
    info := block.BlockInfo()
    hash := hex.EncodeToString(block.Hash())

    return &Block{Number: int(info.Number), Hash: hash}
}

func (ui *Gui) Start() {
    qml.RegisterTypes("GoExtensions", 1, 0, []qml.TypeSpec{{
        Init: func(p *Block, obj qml.Object) { p.Number = 0; p.Hash = "" },
    }})

    ethutil.Config.Log.Infoln("[GUI] Starting GUI")
    ui.engine = qml.NewEngine()
    component, err := ui.engine.LoadFile("wallet.qml")
    if err != nil {
        panic(err)
    }

    ui.win = component.CreateWindow(nil)
    root := ui.win.Root()

    context := ui.engine.Context()
    context.SetVar("tester", &Tester{root: root})

    ui.eth.BlockManager.SecondaryBlockProcessor = ui

    go ui.setInitialBlockChain()
    go ui.updatePeers()

    ui.win.Show()
    ui.win.Wait()
}

func (ui *Gui) setInitialBlockChain() {
    chain := ui.eth.BlockManager.BlockChain().GetChain(ui.eth.BlockManager.BlockChain().CurrentBlock.Hash(), 10)
    for _, block := range chain {
        ui.ProcessBlock(block)
    }

    ui.eth.Start()
}

func (ui *Gui) ProcessBlock(block *ethchain.Block) {
    ui.win.Root().Call("addBlock", NewBlockFromBlock(block))
}

func (ui *Gui) updatePeers() {
    for {
        ui.win.Root().Call("setPeers", fmt.Sprintf("%d / %d", ui.eth.Peers().Len(), ui.eth.MaxPeers))
        time.Sleep(1 * time.Second)
    }
}

type Tester struct {
    root qml.Object
}

func (t *Tester) Compile(area qml.Object) {
    fmt.Println(area)
    ethutil.Config.Log.Infoln("[TESTER] Compiling")

    code := area.String("text")

    scanner := bufio.NewScanner(strings.NewReader(code))
    scanner.Split(bufio.ScanLines)

    var lines []string
    for scanner.Scan() {
        lines = append(lines, scanner.Text())
    }
}