2019-05-15 01:48:48 +03:00
|
|
|
"use strict";
|
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
|
|
var extendStatics = function (d, b) {
|
|
|
|
extendStatics = Object.setPrototypeOf ||
|
|
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
|
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
|
|
return extendStatics(d, b);
|
|
|
|
};
|
|
|
|
return function (d, b) {
|
|
|
|
extendStatics(d, b);
|
|
|
|
function __() { this.constructor = d; }
|
|
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
var net_1 = __importDefault(require("net"));
|
|
|
|
var properties_1 = require("@ethersproject/properties");
|
2019-08-02 09:10:58 +03:00
|
|
|
var logger_1 = require("@ethersproject/logger");
|
|
|
|
var _version_1 = require("./_version");
|
|
|
|
var logger = new logger_1.Logger(_version_1.version);
|
2019-05-15 01:48:48 +03:00
|
|
|
var json_rpc_provider_1 = require("./json-rpc-provider");
|
|
|
|
var IpcProvider = /** @class */ (function (_super) {
|
|
|
|
__extends(IpcProvider, _super);
|
|
|
|
function IpcProvider(path, network) {
|
|
|
|
var _newTarget = this.constructor;
|
|
|
|
var _this = this;
|
2019-08-02 09:10:58 +03:00
|
|
|
logger.checkNew(_newTarget, IpcProvider);
|
2019-05-15 01:48:48 +03:00
|
|
|
if (path == null) {
|
2019-08-02 09:10:58 +03:00
|
|
|
logger.throwError("missing path", logger_1.Logger.errors.MISSING_ARGUMENT, { arg: "path" });
|
2019-05-15 01:48:48 +03:00
|
|
|
}
|
|
|
|
_this = _super.call(this, "ipc://" + path, network) || this;
|
|
|
|
properties_1.defineReadOnly(_this, "path", path);
|
|
|
|
return _this;
|
|
|
|
}
|
|
|
|
// @TODO: Create a connection to the IPC path and use filters instead of polling for block
|
|
|
|
IpcProvider.prototype.send = function (method, params) {
|
|
|
|
// This method is very simple right now. We create a new socket
|
|
|
|
// connection each time, which may be slower, but the main
|
|
|
|
// advantage we are aiming for now is security. This simplifies
|
|
|
|
// multiplexing requests (since we do not need to multiplex).
|
|
|
|
var _this = this;
|
|
|
|
var payload = JSON.stringify({
|
|
|
|
method: method,
|
|
|
|
params: params,
|
|
|
|
id: 42,
|
|
|
|
jsonrpc: "2.0"
|
|
|
|
});
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
var response = Buffer.alloc(0);
|
|
|
|
var stream = net_1.default.connect(_this.path);
|
|
|
|
stream.on("data", function (data) {
|
|
|
|
response = Buffer.concat([response, data]);
|
|
|
|
});
|
|
|
|
stream.on("end", function () {
|
|
|
|
try {
|
|
|
|
resolve(JSON.parse(response.toString()).result);
|
|
|
|
// @TODO: Better pull apart the error
|
|
|
|
stream.destroy();
|
|
|
|
}
|
|
|
|
catch (error) {
|
|
|
|
reject(error);
|
|
|
|
stream.destroy();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
stream.on("error", function (error) {
|
|
|
|
reject(error);
|
|
|
|
stream.destroy();
|
|
|
|
});
|
|
|
|
stream.write(payload);
|
|
|
|
stream.end();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
return IpcProvider;
|
|
|
|
}(json_rpc_provider_1.JsonRpcProvider));
|
|
|
|
exports.IpcProvider = IpcProvider;
|