flocore-node/lib/services/db/index.js
Chris Kleeschulte a0031c7e00
Upgrades
- Updated to latest bcoin
- Gave the db a bit more time to shutdown
- Fixed resume functionality if peer disconnects and reconnects later
2017-08-30 18:21:51 -04:00

320 lines
6.2 KiB
JavaScript

'use strict';
var util = require('util');
var fs = require('fs');
var async = require('async');
var levelup = require('levelup');
var leveldown = require('leveldown');
var mkdirp = require('mkdirp');
var Service = require('../../service');
var constants = require('../../constants');
var log = require('../../index').log;
var assert = require('assert');
function DB(options) {
if (!(this instanceof DB)) {
return new DB(options);
}
options = options || {};
Service.call(this, options);
this._dbPrefix = constants.DB_PREFIX;
this.version = 1;
this.network = this.node.network;
this._setDataPath();
this.levelupStore = leveldown;
if (options.store) {
this.levelupStore = options.store;
}
this.subscriptions = {};
this.GENESIS_HASH = constants.BITCOIN_GENESIS_HASH[this.node.network];
this.node.on('stopping', function() {
log.warn('Node is stopping, gently closing the database. Please wait, this could take a while.');
});
}
util.inherits(DB, Service);
DB.dependencies = [];
DB.prototype._onError = function(err) {
if (!this._stopping) {
log.error('Db Service: error: ' + err);
this.node.stop();
}
};
DB.prototype._setDataPath = function() {
assert(fs.existsSync(this.node.datadir), 'Node is expected to have a "datadir" property');
if (this.node.network === 'livenet' || this.node.network === 'mainnet') {
this.dataPath = this.node.datadir + '/bitcorenode.db';
} else if (this.node.network === 'regtest') {
this.dataPath = this.node.datadir + '/regtest/bitcorenode.db';
} else if (this.node.network === 'testnet') {
this.dataPath = this.node.datadir + '/testnet/bitcorenode.db';
} else {
throw new Error('Unknown network: ' + this.network);
}
};
DB.prototype._setVersion = function(callback) {
var versionBuffer = new Buffer(new Array(4));
versionBuffer.writeUInt32BE(this.version);
this.put(Buffer.concat([ this._dbPrefix, new Buffer('version', 'utf8') ]), versionBuffer, callback);
};
DB.prototype.start = function(callback) {
if (!fs.existsSync(this.dataPath)) {
mkdirp.sync(this.dataPath);
}
this._store = levelup(this.dataPath, { db: this.levelupStore, keyEncoding: 'binary', valueEncoding: 'binary'});
setImmediate(callback);
};
DB.prototype.get = function(key, options, callback) {
var cb = callback;
var opts = options;
if (typeof callback !== 'function') {
cb = options;
opts = {};
}
if (!this._stopping) {
this._store.get(key, opts, function(err, data) {
if(err && err instanceof levelup.errors.NotFoundError) {
return cb();
}
if (err) {
return cb(err);
}
cb(null, data);
});
} else {
cb(new Error('Shutdown sequence underway, not able to complete the query'));
}
};
DB.prototype.put = function(key, value, callback) {
if (this._stopping) {
callback();
}
assert(Buffer.isBuffer(key), 'key NOT a buffer as expected.');
if (value) {
assert(Buffer.isBuffer(value), 'value exists but NOT a buffer as expected.');
}
this._store.put(key, value, callback);
};
DB.prototype.batch = function(ops, callback) {
if (this._stopping) {
return callback();
}
for(var i = 0; i < ops.length; i++) {
assert(Buffer.isBuffer(ops[i].key), 'key NOT a buffer as expected.');
if (ops[i].value) {
assert(Buffer.isBuffer(ops[i].value), 'value exists but NOT a buffer as expected.');
}
}
this._store.batch(ops, callback);
};
DB.prototype.createReadStream = function(op) {
if (this._stopping) {
return;
}
var stream = this._store.createReadStream(op);
stream.on('error', this._onError.bind(this));
return stream;
};
DB.prototype.createKeyStream = function(op) {
if (this._stopping) {
return;
}
var stream = this._store.createKeyStream(op);
stream.on('error', this._onError.bind(this));
return stream;
};
DB.prototype.stop = function(callback) {
this._stopping = true;
this.close(callback);
};
DB.prototype.close = function(callback) {
var self = this;
if (self._store && self._store.isOpen()) {
// give the db a grace period to settle out
return setTimeout(function() {
self._store.close(callback);
}, 2000);
}
setImmediate(callback);
};
DB.prototype.getAPIMethods = function() {
return [];
};
DB.prototype.getPublishEvents = function() {
return [];
};
DB.prototype.getServiceTip = function(serviceName, callback) {
var keyBuf = Buffer.concat([ this._dbPrefix, new Buffer('tip-' + serviceName, 'utf8') ]);
var self = this;
self.get(keyBuf, function(err, tipBuf) {
if (err) {
return callback(err);
}
var tip;
if (tipBuf) {
tip = {
height: tipBuf.readUInt32BE(0,4),
hash: tipBuf.slice(4).toString('hex')
};
} else {
tip = {
height: 0,
hash: self.GENESIS_HASH
};
}
callback(null, tip);
});
};
DB.prototype.getPrefix = function(service, callback) {
var self = this;
var keyBuf = Buffer.concat([ self._dbPrefix, new Buffer('prefix-', 'utf8'), new Buffer(service, 'utf8') ]);
var unusedBuf = Buffer.concat([ self._dbPrefix, new Buffer('nextUnused', 'utf8') ]);
function getPrefix(next) {
self.get(keyBuf, function(err, buf) {
if (err) {
return callback(err);
}
if (!buf) {
return next();
}
callback(null, buf);
});
}
function getUnused(next) {
self.get(unusedBuf, function(err, buffer) {
if(err) {
return callback(err);
}
if(!buffer) {
return next(null, new Buffer('0001', 'hex'));
}
next(null, buffer);
});
}
function putPrefix(buffer, next) {
self.put(keyBuf, buffer, function(err) {
if (err) {
return callback(err);
}
next(null, buffer);
});
}
function putUnused(buffer, next) {
var prefix = buffer.readUInt16BE();
var nextUnused = new Buffer(2);
nextUnused.writeUInt16BE(prefix + 1);
self.put(unusedBuf, nextUnused, function(err) {
if (err) {
return callback(err);
}
next(null, buffer);
});
}
async.waterfall(
[
getPrefix,
getUnused,
putPrefix,
putUnused
],
callback
);
};
module.exports = DB;