aboutsummaryrefslogtreecommitdiffstats
path: root/mist/ext_app.go
blob: 514084c974f97a984a2bbb6be0551ecd887ba019 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package main

import (
    "encoding/json"

    "github.com/ethereum/eth-go/ethchain"
    "github.com/ethereum/eth-go/ethpipe"
    "github.com/ethereum/eth-go/ethreact"
    "github.com/ethereum/eth-go/ethstate"
    "github.com/ethereum/go-ethereum/javascript"
    "gopkg.in/qml.v1"
)

type AppContainer interface {
    Create() error
    Destroy()

    Window() *qml.Window
    Engine() *qml.Engine

    NewBlock(*ethchain.Block)
    NewWatcher(chan bool)
    Messages(ethstate.Messages, string)
    Post(string, int)
}

type ExtApplication struct {
    *ethpipe.JSPipe
    eth ethchain.EthManager

    blockChan       chan ethreact.Event
    messageChan     chan ethreact.Event
    quitChan        chan bool
    watcherQuitChan chan bool

    filters map[string]*ethchain.Filter

    container AppContainer
    lib       *UiLib
}

func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication {
    app := &ExtApplication{
        ethpipe.NewJSPipe(lib.eth),
        lib.eth,
        make(chan ethreact.Event, 100),
        make(chan ethreact.Event, 100),
        make(chan bool),
        make(chan bool),
        make(map[string]*ethchain.Filter),
        container,
        lib,
    }

    return app
}

func (app *ExtApplication) run() {
    // Set the "eth" api on to the containers context
    context := app.container.Engine().Context()
    context.SetVar("eth", app)
    context.SetVar("ui", app.lib)

    err := app.container.Create()
    if err != nil {
        logger.Errorln(err)
        return
    }

    // Call the main loop
    go app.mainLoop()

    // Subscribe to events
    reactor := app.lib.eth.Reactor()
    reactor.Subscribe("newBlock", app.blockChan)
    reactor.Subscribe("messages", app.messageChan)

    app.container.NewWatcher(app.watcherQuitChan)

    win := app.container.Window()
    win.Show()
    win.Wait()

    app.stop()
}

func (app *ExtApplication) stop() {
    // Clean up
    reactor := app.lib.eth.Reactor()
    reactor.Unsubscribe("newBlock", app.blockChan)

    // Kill the main loop
    app.quitChan <- true
    app.watcherQuitChan <- true

    close(app.blockChan)
    close(app.quitChan)

    app.container.Destroy()
}

func (app *ExtApplication) mainLoop() {
out:
    for {
        select {
        case <-app.quitChan:
            break out
        case block := <-app.blockChan:
            if block, ok := block.Resource.(*ethchain.Block); ok {
                app.container.NewBlock(block)
            }
        case msg := <-app.messageChan:
            if messages, ok := msg.Resource.(ethstate.Messages); ok {
                for id, filter := range app.filters {
                    msgs := filter.FilterMessages(messages)
                    if len(msgs) > 0 {
                        app.container.Messages(msgs, id)
                    }
                }
            }
        }
    }

}

func (self *ExtApplication) Watch(filterOptions map[string]interface{}, identifier string) {
    self.filters[identifier] = ethchain.NewFilterFromMap(filterOptions, self.eth)
}

func (self *ExtApplication) GetMessages(object map[string]interface{}) string {
    filter := ethchain.NewFilterFromMap(object, self.eth)

    messages := filter.Find()
    var msgs []javascript.JSMessage
    for _, m := range messages {
        msgs = append(msgs, javascript.NewJSMessage(m))
    }

    b, err := json.Marshal(msgs)
    if err != nil {
        return "{\"error\":" + err.Error() + "}"
    }

    return string(b)
}