insight-ui-zcash/lib/Sync.js

110 lines
2.7 KiB
JavaScript
Raw Normal View History

2014-01-10 11:02:33 -08:00
'use strict';
2014-01-07 10:21:59 -08:00
2014-01-10 11:02:33 -08:00
require('classtool');
2014-01-10 11:02:33 -08:00
function spec() {
2014-01-10 16:42:39 -08:00
var mongoose = require('mongoose');
var util = require('util');
var RpcClient = require('bitcore/RpcClient').class();
var async = require('async');
var config = require('../config/config');
var Block = require('../app/models/Block');
var Transaction = require('../app/models/Transaction');
var TransactionItem = require('../app/models/TransactionItem');
2014-01-14 11:56:02 -08:00
var sockets = require('../app/views/sockets/main.js');
2014-01-15 12:36:49 -08:00
var CONCURRENCY = 5;
function Sync(config) {
2014-01-15 12:36:49 -08:00
this.tx_count = 0;
}
Sync.prototype.storeBlock = function(block, cb) {
2014-01-14 14:42:38 -08:00
var that = this;
2014-01-15 12:36:49 -08:00
2014-01-16 08:01:32 -08:00
Block.customCreate(block, function(err, block, inserted_txs){
2014-01-15 12:36:49 -08:00
2014-01-16 08:01:32 -08:00
if (block && that.opts.broadcast_blocks) {
sockets.broadcast_block(block);
2014-01-14 14:42:38 -08:00
}
2014-01-16 08:01:32 -08:00
if (inserted_txs && that.opts.broadcast_txs) {
inserted_txs.forEach(function(tx) {
sockets.broadcast_tx(tx);
2014-01-15 12:36:49 -08:00
});
}
2014-01-14 13:09:45 -08:00
2014-01-16 08:01:32 -08:00
if (inserted_txs)
that.tx_count += inserted_txs.length;
2014-01-14 13:09:45 -08:00
2014-01-15 12:36:49 -08:00
return cb();
2014-01-11 20:29:25 -08:00
});
};
2014-01-16 08:01:32 -08:00
Sync.prototype.storeTxs = function(txs, inTime, cb) {
var that = this;
2014-01-16 08:01:32 -08:00
var time = inTime ? inTime : Math.round(new Date().getTime() / 1000);
2014-01-16 08:01:32 -08:00
Transaction.createFromArray(txs, time, function(err, inserted_txs) {
if (!err && inserted_txs && that.opts.broadcast_txs) {
inserted_txs.forEach(function(tx) {
sockets.broadcast_tx(tx);
});
}
return cb(err);
});
};
Sync.prototype.syncBlocks = function(start, end, isForward, cb) {
var that = this;
console.log('Syncing Blocks, starting \n\tfrom: %s \n\tend: %s \n\tisForward:',
start, end, isForward);
return that.getPrevNextBlock( start, end,
isForward ? { next: 1 } : { prev: 1}, cb);
};
2014-01-16 11:11:20 -08:00
Sync.prototype.init = function(opts, cb) {
2014-01-10 16:42:39 -08:00
var that = this;
2014-01-16 11:11:20 -08:00
that.opts = opts;
2014-01-14 11:45:25 -08:00
if (!(opts && opts.skip_db_connection)) {
2014-01-14 11:45:25 -08:00
mongoose.connect(config.db, {server: {auto_reconnect: true}} );
2014-01-16 11:11:20 -08:00
this.db = mongoose.connection;
2014-01-14 11:45:25 -08:00
2014-01-16 11:11:20 -08:00
this.db.on('error', function(err) {
console.log('connection error:' + err);
moogose.disconnect();
});
2014-01-16 11:11:20 -08:00
this.db.on('disconnect', function(err) {
console.log('disconnect:' + err);
mongoose.connect(config.db, {server: {auto_reconnect: true}} );
});
2014-01-16 11:11:20 -08:00
return that.db.once('open', cb);
}
else return cb();
};
Sync.prototype.close = function() {
2014-01-16 11:11:20 -08:00
if (!(this.opts && this.opts.skip_db_connection)) {
console.log("closing connection");
this.db.close();
}
};
return Sync;
2014-01-10 11:02:33 -08:00
}
2014-01-07 10:21:59 -08:00
module.defineClass(spec);
2014-01-10 11:02:33 -08:00