mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-01 03:01:05 +00:00
* Make the methods of `CThreadInterrupt` virtual and store a pointer to it in `CConnman`, thus making it possible to override with a mocked instance. * Initialize `CConnman::m_interrupt_net` from the constructor, making it possible for callers to supply mocked version. * Introduce `FuzzedThreadInterrupt` and `ConsumeThreadInterrupt()` and use them in `src/test/fuzz/connman.cpp` and `src/test/fuzz/i2p.cpp`. This improves the CPU utilization of the `connman` fuzz test. As a nice side effect, the `std::shared_ptr` used for `CConnman::m_interrupt_net` resolves the possible lifetime issues with it (see the removed comment for that variable).
41 lines
941 B
C++
41 lines
941 B
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <util/threadinterrupt.h>
|
|
|
|
#include <sync.h>
|
|
|
|
CThreadInterrupt::CThreadInterrupt() : flag(false) {}
|
|
|
|
bool CThreadInterrupt::interrupted() const
|
|
{
|
|
return flag.load(std::memory_order_acquire);
|
|
}
|
|
|
|
CThreadInterrupt::operator bool() const
|
|
{
|
|
return interrupted();
|
|
}
|
|
|
|
void CThreadInterrupt::reset()
|
|
{
|
|
flag.store(false, std::memory_order_release);
|
|
}
|
|
|
|
void CThreadInterrupt::operator()()
|
|
{
|
|
{
|
|
LOCK(mut);
|
|
flag.store(true, std::memory_order_release);
|
|
}
|
|
cond.notify_all();
|
|
}
|
|
|
|
bool CThreadInterrupt::sleep_for(Clock::duration rel_time)
|
|
{
|
|
WAIT_LOCK(mut, lock);
|
|
return !cond.wait_for(lock, rel_time, [this]() { return flag.load(std::memory_order_acquire); });
|
|
}
|