mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.3 KiB
58 lines
1.3 KiB
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]
|
|
}
|
|
}
|
|
|
|
postData({call:"debug", args:[msg]})
|
|
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) {
|
|
// Figure out whether the returned data was an array
|
|
// array means multiple return arguments (multiple params)
|
|
if(data.data instanceof Array) {
|
|
cb.apply(this, data.data)
|
|
} else {
|
|
cb.call(this, data.data)
|
|
}
|
|
|
|
// Remove the "trigger" callback
|
|
delete eth._callbacks[ev._seed];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
window.onerror = function(message, file, lineNumber, column, errorObj) {
|
|
debug(file, message, lineNumber+":"+column, errorObj);
|
|
|
|
return false;
|
|
}
|
|
|