bitcore-node-zcash/lib/HistoricSync.js

321 lines
8.5 KiB
JavaScript
Raw Normal View History

2014-01-16 11:11:20 -08:00
'use strict';
require('classtool');
function spec() {
var util = require('util');
var RpcClient = require('bitcore/RpcClient').class();
var networks = require('bitcore/networks');
var async = require('async');
var config = require('../config/config');
var Block = require('../app/models/Block');
var Sync = require('./Sync').class();
var sockets = require('../app/controllers/socket.js');
2014-01-16 11:11:20 -08:00
function HistoricSync(opts) {
this.network = config.network === 'testnet' ? networks.testnet: networks.livenet;
2014-01-17 11:36:34 -08:00
var genesisHashReversed = new Buffer(32);
this.network.genesisBlock.hash.copy(genesisHashReversed);
this.genesis = genesisHashReversed.reverse().toString('hex');
2014-01-16 11:11:20 -08:00
this.sync = new Sync(opts);
2014-01-18 13:28:24 -08:00
2014-01-18 13:28:24 -08:00
//available status: new / syncing / finished / aborted
this.status = 'new';
this.syncInfo = {};
2014-01-16 11:11:20 -08:00
}
function p() {
var args = [];
Array.prototype.push.apply( args, arguments );
2014-01-16 11:11:20 -08:00
args.unshift('[historic_sync]');
/*jshint validthis:true */
console.log.apply(this, args);
2014-01-16 11:11:20 -08:00
}
HistoricSync.prototype.init = function(opts,cb) {
this.rpc = new RpcClient(config.bitcoind);
this.opts = opts;
this.sync.init(opts, cb);
};
HistoricSync.prototype.close = function() {
this.sync.close();
};
HistoricSync.prototype.showProgress = function() {
var self = this;
var i = self.syncInfo;
var per = parseInt(100 * i.syncedBlocks / i.blocksToSync);
p(util.format('status: %d/%d [%d%%]', i.syncedBlocks, i.blocksToSync, per));
if (self.opts.broadcast) {
sockets.broadcastSyncInfo(self.syncInfo);
}
};
2014-01-16 11:11:20 -08:00
HistoricSync.prototype.getPrevNextBlock = function(blockHash, blockEnd, opts, cb) {
2014-01-17 11:36:34 -08:00
var self = this;
2014-01-16 11:11:20 -08:00
// recursion end.
2014-01-17 11:36:34 -08:00
if (!blockHash ) return cb();
2014-01-16 11:11:20 -08:00
var existed = 0;
var blockInfo;
var blockObj;
async.series([
2014-01-16 11:11:20 -08:00
// Already got it?
function(c) {
Block.findOne({hash:blockHash}, function(err,block){
if (err) { p(err); return c(err); }
2014-01-16 11:11:20 -08:00
if (block) {
2014-01-17 11:36:34 -08:00
existed =1;
blockObj =block;
2014-01-16 11:11:20 -08:00
}
return c();
});
},
//show some (inacurate) status
function(c) {
2014-01-18 13:28:24 -08:00
var step = parseInt(self.syncInfo.blocksToSync / 100);
if (step < 10) step = 10;
if (self.syncInfo.syncedBlocks % step === 1) {
self.showProgress();
2014-01-16 11:11:20 -08:00
}
return c();
},
//get Info from RPC
function(c) {
// TODO: if we store prev/next, no need to go to RPC
// if (blockObj && blockObj.nextBlockHash) return c();
2014-01-17 11:36:34 -08:00
self.rpc.getBlock(blockHash, function(err, ret) {
2014-01-16 11:11:20 -08:00
if (err) return c(err);
blockInfo = ret;
return c();
});
},
//store it
function(c) {
if (existed) return c();
2014-01-17 11:36:34 -08:00
self.sync.storeBlock(blockInfo.result, function(err) {
2014-01-16 11:11:20 -08:00
existed = err && err.toString().match(/E11000/);
2014-01-17 11:36:34 -08:00
2014-01-16 11:11:20 -08:00
if (err && ! existed) return c(err);
return c();
});
},
/* TODO: Should Start to sync backwards? (this is for partial syncs)
function(c) {
if (blockInfo.result.prevblockhash != current.blockHash) {
p("reorg?");
opts.prev = 1;
}
return c();
}
*/
],
function (err){
2014-01-18 13:28:24 -08:00
if (err) {
self.err = util.format('ERROR: @%s: %s [count: syncedBlocks: %d]', blockHash, err, self.syncInfo.syncedBlocks);
self.status = 'aborted';
p(self.err);
}
2014-01-17 11:36:34 -08:00
2014-01-18 13:28:24 -08:00
else {
self.err = null;
self.status = 'syncing';
}
if (opts.upToExisting && existed ) {
2014-01-20 10:41:22 -08:00
var diff = self.syncInfo.blocksToSync - self.syncInfo.syncedBlocks;
if (diff <= 0) {
2014-01-18 13:28:24 -08:00
self.status = 'finished';
p('DONE. Found existing block: ', blockHash);
return cb(err);
}
else {
2014-01-20 10:41:22 -08:00
self.syncInfo.skipped_blocks = self.syncInfo.skipped_blocks || 1;
if ((self.syncInfo.skipped_blocks++ % 1000) === 1 ) {
p('WARN found target block\n\tbut blockChain Height is still higher that ours. Previous light sync must be interrupted.\n\tWill keep syncing.', self.syncInfo.syncedBlocks, self.syncInfo.blocksToSync, self.syncInfo.skipped_blocks);
}
2014-01-18 13:28:24 -08:00
}
2014-01-17 05:22:00 -08:00
}
2014-01-17 11:36:34 -08:00
if (blockEnd && blockEnd === blockHash) {
2014-01-18 13:28:24 -08:00
self.status = 'finished';
2014-01-17 11:36:34 -08:00
p('DONE. Found END block: ', blockHash);
return cb(err);
}
2014-01-16 11:11:20 -08:00
2014-01-17 11:36:34 -08:00
// Continue
2014-01-16 11:11:20 -08:00
if (blockInfo && blockInfo.result) {
2014-01-20 10:41:22 -08:00
if (! existed) self.syncInfo.syncedBlocks++;
2014-01-16 11:11:20 -08:00
if (opts.prev && blockInfo.result.previousblockhash) {
2014-01-17 11:36:34 -08:00
return self.getPrevNextBlock(blockInfo.result.previousblockhash, blockEnd, opts, cb);
2014-01-16 11:11:20 -08:00
}
if (opts.next && blockInfo.result.nextblockhash)
2014-01-17 11:36:34 -08:00
return self.getPrevNextBlock(blockInfo.result.nextblockhash, blockEnd, opts, cb);
2014-01-16 11:11:20 -08:00
}
return cb(err);
});
};
2014-01-17 05:22:00 -08:00
HistoricSync.prototype.import_history = function(opts, next) {
2014-01-17 11:36:34 -08:00
var self = this;
2014-01-16 11:11:20 -08:00
var retry_secs = 2;
2014-01-18 13:28:24 -08:00
var bestBlock;
var blockChainHeight;
2014-01-16 11:11:20 -08:00
async.series([
function(cb) {
if (opts.destroy) {
p('Deleting DB...');
return self.sync.destroy(cb);
2014-01-16 11:11:20 -08:00
}
return cb();
2014-01-16 11:11:20 -08:00
},
// We are not using getBestBlockHash, because is not available in all clients
function(cb) {
if (!opts.reverse) return cb();
2014-01-17 11:36:34 -08:00
self.rpc.getBlockCount(function(err, res) {
2014-01-17 05:44:14 -08:00
if (err) return cb(err);
2014-01-18 13:28:24 -08:00
blockChainHeight = res.result;
2014-01-16 11:11:20 -08:00
return cb();
});
},
function(cb) {
if (!opts.reverse) return cb();
2014-01-18 13:28:24 -08:00
self.rpc.getBlockHash(blockChainHeight, function(err, res) {
2014-01-17 05:44:14 -08:00
if (err) return cb(err);
2014-01-16 11:11:20 -08:00
2014-01-18 13:28:24 -08:00
bestBlock = res.result;
2014-01-16 11:11:20 -08:00
return cb();
});
},
2014-01-18 13:28:24 -08:00
function(cb) {
// This is only to inform progress.
if (!opts.upToExisting) {
2014-01-18 13:28:24 -08:00
self.rpc.getInfo(function(err, res) {
if (err) return cb(err);
self.syncInfo.blocksToSync = res.result.blocks;
return cb();
});
}
else {
// should be isOrphan = true or null to be more accurate.
Block.count({ isOrphan: null}, function(err, count) {
if (err) return cb(err);
self.syncInfo.blocksToSync = blockChainHeight - count;
if (self.syncInfo.blocksToSync < 1) self.syncInfo.blocksToSync = 1;
return cb();
});
}
},
],
2014-01-16 11:11:20 -08:00
function(err) {
2014-01-18 13:28:24 -08:00
2014-01-17 05:22:00 -08:00
var start, end;
2014-01-16 11:11:20 -08:00
function sync() {
if (opts.reverse) {
2014-01-18 13:28:24 -08:00
start = bestBlock;
2014-01-17 11:36:34 -08:00
end = self.genesis;
2014-01-17 05:22:00 -08:00
opts.prev = true;
2014-01-16 11:11:20 -08:00
}
else {
2014-01-17 11:36:34 -08:00
start = self.genesis;
2014-01-16 11:11:20 -08:00
end = null;
2014-01-17 05:22:00 -08:00
opts.next = true;
2014-01-16 11:11:20 -08:00
}
2014-01-18 13:28:24 -08:00
self.syncInfo = util._extend(self.syncInfo, {
start: start,
isStartGenesis: start === self.genesis,
end: end,
isEndGenesis: end === self.genesis,
scanningForward: opts.next,
scanningBackward: opts.prev,
upToExisting: opts.upToExisting,
2014-01-18 13:28:24 -08:00
syncedBlocks: 0,
});
2014-01-17 11:36:34 -08:00
p('Starting from: ', start);
p(' to : ', end);
p(' opts: ', JSON.stringify(opts));
2014-01-16 11:11:20 -08:00
2014-01-17 11:36:34 -08:00
self.getPrevNextBlock( start, end, opts , function(err) {
2014-01-18 13:28:24 -08:00
if (err && err.message.match(/ECONNREFUSED/)){
2014-01-16 11:11:20 -08:00
setTimeout(function() {
p('Retrying in %d secs', retry_secs);
2014-01-16 11:11:20 -08:00
sync();
}, retry_secs * 1000);
}
else
2014-01-18 13:28:24 -08:00
return next(err);
2014-01-16 11:11:20 -08:00
});
}
2014-01-18 13:28:24 -08:00
2014-01-19 16:43:10 -08:00
if (err) {
self.syncInfo = util._extend(self.syncInfo, { error: err.message });
return next(err, 0);
2014-01-18 13:28:24 -08:00
}
2014-01-19 16:43:10 -08:00
else {
sync();
}
2014-01-16 11:11:20 -08:00
});
};
2014-01-16 11:11:20 -08:00
2014-01-17 11:36:34 -08:00
// upto if we have genesis block?
2014-01-17 05:22:00 -08:00
HistoricSync.prototype.smart_import = function(next) {
2014-01-17 11:36:34 -08:00
var self = this;
Block.findOne({hash:self.genesis}, function(err, b){
2014-01-18 13:28:24 -08:00
2014-01-17 11:36:34 -08:00
if (err) return next(err);
if (!b) {
p('Could not find Genesis block. Running FULL SYNC');
}
else {
2014-01-18 13:28:24 -08:00
p('Genesis block found. Syncing upto known blocks.');
2014-01-17 11:36:34 -08:00
}
var opts = {
reverse: 1,
upToExisting: b ? true: false,
2014-01-17 11:36:34 -08:00
};
return self.import_history(opts, next);
});
2014-01-16 11:11:20 -08:00
};
return HistoricSync;
}
module.defineClass(spec);