embark/lib/blockchain.js

120 lines
2.9 KiB
JavaScript
Raw Normal View History

var mkdirp = require('mkdirp');
2015-07-03 12:53:42 +00:00
Blockchain = function(blockchainConfig) {
this.config = blockchainConfig;
}
2015-07-03 12:53:42 +00:00
Blockchain.prototype.generate_basic_command = function() {
var config = this.config;
var address = config.account.address;
2015-07-03 12:53:42 +00:00
var cmd = "geth ";
2015-08-09 20:41:42 +00:00
var rpc_api = ['eth', 'web3'];
2015-06-28 13:51:58 +00:00
if (config.datadir !== "default") {
cmd += "--datadir=\"" + config.datadir + "\" ";
cmd += "--logfile=\"" + config.datadir + ".log\" ";
}
2015-06-28 13:51:58 +00:00
cmd += "--port " + config.port + " ";
cmd += "--rpc ";
2015-06-28 13:51:58 +00:00
cmd += "--rpcport " + config.rpcPort + " ";
cmd += "--rpcaddr " + config.rpcHost + " ";
2015-06-28 13:51:58 +00:00
cmd += "--networkid " + config.networkId + " ";
cmd += "--rpccorsdomain \"" + config.rpcWhitelist + "\" ";
2015-06-28 13:51:58 +00:00
if (config.minerthreads !== void 0) {
cmd += "--minerthreads \"" + config.minerthreads + "\" ";
}
cmd += "--mine ";
if (config.genesisBlock !== void 0) {
cmd += "--genesis=\"" + config.genesisBlock + "\" ";
}
2015-08-09 20:41:42 +00:00
if (config.whisper) {
cmd += "--shh ";
rpc_api.push('shh')
}
cmd += '--rpcapi "' + rpc_api.join(',') + '" ';
//TODO: this should be configurable
2015-07-30 01:40:49 +00:00
cmd += "--maxpeers " + config.maxPeers + " ";
2015-06-28 13:51:58 +00:00
if (config.account.password !== void 0) {
cmd += "--password " + config.account.password + " ";
}
2015-07-03 12:53:42 +00:00
return cmd;
}
Blockchain.prototype.list_command = function() {
return this.generate_basic_command() + "account list ";
}
Blockchain.prototype.init_command = function() {
return this.generate_basic_command() + "account new ";
}
Blockchain.prototype.run_command = function(address, use_tmp) {
2015-07-03 12:53:42 +00:00
var cmd = this.generate_basic_command();
var config = this.config;
if (address !== void 0) {
cmd += "--unlock " + address + " ";
}
2015-06-28 13:51:58 +00:00
if (config.console_toggle) {
cmd += "console";
}
2015-06-28 13:51:58 +00:00
if (config.mine_when_needed) {
if (use_tmp) {
cmd += "js /tmp/js/mine.js";
}
else {
cmd += "js node_modules/embark-framework/js/mine.js";
}
}
2015-07-03 12:53:42 +00:00
return cmd;
}
Blockchain.prototype.get_address = function() {
var config = this.config;
var address = null;
2015-07-03 12:53:42 +00:00
if (config.account.init) {
// ensure datadir exists, bypassing the interactive liabilities prompt.
var newDir = mkdirp.sync(config.datadir);
if (newDir) {
console.log("=== datadir created");
} else {
console.log("=== datadir already exists");
}
2015-07-03 12:53:42 +00:00
console.log("running: " + this.list_command());
result = exec(this.list_command());
if (result.output.indexOf("Fatal") < 0) {
console.log("=== already initialized");
address = result.output.match(/{(\w+)}/)[1];
} else {
console.log("running: " + this.init_command());
result = exec(this.init_command());
address = result.output.match(/{(\w+)}/)[1];
2015-07-03 12:53:42 +00:00
}
}
2015-07-03 12:53:42 +00:00
return address;
}
Blockchain.prototype.startChain = function(use_tmp) {
2015-07-03 12:53:42 +00:00
var address = this.get_address();
console.log("running: " + this.run_command(address, use_tmp));
exec(this.run_command(address, use_tmp));
}
module.exports = Blockchain