| 
    rippled
    
   | 
 
#include <SHAMapStoreImp.h>


Classes | |
| class | SavedStateDB | 
Public Member Functions | |
| SHAMapStoreImp (Application &app, NodeStore::Scheduler &scheduler, beast::Journal journal) | |
| std::uint32_t | clampFetchDepth (std::uint32_t fetch_depth) const override | 
| std::unique_ptr< NodeStore::Database > | makeNodeStore (int readThreads) override | 
| LedgerIndex | setCanDelete (LedgerIndex seq) override | 
| Highest ledger that may be deleted.   | |
| bool | advisoryDelete () const override | 
| Whether advisory delete is enabled.   | |
| LedgerIndex | getLastRotated () override | 
| Maximum ledger that has been deleted, or will be deleted if currently in the act of online deletion.   | |
| LedgerIndex | getCanDelete () override | 
| Highest ledger that may be deleted.   | |
| void | onLedgerClosed (std::shared_ptr< Ledger const > const &ledger) override | 
| Called by LedgerMaster every time a ledger validates.   | |
| void | rendezvous () const override | 
| int | fdRequired () const override | 
| Returns the number of file descriptors that are needed.   | |
| std::optional< LedgerIndex > | minimumOnline () const override | 
| The minimum ledger to try and maintain in our database.   | |
| void | start () override | 
| void | stop () override | 
Private Types | |
| enum | HealthResult { stopping , keepGoing } | 
| This is a health check for online deletion that waits until rippled is stable before returning.  More... | |
Private Member Functions | |
| bool | copyNode (std::uint64_t &nodeCount, SHAMapTreeNode const &node) | 
| void | run () | 
| void | dbPaths () | 
| std::unique_ptr< NodeStore::Backend > | makeBackendRotating (std::string path=std::string()) | 
| template<class CacheInstance > | |
| bool | freshenCache (CacheInstance &cache) | 
| void | clearSql (LedgerIndex lastRotated, std::string const &TableName, std::function< std::optional< LedgerIndex >()> const &getMinSeq, std::function< void(LedgerIndex)> const &deleteBeforeSeq) | 
| delete from sqlite table in batches to not lock the db excessively.   | |
| void | clearCaches (LedgerIndex validatedSeq) | 
| void | freshenCaches () | 
| void | clearPrior (LedgerIndex lastRotated) | 
| HealthResult | healthWait () | 
Static Private Attributes | |
| static std::uint32_t const | minimumDeletionInterval_ = 256 | 
| static std::uint32_t const | minimumDeletionIntervalSA_ = 8 | 
| static constexpr auto | nodeStoreName_ = "NodeStore" | 
Definition at line 39 of file SHAMapStoreImp.h.
      
  | 
  private | 
This is a health check for online deletion that waits until rippled is stable before returning.
It returns an indication of whether the server is stopping.
| Enumerator | |
|---|---|
| stopping | |
| keepGoing | |
Definition at line 231 of file SHAMapStoreImp.h.
| ripple::SHAMapStoreImp::SHAMapStoreImp | ( | Application & | app, | 
| NodeStore::Scheduler & | scheduler, | ||
| beast::Journal | journal | ||
| ) | 
Definition at line 84 of file SHAMapStoreImp.cpp.
      
  | 
  overridevirtual | 
Implements ripple::SHAMapStore.
Definition at line 128 of file SHAMapStoreImp.h.
      
  | 
  overridevirtual | 
Implements ripple::SHAMapStore.
Definition at line 162 of file SHAMapStoreImp.cpp.
      
  | 
  overridevirtual | 
Highest ledger that may be deleted.
Implements ripple::SHAMapStore.
Definition at line 138 of file SHAMapStoreImp.h.
      
  | 
  overridevirtual | 
Whether advisory delete is enabled.
Implements ripple::SHAMapStore.
Definition at line 146 of file SHAMapStoreImp.h.
      
  | 
  overridevirtual | 
Maximum ledger that has been deleted, or will be deleted if currently in the act of online deletion.
Implements ripple::SHAMapStore.
Definition at line 154 of file SHAMapStoreImp.h.
      
  | 
  overridevirtual | 
Highest ledger that may be deleted.
Implements ripple::SHAMapStore.
Definition at line 162 of file SHAMapStoreImp.h.
      
  | 
  overridevirtual | 
Called by LedgerMaster every time a ledger validates.
Implements ripple::SHAMapStore.
Definition at line 221 of file SHAMapStoreImp.cpp.
      
  | 
  overridevirtual | 
Implements ripple::SHAMapStore.
Definition at line 232 of file SHAMapStoreImp.cpp.
      
  | 
  overridevirtual | 
Returns the number of file descriptors that are needed.
Implements ripple::SHAMapStore.
Definition at line 242 of file SHAMapStoreImp.cpp.
      
  | 
  overridevirtual | 
The minimum ledger to try and maintain in our database.
This defines the lower bound for attempting to acquire historical ledgers over the peer to peer network.
If online_delete is enabled, then each time online_delete executes and just prior to clearing SQL databases of historical ledgers, move the value forward to one past the greatest ledger being deleted. This minimizes fetching of ledgers that are in the process of being deleted. Without online_delete or before online_delete is executed, this value is always the minimum value persisted in the ledger database, if any.
Implements ripple::SHAMapStore.
Definition at line 671 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 248 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 266 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 388 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 481 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 192 of file SHAMapStoreImp.h.
      
  | 
  private | 
delete from sqlite table in batches to not lock the db excessively.
Pause briefly to extend access time to other users. Call with mutex object unlocked.
Definition at line 510 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 563 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 570 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 579 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 635 of file SHAMapStoreImp.cpp.
      
  | 
  overridevirtual | 
Implements ripple::SHAMapStore.
Definition at line 237 of file SHAMapStoreImp.h.
      
  | 
  overridevirtual | 
Implements ripple::SHAMapStore.
Definition at line 657 of file SHAMapStoreImp.cpp.
      
  | 
  private | 
Definition at line 71 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 74 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 76 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 78 of file SHAMapStoreImp.h.
      
  | 
  staticprivate | 
Definition at line 80 of file SHAMapStoreImp.h.
      
  | 
  staticprivate | 
Definition at line 82 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 84 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 86 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 87 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 88 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 89 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 90 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 91 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 92 of file SHAMapStoreImp.h.
      
  | 
  mutableprivate | 
Definition at line 93 of file SHAMapStoreImp.h.
      
  | 
  mutableprivate | 
Definition at line 94 of file SHAMapStoreImp.h.
      
  | 
  mutableprivate | 
Definition at line 95 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 96 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 97 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 98 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 99 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 101 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 102 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 103 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 104 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 105 of file SHAMapStoreImp.h.
      
  | 
  private | 
If the node is out of sync during an online_delete healthWait() call, sleep the thread for this time, and continue checking until recovery.
See also: "recovery_wait_seconds" in rippled-example.cfg
Definition at line 110 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 114 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 115 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 116 of file SHAMapStoreImp.h.
      
  | 
  private | 
Definition at line 117 of file SHAMapStoreImp.h.
      
  | 
  staticconstexprprivate | 
Definition at line 119 of file SHAMapStoreImp.h.