/* This file is part of cpp-ethereum. cpp-ethereum is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. cpp-ethereum is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with cpp-ethereum. If not, see . */ /** @file BlockDetails.h * @author Gav Wood * @date 2014 */ #pragma once #pragma warning(push) #pragma warning(disable: 4100 4267) #include #pragma warning(pop) #include #include #include "TransactionReceipt.h" namespace ldb = leveldb; namespace dev { namespace eth { // TODO: OPTIMISE: constructors take bytes, RLP used only in necessary classes. static const unsigned c_bloomIndexSize = 16; static const unsigned c_bloomIndexLevels = 2; struct BlockDetails { BlockDetails(): number(0), totalDifficulty(0) {} BlockDetails(unsigned _n, u256 _tD, h256 _p, h256s _c): number(_n), totalDifficulty(_tD), parent(_p), children(_c) {} BlockDetails(RLP const& _r); bytes rlp() const; bool isNull() const { return !totalDifficulty; } explicit operator bool() const { return !isNull(); } unsigned number; u256 totalDifficulty; h256 parent; h256s children; mutable unsigned size; }; struct BlockLogBlooms { BlockLogBlooms() {} BlockLogBlooms(RLP const& _r) { blooms = _r.toVector(); size = _r.data().size(); } bytes rlp() const { RLPStream s; s << blooms; size = s.out().size(); return s.out(); } LogBlooms blooms; mutable unsigned size; }; struct BlocksBlooms { BlocksBlooms() {} BlocksBlooms(RLP const& _r) { blooms = _r.toArray(); size = _r.data().size(); } bytes rlp() const { RLPStream s; s << blooms; size = s.out().size(); return s.out(); } std::array blooms; mutable unsigned size; }; struct BlockReceipts { BlockReceipts() {} BlockReceipts(RLP const& _r) { for (auto const& i: _r) receipts.emplace_back(i.data()); size = _r.data().size(); } bytes rlp() const { RLPStream s(receipts.size()); for (TransactionReceipt const& i: receipts) i.streamRLP(s); size = s.out().size(); return s.out(); } TransactionReceipts receipts; mutable unsigned size; }; struct BlockHash { BlockHash() {} BlockHash(RLP const& _r) { value = _r.toHash(); } bytes rlp() const { return dev::rlp(value); } h256 value; static const unsigned size = 65; }; struct TransactionAddress { TransactionAddress() {} TransactionAddress(RLP const& _rlp) { blockHash = _rlp[0].toHash(); index = _rlp[1].toInt(); } bytes rlp() const { RLPStream s(2); s << blockHash << index; return s.out(); } explicit operator bool() const { return !!blockHash; } h256 blockHash; unsigned index = 0; static const unsigned size = 67; }; using BlockDetailsHash = std::map; using BlockLogBloomsHash = std::map; using BlockReceiptsHash = std::map; using TransactionAddressHash = std::map; using BlockHashHash = std::map; using BlocksBloomsHash = std::map; static const BlockDetails NullBlockDetails; static const BlockLogBlooms NullBlockLogBlooms; static const BlockReceipts NullBlockReceipts; static const TransactionAddress NullTransactionAddress; static const BlockHash NullBlockHash; static const BlocksBlooms NullBlocksBlooms; } }