Official Go implementation of the Ethereum protocol
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.
go-ethereum/httprpc.js

93 lines
2.8 KiB

10 years ago
/*
This file is part of ethereum.js.
ethereum.js is free software: you can redistribute it and/or modify
10 years ago
it under the terms of the GNU Lesser General Public License as published by
10 years ago
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ethereum.js is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 years ago
GNU Lesser General Public License for more details.
10 years ago
10 years ago
You should have received a copy of the GNU Lesser General Public License
10 years ago
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
*/
10 years ago
/** @file httprpc.js
10 years ago
* @authors:
* Marek Kotewicz <marek@ethdev.com>
* @date 2014
*/
10 years ago
(function () {
var HttpRpcProvider = function (host) {
10 years ago
this.handlers = [];
this.host = host;
};
function formatJsonRpcObject(object) {
return {
jsonrpc: '2.0',
method: object.call,
params: object.args,
id: object._id
}
};
function formatJsonRpcMessage(message) {
var object = JSON.parse(message);
return {
10 years ago
_id: object.id,
data: object.result
};
10 years ago
};
HttpRpcProvider.prototype.sendRequest = function (payload, cb) {
10 years ago
var data = formatJsonRpcObject(payload);
var request = new XMLHttpRequest();
request.open("POST", this.host, true);
request.send(JSON.stringify(data));
request.onreadystatechange = function () {
10 years ago
if (request.readyState === 4 && cb) {
cb(request);
10 years ago
}
}
};
HttpRpcProvider.prototype.send = function (payload) {
10 years ago
var self = this;
this.sendRequest(payload, function (request) {
self.handlers.forEach(function (handler) {
handler.call(self, formatJsonRpcMessage(request.responseText));
});
});
};
HttpRpcProvider.prototype.poll = function (payload, id) {
10 years ago
var self = this;
this.sendRequest(payload, function (request) {
var parsed = JSON.parse(request.responseText);
if (parsed.result instanceof Array ? parsed.result.length === 0 : !parsed.result) {
10 years ago
return;
}
self.handlers.forEach(function (handler) {
handler.call(self, {_event: payload.call, _id: id, data: parsed.result});
10 years ago
});
});
};
Object.defineProperty(HttpRpcProvider.prototype, "onmessage", {
10 years ago
set: function (handler) {
this.handlers.push(handler);
}
});
if (typeof(web3) !== "undefined" && web3.providers !== undefined) {
web3.providers.HttpRpcProvider = HttpRpcProvider;
10 years ago
}
})();