aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/ethereum.js
blob: 1f36f691e222f9d665c0b67e3919ca67f6438184 (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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Main Ethereum library
window.eth = {
    prototype: Object(),

    // Retrieve block
    //
    // Either supply a number or a string. Type is determent for the lookup method
    // string - Retrieves the block by looking up the hash
    // number - Retrieves the block by looking up the block number
        getBlock: function(numberOrHash, cb) {
                var func;
                if(typeof numberOrHash == "string") {
                        func =  "getBlockByHash";
                } else {
                        func =  "getBlockByNumber";
                }
                postData({call: func, args: [numberOrHash]}, cb);
        },

    // Create transaction
    //
    // Creates a transaction with the current account
    // If no recipient is set, the Ethereum API will see it as a contract creation
    transact: function(sec, recipient, value, gas, gasPrice, data, cb) {
        postData({call: "transact", args: [sec, recipient, value, gas, gasPrice, data]}, cb);
    },

    create: function(sec, value, gas, gasPrice, init, body, cb) {
        postData({call: "create", args: [sec, value, gas, gasPrice, init, body]}, cb);
    },

    getStorageAt: function(address, storageAddress, cb) {
        postData({call: "getStorage", args: [address, storageAddress]}, cb);
    },

    getKey: function(cb) {
        postData({call: "getKey"}, cb);
    },

    getBalanceAt: function(address, cb) {
        postData({call: "getBalance", args: [address]}, cb);
    },

    watch: function(address, storageAddrOrCb, cb) {
        var ev;
        if(cb === undefined) {
            cb = storageAddrOrCb;
            storageAddrOrCb = "";
            ev = "object:"+address;
        } else {
            ev = "storage:"+address+":"+storageAddrOrCb;
        }

        eth.on(ev, cb)

        postData({call: "watch", args: [address, storageAddrOrCb]});
    },

    disconnect: function(address, storageAddrOrCb, cb) {
        var ev;
        if(cb === undefined) {
            cb = storageAddrOrCb;
            storageAddrOrCb = "";
            ev = "object:"+address;
        } else {
            ev = "storage:"+address+":"+storageAddrOrCb;
        }

        eth.off(ev, cb)

        postData({call: "disconnect", args: [address, storageAddrOrCb]});
    },

    set: function(props) {
        postData({call: "set", args: props});
    },

    on: function(event, cb) {
        if(eth._onCallbacks[event] === undefined) {
            eth._onCallbacks[event] = [];
        }

        eth._onCallbacks[event].push(cb);

        return this
    },

    off: function(event, cb) {
        if(eth._onCallbacks[event] !== undefined) {
            var callbacks = eth._onCallbacks[event];
            for(var i = 0; i < callbacks.length; i++) {
                if(callbacks[i] === cb) {
                    delete callbacks[i];
                }
            }
        }

        return this
    },

    trigger: function(event, data) {
        var callbacks = eth._onCallbacks[event];
        if(callbacks !== undefined) {
            for(var i = 0; i < callbacks.length; i++) {
                callbacks[i](data);
            }
        }
    },
}
window.eth._callbacks = {}
window.eth._onCallbacks = {}

function debug(/**/) {
    var args = arguments;
    var msg = ""
    for(var i = 0; i < args.length; i++){
        if(typeof args[i] === "object") {
            msg += " " + JSON.stringify(args[i])
        } else {
            msg += args[i]
        }
    }

    document.getElementById("debug").innerHTML += "<br>" + msg
}

// Helper function for generating pseudo callbacks and sending data to the QML part of the application
function postData(data, cb) {
    data._seed = Math.floor(Math.random() * 1000000)
    if(cb) {
        eth._callbacks[data._seed] = cb;
    }

    if(data.args === undefined) {
        data.args = [];
    }

    navigator.qt.postMessage(JSON.stringify(data));
}

navigator.qt.onmessage = function(ev) {
    var data = JSON.parse(ev.data)

    if(data._event !== undefined) {
        eth.trigger(data._event, data.data);
    } else {
        if(data._seed) {
            var cb = eth._callbacks[data._seed];
            if(cb) {
                // Call the callback
                cb(data.data);
                // Remove the "trigger" callback
                delete eth._callbacks[ev._seed];
            }
        }
    }
}

window.eth._0 = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
String.prototype.pad = function(len) {
    var bin = this.bin();
    var l = bin.length;
    if(l < 32) {
        return eth._0.substr(0, 32 - bin.length) + bin;
    }

    return bin;
}

String.prototype.unpad = function() {
    var i, l;
    for(i = 0, l = this.length; i < l; i++) {
        if(this[i] != "\0") {
            return this.substr(i, this.length);
        }
    }

    return this.substr(i, this.length);
}

String.prototype.bin = function() {
    if(this.substr(0, 2) == "0x") {
        return this.hex2bin();
    } else if(/^\d+$/.test(this)) {
        return this.num2bin()
    }

    // Otherwise we'll return the "String" object instead of an actual string
    return this.substr(0, this.length)
}

String.prototype.unbin = function() {
    var i, l, o = '';
    for(i = 0, l = this.length; i < l; i++) {
        var n = this.charCodeAt(i).toString(16);
        o += n.length < 2 ? '0' + n : n;
    }

    return "0x" + o;
}

String.prototype.hex2bin = function() {
    bytes = []

    for(var i=2; i< this.length-1; i+=2){
        bytes.push(parseInt(this.substr(i, 2), 16));
    }

    return String.fromCharCode.apply(String, bytes);
}

String.prototype.num2bin = function() {
    return ("0x"+parseInt(this).toString(16)).bin()
}