http polling
This commit is contained in:
parent
f9ca054314
commit
66e439b6f4
27
http.js
27
http.js
@ -22,20 +22,39 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
HttpProvider.prototype.send = function (payload) {
|
HttpProvider.prototype.sendRequest = function (payload, cb) {
|
||||||
var data = formatJsonRpcObject(payload);
|
var data = formatJsonRpcObject(payload);
|
||||||
|
|
||||||
var request = new XMLHttpRequest();
|
var request = new XMLHttpRequest();
|
||||||
request.open("POST", this.host, true);
|
request.open("POST", this.host, true);
|
||||||
request.send(JSON.stringify(data));
|
request.send(JSON.stringify(data));
|
||||||
var self = this;
|
|
||||||
request.onreadystatechange = function () {
|
request.onreadystatechange = function () {
|
||||||
if (request.readyState === 4) {
|
if (request.readyState === 4 && cb) {
|
||||||
|
cb(request);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
HttpProvider.prototype.send = function (payload) {
|
||||||
|
var self = this;
|
||||||
|
this.sendRequest(payload, function (request) {
|
||||||
self.handlers.forEach(function (handler) {
|
self.handlers.forEach(function (handler) {
|
||||||
handler.call(self, formatJsonRpcMessage(request.responseText));
|
handler.call(self, formatJsonRpcMessage(request.responseText));
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
HttpProvider.prototype.poll = function (payload, id) {
|
||||||
|
var self = this;
|
||||||
|
this.sendRequest(payload, function (request) {
|
||||||
|
var parsed = JSON.parse(request.responseText);
|
||||||
|
if (!parsed.result) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
self.handlers.forEach(function (handler) {
|
||||||
|
handler.call(self, {_event: "messages", data: id});
|
||||||
|
});
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
Object.defineProperty(HttpProvider.prototype, "onmessage", {
|
Object.defineProperty(HttpProvider.prototype, "onmessage", {
|
||||||
|
42
main.js
42
main.js
@ -314,7 +314,7 @@
|
|||||||
if(data instanceof Array) {
|
if(data instanceof Array) {
|
||||||
callbacks[i].apply(this, data);
|
callbacks[i].apply(this, data);
|
||||||
} else {
|
} else {
|
||||||
callbacks[i].call(this, data);
|
callbacks[i].call(this, undefined, data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -372,10 +372,25 @@
|
|||||||
|
|
||||||
var ProviderManager = function() {
|
var ProviderManager = function() {
|
||||||
this.queued = [];
|
this.queued = [];
|
||||||
|
this.polls = [];
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.provider = undefined;
|
this.provider = undefined;
|
||||||
this.id = 1;
|
this.id = 1;
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
var poll = function () {
|
||||||
|
if (self.provider && self.provider.poll) {
|
||||||
|
self.polls.forEach(function (data) {
|
||||||
|
data.data._id = self.id;
|
||||||
|
self.id++;
|
||||||
|
self.provider.poll(data.data, data.id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
setTimeout(poll, 12000);
|
||||||
};
|
};
|
||||||
|
poll();
|
||||||
|
};
|
||||||
|
|
||||||
ProviderManager.prototype.send = function(data, cb) {
|
ProviderManager.prototype.send = function(data, cb) {
|
||||||
data._id = this.id;
|
data._id = this.id;
|
||||||
if(cb) {
|
if(cb) {
|
||||||
@ -415,6 +430,23 @@
|
|||||||
ProviderManager.prototype.installed = function() {
|
ProviderManager.prototype.installed = function() {
|
||||||
return this.provider !== undefined;
|
return this.provider !== undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ProviderManager.prototype.startPolling = function (data, pollId) {
|
||||||
|
if (!this.provider || !this.provider.poll) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.polls.push({data: data, id: pollId});
|
||||||
|
};
|
||||||
|
|
||||||
|
ProviderManager.prototype.stopPolling = function (pollId) {
|
||||||
|
for (var i = this.polls.length; i--;) {
|
||||||
|
var poll = this.polls[i];
|
||||||
|
if (poll.id === pollId) {
|
||||||
|
this.polls.splice(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
web3.provider = new ProviderManager();
|
web3.provider = new ProviderManager();
|
||||||
|
|
||||||
web3.setProvider = function(provider) {
|
web3.setProvider = function(provider) {
|
||||||
@ -433,7 +465,7 @@
|
|||||||
this.options = options;
|
this.options = options;
|
||||||
|
|
||||||
var call;
|
var call;
|
||||||
if(options === "chain") {
|
if(options === "chain" || options === "pending") {
|
||||||
call = "newFilterString"
|
call = "newFilterString"
|
||||||
} else if(typeof options === "object") {
|
} else if(typeof options === "object") {
|
||||||
call = "newFilter"
|
call = "newFilter"
|
||||||
@ -443,7 +475,7 @@
|
|||||||
this.promise = new Promise(function(resolve, reject) {
|
this.promise = new Promise(function(resolve, reject) {
|
||||||
web3.provider.send({call: call, args: [options]}, function(id) {
|
web3.provider.send({call: call, args: [options]}, function(id) {
|
||||||
self.id = id;
|
self.id = id;
|
||||||
|
web3.provider.startPolling({call: "changed", args: [id]}, id);
|
||||||
resolve(id);
|
resolve(id);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -467,6 +499,7 @@
|
|||||||
Filter.prototype.uninstall = function() {
|
Filter.prototype.uninstall = function() {
|
||||||
this.promise.then(function(id) {
|
this.promise.then(function(id) {
|
||||||
web3.provider.send({call: "uninstallFilter", args:[id]});
|
web3.provider.send({call: "uninstallFilter", args:[id]});
|
||||||
|
web3.provider.stopPolling(id);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -491,7 +524,6 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
function messageHandler(data) {
|
function messageHandler(data) {
|
||||||
|
|
||||||
if(data._event !== undefined) {
|
if(data._event !== undefined) {
|
||||||
web3.trigger(data._event, data.data);
|
web3.trigger(data._event, data.data);
|
||||||
} else {
|
} else {
|
||||||
@ -501,7 +533,7 @@
|
|||||||
cb.call(this, data.data)
|
cb.call(this, data.data)
|
||||||
|
|
||||||
// Remove the "trigger" callback
|
// Remove the "trigger" callback
|
||||||
delete web3._callbacks[ev._id];
|
delete web3._callbacks[data._id];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user