LCOV - code coverage report
Current view: top level - src - coins.cpp (source / functions) Coverage Total Hit
Test: total_coverage.info Lines: 91.0 % 199 181
Test Date: 2024-11-04 05:10:19 Functions: 73.2 % 41 30
Branches: 81.7 % 186 152

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2012-2022 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #include <coins.h>
       6                 :             : 
       7                 :             : #include <consensus/consensus.h>
       8                 :             : #include <logging.h>
       9                 :             : #include <random.h>
      10                 :             : #include <util/trace.h>
      11                 :             : 
      12                 :           7 : std::optional<Coin> CCoinsView::GetCoin(const COutPoint& outpoint) const { return std::nullopt; }
      13                 :           0 : uint256 CCoinsView::GetBestBlock() const { return uint256(); }
      14                 :           0 : std::vector<uint256> CCoinsView::GetHeadBlocks() const { return std::vector<uint256>(); }
      15                 :           0 : bool CCoinsView::BatchWrite(CoinsViewCacheCursor& cursor, const uint256 &hashBlock) { return false; }
      16                 :           0 : std::unique_ptr<CCoinsViewCursor> CCoinsView::Cursor() const { return nullptr; }
      17                 :             : 
      18                 :           0 : bool CCoinsView::HaveCoin(const COutPoint &outpoint) const
      19                 :             : {
      20                 :           0 :     return GetCoin(outpoint).has_value();
      21                 :             : }
      22                 :             : 
      23                 :      546975 : CCoinsViewBacked::CCoinsViewBacked(CCoinsView *viewIn) : base(viewIn) { }
      24                 :      970455 : std::optional<Coin> CCoinsViewBacked::GetCoin(const COutPoint& outpoint) const { return base->GetCoin(outpoint); }
      25                 :           0 : bool CCoinsViewBacked::HaveCoin(const COutPoint &outpoint) const { return base->HaveCoin(outpoint); }
      26                 :       31482 : uint256 CCoinsViewBacked::GetBestBlock() const { return base->GetBestBlock(); }
      27                 :           0 : std::vector<uint256> CCoinsViewBacked::GetHeadBlocks() const { return base->GetHeadBlocks(); }
      28                 :       64647 : void CCoinsViewBacked::SetBackend(CCoinsView &viewIn) { base = &viewIn; }
      29                 :        3010 : bool CCoinsViewBacked::BatchWrite(CoinsViewCacheCursor& cursor, const uint256 &hashBlock) { return base->BatchWrite(cursor, hashBlock); }
      30                 :           0 : std::unique_ptr<CCoinsViewCursor> CCoinsViewBacked::Cursor() const { return base->Cursor(); }
      31                 :           0 : size_t CCoinsViewBacked::EstimateSize() const { return base->EstimateSize(); }
      32                 :             : 
      33                 :      509582 : CCoinsViewCache::CCoinsViewCache(CCoinsView* baseIn, bool deterministic) :
      34                 :      509582 :     CCoinsViewBacked(baseIn), m_deterministic(deterministic),
      35   [ +  -  +  - ]:      509582 :     cacheCoins(0, SaltedOutpointHasher(/*deterministic=*/deterministic), CCoinsMap::key_equal{}, &m_cache_coins_memory_resource)
      36                 :             : {
      37                 :      509582 :     m_sentinel.second.SelfRef(m_sentinel);
      38                 :      509582 : }
      39                 :             : 
      40                 :      956351 : size_t CCoinsViewCache::DynamicMemoryUsage() const {
      41                 :      956351 :     return memusage::DynamicUsage(cacheCoins) + cachedCoinsUsage;
      42                 :             : }
      43                 :             : 
      44                 :    73347858 : CCoinsMap::iterator CCoinsViewCache::FetchCoin(const COutPoint &outpoint) const {
      45         [ +  + ]:    73347858 :     const auto [ret, inserted] = cacheCoins.try_emplace(outpoint);
      46         [ +  + ]:    73347858 :     if (inserted) {
      47         [ +  + ]:    35428419 :         if (auto coin{base->GetCoin(outpoint)}) {
      48                 :     9761319 :             ret->second.coin = std::move(*coin);
      49         [ +  + ]:     9761319 :             cachedCoinsUsage += ret->second.coin.DynamicMemoryUsage();
      50         [ +  + ]:     9761319 :             if (ret->second.coin.IsSpent()) { // TODO GetCoin cannot return spent coins
      51                 :             :                 // The parent only has an empty entry for this outpoint; we can consider our version as fresh.
      52                 :      169871 :                 ret->second.AddFlags(CCoinsCacheEntry::FRESH, *ret, m_sentinel);
      53                 :             :             }
      54                 :             :         } else {
      55                 :    25667100 :             cacheCoins.erase(ret);
      56                 :    25667100 :             return cacheCoins.end();
      57                 :    35428419 :         }
      58                 :             :     }
      59                 :    47680758 :     return ret;
      60                 :             : }
      61                 :             : 
      62                 :    24376261 : std::optional<Coin> CCoinsViewCache::GetCoin(const COutPoint& outpoint) const
      63                 :             : {
      64   [ +  +  +  + ]:    24376261 :     if (auto it{FetchCoin(outpoint)}; it != cacheCoins.end() && !it->second.coin.IsSpent()) return it->second.coin;
      65                 :    14964509 :     return std::nullopt;
      66                 :             : }
      67                 :             : 
      68                 :    14249351 : void CCoinsViewCache::AddCoin(const COutPoint &outpoint, Coin&& coin, bool possible_overwrite) {
      69         [ -  + ]:    14249351 :     assert(!coin.IsSpent());
      70         [ +  + ]:    14249351 :     if (coin.out.scriptPubKey.IsUnspendable()) return;
      71                 :    13974626 :     CCoinsMap::iterator it;
      72                 :    13974626 :     bool inserted;
      73         [ +  + ]:    13974626 :     std::tie(it, inserted) = cacheCoins.emplace(std::piecewise_construct, std::forward_as_tuple(outpoint), std::tuple<>());
      74                 :    13974626 :     bool fresh = false;
      75         [ +  + ]:    13974626 :     if (!inserted) {
      76         [ +  + ]:       17756 :         cachedCoinsUsage -= it->second.coin.DynamicMemoryUsage();
      77                 :             :     }
      78         [ +  + ]:    13974626 :     if (!possible_overwrite) {
      79         [ +  + ]:    13758884 :         if (!it->second.coin.IsSpent()) {
      80         [ +  - ]:          16 :             throw std::logic_error("Attempted to overwrite an unspent coin (when possible_overwrite is false)");
      81                 :             :         }
      82                 :             :         // If the coin exists in this cache as a spent coin and is DIRTY, then
      83                 :             :         // its spentness hasn't been flushed to the parent cache. We're
      84                 :             :         // re-adding the coin to this cache now but we can't mark it as FRESH.
      85                 :             :         // If we mark it FRESH and then spend it before the cache is flushed
      86                 :             :         // we would remove it from this cache and would never flush spentness
      87                 :             :         // to the parent cache.
      88                 :             :         //
      89                 :             :         // Re-adding a spent coin can happen in the case of a re-org (the coin
      90                 :             :         // is 'spent' when the block adding it is disconnected and then
      91                 :             :         // re-added when it is also added in a newly connected block).
      92                 :             :         //
      93                 :             :         // If the coin doesn't exist in the current cache, or is spent but not
      94                 :             :         // DIRTY, then it can be marked FRESH.
      95                 :    13758868 :         fresh = !it->second.IsDirty();
      96                 :             :     }
      97                 :    13974610 :     it->second.coin = std::move(coin);
      98         [ +  + ]:    14191132 :     it->second.AddFlags(CCoinsCacheEntry::DIRTY | (fresh ? CCoinsCacheEntry::FRESH : 0), *it, m_sentinel);
      99         [ +  + ]:    27412913 :     cachedCoinsUsage += it->second.coin.DynamicMemoryUsage();
     100                 :             :     TRACE5(utxocache, add,
     101                 :             :            outpoint.hash.data(),
     102                 :             :            (uint32_t)outpoint.n,
     103                 :             :            (uint32_t)it->second.coin.nHeight,
     104                 :             :            (int64_t)it->second.coin.out.nValue,
     105                 :    14249335 :            (bool)it->second.coin.IsCoinBase());
     106                 :             : }
     107                 :             : 
     108                 :        5749 : void CCoinsViewCache::EmplaceCoinInternalDANGER(COutPoint&& outpoint, Coin&& coin) {
     109         [ +  + ]:        5749 :     cachedCoinsUsage += coin.DynamicMemoryUsage();
     110         [ +  - ]:        5749 :     auto [it, inserted] = cacheCoins.emplace(
     111                 :             :         std::piecewise_construct,
     112                 :        5749 :         std::forward_as_tuple(std::move(outpoint)),
     113                 :        5749 :         std::forward_as_tuple(std::move(coin)));
     114         [ +  - ]:        5749 :     if (inserted) {
     115                 :        5749 :         it->second.AddFlags(CCoinsCacheEntry::DIRTY, *it, m_sentinel);
     116                 :             :     }
     117                 :        5749 : }
     118                 :             : 
     119                 :     7075111 : void AddCoins(CCoinsViewCache& cache, const CTransaction &tx, int nHeight, bool check_for_overwrite) {
     120                 :     7075111 :     bool fCoinbase = tx.IsCoinBase();
     121                 :     7075111 :     const Txid& txid = tx.GetHash();
     122         [ +  + ]:    21256478 :     for (size_t i = 0; i < tx.vout.size(); ++i) {
     123         [ -  + ]:    14181367 :         bool overwrite = check_for_overwrite ? cache.HaveCoin(COutPoint(txid, i)) : fCoinbase;
     124                 :             :         // Coinbase transactions can always be overwritten, in order to correctly
     125                 :             :         // deal with the pre-BIP30 occurrences of duplicate coinbase transactions.
     126         [ +  - ]:    28362734 :         cache.AddCoin(COutPoint(txid, i), Coin(tx.vout[i], nHeight, fCoinbase), overwrite);
     127                 :             :     }
     128                 :     7075111 : }
     129                 :             : 
     130                 :     9159999 : bool CCoinsViewCache::SpendCoin(const COutPoint &outpoint, Coin* moveout) {
     131                 :     9159999 :     CCoinsMap::iterator it = FetchCoin(outpoint);
     132         [ +  + ]:     9159999 :     if (it == cacheCoins.end()) return false;
     133         [ +  + ]:     9159993 :     cachedCoinsUsage -= it->second.coin.DynamicMemoryUsage();
     134                 :             :     TRACE5(utxocache, spent,
     135                 :             :            outpoint.hash.data(),
     136                 :             :            (uint32_t)outpoint.n,
     137                 :             :            (uint32_t)it->second.coin.nHeight,
     138                 :             :            (int64_t)it->second.coin.out.nValue,
     139                 :     9159993 :            (bool)it->second.coin.IsCoinBase());
     140         [ +  + ]:     9159993 :     if (moveout) {
     141                 :      152104 :         *moveout = std::move(it->second.coin);
     142                 :             :     }
     143         [ +  + ]:     9159993 :     if (it->second.IsFresh()) {
     144                 :      166601 :         cacheCoins.erase(it);
     145                 :             :     } else {
     146                 :     8993392 :         it->second.AddFlags(CCoinsCacheEntry::DIRTY, *it, m_sentinel);
     147                 :     8993392 :         it->second.coin.Clear();
     148                 :             :     }
     149                 :             :     return true;
     150                 :             : }
     151                 :             : 
     152                 :             : static const Coin coinEmpty;
     153                 :             : 
     154                 :    20022236 : const Coin& CCoinsViewCache::AccessCoin(const COutPoint &outpoint) const {
     155         [ +  + ]:    20022236 :     CCoinsMap::const_iterator it = FetchCoin(outpoint);
     156         [ +  + ]:    20022236 :     if (it == cacheCoins.end()) {
     157                 :             :         return coinEmpty;
     158                 :             :     } else {
     159                 :    10217598 :         return it->second.coin;
     160                 :             :     }
     161                 :             : }
     162                 :             : 
     163                 :    19789362 : bool CCoinsViewCache::HaveCoin(const COutPoint &outpoint) const {
     164         [ +  + ]:    19789362 :     CCoinsMap::const_iterator it = FetchCoin(outpoint);
     165   [ +  +  +  + ]:    19789362 :     return (it != cacheCoins.end() && !it->second.coin.IsSpent());
     166                 :             : }
     167                 :             : 
     168                 :      283624 : bool CCoinsViewCache::HaveCoinInCache(const COutPoint &outpoint) const {
     169         [ +  + ]:      283624 :     CCoinsMap::const_iterator it = cacheCoins.find(outpoint);
     170   [ +  +  +  + ]:      283624 :     return (it != cacheCoins.end() && !it->second.coin.IsSpent());
     171                 :             : }
     172                 :             : 
     173                 :      469393 : uint256 CCoinsViewCache::GetBestBlock() const {
     174         [ +  + ]:      469393 :     if (hashBlock.IsNull())
     175                 :      215530 :         hashBlock = base->GetBestBlock();
     176                 :      469393 :     return hashBlock;
     177                 :             : }
     178                 :             : 
     179                 :      562892 : void CCoinsViewCache::SetBestBlock(const uint256 &hashBlockIn) {
     180                 :      562892 :     hashBlock = hashBlockIn;
     181                 :      562892 : }
     182                 :             : 
     183                 :      137756 : bool CCoinsViewCache::BatchWrite(CoinsViewCacheCursor& cursor, const uint256 &hashBlockIn) {
     184         [ +  + ]:      637272 :     for (auto it{cursor.Begin()}; it != cursor.End(); it = cursor.NextAndMaybeErase(*it)) {
     185                 :             :         // Ignore non-dirty entries (optimization).
     186         [ +  + ]:      499524 :         if (!it->second.IsDirty()) {
     187                 :          18 :             continue;
     188                 :             :         }
     189                 :      499506 :         CCoinsMap::iterator itUs = cacheCoins.find(it->first);
     190         [ +  + ]:      499506 :         if (itUs == cacheCoins.end()) {
     191                 :             :             // The parent cache does not have an entry, while the child cache does.
     192                 :             :             // We can ignore it if it's both spent and FRESH in the child
     193   [ +  +  +  + ]:      394657 :             if (!(it->second.IsFresh() && it->second.coin.IsSpent())) {
     194                 :             :                 // Create the coin in the parent cache, move the data up
     195                 :             :                 // and mark it as dirty.
     196                 :      394656 :                 itUs = cacheCoins.try_emplace(it->first).first;
     197         [ +  + ]:      394656 :                 CCoinsCacheEntry& entry{itUs->second};
     198         [ +  + ]:      394656 :                 if (cursor.WillErase(*it)) {
     199                 :             :                     // Since this entry will be erased,
     200                 :             :                     // we can move the coin into us instead of copying it
     201                 :      383446 :                     entry.coin = std::move(it->second.coin);
     202                 :             :                 } else {
     203                 :       11210 :                     entry.coin = it->second.coin;
     204                 :             :                 }
     205         [ +  + ]:      394656 :                 cachedCoinsUsage += entry.coin.DynamicMemoryUsage();
     206                 :      394656 :                 entry.AddFlags(CCoinsCacheEntry::DIRTY, *itUs, m_sentinel);
     207                 :             :                 // We can mark it FRESH in the parent if it was FRESH in the child
     208                 :             :                 // Otherwise it might have just been flushed from the parent's cache
     209                 :             :                 // and already exist in the grandparent
     210         [ +  + ]:      394656 :                 if (it->second.IsFresh()) {
     211                 :      179991 :                     entry.AddFlags(CCoinsCacheEntry::FRESH, *itUs, m_sentinel);
     212                 :             :                 }
     213                 :             :             }
     214                 :             :         } else {
     215                 :             :             // Found the entry in the parent cache
     216   [ +  +  +  + ]:      104849 :             if (it->second.IsFresh() && !itUs->second.coin.IsSpent()) {
     217                 :             :                 // The coin was marked FRESH in the child cache, but the coin
     218                 :             :                 // exists in the parent cache. If this ever happens, it means
     219                 :             :                 // the FRESH flag was misapplied and there is a logic error in
     220                 :             :                 // the calling code.
     221         [ +  - ]:           8 :                 throw std::logic_error("FRESH flag misapplied to coin that exists in parent cache");
     222                 :             :             }
     223                 :             : 
     224   [ +  +  +  + ]:      104841 :             if (itUs->second.IsFresh() && it->second.coin.IsSpent()) {
     225                 :             :                 // The grandparent cache does not have an entry, and the coin
     226                 :             :                 // has been spent. We can just delete it from the parent cache.
     227         [ +  + ]:       39426 :                 cachedCoinsUsage -= itUs->second.coin.DynamicMemoryUsage();
     228                 :       39426 :                 cacheCoins.erase(itUs);
     229                 :             :             } else {
     230                 :             :                 // A normal modification.
     231         [ +  + ]:       65415 :                 cachedCoinsUsage -= itUs->second.coin.DynamicMemoryUsage();
     232         [ +  + ]:       65415 :                 if (cursor.WillErase(*it)) {
     233                 :             :                     // Since this entry will be erased,
     234                 :             :                     // we can move the coin into us instead of copying it
     235                 :       63696 :                     itUs->second.coin = std::move(it->second.coin);
     236                 :             :                 } else {
     237                 :        1719 :                     itUs->second.coin = it->second.coin;
     238                 :             :                 }
     239         [ +  + ]:       65415 :                 cachedCoinsUsage += itUs->second.coin.DynamicMemoryUsage();
     240                 :       65415 :                 itUs->second.AddFlags(CCoinsCacheEntry::DIRTY, *itUs, m_sentinel);
     241                 :             :                 // NOTE: It isn't safe to mark the coin as FRESH in the parent
     242                 :             :                 // cache. If it already existed and was spent in the parent
     243                 :             :                 // cache then marking it FRESH would prevent that spentness
     244                 :             :                 // from being flushed to the grandparent.
     245                 :             :             }
     246                 :             :         }
     247                 :             :     }
     248                 :      137748 :     hashBlock = hashBlockIn;
     249                 :      137748 :     return true;
     250                 :             : }
     251                 :             : 
     252                 :      140692 : bool CCoinsViewCache::Flush() {
     253                 :      140692 :     auto cursor{CoinsViewCacheCursor(cachedCoinsUsage, m_sentinel, cacheCoins, /*will_erase=*/true)};
     254                 :      140692 :     bool fOk = base->BatchWrite(cursor, hashBlock);
     255         [ +  - ]:      140692 :     if (fOk) {
     256                 :      140692 :         cacheCoins.clear();
     257                 :      140692 :         ReallocateCache();
     258                 :             :     }
     259                 :      140692 :     cachedCoinsUsage = 0;
     260                 :      140692 :     return fOk;
     261                 :             : }
     262                 :             : 
     263                 :         241 : bool CCoinsViewCache::Sync()
     264                 :             : {
     265                 :         241 :     auto cursor{CoinsViewCacheCursor(cachedCoinsUsage, m_sentinel, cacheCoins, /*will_erase=*/false)};
     266                 :         241 :     bool fOk = base->BatchWrite(cursor, hashBlock);
     267         [ +  - ]:         241 :     if (fOk) {
     268         [ -  + ]:         241 :         if (m_sentinel.second.Next() != &m_sentinel) {
     269                 :             :             /* BatchWrite must clear flags of all entries */
     270         [ #  # ]:           0 :             throw std::logic_error("Not all unspent flagged entries were cleared");
     271                 :             :         }
     272                 :             :     }
     273                 :         241 :     return fOk;
     274                 :             : }
     275                 :             : 
     276                 :       19638 : void CCoinsViewCache::Uncache(const COutPoint& hash)
     277                 :             : {
     278                 :       19638 :     CCoinsMap::iterator it = cacheCoins.find(hash);
     279   [ +  +  +  +  :       19638 :     if (it != cacheCoins.end() && !it->second.IsDirty() && !it->second.IsFresh()) {
                   +  + ]
     280         [ +  + ]:        3736 :         cachedCoinsUsage -= it->second.coin.DynamicMemoryUsage();
     281                 :             :         TRACE5(utxocache, uncache,
     282                 :             :                hash.hash.data(),
     283                 :             :                (uint32_t)hash.n,
     284                 :             :                (uint32_t)it->second.coin.nHeight,
     285                 :             :                (int64_t)it->second.coin.out.nValue,
     286                 :        3736 :                (bool)it->second.coin.IsCoinBase());
     287                 :        3736 :         cacheCoins.erase(it);
     288                 :             :     }
     289                 :       19638 : }
     290                 :             : 
     291                 :      544384 : unsigned int CCoinsViewCache::GetCacheSize() const {
     292                 :      544384 :     return cacheCoins.size();
     293                 :             : }
     294                 :             : 
     295                 :     6898507 : bool CCoinsViewCache::HaveInputs(const CTransaction& tx) const
     296                 :             : {
     297         [ +  - ]:     6898507 :     if (!tx.IsCoinBase()) {
     298         [ +  + ]:    16018691 :         for (unsigned int i = 0; i < tx.vin.size(); i++) {
     299         [ +  + ]:     9120204 :             if (!HaveCoin(tx.vin[i].prevout)) {
     300                 :             :                 return false;
     301                 :             :             }
     302                 :             :         }
     303                 :             :     }
     304                 :             :     return true;
     305                 :             : }
     306                 :             : 
     307                 :      140692 : void CCoinsViewCache::ReallocateCache()
     308                 :             : {
     309                 :             :     // Cache should be empty when we're calling this.
     310         [ -  + ]:      140692 :     assert(cacheCoins.size() == 0);
     311                 :      140692 :     cacheCoins.~CCoinsMap();
     312                 :      140692 :     m_cache_coins_memory_resource.~CCoinsMapMemoryResource();
     313                 :      140692 :     ::new (&m_cache_coins_memory_resource) CCoinsMapMemoryResource{};
     314                 :      140692 :     ::new (&cacheCoins) CCoinsMap{0, SaltedOutpointHasher{/*deterministic=*/m_deterministic}, CCoinsMap::key_equal{}, &m_cache_coins_memory_resource};
     315                 :      140692 : }
     316                 :             : 
     317                 :         307 : void CCoinsViewCache::SanityCheck() const
     318                 :             : {
     319                 :         307 :     size_t recomputed_usage = 0;
     320                 :         307 :     size_t count_flagged = 0;
     321   [ +  +  +  + ]:      527345 :     for (const auto& [_, entry] : cacheCoins) {
     322                 :      527038 :         unsigned attr = 0;
     323         [ +  + ]:      527038 :         if (entry.IsDirty()) attr |= 1;
     324         [ +  + ]:      527038 :         if (entry.IsFresh()) attr |= 2;
     325         [ +  + ]:      527038 :         if (entry.coin.IsSpent()) attr |= 4;
     326                 :             :         // Only 5 combinations are possible.
     327   [ +  -  -  + ]:      527038 :         assert(attr != 2 && attr != 4 && attr != 7);
     328                 :             : 
     329                 :             :         // Recompute cachedCoinsUsage.
     330         [ +  + ]:      527038 :         recomputed_usage += entry.coin.DynamicMemoryUsage();
     331                 :             : 
     332                 :             :         // Count the number of entries we expect in the linked list.
     333   [ +  +  +  + ]:      527038 :         if (entry.IsDirty() || entry.IsFresh()) ++count_flagged;
     334                 :             :     }
     335                 :             :     // Iterate over the linked list of flagged entries.
     336                 :         307 :     size_t count_linked = 0;
     337         [ +  + ]:       90264 :     for (auto it = m_sentinel.second.Next(); it != &m_sentinel; it = it->second.Next()) {
     338                 :             :         // Verify linked list integrity.
     339         [ -  + ]:       89957 :         assert(it->second.Next()->second.Prev() == it);
     340         [ -  + ]:       89957 :         assert(it->second.Prev()->second.Next() == it);
     341                 :             :         // Verify they are actually flagged.
     342   [ +  +  -  + ]:       89957 :         assert(it->second.IsDirty() || it->second.IsFresh());
     343                 :             :         // Count the number of entries actually in the list.
     344                 :       89957 :         ++count_linked;
     345                 :             :     }
     346         [ -  + ]:         307 :     assert(count_linked == count_flagged);
     347         [ -  + ]:         307 :     assert(recomputed_usage == cachedCoinsUsage);
     348                 :         307 : }
     349                 :             : 
     350                 :             : static const size_t MIN_TRANSACTION_OUTPUT_WEIGHT = WITNESS_SCALE_FACTOR * ::GetSerializeSize(CTxOut());
     351                 :             : static const size_t MAX_OUTPUTS_PER_BLOCK = MAX_BLOCK_WEIGHT / MIN_TRANSACTION_OUTPUT_WEIGHT;
     352                 :             : 
     353                 :         172 : const Coin& AccessByTxid(const CCoinsViewCache& view, const Txid& txid)
     354                 :             : {
     355                 :         172 :     COutPoint iter(txid, 0);
     356         [ +  + ]:     9000163 :     while (iter.n < MAX_OUTPUTS_PER_BLOCK) {
     357                 :     9000082 :         const Coin& alternate = view.AccessCoin(iter);
     358         [ +  + ]:     9000082 :         if (!alternate.IsSpent()) return alternate;
     359                 :     8999991 :         ++iter.n;
     360                 :             :     }
     361                 :             :     return coinEmpty;
     362                 :             : }
     363                 :             : 
     364                 :             : template <typename ReturnType, typename Func>
     365                 :      970455 : static ReturnType ExecuteBackedWrapper(Func func, const std::vector<std::function<void()>>& err_callbacks)
     366                 :             : {
     367                 :             :     try {
     368                 :      970455 :         return func();
     369         [ -  - ]:           0 :     } catch(const std::runtime_error& e) {
     370         [ -  - ]:           0 :         for (const auto& f : err_callbacks) {
     371         [ -  - ]:           0 :             f();
     372                 :             :         }
     373         [ -  - ]:           0 :         LogError("Error reading from database: %s\n", e.what());
     374                 :             :         // Starting the shutdown sequence and returning false to the caller would be
     375                 :             :         // interpreted as 'entry not found' (as opposed to unable to read data), and
     376                 :             :         // could lead to invalid interpretation. Just exit immediately, as we can't
     377                 :             :         // continue anyway, and all writes should be atomic.
     378                 :           0 :         std::abort();
     379                 :             :     }
     380                 :             : }
     381                 :             : 
     382                 :      970455 : std::optional<Coin> CCoinsViewErrorCatcher::GetCoin(const COutPoint& outpoint) const
     383                 :             : {
     384         [ +  - ]:     1940910 :     return ExecuteBackedWrapper<std::optional<Coin>>([&]() { return CCoinsViewBacked::GetCoin(outpoint); }, m_err_callbacks);
     385                 :             : }
     386                 :             : 
     387                 :           0 : bool CCoinsViewErrorCatcher::HaveCoin(const COutPoint& outpoint) const
     388                 :             : {
     389         [ #  # ]:           0 :     return ExecuteBackedWrapper<bool>([&]() { return CCoinsViewBacked::HaveCoin(outpoint); }, m_err_callbacks);
     390                 :             : }
        

Generated by: LCOV version 2.0-1