embark-area-51/lib/modules/deploytracker/index.js

90 lines
2.4 KiB
JavaScript
Raw Normal View History

2018-05-19 02:40:47 +00:00
let utils = require('../../utils/utils.js');
let fs = require('../../core/fs.js');
2016-09-25 01:10:47 +00:00
2017-03-30 11:12:39 +00:00
class DeployTracker {
2018-05-19 02:40:47 +00:00
constructor(embark, options) {
this.logger = embark.logger;
this.events = embark.events;
// TODO: unclear where it comes from
2017-03-30 11:12:39 +00:00
this.env = options.env;
2018-05-19 02:40:47 +00:00
//this.chainConfig = options.chainConfig;
this.chainConfig = embark.config.chainTracker;
this.registerEvents();
}
registerEvents() {
const self = this;
this.events.on("deploy:beforeAll", this.setCurrentChain.bind(this));
2017-03-30 11:12:39 +00:00
2018-05-19 02:40:47 +00:00
this.events.on("deploy:contract:deployed", (contract) => {
2018-06-18 14:22:04 +00:00
self.trackContract(contract.className, contract.realRuntimeBytecode, contract.realArgs, contract.deployedAddress);
2018-05-19 02:40:47 +00:00
self.save();
});
this.events.setCommandHandler("deploy:contract:shouldDeploy", (contract, cb) => {
let trackedContract = self.getContract(contract.className, contract.realRuntimeBytecode, contract.realArgs);
cb(trackedContract);
});
}
// TODO: just an event might not be enought to the async nature
// it needs to be a plugin api before deploy, that makes the deployment wait
setCurrentChain() {
const self = this;
2017-03-30 11:12:39 +00:00
if (this.chainConfig === false) {
this.currentChain = {contracts: []};
2018-05-19 02:40:47 +00:00
//return cb();
2017-03-30 11:12:39 +00:00
}
this.events.request("blockchain:block:byNumber", 0, function(_err, block) {
2018-01-05 20:10:47 +00:00
let chainId = block.hash;
2017-03-30 11:12:39 +00:00
2018-01-05 20:10:47 +00:00
if (self.chainConfig[chainId] === undefined) {
self.chainConfig[chainId] = {contracts: {}};
}
self.currentChain = self.chainConfig[chainId];
2017-03-30 11:12:39 +00:00
2018-01-05 20:10:47 +00:00
self.currentChain.name = self.env;
2018-05-19 02:40:47 +00:00
//cb();
2018-01-05 20:10:47 +00:00
});
2016-10-02 22:47:26 +00:00
}
2016-10-02 20:57:13 +00:00
2017-03-30 11:12:39 +00:00
loadConfig(config) {
this.chainConfig = config;
return this;
}
trackContract(contractName, code, args, address) {
2018-05-19 02:52:14 +00:00
if (!this.currentChain) return false;
2018-05-18 20:51:03 +00:00
this.currentChain.contracts[utils.sha3(code + contractName + args.join(','))] = {
2017-03-30 11:12:39 +00:00
name: contractName,
address: address
};
}
2016-09-25 01:10:47 +00:00
2017-03-30 11:12:39 +00:00
getContract(contractName, code, args) {
if (!this.currentChain) return false;
2018-05-18 20:51:03 +00:00
let contract = this.currentChain.contracts[utils.sha3(code + contractName + args.join(','))];
2017-03-30 11:12:39 +00:00
if (contract && contract.address === undefined) {
return false;
}
return contract;
2016-09-25 01:10:47 +00:00
}
2017-03-30 11:12:39 +00:00
// TODO: abstract this
// chainConfig can be an abstract PersistentObject
save() {
if (this.chainConfig === false) {
return;
}
2017-04-04 10:37:50 +00:00
fs.writeJSONSync("./chains.json", this.chainConfig, {spaces: 2});
2017-03-30 11:12:39 +00:00
}
2018-05-19 02:40:47 +00:00
2017-03-30 11:12:39 +00:00
}
2016-09-25 01:10:47 +00:00
module.exports = DeployTracker;