2012-09-03 21:14:03 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-09-03 21:14:03 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2012-10-16 22:23:39 +02:00
|
|
|
#include "txdb.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "chain.h"
|
2015-02-15 02:21:42 +01:00
|
|
|
#include "chainparams.h"
|
|
|
|
#include "hash.h"
|
2015-02-05 01:21:11 +01:00
|
|
|
#include "main.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "pow.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "uint256.h"
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2014-09-14 12:43:56 +02:00
|
|
|
#include <boost/thread.hpp>
|
|
|
|
|
2012-09-03 21:14:03 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2015-01-25 16:27:54 +01:00
|
|
|
static const char DB_COINS = 'c';
|
|
|
|
static const char DB_BLOCK_FILES = 'f';
|
|
|
|
static const char DB_TXINDEX = 't';
|
|
|
|
static const char DB_BLOCK_INDEX = 'b';
|
|
|
|
|
|
|
|
static const char DB_BEST_BLOCK = 'B';
|
|
|
|
static const char DB_FLAG = 'F';
|
|
|
|
static const char DB_REINDEX_FLAG = 'R';
|
|
|
|
static const char DB_LAST_BLOCK = 'l';
|
|
|
|
|
|
|
|
|
2015-09-08 00:22:23 +02:00
|
|
|
CCoinsViewDB::CCoinsViewDB(size_t nCacheSize, bool fMemory, bool fWipe) : db(GetDataDir() / "chainstate", nCacheSize, fMemory, fWipe, true)
|
|
|
|
{
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-07-19 16:42:48 +02:00
|
|
|
bool CCoinsViewDB::GetCoins(const uint256 &txid, CCoins &coins) const {
|
2015-01-25 16:27:54 +01:00
|
|
|
return db.Read(make_pair(DB_COINS, txid), coins);
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-07-19 16:42:48 +02:00
|
|
|
bool CCoinsViewDB::HaveCoins(const uint256 &txid) const {
|
2015-01-25 16:27:54 +01:00
|
|
|
return db.Exists(make_pair(DB_COINS, txid));
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-07-19 16:42:48 +02:00
|
|
|
uint256 CCoinsViewDB::GetBestBlock() const {
|
2012-09-03 21:14:03 +02:00
|
|
|
uint256 hashBestChain;
|
2015-01-25 16:27:54 +01:00
|
|
|
if (!db.Read(DB_BEST_BLOCK, hashBestChain))
|
2014-12-15 09:11:16 +01:00
|
|
|
return uint256();
|
2013-11-05 02:27:39 +01:00
|
|
|
return hashBestChain;
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-08-24 02:08:05 +02:00
|
|
|
bool CCoinsViewDB::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) {
|
2015-10-23 03:02:20 +02:00
|
|
|
CDBBatch batch(&db.GetObfuscateKey());
|
2014-09-03 09:37:47 +02:00
|
|
|
size_t count = 0;
|
|
|
|
size_t changed = 0;
|
2014-08-24 02:08:05 +02:00
|
|
|
for (CCoinsMap::iterator it = mapCoins.begin(); it != mapCoins.end();) {
|
2014-09-03 09:37:47 +02:00
|
|
|
if (it->second.flags & CCoinsCacheEntry::DIRTY) {
|
2015-09-08 00:22:23 +02:00
|
|
|
if (it->second.coins.IsPruned())
|
|
|
|
batch.Erase(make_pair(DB_COINS, it->first));
|
|
|
|
else
|
|
|
|
batch.Write(make_pair(DB_COINS, it->first), it->second.coins);
|
2014-09-03 09:37:47 +02:00
|
|
|
changed++;
|
|
|
|
}
|
|
|
|
count++;
|
2014-08-24 02:08:05 +02:00
|
|
|
CCoinsMap::iterator itOld = it++;
|
|
|
|
mapCoins.erase(itOld);
|
|
|
|
}
|
2014-12-15 09:11:16 +01:00
|
|
|
if (!hashBlock.IsNull())
|
2015-09-08 00:22:23 +02:00
|
|
|
batch.Write(DB_BEST_BLOCK, hashBlock);
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2014-09-03 09:37:47 +02:00
|
|
|
LogPrint("coindb", "Committing %u changed transactions (out of %u) to coin database...\n", (unsigned int)changed, (unsigned int)count);
|
2012-09-03 21:14:03 +02:00
|
|
|
return db.WriteBatch(batch);
|
|
|
|
}
|
|
|
|
|
2015-10-23 03:02:20 +02:00
|
|
|
CBlockTreeDB::CBlockTreeDB(size_t nCacheSize, bool fMemory, bool fWipe) : CDBWrapper(GetDataDir() / "blocks" / "index", nCacheSize, fMemory, fWipe) {
|
2012-09-04 18:12:00 +02:00
|
|
|
}
|
|
|
|
|
2012-09-03 21:14:03 +02:00
|
|
|
bool CBlockTreeDB::ReadBlockFileInfo(int nFile, CBlockFileInfo &info) {
|
2015-01-25 16:27:54 +01:00
|
|
|
return Read(make_pair(DB_BLOCK_FILES, nFile), info);
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2012-10-21 21:23:13 +02:00
|
|
|
bool CBlockTreeDB::WriteReindexing(bool fReindexing) {
|
|
|
|
if (fReindexing)
|
2015-01-25 16:27:54 +01:00
|
|
|
return Write(DB_REINDEX_FLAG, '1');
|
2012-10-21 21:23:13 +02:00
|
|
|
else
|
2015-01-25 16:27:54 +01:00
|
|
|
return Erase(DB_REINDEX_FLAG);
|
2012-10-21 21:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::ReadReindexing(bool &fReindexing) {
|
2015-01-25 16:27:54 +01:00
|
|
|
fReindexing = Exists(DB_REINDEX_FLAG);
|
2012-10-21 21:23:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-03 21:14:03 +02:00
|
|
|
bool CBlockTreeDB::ReadLastBlockFile(int &nFile) {
|
2015-01-25 16:27:54 +01:00
|
|
|
return Read(DB_LAST_BLOCK, nFile);
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-07-19 16:42:48 +02:00
|
|
|
bool CCoinsViewDB::GetStats(CCoinsStats &stats) const {
|
|
|
|
/* It seems that there are no "const iterators" for LevelDB. Since we
|
|
|
|
only need read operations on it, use a const-cast to get around
|
|
|
|
that restriction. */
|
2015-10-23 03:02:20 +02:00
|
|
|
boost::scoped_ptr<CDBIterator> pcursor(const_cast<CDBWrapper*>(&db)->NewIterator());
|
2015-10-13 20:25:57 +02:00
|
|
|
pcursor->Seek(DB_COINS);
|
2012-09-25 23:04:54 +02:00
|
|
|
|
2013-05-01 16:23:27 +02:00
|
|
|
CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION);
|
2013-11-05 02:27:39 +01:00
|
|
|
stats.hashBlock = GetBestBlock();
|
2013-05-01 16:23:27 +02:00
|
|
|
ss << stats.hashBlock;
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount nTotalAmount = 0;
|
2012-09-25 23:04:54 +02:00
|
|
|
while (pcursor->Valid()) {
|
2013-03-09 18:02:57 +01:00
|
|
|
boost::this_thread::interruption_point();
|
2015-10-08 02:12:24 +02:00
|
|
|
std::pair<char, uint256> key;
|
|
|
|
CCoins coins;
|
2015-10-13 20:25:57 +02:00
|
|
|
if (pcursor->GetKey(key) && key.first == DB_COINS) {
|
2015-10-08 02:12:24 +02:00
|
|
|
if (pcursor->GetValue(coins)) {
|
2012-09-25 23:04:54 +02:00
|
|
|
stats.nTransactions++;
|
2013-05-01 16:23:27 +02:00
|
|
|
for (unsigned int i=0; i<coins.vout.size(); i++) {
|
|
|
|
const CTxOut &out = coins.vout[i];
|
|
|
|
if (!out.IsNull()) {
|
2012-09-25 23:04:54 +02:00
|
|
|
stats.nTransactionOutputs++;
|
2013-05-01 16:23:27 +02:00
|
|
|
ss << VARINT(i+1);
|
|
|
|
ss << out;
|
|
|
|
nTotalAmount += out.nValue;
|
|
|
|
}
|
2012-09-25 23:04:54 +02:00
|
|
|
}
|
2015-10-21 23:23:59 +02:00
|
|
|
stats.nSerializedSize += 32 + pcursor->GetValueSize();
|
2013-05-01 16:23:27 +02:00
|
|
|
ss << VARINT(0);
|
2015-10-08 02:12:24 +02:00
|
|
|
} else {
|
|
|
|
return error("CCoinsViewDB::GetStats() : unable to read value");
|
2012-09-25 23:04:54 +02:00
|
|
|
}
|
2015-10-08 02:12:24 +02:00
|
|
|
} else {
|
|
|
|
break;
|
2012-09-25 23:04:54 +02:00
|
|
|
}
|
2015-10-08 02:12:24 +02:00
|
|
|
pcursor->Next();
|
2012-09-25 23:04:54 +02:00
|
|
|
}
|
2014-10-22 09:25:08 +02:00
|
|
|
{
|
|
|
|
LOCK(cs_main);
|
|
|
|
stats.nHeight = mapBlockIndex.find(stats.hashBlock)->second->nHeight;
|
|
|
|
}
|
2013-05-01 16:23:27 +02:00
|
|
|
stats.hashSerialized = ss.GetHash();
|
|
|
|
stats.nTotalAmount = nTotalAmount;
|
2012-09-25 23:04:54 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-25 16:26:20 +01:00
|
|
|
bool CBlockTreeDB::WriteBatchSync(const std::vector<std::pair<int, const CBlockFileInfo*> >& fileInfo, int nLastFile, const std::vector<const CBlockIndex*>& blockinfo) {
|
2015-10-23 03:02:20 +02:00
|
|
|
CDBBatch batch(&GetObfuscateKey());
|
2014-11-25 16:26:20 +01:00
|
|
|
for (std::vector<std::pair<int, const CBlockFileInfo*> >::const_iterator it=fileInfo.begin(); it != fileInfo.end(); it++) {
|
2015-01-25 16:27:54 +01:00
|
|
|
batch.Write(make_pair(DB_BLOCK_FILES, it->first), *it->second);
|
2014-11-25 16:26:20 +01:00
|
|
|
}
|
2015-01-25 16:27:54 +01:00
|
|
|
batch.Write(DB_LAST_BLOCK, nLastFile);
|
2014-11-25 16:26:20 +01:00
|
|
|
for (std::vector<const CBlockIndex*>::const_iterator it=blockinfo.begin(); it != blockinfo.end(); it++) {
|
2015-01-25 16:27:54 +01:00
|
|
|
batch.Write(make_pair(DB_BLOCK_INDEX, (*it)->GetBlockHash()), CDiskBlockIndex(*it));
|
2014-11-25 16:26:20 +01:00
|
|
|
}
|
|
|
|
return WriteBatch(batch, true);
|
|
|
|
}
|
|
|
|
|
2013-01-11 01:47:57 +01:00
|
|
|
bool CBlockTreeDB::ReadTxIndex(const uint256 &txid, CDiskTxPos &pos) {
|
2015-01-25 16:27:54 +01:00
|
|
|
return Read(make_pair(DB_TXINDEX, txid), pos);
|
2013-01-11 01:47:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> >&vect) {
|
2015-10-23 03:02:20 +02:00
|
|
|
CDBBatch batch(&GetObfuscateKey());
|
2013-01-11 01:47:57 +01:00
|
|
|
for (std::vector<std::pair<uint256,CDiskTxPos> >::const_iterator it=vect.begin(); it!=vect.end(); it++)
|
2015-01-25 16:27:54 +01:00
|
|
|
batch.Write(make_pair(DB_TXINDEX, it->first), it->second);
|
2013-01-11 01:47:57 +01:00
|
|
|
return WriteBatch(batch);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::WriteFlag(const std::string &name, bool fValue) {
|
2015-01-25 16:27:54 +01:00
|
|
|
return Write(std::make_pair(DB_FLAG, name), fValue ? '1' : '0');
|
2013-01-11 01:47:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::ReadFlag(const std::string &name, bool &fValue) {
|
|
|
|
char ch;
|
2015-01-25 16:27:54 +01:00
|
|
|
if (!Read(std::make_pair(DB_FLAG, name), ch))
|
2013-01-11 01:47:57 +01:00
|
|
|
return false;
|
|
|
|
fValue = ch == '1';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-03 21:14:03 +02:00
|
|
|
bool CBlockTreeDB::LoadBlockIndexGuts()
|
|
|
|
{
|
2015-10-23 03:02:20 +02:00
|
|
|
boost::scoped_ptr<CDBIterator> pcursor(NewIterator());
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2015-10-13 20:25:57 +02:00
|
|
|
pcursor->Seek(make_pair(DB_BLOCK_INDEX, uint256()));
|
2012-09-03 21:14:03 +02:00
|
|
|
|
|
|
|
// Load mapBlockIndex
|
|
|
|
while (pcursor->Valid()) {
|
2013-03-09 18:02:57 +01:00
|
|
|
boost::this_thread::interruption_point();
|
2015-10-08 02:12:24 +02:00
|
|
|
std::pair<char, uint256> key;
|
2015-10-13 20:25:57 +02:00
|
|
|
if (pcursor->GetKey(key) && key.first == DB_BLOCK_INDEX) {
|
2015-10-08 02:12:24 +02:00
|
|
|
CDiskBlockIndex diskindex;
|
|
|
|
if (pcursor->GetValue(diskindex)) {
|
2012-09-03 21:14:03 +02:00
|
|
|
// Construct block index object
|
|
|
|
CBlockIndex* pindexNew = InsertBlockIndex(diskindex.GetBlockHash());
|
|
|
|
pindexNew->pprev = InsertBlockIndex(diskindex.hashPrev);
|
|
|
|
pindexNew->nHeight = diskindex.nHeight;
|
|
|
|
pindexNew->nFile = diskindex.nFile;
|
|
|
|
pindexNew->nDataPos = diskindex.nDataPos;
|
|
|
|
pindexNew->nUndoPos = diskindex.nUndoPos;
|
|
|
|
pindexNew->nVersion = diskindex.nVersion;
|
|
|
|
pindexNew->hashMerkleRoot = diskindex.hashMerkleRoot;
|
|
|
|
pindexNew->nTime = diskindex.nTime;
|
|
|
|
pindexNew->nBits = diskindex.nBits;
|
|
|
|
pindexNew->nNonce = diskindex.nNonce;
|
|
|
|
pindexNew->nStatus = diskindex.nStatus;
|
|
|
|
pindexNew->nTx = diskindex.nTx;
|
|
|
|
|
2015-02-15 02:21:42 +01:00
|
|
|
if (!CheckProofOfWork(pindexNew->GetBlockHash(), pindexNew->nBits, Params().GetConsensus()))
|
2015-01-08 11:44:25 +01:00
|
|
|
return error("LoadBlockIndex(): CheckProofOfWork failed: %s", pindexNew->ToString());
|
2012-09-03 21:14:03 +02:00
|
|
|
|
|
|
|
pcursor->Next();
|
|
|
|
} else {
|
2015-10-08 02:12:24 +02:00
|
|
|
return error("LoadBlockIndex() : failed to read value");
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
2015-10-08 02:12:24 +02:00
|
|
|
} else {
|
|
|
|
break;
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|