dash/src/netfulfilledman.h
Kittywhiskers Van Gogh c427305805
refactor: remove CNetFulfilledRequestManager global, move to NodeContext
Decoupling initialization from loading the database means we need to
assert if the database is actually loaded before performing any operations
on it (i.e. check if the manager is "valid")
2024-03-18 21:36:34 +00:00

70 lines
1.8 KiB
C++

// Copyright (c) 2014-2023 The Dash Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_NETFULFILLEDMAN_H
#define BITCOIN_NETFULFILLEDMAN_H
#include <netaddress.h>
#include <serialize.h>
#include <sync.h>
#include <memory>
template<typename T>
class CFlatDB;
class CNetFulfilledRequestManager;
class NetFulfilledRequestStore
{
protected:
typedef std::map<std::string, int64_t> fulfilledreqmapentry_t;
typedef std::map<CService, fulfilledreqmapentry_t> fulfilledreqmap_t;
protected:
//keep track of what node has/was asked for and when
fulfilledreqmap_t mapFulfilledRequests;
mutable RecursiveMutex cs_mapFulfilledRequests;
public:
SERIALIZE_METHODS(NetFulfilledRequestStore, obj)
{
LOCK(obj.cs_mapFulfilledRequests);
READWRITE(obj.mapFulfilledRequests);
}
void Clear();
std::string ToString() const;
};
// Fulfilled requests are used to prevent nodes from asking for the same data on sync
// and from being banned for doing so too often.
class CNetFulfilledRequestManager : public NetFulfilledRequestStore
{
private:
using db_type = CFlatDB<NetFulfilledRequestStore>;
private:
const std::unique_ptr<db_type> m_db;
bool is_valid{false};
public:
explicit CNetFulfilledRequestManager();
~CNetFulfilledRequestManager();
bool LoadCache(bool load_cache);
bool IsValid() const { return is_valid; }
void CheckAndRemove();
void AddFulfilledRequest(const CService& addr, const std::string& strRequest);
bool HasFulfilledRequest(const CService& addr, const std::string& strRequest);
void RemoveAllFulfilledRequests(const CService& addr);
void DoMaintenance();
};
#endif // BITCOIN_NETFULFILLEDMAN_H