embark-area-51/lib/contracts/deploy_manager.js

137 lines
3.9 KiB
JavaScript
Raw Normal View History

let async = require('async');
2018-07-24 12:29:06 +00:00
const ContractDeployer = require('./contract_deployer.js');
2018-07-26 17:51:54 +00:00
const utils = require('../utils/utils.js');
//require("../utils/debug_util.js")(__filename, async);
2017-03-30 11:12:39 +00:00
class DeployManager {
2018-07-27 17:06:36 +00:00
constructor(embark, options) {
const self = this;
2018-07-27 17:06:36 +00:00
this.config = embark.config;
this.logger = embark.logger;
2017-03-30 11:12:39 +00:00
this.blockchainConfig = this.config.blockchainConfig;
2017-12-21 16:21:36 +00:00
2018-07-27 17:06:36 +00:00
this.events = embark.events;
2017-03-30 11:12:39 +00:00
this.plugins = options.plugins;
2018-05-18 22:31:47 +00:00
this.blockchain = options.blockchain;
2018-01-13 16:38:10 +00:00
this.gasLimit = false;
this.fatalErrors = false;
this.deployOnlyOnConfig = false;
this.onlyCompile = options.onlyCompile !== undefined ? options.onlyCompile : false;
this.contractDeployer = new ContractDeployer({
blockchain: this.blockchain,
logger: this.logger,
events: this.events,
plugins: this.plugins
});
2018-07-27 16:44:08 +00:00
this.events.setCommandHandler('deploy:setGasLimit', (gasLimit) => {
self.gasLimit = gasLimit;
});
this.events.setCommandHandler('deploy:contracts', (cb) => {
self.deployContracts(cb);
});
}
deployAll(done) {
let self = this;
self.events.request('contracts:list', (err, contracts) => {
if (err) {
return done(err);
}
self.logger.info(__("deploying contracts"));
self.events.emit("deploy:beforeAll");
2018-07-24 12:29:06 +00:00
const contractsPerDependencyCount = utils.groupBy(contracts, 'dependencyCount');
async.eachSeries(contractsPerDependencyCount,
function (parallelGroups, callback) {
async.each(parallelGroups, (contract, eachCb) => {
contract._gasLimit = self.gasLimit;
self.events.request('deploy:contract', contract, (err) => {
eachCb(err);
});
}, callback);
},
function (err, _results) {
if (err) {
self.logger.error(__("error deploying contracts"));
self.logger.error(err.message);
self.logger.debug(err.stack);
}
if (contracts.length === 0) {
self.logger.info(__("no contracts found"));
return done();
}
self.logger.info(__("finished deploying contracts"));
done(err);
}
);
});
}
2017-03-30 11:12:39 +00:00
deployContracts(done) {
let self = this;
if (self.blockchainConfig === {} || self.blockchainConfig.enabled === false) {
2018-05-08 21:49:46 +00:00
self.logger.info(__("Blockchain component is disabled in the config").underline);
2017-03-31 11:34:43 +00:00
this.events.emit('blockchainDisabled', {});
2017-03-30 11:12:39 +00:00
return done();
}
2017-03-30 11:12:39 +00:00
async.waterfall([
function buildContracts(callback) {
self.events.request("contracts:build", self.deployOnlyOnConfig, (err) => {
callback(err);
});
2017-03-30 11:12:39 +00:00
},
// TODO: shouldn't be necessary
function checkCompileOnly(callback){
if(self.onlyCompile){
2018-05-30 10:56:51 +00:00
self.events.emit('contractsDeployed');
return done();
}
return callback();
},
2018-05-20 10:46:12 +00:00
// TODO: could be implemented as an event (beforeDeployAll)
function checkIsConnectedToBlockchain(callback) {
2018-07-26 16:58:25 +00:00
self.blockchain.onReady((err) => {
callback(err);
2018-01-05 20:10:47 +00:00
});
2017-03-30 11:12:39 +00:00
},
// TODO: this can be done on the fly or as part of the initialization
function determineDefaultAccount(callback) {
self.blockchain.determineDefaultAccount((err) => {
callback(err);
2017-03-30 11:12:39 +00:00
});
},
2018-05-20 10:46:12 +00:00
function deployAllContracts(callback) {
self.deployAll(function (err) {
2018-05-19 02:40:47 +00:00
if (!err) {
2018-05-30 10:56:51 +00:00
self.events.emit('contractsDeployed');
2018-05-19 02:40:47 +00:00
}
if (err && self.fatalErrors) {
return callback(err);
}
callback();
2017-03-30 11:12:39 +00:00
});
2017-12-21 16:21:36 +00:00
},
function runAfterDeploy(callback) {
2018-05-30 12:00:31 +00:00
self.plugins.emitAndRunActionsForEvent('contracts:deploy:afterAll', callback);
2017-02-24 13:20:03 +00:00
}
], function (err, _result) {
done(err);
2017-02-24 13:20:03 +00:00
});
}
2017-03-30 11:12:39 +00:00
}
2017-02-24 13:20:03 +00:00
module.exports = DeployManager;