2016-03-02 22:20:04 +01:00
|
|
|
// Copyright (c) 2015 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_DSNOTIFICATIONINTERFACE_H
|
|
|
|
#define BITCOIN_DSNOTIFICATIONINTERFACE_H
|
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <validationinterface.h>
|
2016-03-02 22:20:04 +01:00
|
|
|
|
2024-03-30 01:16:48 +01:00
|
|
|
class CActiveMasternodeManager;
|
2022-09-22 13:14:48 +02:00
|
|
|
class CConnman;
|
|
|
|
class CDeterministicMNManager;
|
|
|
|
class CGovernanceManager;
|
|
|
|
class CMasternodeSync;
|
2024-04-09 21:51:13 +02:00
|
|
|
class PeerManager;
|
refactor: subsume CoinJoin objects under CJContext, deglobalize coinJoin{ClientQueueManager,Server} (#5337)
## Motivation
CoinJoin's subsystems are initialized by variables and managers that
occupy the global context. The _extent_ to which these subsystems
entrench themselves into the codebase is difficult to assess and moving
them out of the global context forces us to enumerate the subsystems in
the codebase that rely on CoinJoin logic and enumerate the order in
which components are initialized and destroyed.
Keeping this in mind, the scope of this pull request aims to:
* Reduce the amount of CoinJoin-specific entities present in the global
scope
* Make the remaining usage of these entities in the global scope
explicit and easily searchable
## Additional Information
* The initialization of `CCoinJoinClientQueueManager` is dependent on
blocks-only mode being disabled (which can be alternatively interpreted
as enabling the relay of transactions). The same applies to
`CBlockPolicyEstimator`, which `CCoinJoinClientQueueManager` depends.
Therefore, `CCoinJoinClientQueueManager` is only initialized if
transaction relaying is enabled and so is its scheduled maintenance
task. This can be found by looking at `init.cpp`
[here](https://github.com/dashpay/dash/blob/93f8df1c31fdce6a14f149acfdff22678c3f22ca/src/init.cpp#L1681-L1683),
[here](https://github.com/dashpay/dash/blob/93f8df1c31fdce6a14f149acfdff22678c3f22ca/src/init.cpp#L2253-L2255)
and
[here](https://github.com/dashpay/dash/blob/93f8df1c31fdce6a14f149acfdff22678c3f22ca/src/init.cpp#L2326-L2327).
For this reason, `CBlockPolicyEstimator` is not a member of `CJContext`
and its usage is fulfilled by passing it as a reference when
initializing the scheduling task.
* `CJClientManager` has not used `CConnman` or `CTxMemPool` as `const`
as existing code that is outside the scope of this PR would cast away
constness, which would be unacceptable. Furthermore, some logical paths
are taken that will grind to a halt if they are stored as `const`.
Examples of such a call chains would be:
* `CJClientManager::DoMaintenance >
CCoinJoinClientManager::DoMaintenance > DoAutomaticDenominating >
CCoinJoinClientSession::DoAutomaticDenominating >
CCoinJoinClientSession::StartNewQueue > CConnman::AddPendingMasternode`
which modifies `CConnman::vPendingMasternodes`, which is non-const
behaviour
* `CJClientManager::DoMaintenance >
CCoinJoinClientManager::DoMaintenance > DoAutomaticDenominating >
CCoinJoin::IsCollateralValid > AcceptToMemoryPool` which adds a
transaction to the memory pool, which is non-const behaviour
* There were cppcheck [linter
failures](https://github.com/dashpay/dash/pull/5337#issuecomment-1685084688)
that seemed to be caused by the usage of `Assert` in
`coinjoin/client.h`. This seems to be resolved by backporting
[bitcoin#24714](https://github.com/bitcoin/bitcoin/pull/24714). (Thanks
@knst!)
* Depends on #5546
---------
Co-authored-by: Kittywhiskers Van Gogh <63189531+kittywhiskers@users.noreply.github.com>
Co-authored-by: PastaPastaPasta <6443210+PastaPastaPasta@users.noreply.github.com>
2023-09-13 19:52:38 +02:00
|
|
|
struct CJContext;
|
2022-11-07 19:09:44 +01:00
|
|
|
struct LLMQContext;
|
2022-09-22 13:14:48 +02:00
|
|
|
|
2016-03-02 22:20:04 +01:00
|
|
|
class CDSNotificationInterface : public CValidationInterface
|
|
|
|
{
|
|
|
|
public:
|
2024-02-28 13:53:56 +01:00
|
|
|
explicit CDSNotificationInterface(CConnman& connman,
|
|
|
|
CMasternodeSync& mn_sync,
|
|
|
|
CGovernanceManager& govman,
|
2024-04-09 21:51:13 +02:00
|
|
|
PeerManager& peerman,
|
2024-03-30 01:16:48 +01:00
|
|
|
const CActiveMasternodeManager* const mn_activeman,
|
2024-02-28 13:53:56 +01:00
|
|
|
const std::unique_ptr<CDeterministicMNManager>& dmnman,
|
|
|
|
const std::unique_ptr<LLMQContext>& llmq_ctx,
|
|
|
|
const std::unique_ptr<CJContext>& cj_ctx);
|
2017-08-29 01:51:33 +02:00
|
|
|
virtual ~CDSNotificationInterface() = default;
|
|
|
|
|
|
|
|
// a small helper to initialize current block height in sub-modules on startup
|
|
|
|
void InitializeCurrentBlockTip();
|
2016-03-02 22:20:04 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// CValidationInterface
|
2017-09-03 15:30:08 +02:00
|
|
|
void AcceptedBlockHeader(const CBlockIndex *pindexNew) override;
|
|
|
|
void NotifyHeaderTip(const CBlockIndex *pindexNew, bool fInitialDownload) override;
|
2020-03-20 17:11:54 +01:00
|
|
|
void SynchronousUpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
|
2017-08-29 01:51:33 +02:00
|
|
|
void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
|
2019-12-07 11:56:17 +01:00
|
|
|
void TransactionAddedToMempool(const CTransactionRef& tx, int64_t nAcceptTime) override;
|
2021-05-19 01:02:31 +02:00
|
|
|
void TransactionRemovedFromMempool(const CTransactionRef& ptx, MemPoolRemovalReason reason) override;
|
2020-03-19 17:09:15 +01:00
|
|
|
void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindex) override;
|
2019-05-27 14:55:29 +02:00
|
|
|
void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexDisconnected) override;
|
2023-11-16 19:36:46 +01:00
|
|
|
void NotifyMasternodeListChanged(bool undo, const CDeterministicMNList& oldMNList, const CDeterministicMNListDiff& diff) override;
|
2021-01-22 05:32:15 +01:00
|
|
|
void NotifyChainLock(const CBlockIndex* pindex, const std::shared_ptr<const llmq::CChainLockSig>& clsig) override;
|
2016-03-02 22:20:04 +01:00
|
|
|
|
|
|
|
private:
|
2024-02-28 13:53:56 +01:00
|
|
|
CConnman& m_connman;
|
2023-06-04 22:26:23 +02:00
|
|
|
CMasternodeSync& m_mn_sync;
|
2024-02-28 13:53:56 +01:00
|
|
|
CGovernanceManager& m_govman;
|
2024-04-09 21:51:13 +02:00
|
|
|
PeerManager& m_peerman;
|
2024-03-30 01:16:48 +01:00
|
|
|
const CActiveMasternodeManager* const m_mn_activeman;
|
2024-02-28 13:53:56 +01:00
|
|
|
const std::unique_ptr<CDeterministicMNManager>& m_dmnman;
|
|
|
|
const std::unique_ptr<LLMQContext>& m_llmq_ctx;
|
|
|
|
const std::unique_ptr<CJContext>& m_cj_ctx;
|
2016-03-02 22:20:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_DSNOTIFICATIONINTERFACE_H
|