embark-area-51/lib/modules/solidity/solcW.js

81 lines
2.1 KiB
JavaScript

let utils = require('../../utils/utils.js');
let fs = require('../../core/fs.js');
let currentSolcVersion = require('../../../package.json').dependencies.solc;
const ProcessLauncher = require('../../process/processLauncher');
const uuid = require('uuid/v1');
let ipc = require('node-ipc')
class SolcW {
constructor(options) {
this.logger = options.logger;
this.events = options.events;
this.useIpc = options.useIpc;
this.ipc = options.ipc;
this.compilerLoaded = false;
this.solcProcess = null;
}
load_compiler(done) {
const self = this;
if (self.useIpc) {
self.compilerLoaded = true;
return self.ipc.connect(done);
}
if (this.compilerLoaded) {
return done();
}
this.solcProcess = new ProcessLauncher({
modulePath: utils.joinPath(__dirname, 'solcP.js'),
logger: self.logger,
events: self.events
});
this.solcProcess.send({action: "init", options: {}});
this.solcProcess.once('result', 'loadedCompiler', () => {
self.compilerLoaded = true;
done();
});
this.ipc.serve();
this.ipc.on('compile', self.compile.bind(this));
this.events.request("version:get:solc", function(solcVersion) {
if (solcVersion === currentSolcVersion) {
self.solcProcess.send({action: 'loadCompiler', requirePath: 'solc'});
} else {
self.events.request("version:getPackageLocation", "solc", solcVersion, function(err, location) {
if (err) {
return done(err);
}
let requirePath = fs.dappPath(location);
self.solcProcess.send({action: 'loadCompiler', requirePath: requirePath});
});
}
});
}
isCompilerLoaded() {
return (this.compilerLoaded === true);
}
compile(jsonObj, done) {
const id = uuid();
let a = new Date();
if (this.useIpc) {
return this.ipc.request('compile', jsonObj, done);
}
this.solcProcess.once('result', 'compilation-' + id, (msg) => {
done(JSON.parse(msg.output));
});
this.solcProcess.send({action: 'compile', jsonObj: jsonObj, id});
}
}
module.exports = SolcW;