/*! * coins.js - coins object for bcoin * Copyright (c) 2014-2016, Christopher Jeffrey (MIT License). * https://github.com/bcoin-org/bcoin */ 'use strict'; var utils = require('../utils/utils'); var assert = require('assert'); var constants = require('../protocol/constants'); var Coin = require('../primitives/coin'); var BufferReader = require('../utils/reader'); var BufferWriter = require('../utils/writer'); var compressor = require('./compress'); var compress = compressor.compress; var decompress = compressor.decompress; /** * Represents the outputs for a single transaction. * @exports Coins * @constructor * @param {TX|Object} tx/options - TX or options object. * @property {Hash} hash - Transaction hash. * @property {Number} version - Transaction version. * @property {Number} height - Transaction height (-1 if unconfirmed). * @property {Boolean} coinbase - Whether the containing * transaction is a coinbase. * @property {Coin[]} outputs - Coins. */ function Coins(options) { if (!(this instanceof Coins)) return new Coins(options); this.version = 1; this.hash = constants.NULL_HASH; this.height = -1; this.coinbase = true; this.outputs = []; if (options) this.fromOptions(options); } /** * Inject properties from options object. * @private * @param {Object} options */ Coins.prototype.fromOptions = function fromOptions(options) { if (options.version != null) { assert(utils.isNumber(options.version)); this.version = options.version; } if (options.hash) { assert(typeof options.hash === 'string'); this.hash = options.hash; } if (options.height != null) { assert(utils.isNumber(options.height)); this.height = options.height; } if (options.coinbase != null) { assert(typeof options.coinbase === 'boolean'); this.coinbase = options.coinbase; } if (options.outputs) { assert(Array.isArray(options.outputs)); this.outputs = options.outputs; } return this; }; /** * Instantiate coins from options object. * @param {Object} options * @returns {Coins} */ Coins.fromOptions = function fromOptions(options) { return new Coins().fromOptions(options); }; /** * Add a single coin to the collection. * @param {Coin} coin */ Coins.prototype.add = function add(coin) { if (this.outputs.length === 0) { this.version = coin.version; this.hash = coin.hash; this.height = coin.height; this.coinbase = coin.coinbase; } while (this.outputs.length <= coin.index) this.outputs.push(null); if (coin.script.isUnspendable()) { this.outputs[coin.index] = null; return; } this.outputs[coin.index] = coin; }; /** * Test whether the collection has a coin. * @param {Number} index * @returns {Boolean} */ Coins.prototype.has = function has(index) { return this.outputs[index] != null; }; /** * Get a coin. * @param {Number} index * @returns {Coin} */ Coins.prototype.get = function get(index) { var coin = this.outputs[index]; if (!coin) return; if (coin instanceof CompressedCoin) coin = coin.toCoin(this, index); return coin; }; /** * Count unspent coins. * @returns {Number} */ Coins.prototype.count = function count(index) { var total = 0; var i; for (i = 0; i < this.outputs.length; i++) { if (this.outputs[i]) total++; } return total; }; /** * Remove a coin and return it. * @param {Number} index * @returns {Coin} */ Coins.prototype.spend = function spend(index) { var coin = this.get(index); if (!coin) return; this.outputs[index] = null; return coin; }; /** * Count up to the last available index. * @returns {Number} */ Coins.prototype.size = function size() { var index = -1; var i; for (i = this.outputs.length - 1; i >= 0; i--) { if (this.outputs[i]) { index = i; break; } } return index + 1; }; /* * Coins serialization: * version: varint * bits: uint32 (31-bit height | 1-bit coinbase-flag) * spent-field: varint size | bitfield (0=unspent, 1=spent) * outputs (repeated): * compressed-script: * prefix: 0x00 = varint size | raw script * 0x01 = 20 byte pubkey hash * 0x02 = 20 byte script hash * 0x03 = 33 byte compressed key * data: script data, dictated by the prefix * value: varint * * The compression below sacrifices some cpu in exchange * for reduced size, but in some cases the use of varints * actually increases speed (varint versions and values * for example). We do as much compression as possible * without sacrificing too much cpu. Value compression * is intentionally excluded for now as it seems to be * too much of a perf hit. Maybe when v8 optimizes * non-smi arithmetic better we can enable it. */ /** * Serialize the coins object. * @param {TX|Coins} tx * @returns {Buffer} */ Coins.prototype.toRaw = function toRaw(writer) { var p = new BufferWriter(); var height = this.height; var length = this.size(); var i, output, bits, fstart, flen, bit, oct; // Return nothing if we're fully spent. if (length === 0) return writer; // Varint version: hopefully some smartass // miner doesn't start mining `-1` versions. p.writeVarint(this.version); // Unfortunately, we don't have a compact // way to store unconfirmed height. if (height === -1) height = 0x7fffffff; // Create the `bits` value: // (height | coinbase-flag). bits = height << 1; if (this.coinbase) bits |= 1; if (bits < 0) bits += 0x100000000; // Making this a varint would actually // make 99% of coins bigger. Varints // are really only useful up until // 0x10000, but since we're also // storing the coinbase flag on the // lo bit, varints are useless (and // actually harmful) after height // 32767 (0x7fff). p.writeU32(bits); // Fill the spent field with zeroes to avoid // allocating a buffer. We mark the spents // after rendering the final buffer. flen = Math.ceil(length / 8); p.writeVarint(flen); fstart = p.written; p.fill(0, flen); for (i = 0; i < length; i++) { output = this.outputs[i]; if (!output) continue; // If we read this coin from the db and // didn't use it, it's still in its // compressed form. Just write it back // as a buffer for speed. if (output instanceof CompressedCoin) { p.writeBytes(output.toRaw()); continue; } compress.script(output.script, p); p.writeVarint(output.value); } // Render the buffer with all // zeroes in the spent field. p = p.render(); // Mark the spents in the spent field. // This is essentially a NOP for new coins. for (i = 0; i < length; i++) { if (this.outputs[i]) continue; bit = i % 8; oct = (i - bit) / 8; p[fstart + oct] |= 1 << (7 - bit); } if (writer) { writer.writeBytes(p); return writer; } return p; }; /** * Parse serialized coins. * @param {Buffer} data * @param {Hash} hash * @returns {Object} A "naked" coins object. */ Coins.prototype.fromRaw = function fromRaw(data, hash, index) { var p = new BufferReader(data); var i = 0; var bits, coin, offset, size, fstart, flen, bit, oct, spent; this.version = p.readVarint(); bits = p.readU32(); this.height = bits >>> 1; this.hash = hash; this.coinbase = (bits & 1) !== 0; if (this.height === 0x7fffffff) this.height = -1; // Mark the start of the spent field and // seek past it to avoid reading a buffer. flen = p.readVarint(); fstart = p.offset; p.seek(flen); while (p.left()) { // Read a single bit out of the spent field. bit = i % 8; oct = (i - bit) / 8; spent = (p.data[fstart + oct] >>> (7 - bit)) & 1; // Already spent. if (spent) { // Don't bother pushing outputs on if // we're seeking to a specific index. if (index != null) { if (i === index) return; i++; continue; } this.outputs.push(null); i++; continue; } offset = p.offset; // Skip past the compressed scripts. switch (p.readU8()) { case 0: p.seek(p.readVarint()); break; case 1: case 2: p.seek(20); break; case 3: p.seek(33); break; default: throw new Error('Bad prefix.'); } // Skip past the value. p.readVarint(); size = p.offset - offset; // Keep going if we're seeking // to a specific index. if (index != null && i !== index) { i++; continue; } // Store the offset and size // in the compressed coin object. coin = new CompressedCoin(offset, size, data); // We found our coin. if (index != null) return coin.toCoin(this, i); this.outputs.push(coin); i++; } // We couldn't find our coin. if (index != null) return; return this; }; /** * Parse a single serialized coin. * @param {Buffer} data * @param {Hash} hash * @param {Number} index * @returns {Coin} */ Coins.parseCoin = function parseCoin(data, hash, index) { assert(index != null, 'Bad coin index.'); return new Coins().fromRaw(data, hash, index); }; /** * Instantiate coins from a serialized Buffer. * @param {Buffer} data * @param {Hash} hash - Transaction hash. * @returns {Coins} */ Coins.fromRaw = function fromRaw(data, hash) { return new Coins().fromRaw(data, hash); }; /** * Inject properties from tx. * @private * @param {TX} tx */ Coins.prototype.fromTX = function fromTX(tx) { var i; this.version = tx.version; this.hash = tx.hash('hex'); this.height = tx.height; this.coinbase = tx.isCoinbase(); for (i = 0; i < tx.outputs.length; i++) { if (tx.outputs[i].script.isUnspendable()) { this.outputs.push(null); continue; } this.outputs.push(Coin.fromTX(tx, i)); } return this; }; /** * Instantiate a coins object from a transaction. * @param {TX} tx * @returns {Coins} */ Coins.fromTX = function fromTX(tx) { return new Coins().fromTX(tx); }; /** * A compressed coin is an object which defers * parsing of a coin. Say there is a transaction * with 100 outputs. When a block comes in, * there may only be _one_ input in that entire * block which redeems an output from that * transaction. When parsing the Coins, there * is no sense to get _all_ of them into their * abstract form. A compressed coin is just a * pointer to that coin in the Coins buffer, as * well as a size. Parsing is done only if that * coin is being redeemed. * @constructor * @private * @param {Number} offset * @param {Number} size * @param {Buffer} raw */ function CompressedCoin(offset, size, raw) { if (!(this instanceof CompressedCoin)) return new CompressedCoin(offset, size, raw); this.offset = offset; this.size = size; this.raw = raw; } /** * Parse the deferred data and return a Coin. * @param {Coins} coins * @param {Number} index * @returns {Coin} */ CompressedCoin.prototype.toCoin = function toCoin(coins, index) { var p = new BufferReader(this.raw); var coin = new Coin(); // Load in all necessary properties // from the parent Coins object. coin.version = coins.version; coin.coinbase = coins.coinbase; coin.height = coins.height; coin.hash = coins.hash; coin.index = index; // Seek to the coin's offset. p.seek(this.offset); decompress.script(p, coin.script); coin.value = p.readVarint(); return coin; }; /** * Slice off the part of the buffer * relevant to this particular coin. * @returns {Buffer} */ CompressedCoin.prototype.toRaw = function toRaw() { return this.raw.slice(this.offset, this.offset + this.size); }; /* * Expose */ module.exports = Coins;