web3.js/lib/web3/ipcprovider.js

159 lines
4.3 KiB
JavaScript
Raw Normal View History

2015-06-24 12:56:32 +00:00
/*
This file is part of ethereum.js.
ethereum.js is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
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
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file ipcprovider.js
* @authors:
* Fabian Vogelsteller <fabian@ethdev.com>
* @date 2015
*/
"use strict";
var utils = require('../utils/utils');
var errors = require('./errors');
2015-06-30 12:18:17 +00:00
var errorTimeout = '{"jsonrpc": "2.0", "error": {"code": -32603, "message": "IPC Request timed out for method \'__method__\'"}, "id": "__id__"}';
2015-06-30 09:43:18 +00:00
2015-06-24 12:56:32 +00:00
var IpcProvider = function (path, net) {
var _this = this;
this.responseCallbacks = {};
this.path = path;
net = net || require('net');
2015-06-26 14:15:23 +00:00
this.connection = net.connect({path: this.path});
2015-06-24 12:56:32 +00:00
2015-06-26 14:15:23 +00:00
this.connection.on('error', function(e){
console.error('IPC Connection error', e);
2015-06-30 09:43:18 +00:00
_this._timeout();
});
this.connection.on('end', function(e){
console.error('IPC Connection ended', e);
_this._timeout();
2015-06-26 14:15:23 +00:00
});
2015-06-24 12:56:32 +00:00
// LISTEN FOR CONNECTION RESPONSES
this.connection.on('data', function(result) {
result = result.toString();
try {
2015-06-24 19:50:27 +00:00
result = JSON.parse(result);
2015-06-24 12:56:32 +00:00
} catch(e) {
throw errors.InvalidResponse(result);
}
2015-06-24 13:24:14 +00:00
var id;
2015-06-24 12:56:32 +00:00
// get the id which matches the returned id
if(utils.isArray(result)) {
result.forEach(function(load){
if(_this.responseCallbacks[load.id])
id = load.id;
});
} else {
id = result.id;
}
// fire the callback
if(_this.responseCallbacks[id]) {
_this.responseCallbacks[id](null, result);
delete _this.responseCallbacks[id];
}
});
};
/**
Get the adds a callback to the responseCallbacks object,
which will be called if a response matching the response Id will arrive.
@method _getResponse
*/
IpcProvider.prototype._getResponse = function(payload, callback) {
var id = payload.id || payload[0].id;
2015-06-30 09:43:18 +00:00
var method = payload.method || payload[0].method;
2015-06-24 12:56:32 +00:00
this.responseCallbacks[id] = callback;
2015-06-30 09:43:18 +00:00
this.responseCallbacks[id].method = method;
2015-06-24 12:56:32 +00:00
};
2015-06-30 09:43:18 +00:00
/**
Timeout all requests when the end/error event is fired
2015-06-24 12:56:32 +00:00
2015-06-30 09:43:18 +00:00
@method _timeout
*/
IpcProvider.prototype._timeout = function() {
for(key in this.responseCallbacks) {
if(this.responseCallback.hasOwnProperty(key)){
this.responseCallbacks[key](errorTimeout.replace('__id__', key).replace('__method__', this.responseCallbacks[key].method));
}
}
};
/**
Check if the current connection is still valid.
@method isConnected
*/
2015-06-24 12:56:32 +00:00
IpcProvider.prototype.isConnected = function() {
// try reconnect, when connection is gone
2015-06-26 12:35:57 +00:00
if(!this.connection.writable)
2015-06-24 12:56:32 +00:00
this.connection.connect({path: this.path});
2015-06-26 12:35:57 +00:00
return !!this.connection.writable;
2015-06-24 12:56:32 +00:00
};
IpcProvider.prototype.send = function (payload) {
2015-06-24 17:10:36 +00:00
if(this.connection.writeSync) {
// try reconnect, when connection is gone
2015-06-26 12:35:57 +00:00
if(!this.connection.writable)
2015-06-24 17:10:36 +00:00
this.connection.connect({path: this.path});
var result = this.connection.writeSync(JSON.stringify(payload));
try {
result = JSON.parse(result);
} catch(e) {
throw errors.InvalidResponse(result);
}
return result;
} else {
throw new Error('You tried to send "'+ payload.method +'" synchronously. Synchronous requests are not supported by the IPC provider.');
}
2015-06-24 12:56:32 +00:00
};
IpcProvider.prototype.sendAsync = function (payload, callback) {
// try reconnect, when connection is gone
2015-06-26 12:35:57 +00:00
if(!this.connection.writable)
2015-06-24 12:56:32 +00:00
this.connection.connect({path: this.path});
this.connection.write(JSON.stringify(payload));
this._getResponse(payload, callback);
};
module.exports = IpcProvider;