mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Devirtualize LedgerMaster.
This commit is contained in:
committed by
Nik Bougalis
parent
44fcab1081
commit
e1018546ac
@@ -1354,8 +1354,6 @@
|
|||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClInclude Include="..\..\src\ripple\app\ledger\impl\LedgerCleaner.h">
|
|
||||||
</ClInclude>
|
|
||||||
<ClCompile Include="..\..\src\ripple\app\ledger\impl\LedgerConsensusImp.cpp">
|
<ClCompile Include="..\..\src\ripple\app\ledger\impl\LedgerConsensusImp.cpp">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||||
@@ -1404,6 +1402,8 @@
|
|||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClInclude Include="..\..\src\ripple\app\ledger\Ledger.h">
|
<ClInclude Include="..\..\src\ripple\app\ledger\Ledger.h">
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerCleaner.h">
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerConsensus.h">
|
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerConsensus.h">
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerHistory.cpp">
|
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerHistory.cpp">
|
||||||
|
|||||||
@@ -2088,9 +2088,6 @@
|
|||||||
<ClCompile Include="..\..\src\ripple\app\ledger\impl\LedgerCleaner.cpp">
|
<ClCompile Include="..\..\src\ripple\app\ledger\impl\LedgerCleaner.cpp">
|
||||||
<Filter>ripple\app\ledger\impl</Filter>
|
<Filter>ripple\app\ledger\impl</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClInclude Include="..\..\src\ripple\app\ledger\impl\LedgerCleaner.h">
|
|
||||||
<Filter>ripple\app\ledger\impl</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClCompile Include="..\..\src\ripple\app\ledger\impl\LedgerConsensusImp.cpp">
|
<ClCompile Include="..\..\src\ripple\app\ledger\impl\LedgerConsensusImp.cpp">
|
||||||
<Filter>ripple\app\ledger\impl</Filter>
|
<Filter>ripple\app\ledger\impl</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@@ -2136,6 +2133,9 @@
|
|||||||
<ClInclude Include="..\..\src\ripple\app\ledger\Ledger.h">
|
<ClInclude Include="..\..\src\ripple\app\ledger\Ledger.h">
|
||||||
<Filter>ripple\app\ledger</Filter>
|
<Filter>ripple\app\ledger</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerCleaner.h">
|
||||||
|
<Filter>ripple\app\ledger</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerConsensus.h">
|
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerConsensus.h">
|
||||||
<Filter>ripple\app\ledger</Filter>
|
<Filter>ripple\app\ledger</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace ripple {
|
namespace ripple {
|
||||||
|
namespace detail {
|
||||||
|
|
||||||
/** Check the ledger/transaction databases to make sure they have continuity */
|
/** Check the ledger/transaction databases to make sure they have continuity */
|
||||||
class LedgerCleaner
|
class LedgerCleaner
|
||||||
@@ -58,6 +59,7 @@ std::unique_ptr<LedgerCleaner>
|
|||||||
make_LedgerCleaner (Application& app,
|
make_LedgerCleaner (Application& app,
|
||||||
beast::Stoppable& parent, beast::Journal journal);
|
beast::Stoppable& parent, beast::Journal journal);
|
||||||
|
|
||||||
|
} // detail
|
||||||
} // ripple
|
} // ripple
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@@ -22,8 +22,12 @@
|
|||||||
|
|
||||||
#include <ripple/app/main/Application.h>
|
#include <ripple/app/main/Application.h>
|
||||||
#include <ripple/app/ledger/Ledger.h>
|
#include <ripple/app/ledger/Ledger.h>
|
||||||
|
#include <ripple/app/ledger/LedgerCleaner.h>
|
||||||
|
#include <ripple/app/ledger/LedgerHistory.h>
|
||||||
#include <ripple/app/ledger/LedgerHolder.h>
|
#include <ripple/app/ledger/LedgerHolder.h>
|
||||||
|
#include <ripple/app/misc/CanonicalTXSet.h>
|
||||||
#include <ripple/basics/chrono.h>
|
#include <ripple/basics/chrono.h>
|
||||||
|
#include <ripple/basics/RangeSet.h>
|
||||||
#include <ripple/basics/StringUtilities.h>
|
#include <ripple/basics/StringUtilities.h>
|
||||||
#include <ripple/protocol/RippleLedgerHash.h>
|
#include <ripple/protocol/RippleLedgerHash.h>
|
||||||
#include <ripple/protocol/STValidation.h>
|
#include <ripple/protocol/STValidation.h>
|
||||||
@@ -58,8 +62,12 @@ struct LedgerReplay
|
|||||||
class LedgerMaster
|
class LedgerMaster
|
||||||
: public beast::Stoppable
|
: public beast::Stoppable
|
||||||
{
|
{
|
||||||
protected:
|
public:
|
||||||
explicit LedgerMaster (Stoppable& parent);
|
explicit
|
||||||
|
LedgerMaster(Application& app, Stopwatch& stopwatch,
|
||||||
|
Stoppable& parent,
|
||||||
|
beast::insight::Collector::ptr const& collector,
|
||||||
|
beast::Journal journal);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
using callback = std::function <void (Ledger::ref)>;
|
using callback = std::function <void (Ledger::ref)>;
|
||||||
@@ -67,157 +75,245 @@ public:
|
|||||||
public:
|
public:
|
||||||
virtual ~LedgerMaster () = default;
|
virtual ~LedgerMaster () = default;
|
||||||
|
|
||||||
virtual LedgerIndex getCurrentLedgerIndex () = 0;
|
LedgerIndex getCurrentLedgerIndex ();
|
||||||
virtual LedgerIndex getValidLedgerIndex () = 0;
|
LedgerIndex getValidLedgerIndex ();
|
||||||
|
|
||||||
virtual bool isCompatible (Ledger::pointer,
|
bool isCompatible (Ledger::pointer,
|
||||||
beast::Journal::Stream, const char* reason) = 0;
|
beast::Journal::Stream, const char* reason);
|
||||||
|
|
||||||
virtual std::recursive_mutex& peekMutex () = 0;
|
std::recursive_mutex& peekMutex ();
|
||||||
|
|
||||||
// The current ledger is the ledger we believe new transactions should go in
|
// The current ledger is the ledger we believe new transactions should go in
|
||||||
virtual std::shared_ptr<ReadView const> getCurrentLedger () = 0;
|
std::shared_ptr<ReadView const> getCurrentLedger ();
|
||||||
|
|
||||||
// The finalized ledger is the last closed/accepted ledger
|
// The finalized ledger is the last closed/accepted ledger
|
||||||
virtual Ledger::pointer getClosedLedger () = 0;
|
Ledger::pointer getClosedLedger ();
|
||||||
|
|
||||||
// The validated ledger is the last fully validated ledger
|
// The validated ledger is the last fully validated ledger
|
||||||
virtual Ledger::pointer getValidatedLedger () = 0;
|
Ledger::pointer getValidatedLedger ();
|
||||||
|
|
||||||
// The Rules are in the last fully validated ledger if there is one.
|
// The Rules are in the last fully validated ledger if there is one.
|
||||||
virtual Rules getValidatedRules() = 0;
|
Rules getValidatedRules();
|
||||||
|
|
||||||
// This is the last ledger we published to clients and can lag the validated
|
// This is the last ledger we published to clients and can lag the validated
|
||||||
// ledger
|
// ledger
|
||||||
virtual Ledger::pointer getPublishedLedger () = 0;
|
Ledger::pointer getPublishedLedger ();
|
||||||
|
|
||||||
virtual bool isValidLedger(LedgerInfo const&) = 0;
|
bool isValidLedger(LedgerInfo const&);
|
||||||
|
|
||||||
virtual std::chrono::seconds getPublishedLedgerAge () = 0;
|
std::chrono::seconds getPublishedLedgerAge ();
|
||||||
virtual std::chrono::seconds getValidatedLedgerAge () = 0;
|
std::chrono::seconds getValidatedLedgerAge ();
|
||||||
virtual bool isCaughtUp(std::string& reason) = 0;
|
bool isCaughtUp(std::string& reason);
|
||||||
|
|
||||||
virtual int getMinValidations () = 0;
|
int getMinValidations ();
|
||||||
|
|
||||||
virtual void setMinValidations (int v, bool strict) = 0;
|
void setMinValidations (int v, bool strict);
|
||||||
|
|
||||||
virtual std::uint32_t getEarliestFetch () = 0;
|
std::uint32_t getEarliestFetch ();
|
||||||
|
|
||||||
virtual bool storeLedger (Ledger::pointer) = 0;
|
bool storeLedger (Ledger::pointer);
|
||||||
virtual void forceValid (Ledger::pointer) = 0;
|
void forceValid (Ledger::pointer);
|
||||||
|
|
||||||
virtual void setFullLedger (
|
void setFullLedger (
|
||||||
Ledger::pointer ledger, bool isSynchronous, bool isCurrent) = 0;
|
Ledger::pointer ledger, bool isSynchronous, bool isCurrent);
|
||||||
|
|
||||||
virtual void switchLCL (Ledger::pointer lastClosed) = 0;
|
void switchLCL (Ledger::pointer lastClosed);
|
||||||
|
|
||||||
virtual void failedSave(std::uint32_t seq, uint256 const& hash) = 0;
|
void failedSave(std::uint32_t seq, uint256 const& hash);
|
||||||
|
|
||||||
virtual std::string getCompleteLedgers () = 0;
|
std::string getCompleteLedgers ();
|
||||||
|
|
||||||
virtual void applyHeldTransactions () = 0;
|
/** Apply held transactions to the open ledger
|
||||||
|
This is normally called as we close the ledger.
|
||||||
|
The open ledger remains open to handle new transactions
|
||||||
|
until a new open ledger is built.
|
||||||
|
*/
|
||||||
|
void applyHeldTransactions ();
|
||||||
|
|
||||||
/** Get a ledger's hash by sequence number using the cache
|
/** Get a ledger's hash by sequence number using the cache
|
||||||
*/
|
*/
|
||||||
virtual uint256 getHashBySeq (std::uint32_t index) = 0;
|
uint256 getHashBySeq (std::uint32_t index);
|
||||||
|
|
||||||
/** Walk to a ledger's hash using the skip list
|
/** Walk to a ledger's hash using the skip list
|
||||||
*/
|
*/
|
||||||
virtual uint256 walkHashBySeq (std::uint32_t index) = 0;
|
uint256 walkHashBySeq (std::uint32_t index);
|
||||||
virtual uint256 walkHashBySeq (
|
uint256 walkHashBySeq (
|
||||||
std::uint32_t index, Ledger::ref referenceLedger) = 0;
|
std::uint32_t index, Ledger::ref referenceLedger);
|
||||||
|
|
||||||
virtual Ledger::pointer getLedgerBySeq (std::uint32_t index) = 0;
|
Ledger::pointer getLedgerBySeq (std::uint32_t index);
|
||||||
|
|
||||||
virtual Ledger::pointer getLedgerByHash (uint256 const& hash) = 0;
|
Ledger::pointer getLedgerByHash (uint256 const& hash);
|
||||||
|
|
||||||
virtual void setLedgerRangePresent (
|
void setLedgerRangePresent (
|
||||||
std::uint32_t minV, std::uint32_t maxV) = 0;
|
std::uint32_t minV, std::uint32_t maxV);
|
||||||
|
|
||||||
virtual uint256 getLedgerHash(
|
uint256 getLedgerHash(
|
||||||
std::uint32_t desiredSeq, Ledger::ref knownGoodLedger) = 0;
|
std::uint32_t desiredSeq, Ledger::ref knownGoodLedger);
|
||||||
|
|
||||||
virtual boost::optional <NetClock::time_point> getCloseTimeBySeq (
|
boost::optional <NetClock::time_point> getCloseTimeBySeq (
|
||||||
LedgerIndex ledgerIndex) = 0;
|
LedgerIndex ledgerIndex);
|
||||||
|
|
||||||
virtual boost::optional <NetClock::time_point> getCloseTimeByHash (
|
boost::optional <NetClock::time_point> getCloseTimeByHash (
|
||||||
LedgerHash const& ledgerHash) = 0;
|
LedgerHash const& ledgerHash);
|
||||||
|
|
||||||
virtual void addHeldTransaction (std::shared_ptr<Transaction> const& trans) = 0;
|
void addHeldTransaction (std::shared_ptr<Transaction> const& trans);
|
||||||
virtual void fixMismatch (Ledger::ref ledger) = 0;
|
void fixMismatch (Ledger::ref ledger);
|
||||||
|
|
||||||
virtual bool haveLedger (std::uint32_t seq) = 0;
|
bool haveLedger (std::uint32_t seq);
|
||||||
virtual void clearLedger (std::uint32_t seq) = 0;
|
void clearLedger (std::uint32_t seq);
|
||||||
virtual bool getValidatedRange (
|
bool getValidatedRange (
|
||||||
std::uint32_t& minVal, std::uint32_t& maxVal) = 0;
|
std::uint32_t& minVal, std::uint32_t& maxVal);
|
||||||
virtual bool getFullValidatedRange (
|
bool getFullValidatedRange (
|
||||||
std::uint32_t& minVal, std::uint32_t& maxVal) = 0;
|
std::uint32_t& minVal, std::uint32_t& maxVal);
|
||||||
|
|
||||||
virtual void tune (int size, int age) = 0;
|
void tune (int size, int age);
|
||||||
virtual void sweep () = 0;
|
void sweep ();
|
||||||
virtual float getCacheHitRate () = 0;
|
float getCacheHitRate ();
|
||||||
|
|
||||||
virtual void checkAccept (Ledger::ref ledger) = 0;
|
void checkAccept (Ledger::ref ledger);
|
||||||
virtual void checkAccept (uint256 const& hash, std::uint32_t seq) = 0;
|
void checkAccept (uint256 const& hash, std::uint32_t seq);
|
||||||
virtual void consensusBuilt (Ledger::ref ledger, Json::Value consensus) = 0;
|
void consensusBuilt (Ledger::ref ledger, Json::Value consensus);
|
||||||
|
|
||||||
virtual LedgerIndex getBuildingLedger () = 0;
|
LedgerIndex getBuildingLedger ();
|
||||||
virtual void setBuildingLedger (LedgerIndex index) = 0;
|
void setBuildingLedger (LedgerIndex index);
|
||||||
|
|
||||||
virtual void tryAdvance () = 0;
|
void tryAdvance ();
|
||||||
virtual void newPathRequest () = 0;
|
void newPathRequest ();
|
||||||
virtual bool isNewPathRequest () = 0;
|
bool isNewPathRequest ();
|
||||||
virtual void newOrderBookDB () = 0;
|
void newOrderBookDB ();
|
||||||
|
|
||||||
virtual bool fixIndex (
|
bool fixIndex (
|
||||||
LedgerIndex ledgerIndex, LedgerHash const& ledgerHash) = 0;
|
LedgerIndex ledgerIndex, LedgerHash const& ledgerHash);
|
||||||
virtual void doLedgerCleaner(Json::Value const& parameters) = 0;
|
void doLedgerCleaner(Json::Value const& parameters);
|
||||||
|
|
||||||
virtual beast::PropertyStream::Source& getPropertySource () = 0;
|
beast::PropertyStream::Source& getPropertySource ();
|
||||||
|
|
||||||
virtual void clearPriorLedgers (LedgerIndex seq) = 0;
|
void clearPriorLedgers (LedgerIndex seq);
|
||||||
|
|
||||||
virtual void clearLedgerCachePrior (LedgerIndex seq) = 0;
|
void clearLedgerCachePrior (LedgerIndex seq);
|
||||||
|
|
||||||
// ledger replay
|
// ledger replay
|
||||||
virtual void takeReplay (std::unique_ptr<LedgerReplay> replay) = 0;
|
void takeReplay (std::unique_ptr<LedgerReplay> replay);
|
||||||
virtual std::unique_ptr<LedgerReplay> releaseReplay () = 0;
|
std::unique_ptr<LedgerReplay> releaseReplay ();
|
||||||
|
|
||||||
// Fetch Packs
|
// Fetch Packs
|
||||||
virtual
|
|
||||||
void gotFetchPack (
|
void gotFetchPack (
|
||||||
bool progress,
|
bool progress,
|
||||||
std::uint32_t seq) = 0;
|
std::uint32_t seq);
|
||||||
|
|
||||||
virtual
|
|
||||||
void addFetchPack (
|
void addFetchPack (
|
||||||
uint256 const& hash,
|
uint256 const& hash,
|
||||||
std::shared_ptr<Blob>& data) = 0;
|
std::shared_ptr<Blob>& data);
|
||||||
|
|
||||||
virtual
|
|
||||||
bool getFetchPack (
|
bool getFetchPack (
|
||||||
uint256 const& hash,
|
uint256 const& hash,
|
||||||
Blob& data) = 0;
|
Blob& data);
|
||||||
|
|
||||||
virtual
|
|
||||||
void makeFetchPack (
|
void makeFetchPack (
|
||||||
std::weak_ptr<Peer> const& wPeer,
|
std::weak_ptr<Peer> const& wPeer,
|
||||||
std::shared_ptr<protocol::TMGetObjectByHash> const& request,
|
std::shared_ptr<protocol::TMGetObjectByHash> const& request,
|
||||||
uint256 haveLedgerHash,
|
uint256 haveLedgerHash,
|
||||||
std::uint32_t uUptime) = 0;
|
std::uint32_t uUptime);
|
||||||
|
|
||||||
|
std::size_t getFetchPackCacheSize () const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void setValidLedger(Ledger::ref l);
|
||||||
|
void setPubLedger(Ledger::ref l);
|
||||||
|
void tryFill(Job& job, Ledger::pointer ledger);
|
||||||
|
void getFetchPack(LedgerHash missingHash, LedgerIndex missingIndex);
|
||||||
|
LedgerHash getLedgerHashForHistory(LedgerIndex index);
|
||||||
|
int getNeededValidations();
|
||||||
|
void advanceThread();
|
||||||
|
// Try to publish ledgers, acquire missing ledgers
|
||||||
|
void doAdvance();
|
||||||
|
bool shouldFetchPack(std::uint32_t seq) const;
|
||||||
|
bool shouldAcquire(
|
||||||
|
std::uint32_t const currentLedger,
|
||||||
|
std::uint32_t const ledgerHistory,
|
||||||
|
std::uint32_t const ledgerHistoryIndex,
|
||||||
|
std::uint32_t const candidateLedger) const;
|
||||||
|
std::vector<Ledger::pointer> findNewLedgersToPublish();
|
||||||
|
void updatePaths(Job& job);
|
||||||
|
void newPFWork(const char *name);
|
||||||
|
|
||||||
|
private:
|
||||||
|
using ScopedLockType = std::lock_guard <std::recursive_mutex>;
|
||||||
|
using ScopedUnlockType = beast::GenericScopedUnlock <std::recursive_mutex>;
|
||||||
|
|
||||||
|
Application& app_;
|
||||||
|
beast::Journal m_journal;
|
||||||
|
|
||||||
|
std::recursive_mutex m_mutex;
|
||||||
|
|
||||||
|
// The ledger that most recently closed.
|
||||||
|
LedgerHolder mClosedLedger;
|
||||||
|
|
||||||
|
// The highest-sequence ledger we have fully accepted.
|
||||||
|
LedgerHolder mValidLedger;
|
||||||
|
|
||||||
|
// The last ledger we have published.
|
||||||
|
Ledger::pointer mPubLedger;
|
||||||
|
|
||||||
|
// The last ledger we did pathfinding against.
|
||||||
|
Ledger::pointer mPathLedger;
|
||||||
|
|
||||||
|
// The last ledger we handled fetching history
|
||||||
|
Ledger::pointer mHistLedger;
|
||||||
|
|
||||||
|
// Fully validated ledger, whether or not we have the ledger resident.
|
||||||
|
std::pair <uint256, LedgerIndex> mLastValidLedger;
|
||||||
|
|
||||||
|
LedgerHistory mLedgerHistory;
|
||||||
|
|
||||||
|
CanonicalTXSet mHeldTransactions;
|
||||||
|
|
||||||
|
// A set of transactions to replay during the next close
|
||||||
|
std::unique_ptr<LedgerReplay> replayData;
|
||||||
|
|
||||||
|
std::recursive_mutex mCompleteLock;
|
||||||
|
RangeSet mCompleteLedgers;
|
||||||
|
|
||||||
|
std::unique_ptr <detail::LedgerCleaner> mLedgerCleaner;
|
||||||
|
|
||||||
|
int mMinValidations; // The minimum validations to publish a ledger.
|
||||||
|
bool mStrictValCount; // Don't raise the minimum
|
||||||
|
uint256 mLastValidateHash;
|
||||||
|
std::uint32_t mLastValidateSeq;
|
||||||
|
|
||||||
|
// Publish thread is running.
|
||||||
|
bool mAdvanceThread;
|
||||||
|
|
||||||
|
// Publish thread has work to do.
|
||||||
|
bool mAdvanceWork;
|
||||||
|
int mFillInProgress;
|
||||||
|
|
||||||
|
int mPathFindThread; // Pathfinder jobs dispatched
|
||||||
|
bool mPathFindNewRequest;
|
||||||
|
|
||||||
|
std::atomic <std::uint32_t> mPubLedgerClose;
|
||||||
|
std::atomic <std::uint32_t> mPubLedgerSeq;
|
||||||
|
std::atomic <std::uint32_t> mValidLedgerSign;
|
||||||
|
std::atomic <std::uint32_t> mValidLedgerSeq;
|
||||||
|
std::atomic <std::uint32_t> mBuildingLedgerSeq;
|
||||||
|
|
||||||
|
// The server is in standalone mode
|
||||||
|
bool const standalone_;
|
||||||
|
|
||||||
|
// How many ledgers before the current ledger do we allow peers to request?
|
||||||
|
std::uint32_t const fetch_depth_;
|
||||||
|
|
||||||
|
// How much history do we want to keep
|
||||||
|
std::uint32_t const ledger_history_;
|
||||||
|
|
||||||
|
int const ledger_fetch_size_;
|
||||||
|
|
||||||
|
TaggedCache<uint256, Blob> fetch_packs_;
|
||||||
|
|
||||||
|
std::uint32_t fetch_seq_;
|
||||||
|
|
||||||
virtual
|
|
||||||
std::size_t getFetchPackCacheSize () const = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
std::unique_ptr <LedgerMaster>
|
|
||||||
make_LedgerMaster (
|
|
||||||
Application& app,
|
|
||||||
Stopwatch& stopwatch,
|
|
||||||
beast::Stoppable& parent,
|
|
||||||
beast::insight::Collector::ptr const& collector,
|
|
||||||
beast::Journal journal);
|
|
||||||
|
|
||||||
} // ripple
|
} // ripple
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
//==============================================================================
|
//==============================================================================
|
||||||
|
|
||||||
#include <BeastConfig.h>
|
#include <BeastConfig.h>
|
||||||
#include <ripple/app/ledger/impl/LedgerCleaner.h>
|
#include <ripple/app/ledger/LedgerCleaner.h>
|
||||||
#include <ripple/app/ledger/InboundLedgers.h>
|
#include <ripple/app/ledger/InboundLedgers.h>
|
||||||
#include <ripple/app/ledger/LedgerMaster.h>
|
#include <ripple/app/ledger/LedgerMaster.h>
|
||||||
#include <ripple/core/LoadFeeTrack.h>
|
#include <ripple/core/LoadFeeTrack.h>
|
||||||
@@ -26,6 +26,7 @@
|
|||||||
#include <beast/threads/Thread.h>
|
#include <beast/threads/Thread.h>
|
||||||
|
|
||||||
namespace ripple {
|
namespace ripple {
|
||||||
|
namespace detail {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
@@ -502,4 +503,5 @@ make_LedgerCleaner (Application& app,
|
|||||||
return std::make_unique<LedgerCleanerImp>(app, parent, journal);
|
return std::make_unique<LedgerCleanerImp>(app, parent, journal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} // detail
|
||||||
} // ripple
|
} // ripple
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -416,7 +416,7 @@ public:
|
|||||||
, m_pathRequests (std::make_unique<PathRequests> (
|
, m_pathRequests (std::make_unique<PathRequests> (
|
||||||
*this, logs_->journal("PathRequest"), m_collectorManager->collector ()))
|
*this, logs_->journal("PathRequest"), m_collectorManager->collector ()))
|
||||||
|
|
||||||
, m_ledgerMaster (make_LedgerMaster (*this, stopwatch (),
|
, m_ledgerMaster (std::make_unique<LedgerMaster> (*this, stopwatch (),
|
||||||
*m_jobQueue, m_collectorManager->collector (),
|
*m_jobQueue, m_collectorManager->collector (),
|
||||||
logs_->journal("LedgerMaster")))
|
logs_->journal("LedgerMaster")))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user