rippled
Application.cpp
1 //------------------------------------------------------------------------------
2 /*
3  This file is part of rippled: https://github.com/ripple/rippled
4  Copyright (c) 2012, 2013 Ripple Labs Inc.
5 
6  Permission to use, copy, modify, and/or distribute this software for any
7  purpose with or without fee is hereby granted, provided that the above
8  copyright notice and this permission notice appear in all copies.
9 
10  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18 //==============================================================================
19 
20 #include <ripple/app/consensus/RCLValidations.h>
21 #include <ripple/app/ledger/InboundLedgers.h>
22 #include <ripple/app/ledger/InboundTransactions.h>
23 #include <ripple/app/ledger/LedgerMaster.h>
24 #include <ripple/app/ledger/LedgerToJson.h>
25 #include <ripple/app/ledger/OpenLedger.h>
26 #include <ripple/app/ledger/OrderBookDB.h>
27 #include <ripple/app/ledger/PendingSaves.h>
28 #include <ripple/app/ledger/TransactionMaster.h>
29 #include <ripple/app/main/Application.h>
30 #include <ripple/app/main/BasicApp.h>
31 #include <ripple/app/main/DBInit.h>
32 #include <ripple/app/main/GRPCServer.h>
33 #include <ripple/app/main/LoadManager.h>
34 #include <ripple/app/main/NodeIdentity.h>
35 #include <ripple/app/main/NodeStoreScheduler.h>
36 #include <ripple/app/misc/AmendmentTable.h>
37 #include <ripple/app/misc/HashRouter.h>
38 #include <ripple/app/misc/LoadFeeTrack.h>
39 #include <ripple/app/misc/NetworkOPs.h>
40 #include <ripple/app/misc/SHAMapStore.h>
41 #include <ripple/app/misc/TxQ.h>
42 #include <ripple/app/misc/ValidatorKeys.h>
43 #include <ripple/app/misc/ValidatorSite.h>
44 #include <ripple/app/paths/PathRequests.h>
45 #include <ripple/app/tx/apply.h>
46 #include <ripple/basics/ByteUtilities.h>
47 #include <ripple/basics/PerfLog.h>
48 #include <ripple/basics/ResolverAsio.h>
49 #include <ripple/basics/safe_cast.h>
50 #include <ripple/beast/asio/io_latency_probe.h>
51 #include <ripple/beast/core/LexicalCast.h>
52 #include <ripple/core/DatabaseCon.h>
53 #include <ripple/core/Stoppable.h>
54 #include <ripple/json/json_reader.h>
55 #include <ripple/nodestore/DatabaseShard.h>
56 #include <ripple/nodestore/DummyScheduler.h>
57 #include <ripple/overlay/Cluster.h>
58 #include <ripple/overlay/PeerReservationTable.h>
59 #include <ripple/overlay/make_Overlay.h>
60 #include <ripple/protocol/BuildInfo.h>
61 #include <ripple/protocol/Feature.h>
62 #include <ripple/protocol/Protocol.h>
63 #include <ripple/protocol/STParsedJSON.h>
64 #include <ripple/resource/Fees.h>
65 #include <ripple/rpc/ShardArchiveHandler.h>
66 #include <ripple/rpc/impl/RPCHelpers.h>
67 #include <ripple/shamap/NodeFamily.h>
68 #include <ripple/shamap/ShardFamily.h>
69 
70 #include <boost/algorithm/string/predicate.hpp>
71 #include <boost/asio/steady_timer.hpp>
72 #include <boost/system/error_code.hpp>
73 
74 #include <condition_variable>
75 #include <cstring>
76 #include <iostream>
77 #include <mutex>
78 
79 namespace ripple {
80 
81 // VFALCO TODO Move the function definitions into the class declaration
82 class ApplicationImp : public Application, public RootStoppable, public BasicApp
83 {
84 private:
86  {
87  private:
92 
93  public:
98  boost::asio::io_service& ios)
99  : m_event(ev)
100  , m_journal(journal)
101  , m_probe(interval, ios)
102  , lastSample_{}
103  {
104  }
105 
106  void
108  {
109  m_probe.sample(std::ref(*this));
110  }
111 
112  template <class Duration>
113  void
114  operator()(Duration const& elapsed)
115  {
116  using namespace std::chrono;
117  auto const lastSample = date::ceil<milliseconds>(elapsed);
118 
119  lastSample_ = lastSample;
120 
121  if (lastSample >= 10ms)
122  m_event.notify(lastSample);
123  if (lastSample >= 500ms)
124  {
125  JLOG(m_journal.warn())
126  << "io_service latency = " << lastSample.count();
127  }
128  }
129 
131  get() const
132  {
133  return lastSample_.load();
134  }
135 
136  void
138  {
139  m_probe.cancel();
140  }
141 
142  void
144  {
146  }
147  };
148 
149 public:
153 
157 
158  // Required by the SHAMapStore
160 
165  boost::optional<OpenLedger> openLedger_;
166 
167  // These are not Stoppable-derived
173 
175 
176  // These are Stoppable-related
183  // VFALCO TODO Make OrderBookDB abstract
205  boost::asio::steady_timer sweepTimer_;
206  boost::asio::steady_timer entropyTimer_;
208 
214 
215  boost::asio::signal_set m_signals;
216 
219  bool isTimeToStop = false;
220 
222 
224 
226 
228 
229  //--------------------------------------------------------------------------
230 
231  static std::size_t
233  {
234 #if RIPPLE_SINGLE_IO_SERVICE_THREAD
235  return 1;
236 #else
237  auto const cores = std::thread::hardware_concurrency();
238 
239  // Use a single thread when running on under-provisioned systems
240  // or if we are configured to use minimal resources.
241  if ((cores == 1) || ((config.NODE_SIZE == 0) && (cores == 2)))
242  return 1;
243 
244  // Otherwise, prefer two threads.
245  return 2;
246 #endif
247  }
248 
249  //--------------------------------------------------------------------------
250 
255  : RootStoppable("Application")
257  , config_(std::move(config))
258  , logs_(std::move(logs))
259  , timeKeeper_(std::move(timeKeeper))
260  , m_journal(logs_->journal("Application"))
261 
262  // PerfLog must be started before any other threads are launched.
263  , perfLog_(perf::make_PerfLog(
264  perf::setup_PerfLog(
265  config_->section("perf"),
266  config_->CONFIG_DIR),
267  *this,
268  logs_->journal("PerfLog"),
269  [this]() { signalStop(); }))
270 
271  , m_txMaster(*this)
272 
273  , m_nodeStoreScheduler(*this)
274 
276  *this,
277  *this,
279  logs_->journal("SHAMapStore")))
280 
281  , accountIDCache_(128000)
282 
283  , m_tempNodeCache(
284  "NodeCache",
285  16384,
287  stopwatch(),
288  logs_->journal("TaggedCache"))
289 
291  config_->section(SECTION_INSIGHT),
292  logs_->journal("Collector")))
295 
297  m_collectorManager->collector(),
298  logs_->journal("Resource")))
299 
300  // The JobQueue has to come pretty early since
301  // almost everything is a Stoppable child of the JobQueue.
302  //
303  , m_jobQueue(std::make_unique<JobQueue>(
304  m_collectorManager->group("jobq"),
306  logs_->journal("JobQueue"),
307  *logs_,
308  *perfLog_))
309 
310  , m_nodeStore(m_shaMapStore->makeNodeStore("NodeStore.main", 4))
311 
313 
314  // The shard store is optional and make_ShardStore can return null.
315  , shardStore_(make_ShardStore(
316  *this,
317  *m_jobQueue,
319  4,
320  logs_->journal("ShardStore")))
321 
322  , m_orderBookDB(*this, *m_jobQueue)
323 
324  , m_pathRequests(std::make_unique<PathRequests>(
325  *this,
326  logs_->journal("PathRequest"),
327  m_collectorManager->collector()))
328 
329  , m_ledgerMaster(std::make_unique<LedgerMaster>(
330  *this,
331  stopwatch(),
332  *m_jobQueue,
333  m_collectorManager->collector(),
334  logs_->journal("LedgerMaster")))
335 
336  // VFALCO NOTE must come before NetworkOPs to prevent a crash due
337  // to dependencies in the destructor.
338  //
340  *this,
341  stopwatch(),
342  *m_jobQueue,
343  m_collectorManager->collector()))
344 
346  *this,
347  *m_jobQueue,
348  m_collectorManager->collector(),
349  [this](std::shared_ptr<SHAMap> const& set, bool fromAcquire) {
350  gotTXSet(set, fromAcquire);
351  }))
352 
354  "AcceptedLedger",
355  4,
357  stopwatch(),
358  logs_->journal("TaggedCache"))
359 
361  *this,
362  stopwatch(),
363  config_->standalone(),
364  config_->NETWORK_QUORUM,
365  config_->START_VALID,
366  *m_jobQueue,
368  *m_jobQueue,
370  get_io_service(),
371  logs_->journal("NetworkOPs"),
372  m_collectorManager->collector()))
373 
374  , cluster_(std::make_unique<Cluster>(logs_->journal("Overlay")))
375 
376  , peerReservations_(std::make_unique<PeerReservationTable>(
377  logs_->journal("PeerReservationTable")))
378 
380  std::make_unique<ManifestCache>(logs_->journal("ManifestCache")))
381 
383  std::make_unique<ManifestCache>(logs_->journal("ManifestCache")))
384 
385  , validators_(std::make_unique<ValidatorList>(
388  *timeKeeper_,
389  config_->legacy("database_path"),
390  logs_->journal("ValidatorList"),
391  config_->VALIDATION_QUORUM))
392 
393  , validatorSites_(std::make_unique<ValidatorSite>(*this))
394 
396  *this,
397  *m_networkOPs,
398  get_io_service(),
399  *m_jobQueue,
400  *m_networkOPs,
403 
404  , mFeeTrack(
405  std::make_unique<LoadFeeTrack>(logs_->journal("LoadManager")))
406 
407  , hashRouter_(std::make_unique<HashRouter>(
408  stopwatch(),
411 
412  , mValidations(
413  ValidationParms(),
414  stopwatch(),
415  *this,
416  logs_->journal("Validations"))
417 
418  , m_loadManager(
419  make_LoadManager(*this, *this, logs_->journal("LoadManager")))
420 
421  , txQ_(
422  std::make_unique<TxQ>(setup_TxQ(*config_), logs_->journal("TxQ")))
423 
425 
427 
428  , startTimers_(false)
429 
431 
432  , checkSigs_(true)
433 
434  , m_resolver(
435  ResolverAsio::New(get_io_service(), logs_->journal("Resolver")))
436 
438  m_collectorManager->collector()->make_event("ios_latency"),
439  logs_->journal("Application"),
441  get_io_service())
442  , grpcServer_(std::make_unique<GRPCServer>(*this, *m_jobQueue))
443  {
444  add(m_resourceManager.get());
445 
446  //
447  // VFALCO - READ THIS!
448  //
449  // Do not start threads, open sockets, or do any sort of "real work"
450  // inside the constructor. Put it in onStart instead. Or if you must,
451  // put it in setup (but everything in setup should be moved to onStart
452  // anyway.
453  //
454  // The reason is that the unit tests require an Application object to
455  // be created. But we don't actually start all the threads, sockets,
456  // and services when running the unit tests. Therefore anything which
457  // needs to be stopped will not get stopped correctly if it is
458  // started in this constructor.
459  //
460 
461  // VFALCO HACK
463 
464  add(m_ledgerMaster->getPropertySource());
465  }
466 
467  //--------------------------------------------------------------------------
468 
469  bool
470  setup() override;
471  void
472  doStart(bool withTimers) override;
473  void
474  run() override;
475  bool
476  isShutdown() override;
477  void
478  signalStop() override;
479  bool
480  checkSigs() const override;
481  void
482  checkSigs(bool) override;
483  int
484  fdRequired() const override;
485 
486  //--------------------------------------------------------------------------
487 
488  Logs&
489  logs() override
490  {
491  return *logs_;
492  }
493 
494  Config&
495  config() override
496  {
497  return *config_;
498  }
499 
502  {
503  return *m_collectorManager;
504  }
505 
506  Family&
507  getNodeFamily() override
508  {
509  return nodeFamily_;
510  }
511 
512  // The shard store is an optional feature. If the sever is configured for
513  // shards, this function will return a valid pointer, otherwise a nullptr.
514  Family*
515  getShardFamily() override
516  {
517  return shardFamily_.get();
518  }
519 
520  TimeKeeper&
521  timeKeeper() override
522  {
523  return *timeKeeper_;
524  }
525 
526  JobQueue&
527  getJobQueue() override
528  {
529  return *m_jobQueue;
530  }
531 
533  nodeIdentity() override
534  {
535  return nodeIdentity_;
536  }
537 
538  PublicKey const&
539  getValidationPublicKey() const override
540  {
541  return validatorKeys_.publicKey;
542  }
543 
544  NetworkOPs&
545  getOPs() override
546  {
547  return *m_networkOPs;
548  }
549 
550  boost::asio::io_service&
551  getIOService() override
552  {
553  return get_io_service();
554  }
555 
557  getIOLatency() override
558  {
559  return m_io_latency_sampler.get();
560  }
561 
562  LedgerMaster&
563  getLedgerMaster() override
564  {
565  return *m_ledgerMaster;
566  }
567 
569  getInboundLedgers() override
570  {
571  return *m_inboundLedgers;
572  }
573 
576  {
577  return *m_inboundTransactions;
578  }
579 
582  {
583  return m_acceptedLedgerCache;
584  }
585 
586  void
587  gotTXSet(std::shared_ptr<SHAMap> const& set, bool fromAcquire)
588  {
589  if (set)
590  m_networkOPs->mapComplete(set, fromAcquire);
591  }
592 
595  {
596  return m_txMaster;
597  }
598 
600  getPerfLog() override
601  {
602  return *perfLog_;
603  }
604 
605  NodeCache&
606  getTempNodeCache() override
607  {
608  return m_tempNodeCache;
609  }
610 
612  getNodeStore() override
613  {
614  return *m_nodeStore;
615  }
616 
617  // The shard store is an optional feature. If the sever is configured for
618  // shards, this function will return a valid pointer, otherwise a nullptr.
620  getShardStore() override
621  {
622  return shardStore_.get();
623  }
624 
626  getShardArchiveHandler(bool tryRecovery) override
627  {
628  static std::mutex handlerMutex;
629  std::lock_guard lock(handlerMutex);
630 
631  // After constructing the handler, try to
632  // initialize it. Log on error; set the
633  // member variable on success.
634  auto initAndSet =
636  if (!handler)
637  return false;
638 
639  if (!handler->init())
640  {
641  JLOG(m_journal.error())
642  << "Failed to initialize ShardArchiveHandler.";
643 
644  return false;
645  }
646 
647  shardArchiveHandler_ = std::move(handler);
648  return true;
649  };
650 
651  // Need to resume based on state from a previous
652  // run.
653  if (tryRecovery)
654  {
655  if (shardArchiveHandler_ != nullptr)
656  {
657  JLOG(m_journal.error())
658  << "ShardArchiveHandler already created at startup.";
659 
660  return nullptr;
661  }
662 
664  *this, *m_jobQueue);
665 
666  if (!initAndSet(std::move(handler)))
667  return nullptr;
668  }
669 
670  // Construct the ShardArchiveHandler
671  if (shardArchiveHandler_ == nullptr)
672  {
674  *this, *m_jobQueue);
675 
676  if (!initAndSet(std::move(handler)))
677  return nullptr;
678  }
679 
680  return shardArchiveHandler_.get();
681  }
682 
684  getMasterMutex() override
685  {
686  return m_masterMutex;
687  }
688 
689  LoadManager&
690  getLoadManager() override
691  {
692  return *m_loadManager;
693  }
694 
697  {
698  return *m_resourceManager;
699  }
700 
701  OrderBookDB&
702  getOrderBookDB() override
703  {
704  return m_orderBookDB;
705  }
706 
707  PathRequests&
708  getPathRequests() override
709  {
710  return *m_pathRequests;
711  }
712 
713  CachedSLEs&
714  cachedSLEs() override
715  {
716  return cachedSLEs_;
717  }
718 
720  getAmendmentTable() override
721  {
722  return *m_amendmentTable;
723  }
724 
725  LoadFeeTrack&
726  getFeeTrack() override
727  {
728  return *mFeeTrack;
729  }
730 
731  HashRouter&
732  getHashRouter() override
733  {
734  return *hashRouter_;
735  }
736 
738  getValidations() override
739  {
740  return mValidations;
741  }
742 
744  validators() override
745  {
746  return *validators_;
747  }
748 
750  validatorSites() override
751  {
752  return *validatorSites_;
753  }
754 
757  {
758  return *validatorManifests_;
759  }
760 
763  {
764  return *publisherManifests_;
765  }
766 
767  Cluster&
768  cluster() override
769  {
770  return *cluster_;
771  }
772 
774  peerReservations() override
775  {
776  return *peerReservations_;
777  }
778 
779  SHAMapStore&
780  getSHAMapStore() override
781  {
782  return *m_shaMapStore;
783  }
784 
785  PendingSaves&
786  pendingSaves() override
787  {
788  return pendingSaves_;
789  }
790 
791  AccountIDCache const&
792  accountIDCache() const override
793  {
794  return accountIDCache_;
795  }
796 
797  OpenLedger&
798  openLedger() override
799  {
800  return *openLedger_;
801  }
802 
803  OpenLedger const&
804  openLedger() const override
805  {
806  return *openLedger_;
807  }
808 
809  Overlay&
810  overlay() override
811  {
812  assert(overlay_);
813  return *overlay_;
814  }
815 
816  TxQ&
817  getTxQ() override
818  {
819  assert(txQ_.get() != nullptr);
820  return *txQ_;
821  }
822 
823  DatabaseCon&
824  getTxnDB() override
825  {
826  assert(mTxnDB.get() != nullptr);
827  return *mTxnDB;
828  }
829  DatabaseCon&
830  getLedgerDB() override
831  {
832  assert(mLedgerDB.get() != nullptr);
833  return *mLedgerDB;
834  }
835  DatabaseCon&
836  getWalletDB() override
837  {
838  assert(mWalletDB.get() != nullptr);
839  return *mWalletDB;
840  }
841 
842  bool
843  serverOkay(std::string& reason) override;
844 
846  journal(std::string const& name) override;
847 
848  //--------------------------------------------------------------------------
849 
850  bool
852  {
853  assert(mTxnDB.get() == nullptr);
854  assert(mLedgerDB.get() == nullptr);
855  assert(mWalletDB.get() == nullptr);
856 
857  try
858  {
860 
861  // transaction database
862  mTxnDB = std::make_unique<DatabaseCon>(
863  setup,
864  TxDBName,
865  TxDBPragma,
866  TxDBInit,
868  mTxnDB->getSession() << boost::str(
869  boost::format("PRAGMA cache_size=-%d;") %
870  kilobytes(config_->getValueFor(SizedItem::txnDBCache)));
871 
872  if (!setup.standAlone || setup.startUp == Config::LOAD ||
873  setup.startUp == Config::LOAD_FILE ||
874  setup.startUp == Config::REPLAY)
875  {
876  // Check if AccountTransactions has primary key
877  std::string cid, name, type;
878  std::size_t notnull, dflt_value, pk;
879  soci::indicator ind;
880  soci::statement st =
881  (mTxnDB->getSession().prepare
882  << ("PRAGMA table_info(AccountTransactions);"),
883  soci::into(cid),
884  soci::into(name),
885  soci::into(type),
886  soci::into(notnull),
887  soci::into(dflt_value, ind),
888  soci::into(pk));
889 
890  st.execute();
891  while (st.fetch())
892  {
893  if (pk == 1)
894  {
895  JLOG(m_journal.fatal())
896  << "AccountTransactions database "
897  "should not have a primary key";
898  return false;
899  }
900  }
901  }
902 
903  // ledger database
904  mLedgerDB = std::make_unique<DatabaseCon>(
905  setup,
906  LgrDBName,
907  LgrDBPragma,
908  LgrDBInit,
910  mLedgerDB->getSession() << boost::str(
911  boost::format("PRAGMA cache_size=-%d;") %
912  kilobytes(config_->getValueFor(SizedItem::lgrDBCache)));
913 
914  // wallet database
915  setup.useGlobalPragma = false;
916  mWalletDB = std::make_unique<DatabaseCon>(
917  setup,
918  WalletDBName,
920  WalletDBInit);
921  }
922  catch (std::exception const& e)
923  {
924  JLOG(m_journal.fatal())
925  << "Failed to initialize SQLite databases: " << e.what();
926  return false;
927  }
928 
929  return true;
930  }
931 
932  bool
934  {
935  if (config_->doImport)
936  {
937  auto j = logs_->journal("NodeObject");
938  NodeStore::DummyScheduler dummyScheduler;
939  RootStoppable dummyRoot{"DummyRoot"};
942  "NodeStore.import",
943  megabytes(config_->getValueFor(
944  SizedItem::burstSize, boost::none)),
945  dummyScheduler,
946  0,
947  dummyRoot,
949  j);
950 
951  JLOG(j.warn()) << "Starting node import from '" << source->getName()
952  << "' to '" << m_nodeStore->getName() << "'.";
953 
954  using namespace std::chrono;
955  auto const start = steady_clock::now();
956 
957  m_nodeStore->import(*source);
958 
959  auto const elapsed =
960  duration_cast<seconds>(steady_clock::now() - start);
961  JLOG(j.warn()) << "Node import from '" << source->getName()
962  << "' took " << elapsed.count() << " seconds.";
963  }
964 
965  // tune caches
966  using namespace std::chrono;
967 
968  m_ledgerMaster->tune(
969  config_->getValueFor(SizedItem::ledgerSize),
970  seconds{config_->getValueFor(SizedItem::ledgerAge)});
971 
972  return true;
973  }
974 
975  //--------------------------------------------------------------------------
976  //
977  // Stoppable
978  //
979 
980  void
981  onPrepare() override
982  {
983  }
984 
985  void
986  onStart() override
987  {
988  JLOG(m_journal.info()) << "Application starting. Version is "
990 
991  using namespace std::chrono_literals;
992  if (startTimers_)
993  {
994  setSweepTimer();
995  setEntropyTimer();
996  }
997 
999 
1000  m_resolver->start();
1001  }
1002 
1003  // Called to indicate shutdown.
1004  void
1005  onStop() override
1006  {
1007  JLOG(m_journal.debug()) << "Application stopping";
1008 
1010 
1011  // VFALCO Enormous hack, we have to force the probe to cancel
1012  // before we stop the io_service queue or else it never
1013  // unblocks in its destructor. The fix is to make all
1014  // io_objects gracefully handle exit so that we can
1015  // naturally return from io_service::run() instead of
1016  // forcing a call to io_service::stop()
1018 
1019  m_resolver->stop_async();
1020 
1021  // NIKB This is a hack - we need to wait for the resolver to
1022  // stop. before we stop the io_server_queue or weird
1023  // things will happen.
1024  m_resolver->stop();
1025 
1026  {
1027  boost::system::error_code ec;
1028  sweepTimer_.cancel(ec);
1029  if (ec)
1030  {
1031  JLOG(m_journal.error())
1032  << "Application: sweepTimer cancel error: " << ec.message();
1033  }
1034 
1035  ec.clear();
1036  entropyTimer_.cancel(ec);
1037  if (ec)
1038  {
1039  JLOG(m_journal.error())
1040  << "Application: entropyTimer cancel error: "
1041  << ec.message();
1042  }
1043  }
1044  // Make sure that any waitHandlers pending in our timers are done
1045  // before we declare ourselves stopped.
1046  using namespace std::chrono_literals;
1047  waitHandlerCounter_.join("Application", 1s, m_journal);
1048 
1049  mValidations.flush();
1050 
1051  validatorSites_->stop();
1052 
1053  // TODO Store manifests in manifests.sqlite instead of wallet.db
1054  validatorManifests_->save(
1055  getWalletDB(),
1056  "ValidatorManifests",
1057  [this](PublicKey const& pubKey) {
1058  return validators().listed(pubKey);
1059  });
1060 
1061  publisherManifests_->save(
1062  getWalletDB(),
1063  "PublisherManifests",
1064  [this](PublicKey const& pubKey) {
1065  return validators().trustedPublisher(pubKey);
1066  });
1067 
1068  stopped();
1069  }
1070 
1071  //--------------------------------------------------------------------------
1072  //
1073  // PropertyStream
1074  //
1075 
1076  void
1078  {
1079  }
1080 
1081  //--------------------------------------------------------------------------
1082 
1083  void
1085  {
1086  // Only start the timer if waitHandlerCounter_ is not yet joined.
1087  if (auto optionalCountedHandler = waitHandlerCounter_.wrap(
1088  [this](boost::system::error_code const& e) {
1089  if ((e.value() == boost::system::errc::success) &&
1090  (!m_jobQueue->isStopped()))
1091  {
1092  m_jobQueue->addJob(
1093  jtSWEEP, "sweep", [this](Job&) { doSweep(); });
1094  }
1095  // Recover as best we can if an unexpected error occurs.
1096  if (e.value() != boost::system::errc::success &&
1097  e.value() != boost::asio::error::operation_aborted)
1098  {
1099  // Try again later and hope for the best.
1100  JLOG(m_journal.error())
1101  << "Sweep timer got error '" << e.message()
1102  << "'. Restarting timer.";
1103  setSweepTimer();
1104  }
1105  }))
1106  {
1107  using namespace std::chrono;
1108  sweepTimer_.expires_from_now(
1109  seconds{config_->getValueFor(SizedItem::sweepInterval)});
1110  sweepTimer_.async_wait(std::move(*optionalCountedHandler));
1111  }
1112  }
1113 
1114  void
1116  {
1117  // Only start the timer if waitHandlerCounter_ is not yet joined.
1118  if (auto optionalCountedHandler = waitHandlerCounter_.wrap(
1119  [this](boost::system::error_code const& e) {
1120  if (e.value() == boost::system::errc::success)
1121  {
1122  crypto_prng().mix_entropy();
1123  setEntropyTimer();
1124  }
1125  // Recover as best we can if an unexpected error occurs.
1126  if (e.value() != boost::system::errc::success &&
1127  e.value() != boost::asio::error::operation_aborted)
1128  {
1129  // Try again later and hope for the best.
1130  JLOG(m_journal.error())
1131  << "Entropy timer got error '" << e.message()
1132  << "'. Restarting timer.";
1133  setEntropyTimer();
1134  }
1135  }))
1136  {
1137  using namespace std::chrono_literals;
1138  entropyTimer_.expires_from_now(5min);
1139  entropyTimer_.async_wait(std::move(*optionalCountedHandler));
1140  }
1141  }
1142 
1143  void
1145  {
1146  if (!config_->standalone())
1147  {
1148  boost::filesystem::space_info space =
1149  boost::filesystem::space(config_->legacy("database_path"));
1150 
1151  if (space.available < megabytes(512))
1152  {
1153  JLOG(m_journal.fatal())
1154  << "Remaining free disk space is less than 512MB";
1155  signalStop();
1156  }
1157 
1159  boost::filesystem::path dbPath = dbSetup.dataDir / TxDBName;
1160  boost::system::error_code ec;
1161  boost::optional<std::uint64_t> dbSize =
1162  boost::filesystem::file_size(dbPath, ec);
1163  if (ec)
1164  {
1165  JLOG(m_journal.error())
1166  << "Error checking transaction db file size: "
1167  << ec.message();
1168  dbSize.reset();
1169  }
1170 
1171  auto db = mTxnDB->checkoutDb();
1172  static auto const pageSize = [&] {
1173  std::uint32_t ps;
1174  *db << "PRAGMA page_size;", soci::into(ps);
1175  return ps;
1176  }();
1177  static auto const maxPages = [&] {
1178  std::uint32_t mp;
1179  *db << "PRAGMA max_page_count;", soci::into(mp);
1180  return mp;
1181  }();
1182  std::uint32_t pageCount;
1183  *db << "PRAGMA page_count;", soci::into(pageCount);
1184  std::uint32_t freePages = maxPages - pageCount;
1185  std::uint64_t freeSpace =
1186  safe_cast<std::uint64_t>(freePages) * pageSize;
1187  JLOG(m_journal.info())
1188  << "Transaction DB pathname: " << dbPath.string()
1189  << "; file size: " << dbSize.value_or(-1) << " bytes"
1190  << "; SQLite page size: " << pageSize << " bytes"
1191  << "; Free pages: " << freePages
1192  << "; Free space: " << freeSpace << " bytes; "
1193  << "Note that this does not take into account available disk "
1194  "space.";
1195 
1196  if (freeSpace < megabytes(512))
1197  {
1198  JLOG(m_journal.fatal())
1199  << "Free SQLite space for transaction db is less than "
1200  "512MB. To fix this, rippled must be executed with the "
1201  "\"--vacuum\" parameter before restarting. "
1202  "Note that this activity can take multiple days, "
1203  "depending on database size.";
1204  signalStop();
1205  }
1206  }
1207 
1208  // VFALCO NOTE Does the order of calls matter?
1209  // VFALCO TODO fix the dependency inversion using an observer,
1210  // have listeners register for "onSweep ()" notification.
1211 
1212  nodeFamily_.sweep();
1213  if (shardFamily_)
1214  shardFamily_->sweep();
1216  getNodeStore().sweep();
1217  if (shardStore_)
1218  shardStore_->sweep();
1219  getLedgerMaster().sweep();
1220  getTempNodeCache().sweep();
1221  getValidations().expire();
1223  m_acceptedLedgerCache.sweep();
1224  cachedSLEs_.expire();
1225 
1226  // Set timer to do another sweep later.
1227  setSweepTimer();
1228  }
1229 
1230  LedgerIndex
1232  {
1233  return maxDisallowedLedger_;
1234  }
1235 
1236 private:
1237  // For a newly-started validator, this is the greatest persisted ledger
1238  // and new validations must be greater than this.
1240 
1241  bool
1242  nodeToShards();
1243 
1244  void
1246 
1249 
1251  loadLedgerFromFile(std::string const& ledgerID);
1252 
1253  bool
1254  loadOldLedger(std::string const& ledgerID, bool replay, bool isFilename);
1255 
1256  void
1258 };
1259 
1260 //------------------------------------------------------------------------------
1261 
1262 // TODO Break this up into smaller, more digestible initialization segments.
1263 bool
1265 {
1266  // We want to intercept CTRL-C and the standard termination signal SIGTERM
1267  // and terminate the process. This handler will NEVER be invoked twice.
1268  //
1269  // Note that async_wait is "one-shot": for each call, the handler will be
1270  // invoked exactly once, either when one of the registered signals in the
1271  // signal set occurs or the signal set is cancelled. Subsequent signals are
1272  // effectively ignored (technically, they are queued up, waiting for a call
1273  // to async_wait).
1274  m_signals.add(SIGINT);
1275  m_signals.add(SIGTERM);
1276  m_signals.async_wait(
1277  [this](boost::system::error_code const& ec, int signum) {
1278  // Indicates the signal handler has been aborted; do nothing
1279  if (ec == boost::asio::error::operation_aborted)
1280  return;
1281 
1282  JLOG(m_journal.info()) << "Received signal " << signum;
1283 
1284  if (signum == SIGTERM || signum == SIGINT)
1285  signalStop();
1286  });
1287 
1288  assert(mTxnDB == nullptr);
1289 
1290  auto debug_log = config_->getDebugLogFile();
1291 
1292  if (!debug_log.empty())
1293  {
1294  // Let debug messages go to the file but only WARNING or higher to
1295  // regular output (unless verbose)
1296 
1297  if (!logs_->open(debug_log))
1298  std::cerr << "Can't open log file " << debug_log << '\n';
1299 
1300  using namespace beast::severities;
1301  if (logs_->threshold() > kDebug)
1302  logs_->threshold(kDebug);
1303  }
1304  JLOG(m_journal.info()) << "process starting: "
1306 
1307  if (numberOfThreads(*config_) < 2)
1308  {
1309  JLOG(m_journal.warn()) << "Limited to a single I/O service thread by "
1310  "system configuration.";
1311  }
1312 
1313  // Optionally turn off logging to console.
1314  logs_->silent(config_->silent());
1315 
1316  m_jobQueue->setThreadCount(config_->WORKERS, config_->standalone());
1317 
1318  if (!config_->standalone())
1319  timeKeeper_->run(config_->SNTP_SERVERS);
1320 
1321  if (!initSQLiteDBs() || !initNodeStore())
1322  return false;
1323 
1324  if (shardStore_)
1325  {
1326  shardFamily_ =
1327  std::make_unique<ShardFamily>(*this, *m_collectorManager);
1328 
1329  if (!shardStore_->init())
1330  return false;
1331  }
1332 
1333  if (!peerReservations_->load(getWalletDB()))
1334  {
1335  JLOG(m_journal.fatal()) << "Cannot find peer reservations!";
1336  return false;
1337  }
1338 
1341 
1342  // Configure the amendments the server supports
1343  {
1344  auto const& sa = detail::supportedAmendments();
1345  std::vector<std::string> saHashes;
1346  saHashes.reserve(sa.size());
1347  for (auto const& name : sa)
1348  {
1349  auto const f = getRegisteredFeature(name);
1350  BOOST_ASSERT(f);
1351  if (f)
1352  saHashes.push_back(to_string(*f) + " " + name);
1353  }
1354  Section supportedAmendments("Supported Amendments");
1355  supportedAmendments.append(saHashes);
1356 
1357  Section enabledAmendments = config_->section(SECTION_AMENDMENTS);
1358 
1360  *this,
1361  config().AMENDMENT_MAJORITY_TIME,
1362  supportedAmendments,
1363  enabledAmendments,
1364  config_->section(SECTION_VETO_AMENDMENTS),
1365  logs_->journal("Amendments"));
1366  }
1367 
1369 
1370  auto const startUp = config_->START_UP;
1371  if (startUp == Config::FRESH)
1372  {
1373  JLOG(m_journal.info()) << "Starting new Ledger";
1374 
1376  }
1377  else if (
1378  startUp == Config::LOAD || startUp == Config::LOAD_FILE ||
1379  startUp == Config::REPLAY)
1380  {
1381  JLOG(m_journal.info()) << "Loading specified Ledger";
1382 
1383  if (!loadOldLedger(
1384  config_->START_LEDGER,
1385  startUp == Config::REPLAY,
1386  startUp == Config::LOAD_FILE))
1387  {
1388  JLOG(m_journal.error())
1389  << "The specified ledger could not be loaded.";
1390  return false;
1391  }
1392  }
1393  else if (startUp == Config::NETWORK)
1394  {
1395  // This should probably become the default once we have a stable
1396  // network.
1397  if (!config_->standalone())
1398  m_networkOPs->setNeedNetworkLedger();
1399 
1401  }
1402  else
1403  {
1405  }
1406 
1407  m_orderBookDB.setup(getLedgerMaster().getCurrentLedger());
1408 
1410 
1411  if (!cluster_->load(config().section(SECTION_CLUSTER_NODES)))
1412  {
1413  JLOG(m_journal.fatal()) << "Invalid entry in cluster configuration.";
1414  return false;
1415  }
1416 
1417  {
1419  return false;
1420 
1421  if (!validatorManifests_->load(
1422  getWalletDB(),
1423  "ValidatorManifests",
1425  config().section(SECTION_VALIDATOR_KEY_REVOCATION).values()))
1426  {
1427  JLOG(m_journal.fatal()) << "Invalid configured validator manifest.";
1428  return false;
1429  }
1430 
1431  publisherManifests_->load(getWalletDB(), "PublisherManifests");
1432 
1433  // Setup trusted validators
1434  if (!validators_->load(
1436  config().section(SECTION_VALIDATORS).values(),
1437  config().section(SECTION_VALIDATOR_LIST_KEYS).values()))
1438  {
1439  JLOG(m_journal.fatal())
1440  << "Invalid entry in validator configuration.";
1441  return false;
1442  }
1443  }
1444 
1445  if (!validatorSites_->load(
1446  config().section(SECTION_VALIDATOR_LIST_SITES).values()))
1447  {
1448  JLOG(m_journal.fatal())
1449  << "Invalid entry in [" << SECTION_VALIDATOR_LIST_SITES << "]";
1450  return false;
1451  }
1452 
1453  //----------------------------------------------------------------------
1454  //
1455  // Server
1456  //
1457  //----------------------------------------------------------------------
1458 
1459  // VFALCO NOTE Unfortunately, in stand-alone mode some code still
1460  // foolishly calls overlay(). When this is fixed we can
1461  // move the instantiation inside a conditional:
1462  //
1463  // if (!config_.standalone())
1465  *this,
1467  *m_jobQueue,
1468  *serverHandler_,
1470  *m_resolver,
1471  get_io_service(),
1472  *config_,
1473  m_collectorManager->collector());
1474  add(*overlay_); // add to PropertyStream
1475 
1476  if (!config_->standalone())
1477  {
1478  // NodeStore import into the ShardStore requires the SQLite database
1479  if (config_->nodeToShard && !nodeToShards())
1480  return false;
1481  }
1482 
1483  validatorSites_->start();
1484 
1485  // start first consensus round
1486  if (!m_networkOPs->beginConsensus(
1487  m_ledgerMaster->getClosedLedger()->info().hash))
1488  {
1489  JLOG(m_journal.fatal()) << "Unable to start consensus";
1490  return false;
1491  }
1492 
1493  {
1494  try
1495  {
1496  auto setup = setup_ServerHandler(
1498  setup.makeContexts();
1499  serverHandler_->setup(setup, m_journal);
1500  }
1501  catch (std::exception const& e)
1502  {
1503  if (auto stream = m_journal.fatal())
1504  {
1505  stream << "Unable to setup server handler";
1506  if (std::strlen(e.what()) > 0)
1507  stream << ": " << e.what();
1508  }
1509  return false;
1510  }
1511  }
1512 
1513  // Begin connecting to network.
1514  if (!config_->standalone())
1515  {
1516  // Should this message be here, conceptually? In theory this sort
1517  // of message, if displayed, should be displayed from PeerFinder.
1518  if (config_->PEER_PRIVATE && config_->IPS_FIXED.empty())
1519  {
1520  JLOG(m_journal.warn())
1521  << "No outbound peer connections will be made";
1522  }
1523 
1524  // VFALCO NOTE the state timer resets the deadlock detector.
1525  //
1526  m_networkOPs->setStateTimer();
1527  }
1528  else
1529  {
1530  JLOG(m_journal.warn()) << "Running in standalone mode";
1531 
1532  m_networkOPs->setStandAlone();
1533  }
1534 
1535  if (config_->canSign())
1536  {
1537  JLOG(m_journal.warn()) << "*** The server is configured to allow the "
1538  "'sign' and 'sign_for'";
1539  JLOG(m_journal.warn()) << "*** commands. These commands have security "
1540  "implications and have";
1541  JLOG(m_journal.warn()) << "*** been deprecated. They will be removed "
1542  "in a future release of";
1543  JLOG(m_journal.warn()) << "*** rippled.";
1544  JLOG(m_journal.warn()) << "*** If you do not use them to sign "
1545  "transactions please edit your";
1546  JLOG(m_journal.warn())
1547  << "*** configuration file and remove the [enable_signing] stanza.";
1548  JLOG(m_journal.warn()) << "*** If you do use them to sign transactions "
1549  "please migrate to a";
1550  JLOG(m_journal.warn())
1551  << "*** standalone signing solution as soon as possible.";
1552  }
1553 
1554  //
1555  // Execute start up rpc commands.
1556  //
1557  for (auto cmd : config_->section(SECTION_RPC_STARTUP).lines())
1558  {
1559  Json::Reader jrReader;
1560  Json::Value jvCommand;
1561 
1562  if (!jrReader.parse(cmd, jvCommand))
1563  {
1564  JLOG(m_journal.fatal()) << "Couldn't parse entry in ["
1565  << SECTION_RPC_STARTUP << "]: '" << cmd;
1566  }
1567 
1568  if (!config_->quiet())
1569  {
1570  JLOG(m_journal.fatal())
1571  << "Startup RPC: " << jvCommand << std::endl;
1572  }
1573 
1576  RPC::JsonContext context{
1577  {journal("RPCHandler"),
1578  *this,
1579  loadType,
1580  getOPs(),
1581  getLedgerMaster(),
1582  c,
1583  Role::ADMIN,
1584  {},
1585  {},
1587  jvCommand};
1588 
1589  Json::Value jvResult;
1590  RPC::doCommand(context, jvResult);
1591 
1592  if (!config_->quiet())
1593  {
1594  JLOG(m_journal.fatal()) << "Result: " << jvResult << std::endl;
1595  }
1596  }
1597 
1598  if (shardStore_)
1599  {
1600  try
1601  {
1602  // Create a ShardArchiveHandler if recovery
1603  // is needed (there's a state database left
1604  // over from a previous run).
1605  auto handler = getShardArchiveHandler(true);
1606 
1607  // Recovery is needed.
1608  if (handler)
1609  {
1610  if (!handler->start())
1611  {
1612  JLOG(m_journal.fatal())
1613  << "Failed to start ShardArchiveHandler.";
1614 
1615  return false;
1616  }
1617  }
1618  }
1619  catch (std::exception const& e)
1620  {
1621  JLOG(m_journal.fatal())
1622  << "Exception when starting ShardArchiveHandler from "
1623  "state database: "
1624  << e.what();
1625 
1626  return false;
1627  }
1628  }
1629 
1630  return true;
1631 }
1632 
1633 void
1634 ApplicationImp::doStart(bool withTimers)
1635 {
1636  startTimers_ = withTimers;
1637  prepare();
1638  start();
1639 }
1640 
1641 void
1643 {
1644  if (!config_->standalone())
1645  {
1646  // VFALCO NOTE This seems unnecessary. If we properly refactor the load
1647  // manager then the deadlock detector can just always be
1648  // "armed"
1649  //
1651  }
1652 
1653  {
1655  cv_.wait(lk, [this] { return isTimeToStop; });
1656  }
1657 
1658  // Stop the server. When this returns, all
1659  // Stoppable objects should be stopped.
1660  JLOG(m_journal.info()) << "Received shutdown request";
1661  stop(m_journal);
1662  JLOG(m_journal.info()) << "Done.";
1663 }
1664 
1665 void
1667 {
1668  // Unblock the main thread (which is sitting in run()).
1669  // When we get C++20 this can use std::latch.
1670  std::lock_guard lk{mut_};
1671 
1672  if (!isTimeToStop)
1673  {
1674  isTimeToStop = true;
1675  cv_.notify_all();
1676  }
1677 }
1678 
1679 bool
1681 {
1682  // from Stoppable mixin
1683  return isStopped();
1684 }
1685 
1686 bool
1688 {
1689  return checkSigs_;
1690 }
1691 
1692 void
1694 {
1695  checkSigs_ = check;
1696 }
1697 
1698 int
1700 {
1701  // Standard handles, config file, misc I/O etc:
1702  int needed = 128;
1703 
1704  // 2x the configured peer limit for peer connections:
1705  needed += 2 * overlay_->limit();
1706 
1707  // the number of fds needed by the backend (internally
1708  // doubled if online delete is enabled).
1709  needed += std::max(5, m_shaMapStore->fdRequired());
1710 
1711  if (shardStore_)
1712  needed += shardStore_->fdRequired();
1713 
1714  // One fd per incoming connection a port can accept, or
1715  // if no limit is set, assume it'll handle 256 clients.
1716  for (auto const& p : serverHandler_->setup().ports)
1717  needed += std::max(256, p.limit);
1718 
1719  // The minimum number of file descriptors we need is 1024:
1720  return std::max(1024, needed);
1721 }
1722 
1723 //------------------------------------------------------------------------------
1724 
1725 void
1727 {
1728  std::vector<uint256> initialAmendments =
1729  (config_->START_UP == Config::FRESH) ? m_amendmentTable->getDesired()
1731 
1732  std::shared_ptr<Ledger> const genesis = std::make_shared<Ledger>(
1733  create_genesis, *config_, initialAmendments, nodeFamily_);
1734  m_ledgerMaster->storeLedger(genesis);
1735 
1736  auto const next =
1737  std::make_shared<Ledger>(*genesis, timeKeeper().closeTime());
1738  next->updateSkipList();
1739  next->setImmutable(*config_);
1740  openLedger_.emplace(next, cachedSLEs_, logs_->journal("OpenLedger"));
1741  m_ledgerMaster->storeLedger(next);
1742  m_ledgerMaster->switchLCL(next);
1743 }
1744 
1747 {
1748  auto j = journal("Ledger");
1749 
1750  try
1751  {
1752  auto const [ledger, seq, hash] =
1753  loadLedgerHelper("order by LedgerSeq desc limit 1", *this);
1754 
1755  if (!ledger)
1756  return ledger;
1757 
1758  ledger->setImmutable(*config_);
1759 
1760  if (getLedgerMaster().haveLedger(seq))
1761  ledger->setValidated();
1762 
1763  if (ledger->info().hash == hash)
1764  {
1765  JLOG(j.trace()) << "Loaded ledger: " << hash;
1766  return ledger;
1767  }
1768 
1769  if (auto stream = j.error())
1770  {
1771  stream << "Failed on ledger";
1772  Json::Value p;
1773  addJson(p, {*ledger, LedgerFill::full});
1774  stream << p;
1775  }
1776 
1777  return {};
1778  }
1779  catch (SHAMapMissingNode const& mn)
1780  {
1781  JLOG(j.warn()) << "Ledger in database: " << mn.what();
1782  return {};
1783  }
1784 }
1785 
1788 {
1789  try
1790  {
1791  std::ifstream ledgerFile(name, std::ios::in);
1792 
1793  if (!ledgerFile)
1794  {
1795  JLOG(m_journal.fatal()) << "Unable to open file '" << name << "'";
1796  return nullptr;
1797  }
1798 
1799  Json::Reader reader;
1800  Json::Value jLedger;
1801 
1802  if (!reader.parse(ledgerFile, jLedger))
1803  {
1804  JLOG(m_journal.fatal()) << "Unable to parse ledger JSON";
1805  return nullptr;
1806  }
1807 
1808  std::reference_wrapper<Json::Value> ledger(jLedger);
1809 
1810  // accept a wrapped ledger
1811  if (ledger.get().isMember("result"))
1812  ledger = ledger.get()["result"];
1813 
1814  if (ledger.get().isMember("ledger"))
1815  ledger = ledger.get()["ledger"];
1816 
1817  std::uint32_t seq = 1;
1818  auto closeTime = timeKeeper().closeTime();
1819  using namespace std::chrono_literals;
1820  auto closeTimeResolution = 30s;
1821  bool closeTimeEstimated = false;
1822  std::uint64_t totalDrops = 0;
1823 
1824  if (ledger.get().isMember("accountState"))
1825  {
1826  if (ledger.get().isMember(jss::ledger_index))
1827  {
1828  seq = ledger.get()[jss::ledger_index].asUInt();
1829  }
1830 
1831  if (ledger.get().isMember("close_time"))
1832  {
1833  using tp = NetClock::time_point;
1834  using d = tp::duration;
1835  closeTime = tp{d{ledger.get()["close_time"].asUInt()}};
1836  }
1837  if (ledger.get().isMember("close_time_resolution"))
1838  {
1839  using namespace std::chrono;
1840  closeTimeResolution =
1841  seconds{ledger.get()["close_time_resolution"].asUInt()};
1842  }
1843  if (ledger.get().isMember("close_time_estimated"))
1844  {
1845  closeTimeEstimated =
1846  ledger.get()["close_time_estimated"].asBool();
1847  }
1848  if (ledger.get().isMember("total_coins"))
1849  {
1850  totalDrops = beast::lexicalCastThrow<std::uint64_t>(
1851  ledger.get()["total_coins"].asString());
1852  }
1853 
1854  ledger = ledger.get()["accountState"];
1855  }
1856 
1857  if (!ledger.get().isArrayOrNull())
1858  {
1859  JLOG(m_journal.fatal()) << "State nodes must be an array";
1860  return nullptr;
1861  }
1862 
1863  auto loadLedger =
1864  std::make_shared<Ledger>(seq, closeTime, *config_, nodeFamily_);
1865  loadLedger->setTotalDrops(totalDrops);
1866 
1867  for (Json::UInt index = 0; index < ledger.get().size(); ++index)
1868  {
1869  Json::Value& entry = ledger.get()[index];
1870 
1871  if (!entry.isObjectOrNull())
1872  {
1873  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1874  return nullptr;
1875  }
1876 
1877  uint256 uIndex;
1878 
1879  if (!uIndex.parseHex(entry[jss::index].asString()))
1880  {
1881  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1882  return nullptr;
1883  }
1884 
1885  entry.removeMember(jss::index);
1886 
1887  STParsedJSONObject stp("sle", ledger.get()[index]);
1888 
1889  if (!stp.object || uIndex.isZero())
1890  {
1891  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1892  return nullptr;
1893  }
1894 
1895  // VFALCO TODO This is the only place that
1896  // constructor is used, try to remove it
1897  STLedgerEntry sle(*stp.object, uIndex);
1898 
1899  if (!loadLedger->addSLE(sle))
1900  {
1901  JLOG(m_journal.fatal())
1902  << "Couldn't add serialized ledger: " << uIndex;
1903  return nullptr;
1904  }
1905  }
1906 
1907  loadLedger->stateMap().flushDirty(hotACCOUNT_NODE);
1908 
1909  loadLedger->setAccepted(
1910  closeTime, closeTimeResolution, !closeTimeEstimated, *config_);
1911 
1912  return loadLedger;
1913  }
1914  catch (std::exception const& x)
1915  {
1916  JLOG(m_journal.fatal()) << "Ledger contains invalid data: " << x.what();
1917  return nullptr;
1918  }
1919 }
1920 
1921 bool
1923  std::string const& ledgerID,
1924  bool replay,
1925  bool isFileName)
1926 {
1927  try
1928  {
1929  std::shared_ptr<Ledger const> loadLedger, replayLedger;
1930 
1931  if (isFileName)
1932  {
1933  if (!ledgerID.empty())
1934  loadLedger = loadLedgerFromFile(ledgerID);
1935  }
1936  else if (ledgerID.length() == 64)
1937  {
1938  uint256 hash;
1939 
1940  if (hash.parseHex(ledgerID))
1941  {
1942  loadLedger = loadByHash(hash, *this);
1943 
1944  if (!loadLedger)
1945  {
1946  // Try to build the ledger from the back end
1947  auto il = std::make_shared<InboundLedger>(
1948  *this,
1949  hash,
1950  0,
1952  stopwatch());
1953  if (il->checkLocal())
1954  loadLedger = il->getLedger();
1955  }
1956  }
1957  }
1958  else if (ledgerID.empty() || boost::iequals(ledgerID, "latest"))
1959  {
1960  loadLedger = getLastFullLedger();
1961  }
1962  else
1963  {
1964  // assume by sequence
1965  std::uint32_t index;
1966 
1967  if (beast::lexicalCastChecked(index, ledgerID))
1968  loadLedger = loadByIndex(index, *this);
1969  }
1970 
1971  if (!loadLedger)
1972  return false;
1973 
1974  if (replay)
1975  {
1976  // Replay a ledger close with same prior ledger and transactions
1977 
1978  // this ledger holds the transactions we want to replay
1979  replayLedger = loadLedger;
1980 
1981  JLOG(m_journal.info()) << "Loading parent ledger";
1982 
1983  loadLedger = loadByHash(replayLedger->info().parentHash, *this);
1984  if (!loadLedger)
1985  {
1986  JLOG(m_journal.info())
1987  << "Loading parent ledger from node store";
1988 
1989  // Try to build the ledger from the back end
1990  auto il = std::make_shared<InboundLedger>(
1991  *this,
1992  replayLedger->info().parentHash,
1993  0,
1995  stopwatch());
1996 
1997  if (il->checkLocal())
1998  loadLedger = il->getLedger();
1999 
2000  if (!loadLedger)
2001  {
2002  JLOG(m_journal.fatal()) << "Replay ledger missing/damaged";
2003  assert(false);
2004  return false;
2005  }
2006  }
2007  }
2008  using namespace std::chrono_literals;
2009  using namespace date;
2010  static constexpr NetClock::time_point ledgerWarnTimePoint{
2011  sys_days{January / 1 / 2018} - sys_days{January / 1 / 2000}};
2012  if (loadLedger->info().closeTime < ledgerWarnTimePoint)
2013  {
2014  JLOG(m_journal.fatal())
2015  << "\n\n*** WARNING ***\n"
2016  "You are replaying a ledger from before "
2017  << to_string(ledgerWarnTimePoint)
2018  << " UTC.\n"
2019  "This replay will not handle your ledger as it was "
2020  "originally "
2021  "handled.\nConsider running an earlier version of rippled "
2022  "to "
2023  "get the older rules.\n*** CONTINUING ***\n";
2024  }
2025 
2026  JLOG(m_journal.info()) << "Loading ledger " << loadLedger->info().hash
2027  << " seq:" << loadLedger->info().seq;
2028 
2029  if (loadLedger->info().accountHash.isZero())
2030  {
2031  JLOG(m_journal.fatal()) << "Ledger is empty.";
2032  assert(false);
2033  return false;
2034  }
2035 
2036  if (!loadLedger->walkLedger(journal("Ledger")))
2037  {
2038  JLOG(m_journal.fatal()) << "Ledger is missing nodes.";
2039  assert(false);
2040  return false;
2041  }
2042 
2043  if (!loadLedger->assertSensible(journal("Ledger")))
2044  {
2045  JLOG(m_journal.fatal()) << "Ledger is not sensible.";
2046  assert(false);
2047  return false;
2048  }
2049 
2050  m_ledgerMaster->setLedgerRangePresent(
2051  loadLedger->info().seq, loadLedger->info().seq);
2052 
2053  m_ledgerMaster->switchLCL(loadLedger);
2054  loadLedger->setValidated();
2055  m_ledgerMaster->setFullLedger(loadLedger, true, false);
2056  openLedger_.emplace(
2057  loadLedger, cachedSLEs_, logs_->journal("OpenLedger"));
2058 
2059  if (replay)
2060  {
2061  // inject transaction(s) from the replayLedger into our open ledger
2062  // and build replay structure
2063  auto replayData =
2064  std::make_unique<LedgerReplay>(loadLedger, replayLedger);
2065 
2066  for (auto const& [_, tx] : replayData->orderedTxns())
2067  {
2068  (void)_;
2069  auto txID = tx->getTransactionID();
2070 
2071  auto s = std::make_shared<Serializer>();
2072  tx->add(*s);
2073 
2075 
2076  openLedger_->modify(
2077  [&txID, &s](OpenView& view, beast::Journal j) {
2078  view.rawTxInsert(txID, std::move(s), nullptr);
2079  return true;
2080  });
2081  }
2082 
2083  m_ledgerMaster->takeReplay(std::move(replayData));
2084  }
2085  }
2086  catch (SHAMapMissingNode const& mn)
2087  {
2088  JLOG(m_journal.fatal())
2089  << "While loading specified ledger: " << mn.what();
2090  return false;
2091  }
2092  catch (boost::bad_lexical_cast&)
2093  {
2094  JLOG(m_journal.fatal())
2095  << "Ledger specified '" << ledgerID << "' is not valid";
2096  return false;
2097  }
2098 
2099  return true;
2100 }
2101 
2102 bool
2104 {
2105  if (!config().ELB_SUPPORT)
2106  return true;
2107 
2108  if (isShutdown())
2109  {
2110  reason = "Server is shutting down";
2111  return false;
2112  }
2113 
2114  if (getOPs().isNeedNetworkLedger())
2115  {
2116  reason = "Not synchronized with network yet";
2117  return false;
2118  }
2119 
2120  if (getOPs().getOperatingMode() < OperatingMode::SYNCING)
2121  {
2122  reason = "Not synchronized with network";
2123  return false;
2124  }
2125 
2126  if (!getLedgerMaster().isCaughtUp(reason))
2127  return false;
2128 
2129  if (getFeeTrack().isLoadedLocal())
2130  {
2131  reason = "Too much load";
2132  return false;
2133  }
2134 
2135  if (getOPs().isAmendmentBlocked())
2136  {
2137  reason = "Server version too old";
2138  return false;
2139  }
2140 
2141  return true;
2142 }
2143 
2146 {
2147  return logs_->journal(name);
2148 }
2149 
2150 bool
2152 {
2153  assert(overlay_);
2154  assert(!config_->standalone());
2155 
2156  if (config_->section(ConfigSection::shardDatabase()).empty())
2157  {
2158  JLOG(m_journal.fatal())
2159  << "The [shard_db] configuration setting must be set";
2160  return false;
2161  }
2162  if (!shardStore_)
2163  {
2164  JLOG(m_journal.fatal()) << "Invalid [shard_db] configuration";
2165  return false;
2166  }
2167  shardStore_->import(getNodeStore());
2168  return true;
2169 }
2170 
2171 void
2173 {
2174  boost::optional<LedgerIndex> seq;
2175  {
2176  auto db = getLedgerDB().checkoutDb();
2177  *db << "SELECT MAX(LedgerSeq) FROM Ledgers;", soci::into(seq);
2178  }
2179  if (seq)
2180  maxDisallowedLedger_ = *seq;
2181 
2182  JLOG(m_journal.trace())
2183  << "Max persisted ledger is " << maxDisallowedLedger_;
2184 }
2185 
2186 //------------------------------------------------------------------------------
2187 
2188 Application::Application() : beast::PropertyStream::Source("app")
2189 {
2190 }
2191 
2192 //------------------------------------------------------------------------------
2193 
2196  std::unique_ptr<Config> config,
2197  std::unique_ptr<Logs> logs,
2198  std::unique_ptr<TimeKeeper> timeKeeper)
2199 {
2200  return std::make_unique<ApplicationImp>(
2201  std::move(config), std::move(logs), std::move(timeKeeper));
2202 }
2203 
2204 } // namespace ripple
ripple::NodeStoreScheduler
A NodeStore::Scheduler which uses the JobQueue and implements the Stoppable API.
Definition: NodeStoreScheduler.h:32
ripple::Validations::expire
void expire()
Expire old validation sets.
Definition: Validations.h:709
beast::PropertyStream::Source::name
std::string const & name() const
Returns the name of this source.
Definition: beast_PropertyStream.cpp:190
ripple::ApplicationImp::m_resourceManager
std::unique_ptr< Resource::Manager > m_resourceManager
Definition: Application.cpp:174
ripple::ValidatorKeys::publicKey
PublicKey publicKey
Definition: ValidatorKeys.h:39
beast::Journal::fatal
Stream fatal() const
Definition: Journal.h:339
ripple::setup_TxQ
TxQ::Setup setup_TxQ(Config const &config)
Build a TxQ::Setup object from application configuration.
Definition: TxQ.cpp:1836
ripple::ApplicationImp::getTxnDB
DatabaseCon & getTxnDB() override
Definition: Application.cpp:824
ripple::NodeStore::DummyScheduler
Simple NodeStore Scheduler that just peforms the tasks synchronously.
Definition: DummyScheduler.h:29
ripple::ApplicationImp::mTxnDB
std::unique_ptr< DatabaseCon > mTxnDB
Definition: Application.cpp:209
ripple::ApplicationImp::getValidationPublicKey
PublicKey const & getValidationPublicKey() const override
Definition: Application.cpp:539
ripple::ApplicationImp::m_tempNodeCache
NodeCache m_tempNodeCache
Definition: Application.cpp:168
ripple::Section
Holds a collection of configuration values.
Definition: BasicConfig.h:43
ripple::NetworkOPs
Provides server functionality for clients.
Definition: NetworkOPs.h:88
ripple::ApplicationImp::shardStore_
std::unique_ptr< NodeStore::DatabaseShard > shardStore_
Definition: Application.cpp:180
ripple::loadLedgerHelper
std::tuple< std::shared_ptr< Ledger >, std::uint32_t, uint256 > loadLedgerHelper(std::string const &sqlSuffix, Application &app, bool acquire)
Definition: Ledger.cpp:1137
ripple::Application
Definition: Application.h:97
ripple::WalletDBName
constexpr auto WalletDBName
Definition: DBInit.h:139
ripple::RPC::JsonContext
Definition: Context.h:53
ripple::ApplicationImp::getLedgerDB
DatabaseCon & getLedgerDB() override
Definition: Application.cpp:830
ripple::LoadManager::activateDeadlockDetector
void activateDeadlockDetector()
Turn on deadlock detection.
Definition: LoadManager.cpp:63
ripple::ApplicationImp::m_inboundTransactions
std::unique_ptr< InboundTransactions > m_inboundTransactions
Definition: Application.cpp:188
ripple::ApplicationImp::websocketServers_
std::vector< std::unique_ptr< Stoppable > > websocketServers_
Definition: Application.cpp:213
ripple::NodeFamily::sweep
void sweep() override
Definition: NodeFamily.cpp:48
ripple::ApplicationImp::getShardFamily
Family * getShardFamily() override
Definition: Application.cpp:515
ripple::LoadManager
Manages load sources.
Definition: LoadManager.h:43
ripple::ApplicationImp::validators
ValidatorList & validators() override
Definition: Application.cpp:744
std::strlen
T strlen(T... args)
ripple::STLedgerEntry
Definition: STLedgerEntry.h:30
ripple::NodeStore::Database
Persistency layer for NodeObject.
Definition: Database.h:52
std::string
STL class.
ripple::ApplicationImp::cachedSLEs
CachedSLEs & cachedSLEs() override
Definition: Application.cpp:714
std::shared_ptr
STL class.
ripple::ApplicationImp::getNodeStore
NodeStore::Database & getNodeStore() override
Definition: Application.cpp:612
ripple::loadNodeIdentity
std::pair< PublicKey, SecretKey > loadNodeIdentity(Application &app)
The cryptographic credentials identifying this server instance.
Definition: NodeIdentity.cpp:32
ripple::TaggedCache< SHAMapHash, Blob >
ripple::ApplicationImp::serverOkay
bool serverOkay(std::string &reason) override
Definition: Application.cpp:2103
ripple::loadByIndex
std::shared_ptr< Ledger > loadByIndex(std::uint32_t ledgerIndex, Application &app, bool acquire)
Definition: Ledger.cpp:1229
ripple::LedgerMaster::sweep
void sweep()
Definition: LedgerMaster.cpp:1736
ripple::ApplicationImp::mValidations
RCLValidations mValidations
Definition: Application.cpp:201
ripple::NodeStore::Manager::make_Database
virtual std::unique_ptr< Database > make_Database(std::string const &name, std::size_t burstSize, Scheduler &scheduler, int readThreads, Stoppable &parent, Section const &backendParameters, beast::Journal journal)=0
Construct a NodeStore database.
ripple::TransactionMaster::sweep
void sweep(void)
Definition: TransactionMaster.cpp:156
std::exception
STL class.
ripple::ApplicationImp::getAcceptedLedgerCache
TaggedCache< uint256, AcceptedLedger > & getAcceptedLedgerCache() override
Definition: Application.cpp:581
ripple::Stoppable::stopped
void stopped()
Called by derived classes to indicate that the stoppable has stopped.
Definition: Stoppable.cpp:72
ripple::DatabaseCon::Setup
Definition: DatabaseCon.h:84
cstring
ripple::ApplicationImp::getHashRouter
HashRouter & getHashRouter() override
Definition: Application.cpp:732
beast::Journal::trace
Stream trace() const
Severity stream access functions.
Definition: Journal.h:309
beast::PropertyStream::Map
Definition: PropertyStream.h:236
ripple::ApplicationImp::validatorSites_
std::unique_ptr< ValidatorSite > validatorSites_
Definition: Application.cpp:196
ripple::ApplicationImp::mWalletDB
std::unique_ptr< DatabaseCon > mWalletDB
Definition: Application.cpp:211
ripple::ApplicationImp::getPathRequests
PathRequests & getPathRequests() override
Definition: Application.cpp:708
ripple::TaggedCache::sweep
void sweep()
Definition: TaggedCache.h:169
ripple::ApplicationImp::m_orderBookDB
OrderBookDB m_orderBookDB
Definition: Application.cpp:184
ripple::TransactionMaster
Definition: TransactionMaster.h:36
ripple::ValidatorSite
Definition: ValidatorSite.h:69
std::pair
std::vector::reserve
T reserve(T... args)
ripple::ApplicationImp::onStop
void onStop() override
Override called when the stop notification is issued.
Definition: Application.cpp:1005
ripple::ApplicationImp::onWrite
void onWrite(beast::PropertyStream::Map &stream) override
Subclass override.
Definition: Application.cpp:1077
ripple::LedgerMaster
Definition: LedgerMaster.h:54
ripple::ApplicationImp::getInboundLedgers
InboundLedgers & getInboundLedgers() override
Definition: Application.cpp:569
ripple::ApplicationImp::accountIDCache
AccountIDCache const & accountIDCache() const override
Definition: Application.cpp:792
ripple::OpenView
Writable ledger view that accumulates state and tx changes.
Definition: OpenView.h:55
ripple::ApplicationImp::io_latency_sampler::cancel_async
void cancel_async()
Definition: Application.cpp:143
Json::UInt
unsigned int UInt
Definition: json_forwards.h:27
ripple::hotACCOUNT_NODE
@ hotACCOUNT_NODE
Definition: NodeObject.h:35
ripple::InboundLedger::Reason::GENERIC
@ GENERIC
std::vector
STL class.
ripple::ConfigSection::shardDatabase
static std::string shardDatabase()
Definition: ConfigSections.h:38
std::string::length
T length(T... args)
ripple::ValidatorList::trustedPublisher
bool trustedPublisher(PublicKey const &identity) const
Returns true if public key is a trusted publisher.
Definition: ValidatorList.cpp:611
ripple::ApplicationImp::waitHandlerCounter_
ClosureCounter< void, boost::system::error_code const & > waitHandlerCounter_
Definition: Application.cpp:204
ripple::ApplicationImp::getOPs
NetworkOPs & getOPs() override
Definition: Application.cpp:545
ripple::ApplicationImp::run
void run() override
Definition: Application.cpp:1642
ripple::make_Overlay
std::unique_ptr< Overlay > make_Overlay(Application &app, Overlay::Setup const &setup, Stoppable &parent, ServerHandler &serverHandler, Resource::Manager &resourceManager, Resolver &resolver, boost::asio::io_service &io_service, BasicConfig const &config, beast::insight::Collector::ptr const &collector)
Creates the implementation of Overlay.
Definition: OverlayImpl.cpp:1565
ripple::CollectorManager
Provides the beast::insight::Collector service.
Definition: CollectorManager.h:29
ripple::ConfigSection::importNodeDatabase
static std::string importNodeDatabase()
Definition: ConfigSections.h:43
std::chrono::milliseconds
ripple::Config::NODE_SIZE
std::size_t NODE_SIZE
Definition: Config.h:173
ripple::ApplicationImp::m_acceptedLedgerCache
TaggedCache< uint256, AcceptedLedger > m_acceptedLedgerCache
Definition: Application.cpp:189
ripple::ApplicationImp::setup
bool setup() override
Definition: Application.cpp:1264
ripple::SHAMapStore
class to create database, launch online delete thread, and related SQLite database
Definition: SHAMapStore.h:37
ripple::make_LoadManager
std::unique_ptr< LoadManager > make_LoadManager(Application &app, Stoppable &parent, beast::Journal journal)
Definition: LoadManager.cpp:221
ripple::DatabaseCon::CheckpointerSetup
Definition: DatabaseCon.h:106
ripple::ApplicationImp::validatorManifests
ManifestCache & validatorManifests() override
Definition: Application.cpp:756
ripple::ApplicationImp::getWalletDB
DatabaseCon & getWalletDB() override
Retrieve the "wallet database".
Definition: Application.cpp:836
ripple::ApplicationImp::getCollectorManager
CollectorManager & getCollectorManager() override
Definition: Application.cpp:501
ripple::ApplicationImp::sweepTimer_
boost::asio::steady_timer sweepTimer_
Definition: Application.cpp:205
ripple::ApplicationImp::cluster_
std::unique_ptr< Cluster > cluster_
Definition: Application.cpp:191
ripple::ApplicationImp::getShardStore
NodeStore::DatabaseShard * getShardStore() override
Definition: Application.cpp:620
ripple::ApplicationImp::openLedger
OpenLedger const & openLedger() const override
Definition: Application.cpp:804
ripple::ApplicationImp::getIOLatency
std::chrono::milliseconds getIOLatency() override
Definition: Application.cpp:557
ripple::ApplicationImp::openLedger_
boost::optional< OpenLedger > openLedger_
Definition: Application.cpp:165
ripple::ApplicationImp::m_shaMapStore
std::unique_ptr< SHAMapStore > m_shaMapStore
Definition: Application.cpp:162
ripple::Config::LOAD
@ LOAD
Definition: Config.h:122
beast::Journal::warn
Stream warn() const
Definition: Journal.h:327
std::recursive_mutex
STL class.
std::reference_wrapper::get
T get(T... args)
ripple::ApplicationImp::getIOService
boost::asio::io_service & getIOService() override
Definition: Application.cpp:551
ripple::ApplicationImp::shardArchiveHandler_
std::unique_ptr< RPC::ShardArchiveHandler > shardArchiveHandler_
Definition: Application.cpp:182
std::lock_guard
STL class.
ripple::kilobytes
constexpr auto kilobytes(T value) noexcept
Definition: ByteUtilities.h:27
beast::severities
A namespace for easy access to logging severity values.
Definition: Journal.h:29
ripple::perf::PerfLog
Singleton class that maintains performance counters and optionally writes Json-formatted data to a di...
Definition: PerfLog.h:46
ripple::STParsedJSONObject
Holds the serialized result of parsing an input JSON object.
Definition: STParsedJSON.h:31
ripple::PendingSaves
Keeps track of which ledgers haven't been fully saved.
Definition: PendingSaves.h:36
ripple::Resource::feeReferenceRPC
const Charge feeReferenceRPC
ripple::Pathfinder::initPathTable
static void initPathTable()
Definition: Pathfinder.cpp:1257
std::cerr
ripple::DatabaseCon::Setup::dataDir
boost::filesystem::path dataDir
Definition: DatabaseCon.h:90
ripple::ApplicationImp::ApplicationImp
ApplicationImp(std::unique_ptr< Config > config, std::unique_ptr< Logs > logs, std::unique_ptr< TimeKeeper > timeKeeper)
Definition: Application.cpp:251
ripple::ApplicationImp::signalStop
void signalStop() override
Definition: Application.cpp:1666
ripple::ApplicationImp::cluster
Cluster & cluster() override
Definition: Application.cpp:768
ripple::stopwatch
Stopwatch & stopwatch()
Returns an instance of a wall clock.
Definition: chrono.h:86
ripple::to_string
std::string to_string(ListDisposition disposition)
Definition: ValidatorList.cpp:42
ripple::ApplicationImp::getLedgerMaster
LedgerMaster & getLedgerMaster() override
Definition: Application.cpp:563
Json::Reader
Unserialize a JSON document into a Value.
Definition: json_reader.h:36
ripple::CollectorManager::New
static std::unique_ptr< CollectorManager > New(Section const &params, beast::Journal journal)
Definition: CollectorManager.cpp:74
ripple::NodeFamily
Definition: NodeFamily.h:30
ripple::ResolverAsio::New
static std::unique_ptr< ResolverAsio > New(boost::asio::io_service &, beast::Journal)
Definition: ResolverAsio.cpp:407
iostream
ripple::ApplicationImp::m_nodeStore
std::unique_ptr< NodeStore::Database > m_nodeStore
Definition: Application.cpp:178
ripple::LgrDBInit
constexpr std::array< char const *, 5 > LgrDBInit
Definition: DBInit.h:48
ripple::ApplicationImp::perfLog_
std::unique_ptr< perf::PerfLog > perfLog_
Definition: Application.cpp:155
ripple::AccountIDCache
Caches the base58 representations of AccountIDs.
Definition: AccountID.h:118
ripple::ApplicationImp::nodeIdentity_
std::pair< PublicKey, SecretKey > nodeIdentity_
Definition: Application.cpp:171
ripple::InboundLedgers::sweep
virtual void sweep()=0
ripple::ValidatorKeys
Validator keys and manifest as set in configuration file.
Definition: ValidatorKeys.h:36
ripple::ApplicationImp::mLedgerDB
std::unique_ptr< DatabaseCon > mLedgerDB
Definition: Application.cpp:210
ripple::make_InboundLedgers
std::unique_ptr< InboundLedgers > make_InboundLedgers(Application &app, InboundLedgers::clock_type &clock, Stoppable &parent, beast::insight::Collector::ptr const &collector)
Definition: InboundLedgers.cpp:412
ripple::HashRouter
Routing table for objects identified by hash.
Definition: HashRouter.h:52
ripple::forceValidity
void forceValidity(HashRouter &router, uint256 const &txid, Validity validity)
Sets the validity of a given transaction in the cache.
Definition: apply.cpp:89
ripple::ApplicationImp::onStart
void onStart() override
Override called during start.
Definition: Application.cpp:986
ripple::ApplicationImp::validatorKeys_
const ValidatorKeys validatorKeys_
Definition: Application.cpp:172
ripple::ApplicationImp::timeKeeper_
std::unique_ptr< TimeKeeper > timeKeeper_
Definition: Application.cpp:152
ripple::OperatingMode::SYNCING
@ SYNCING
fallen slightly behind
ripple::ApplicationImp::cv_
std::condition_variable cv_
Definition: Application.cpp:217
ripple::SHAMapMissingNode
Definition: SHAMapMissingNode.h:55
ripple::Validity::SigGoodOnly
@ SigGoodOnly
Signature is good, but local checks fail.
ripple::RootStoppable::prepare
void prepare()
Prepare all contained Stoppable objects.
Definition: Stoppable.cpp:181
ripple::ApplicationImp::getShardArchiveHandler
RPC::ShardArchiveHandler * getShardArchiveHandler(bool tryRecovery) override
Definition: Application.cpp:626
ripple::ApplicationImp::m_inboundLedgers
std::unique_ptr< InboundLedgers > m_inboundLedgers
Definition: Application.cpp:187
ripple::ApplicationImp::peerReservations_
std::unique_ptr< PeerReservationTable > peerReservations_
Definition: Application.cpp:192
std::vector::push_back
T push_back(T... args)
ripple::setup_ServerHandler
ServerHandler::Setup setup_ServerHandler(Config const &config, std::ostream &&log)
Definition: ServerHandlerImp.cpp:1143
ripple::ApplicationImp::loadLedgerFromFile
std::shared_ptr< Ledger > loadLedgerFromFile(std::string const &ledgerID)
Definition: Application.cpp:1787
ripple::ApplicationImp::checkSigs
bool checkSigs() const override
Definition: Application.cpp:1687
ripple::ApplicationImp::journal
beast::Journal journal(std::string const &name) override
Definition: Application.cpp:2145
ripple::ApplicationImp::startTimers_
bool startTimers_
Definition: Application.cpp:207
ripple::TxDBName
constexpr auto TxDBName
Definition: DBInit.h:73
ripple::base_uint< 256 >
ripple::make_NetworkOPs
std::unique_ptr< NetworkOPs > make_NetworkOPs(Application &app, NetworkOPs::clock_type &clock, bool standalone, std::size_t minPeerCount, bool startvalid, JobQueue &job_queue, LedgerMaster &ledgerMaster, Stoppable &parent, ValidatorKeys const &validatorKeys, boost::asio::io_service &io_svc, beast::Journal journal, beast::insight::Collector::ptr const &collector)
Definition: NetworkOPs.cpp:3907
ripple::ApplicationImp::entropyTimer_
boost::asio::steady_timer entropyTimer_
Definition: Application.cpp:206
ripple::ApplicationImp::getMaxDisallowedLedger
LedgerIndex getMaxDisallowedLedger() override
Ensure that a newly-started validator does not sign proposals older than the last ledger it persisted...
Definition: Application.cpp:1231
ripple::ApplicationImp::nodeToShards
bool nodeToShards()
Definition: Application.cpp:2151
ripple::ApplicationImp::hashRouter_
std::unique_ptr< HashRouter > hashRouter_
Definition: Application.cpp:200
ripple::ApplicationImp::getMasterMutex
Application::MutexType & getMasterMutex() override
Definition: Application.cpp:684
ripple::RootStoppable::stop
void stop(beast::Journal j)
Notify a root stoppable and children to stop, and block until stopped.
Definition: Stoppable.cpp:199
ripple::HashRouter::getDefaultRecoverLimit
static std::uint32_t getDefaultRecoverLimit()
Definition: HashRouter.h:161
ripple::ApplicationImp::m_ledgerMaster
std::unique_ptr< LedgerMaster > m_ledgerMaster
Definition: Application.cpp:186
ripple::Stoppable::isStopped
bool isStopped() const
Returns true if the requested stop has completed.
Definition: Stoppable.cpp:60
ripple::RPC::doCommand
Status doCommand(RPC::JsonContext &context, Json::Value &result)
Execute an RPC command and store the results in a Json::Value.
Definition: RPCHandler.cpp:213
ripple::setup_Overlay
Overlay::Setup setup_Overlay(BasicConfig const &config)
Definition: OverlayImpl.cpp:1460
ripple::ApplicationImp::logs
Logs & logs() override
Definition: Application.cpp:489
ripple::ApplicationImp::getPerfLog
perf::PerfLog & getPerfLog() override
Definition: Application.cpp:600
ripple::ApplicationImp::m_jobQueue
std::unique_ptr< JobQueue > m_jobQueue
Definition: Application.cpp:177
ripple::ApplicationImp::checkSigs_
std::atomic< bool > checkSigs_
Definition: Application.cpp:221
std::reference_wrapper
ripple::loadByHash
std::shared_ptr< Ledger > loadByHash(uint256 const &ledgerHash, Application &app, bool acquire)
Definition: Ledger.cpp:1244
ripple::TxQ
Transaction Queue.
Definition: TxQ.h:55
ripple::ApplicationImp::numberOfThreads
static std::size_t numberOfThreads(Config const &config)
Definition: Application.cpp:232
ripple::DatabaseCon::checkoutDb
LockedSociSession checkoutDb()
Definition: DatabaseCon.h:176
ripple::base_uint::isZero
bool isZero() const
Definition: base_uint.h:439
ripple::ApplicationImp::getSHAMapStore
SHAMapStore & getSHAMapStore() override
Definition: Application.cpp:780
ripple::RootStoppable
Definition: Stoppable.h:353
ripple::LgrDBPragma
constexpr std::array< char const *, 1 > LgrDBPragma
Definition: DBInit.h:45
ripple::Role::ADMIN
@ ADMIN
beast::PropertyStream::Source::add
void add(Source &source)
Add a child source.
Definition: beast_PropertyStream.cpp:196
ripple::ApplicationImp::getAmendmentTable
AmendmentTable & getAmendmentTable() override
Definition: Application.cpp:720
ripple::ApplicationImp::loadOldLedger
bool loadOldLedger(std::string const &ledgerID, bool replay, bool isFilename)
Definition: Application.cpp:1922
ripple::ApplicationImp::initSQLiteDBs
bool initSQLiteDBs()
Definition: Application.cpp:851
ripple::PublicKey
A public key.
Definition: PublicKey.h:59
std::atomic::load
T load(T... args)
ripple::Config
Definition: Config.h:67
ripple::ApplicationImp::io_latency_sampler::cancel
void cancel()
Definition: Application.cpp:137
ripple::PublicKey::size
std::size_t size() const noexcept
Definition: PublicKey.h:87
ripple::Cluster
Definition: Cluster.h:38
std::thread::hardware_concurrency
T hardware_concurrency(T... args)
ripple::CachedSLEs
Caches SLEs by their digest.
Definition: CachedSLEs.h:32
ripple::ValidatorList
Definition: ValidatorList.h:120
ripple::ApplicationImp::getResourceManager
Resource::Manager & getResourceManager() override
Definition: Application.cpp:696
ripple::ApplicationImp::peerReservations
PeerReservationTable & peerReservations() override
Definition: Application.cpp:774
ripple::ApplicationImp::publisherManifests
ManifestCache & publisherManifests() override
Definition: Application.cpp:762
ripple::ApplicationImp::doStart
void doStart(bool withTimers) override
Definition: Application.cpp:1634
ripple::ApplicationImp::m_amendmentTable
std::unique_ptr< AmendmentTable > m_amendmentTable
Definition: Application.cpp:198
ripple::Config::NETWORK
@ NETWORK
Definition: Config.h:122
ripple::ApplicationImp::overlay
Overlay & overlay() override
Definition: Application.cpp:810
ripple::megabytes
constexpr auto megabytes(T value) noexcept
Definition: ByteUtilities.h:34
ripple::ApplicationImp::pendingSaves
PendingSaves & pendingSaves() override
Definition: Application.cpp:786
ripple::ApplicationImp::m_collectorManager
std::unique_ptr< CollectorManager > m_collectorManager
Definition: Application.cpp:169
ripple::ApplicationImp::nodeFamily_
NodeFamily nodeFamily_
Definition: Application.cpp:179
ripple::HashRouter::getDefaultHoldTime
static std::chrono::seconds getDefaultHoldTime()
Definition: HashRouter.h:153
ripple::LedgerFill::full
@ full
Definition: LedgerToJson.h:47
std::unique_lock
STL class.
beast::io_latency_probe::sample
void sample(Handler &&handler)
Initiate continuous i/o latency sampling.
Definition: io_latency_probe.h:119
ripple::ApplicationImp::m_txMaster
TransactionMaster m_txMaster
Definition: Application.cpp:159
ripple::NodeStore::DatabaseShard
A collection of historical shards.
Definition: DatabaseShard.h:37
ripple::LoadFeeTrack
Manages the current fee schedule.
Definition: LoadFeeTrack.h:43
ripple::set
bool set(T &target, std::string const &name, Section const &section)
Set a value from a configuration Section If the named value is not found or doesn't parse as a T,...
Definition: BasicConfig.h:276
std::array
STL class.
ripple::CachedSLEs::expire
void expire()
Discard expired entries.
Definition: CachedSLEs.cpp:26
ripple::ApplicationImp::mut_
std::mutex mut_
Definition: Application.cpp:218
ripple::ValidatorList::listed
bool listed(PublicKey const &identity) const
Returns true if public key is included on any lists.
Definition: ValidatorList.cpp:556
ripple::RPC::ApiMaximumSupportedVersion
constexpr unsigned int ApiMaximumSupportedVersion
Definition: RPCHelpers.h:214
ripple::ApplicationImp::validatorSites
ValidatorSite & validatorSites() override
Definition: Application.cpp:750
ripple::ApplicationImp::nodeIdentity
std::pair< PublicKey, SecretKey > const & nodeIdentity() override
Definition: Application.cpp:533
beast::Journal::error
Stream error() const
Definition: Journal.h:333
beast::Journal::info
Stream info() const
Definition: Journal.h:321
ripple::ApplicationImp::io_latency_sampler::m_event
beast::insight::Event m_event
Definition: Application.cpp:88
std::chrono::time_point
beast::insight::Event
A metric for reporting event timing.
Definition: Event.h:42
ripple::ApplicationImp::config_
std::unique_ptr< Config > config_
Definition: Application.cpp:150
ripple::BuildInfo::getVersionString
std::string const & getVersionString()
Server version.
Definition: BuildInfo.cpp:61
ripple::make_AmendmentTable
std::unique_ptr< AmendmentTable > make_AmendmentTable(Application &app, std::chrono::seconds majorityTime, Section const &supported, Section const &enabled, Section const &vetoed, beast::Journal journal)
Definition: AmendmentTable.cpp:813
ripple::OrderBookDB::setup
void setup(std::shared_ptr< ReadView const > const &ledger)
Definition: OrderBookDB.cpp:46
beast::basic_logstream
Definition: Journal.h:428
ripple::ApplicationImp::getLastFullLedger
std::shared_ptr< Ledger > getLastFullLedger()
Definition: Application.cpp:1746
ripple::TimeKeeper::closeTime
virtual time_point closeTime() const =0
Returns the close time, in network time.
ripple::Family
Definition: Family.h:32
ripple::ValidatorKeys::configInvalid
bool configInvalid() const
Definition: ValidatorKeys.h:47
ripple::ClosureCounter
Definition: ClosureCounter.h:40
ripple::SizedItem::lgrDBCache
@ lgrDBCache
ripple::ApplicationImp::isTimeToStop
bool isTimeToStop
Definition: Application.cpp:219
ripple::ApplicationImp::m_io_latency_sampler
io_latency_sampler m_io_latency_sampler
Definition: Application.cpp:225
beast::Journal
A generic endpoint for log messages.
Definition: Journal.h:58
ripple::SizedItem::burstSize
@ burstSize
std::uint32_t
std::condition_variable::wait
T wait(T... args)
ripple::ApplicationImp::isShutdown
bool isShutdown() override
Definition: Application.cpp:1680
ripple::ApplicationImp::gotTXSet
void gotTXSet(std::shared_ptr< SHAMap > const &set, bool fromAcquire)
Definition: Application.cpp:587
std::atomic< std::chrono::milliseconds >
ripple::ApplicationImp::startGenesisLedger
void startGenesisLedger()
Definition: Application.cpp:1726
ripple::ApplicationImp::m_signals
boost::asio::signal_set m_signals
Definition: Application.cpp:215
ripple::STParsedJSONObject::object
boost::optional< STObject > object
The STObject if the parse was successful.
Definition: STParsedJSON.h:50
ripple::TimeKeeper
Manages various times used by the server.
Definition: TimeKeeper.h:32
ripple::ClosureCounter::wrap
boost::optional< Wrapper< Closure > > wrap(Closure &&closure)
Wrap the passed closure with a reference counter.
Definition: ClosureCounter.h:178
ripple::SizedItem::txnDBCache
@ txnDBCache
ripple::ApplicationImp::timeKeeper
TimeKeeper & timeKeeper() override
Definition: Application.cpp:521
beast::io_latency_probe< std::chrono::steady_clock >
ripple::RPC::ShardArchiveHandler::makeShardArchiveHandler
static std::unique_ptr< ShardArchiveHandler > makeShardArchiveHandler(Application &app, Stoppable &parent)
Definition: ShardArchiveHandler.cpp:48
ripple::OrderBookDB
Definition: OrderBookDB.h:31
ripple::ApplicationImp::io_latency_sampler::operator()
void operator()(Duration const &elapsed)
Definition: Application.cpp:114
ripple::NodeStore::Database::sweep
virtual void sweep()=0
Remove expired entries from the positive and negative caches.
ripple::InboundLedgers
Manages the lifetime of inbound ledgers.
Definition: InboundLedgers.h:34
ripple::OpenLedger
Represents the open ledger.
Definition: OpenLedger.h:49
ripple::Validations::flush
void flush()
Flush all current validations.
Definition: Validations.h:1057
ripple::JobQueue
A pool of threads to perform work.
Definition: JobQueue.h:55
ripple::Application::Application
Application()
Definition: Application.cpp:2188
ripple::ApplicationImp::setMaxDisallowedLedger
void setMaxDisallowedLedger()
Definition: Application.cpp:2172
ripple::RPC::ShardArchiveHandler::tryMakeRecoveryHandler
static std::unique_ptr< ShardArchiveHandler > tryMakeRecoveryHandler(Application &app, Stoppable &parent)
Definition: ShardArchiveHandler.cpp:56
ripple::Resource::Manager
Tracks load and resource consumption.
Definition: ResourceManager.h:36
ripple::ApplicationImp::shardFamily_
std::unique_ptr< ShardFamily > shardFamily_
Definition: Application.cpp:181
ripple::ApplicationImp::io_latency_sampler::lastSample_
std::atomic< std::chrono::milliseconds > lastSample_
Definition: Application.cpp:91
ripple::detail::supportedAmendments
std::vector< std::string > const & supportedAmendments()
Amendments that this server supports, but doesn't enable by default.
Definition: Feature.cpp:81
ripple::ApplicationImp::setSweepTimer
void setSweepTimer()
Definition: Application.cpp:1084
ripple::ApplicationImp::overlay_
std::unique_ptr< Overlay > overlay_
Definition: Application.cpp:212
ripple::BuildInfo::getFullVersionString
std::string const & getFullVersionString()
Full server version string.
Definition: BuildInfo.cpp:74
ripple::ApplicationImp::openLedger
OpenLedger & openLedger() override
Definition: Application.cpp:798
ripple::ApplicationImp::pendingSaves_
PendingSaves pendingSaves_
Definition: Application.cpp:163
ripple::NodeStoreScheduler::setJobQueue
void setJobQueue(JobQueue &jobQueue)
Definition: NodeStoreScheduler.cpp:31
ripple::ApplicationImp::m_resolver
std::unique_ptr< ResolverAsio > m_resolver
Definition: Application.cpp:223
ripple::ApplicationImp::getTxQ
TxQ & getTxQ() override
Definition: Application.cpp:817
ripple::PeerReservationTable
Definition: PeerReservationTable.h:79
ripple::ManifestCache
Remembers manifests with the highest sequence number.
Definition: Manifest.h:209
ripple::setup_DatabaseCon
DatabaseCon::Setup setup_DatabaseCon(Config const &c, boost::optional< beast::Journal > j=boost::none)
Definition: DatabaseCon.cpp:106
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
ripple::Config::FRESH
@ FRESH
Definition: Config.h:122
ripple::Resource::make_Manager
std::unique_ptr< Manager > make_Manager(beast::insight::Collector::ptr const &collector, beast::Journal journal)
Definition: ResourceManager.cpp:175
ripple::ApplicationImp::getTempNodeCache
NodeCache & getTempNodeCache() override
Definition: Application.cpp:606
ripple::ApplicationImp::io_latency_sampler::get
std::chrono::milliseconds get() const
Definition: Application.cpp:131
beast::io_latency_probe::cancel
void cancel()
Cancel all pending i/o.
Definition: io_latency_probe.h:84
Json::Value::removeMember
Value removeMember(const char *key)
Remove and return the named member.
Definition: json_value.cpp:907
ripple::ApplicationImp::grpcServer_
std::unique_ptr< GRPCServer > grpcServer_
Definition: Application.cpp:227
std::endl
T endl(T... args)
ripple::OpenView::rawTxInsert
void rawTxInsert(key_type const &key, std::shared_ptr< Serializer const > const &txn, std::shared_ptr< Serializer const > const &metaData) override
Add a transaction to the tx map.
Definition: OpenView.cpp:261
ripple::ApplicationImp::getJobQueue
JobQueue & getJobQueue() override
Definition: Application.cpp:527
ripple::ApplicationImp::fdRequired
int fdRequired() const override
Definition: Application.cpp:1699
ripple::base_uint::parseHex
bool parseHex(std::string_view sv)
Parse a hex string into a base_uint.
Definition: base_uint.h:384
ripple::ApplicationImp::doSweep
void doSweep()
Definition: Application.cpp:1144
ripple::make_SHAMapStore
std::unique_ptr< SHAMapStore > make_SHAMapStore(Application &app, Stoppable &parent, NodeStore::Scheduler &scheduler, beast::Journal journal)
Definition: SHAMapStoreImp.cpp:778
beast::PropertyStream::Source::Source
Source(std::string const &name)
Definition: beast_PropertyStream.cpp:176
ripple::Overlay
Manages the set of connected peers.
Definition: Overlay.h:52
ripple::ApplicationImp::io_latency_sampler
Definition: Application.cpp:85
ripple::ApplicationImp::getOrderBookDB
OrderBookDB & getOrderBookDB() override
Definition: Application.cpp:702
ripple::ApplicationImp
Definition: Application.cpp:82
ripple::ApplicationImp::getLoadManager
LoadManager & getLoadManager() override
Definition: Application.cpp:690
beast::lexicalCastChecked
bool lexicalCastChecked(Out &out, In in)
Intelligently convert from one type to another.
Definition: LexicalCast.h:266
ripple::ApplicationImp::io_latency_sampler::m_probe
beast::io_latency_probe< std::chrono::steady_clock > m_probe
Definition: Application.cpp:90
ripple::ApplicationImp::accountIDCache_
AccountIDCache accountIDCache_
Definition: Application.cpp:164
std
STL namespace.
ripple::ApplicationImp::m_nodeStoreScheduler
NodeStoreScheduler m_nodeStoreScheduler
Definition: Application.cpp:161
ripple::ApplicationImp::m_loadManager
std::unique_ptr< LoadManager > m_loadManager
Definition: Application.cpp:202
ripple::create_genesis
const create_genesis_t create_genesis
Definition: Ledger.cpp:57
ripple::Config::REPLAY
@ REPLAY
Definition: Config.h:122
ripple::ApplicationImp::getInboundTransactions
InboundTransactions & getInboundTransactions() override
Definition: Application.cpp:575
Json::Reader::parse
bool parse(std::string const &document, Value &root)
Read a Value from a JSON document.
Definition: json_reader.cpp:73
condition_variable
ripple::Resource::Consumer
An endpoint that consumes resources.
Definition: Consumer.h:33
ripple::Resource::Charge
A consumption charge.
Definition: Charge.h:30
ripple::SizedItem::sweepInterval
@ sweepInterval
ripple::DatabaseCon
Definition: DatabaseCon.h:81
ripple::ApplicationImp::mFeeTrack
std::unique_ptr< LoadFeeTrack > mFeeTrack
Definition: Application.cpp:199
ripple::ApplicationImp::getFeeTrack
LoadFeeTrack & getFeeTrack() override
Definition: Application.cpp:726
ripple::addJson
void addJson(Json::Value &json, LedgerFill const &fill)
Given a Ledger and options, fill a Json::Object or Json::Value with a description of the ledger.
Definition: LedgerToJson.cpp:270
ripple::TxDBPragma
constexpr std::array TxDBPragma
Definition: DBInit.h:76
ripple::RPC::ShardArchiveHandler
Handles the download and import of one or more shard archives.
Definition: ShardArchiveHandler.h:39
beast::severities::kDebug
@ kDebug
Definition: Journal.h:35
ripple::ApplicationImp::io_latency_sampler::m_journal
beast::Journal m_journal
Definition: Application.cpp:89
ripple::ApplicationImp::config
Config & config() override
Definition: Application.cpp:495
ripple::ApplicationImp::validators_
std::unique_ptr< ValidatorList > validators_
Definition: Application.cpp:195
std::string::empty
T empty(T... args)
ripple::ApplicationImp::m_journal
beast::Journal m_journal
Definition: Application.cpp:154
ripple::SizedItem::ledgerSize
@ ledgerSize
ripple::Validations< RCLValidationsAdaptor >
ripple::ClosureCounter::join
void join(char const *name, std::chrono::milliseconds wait, beast::Journal j)
Returns once all counted in-flight closures are destroyed.
Definition: ClosureCounter.h:152
beast::io_latency_probe::cancel_async
void cancel_async()
Definition: io_latency_probe.h:91
mutex
ripple::ApplicationImp::io_latency_sampler::io_latency_sampler
io_latency_sampler(beast::insight::Event ev, beast::Journal journal, std::chrono::milliseconds interval, boost::asio::io_service &ios)
Definition: Application.cpp:94
beast::Journal::debug
Stream debug() const
Definition: Journal.h:315
ripple::ApplicationImp::serverHandler_
std::unique_ptr< ServerHandler > serverHandler_
Definition: Application.cpp:197
std::size_t
ripple::ApplicationImp::validatorManifests_
std::unique_ptr< ManifestCache > validatorManifests_
Definition: Application.cpp:193
BasicApp
Definition: BasicApp.h:29
ripple::ApplicationImp::m_pathRequests
std::unique_ptr< PathRequests > m_pathRequests
Definition: Application.cpp:185
ripple::ApplicationImp::m_networkOPs
std::unique_ptr< NetworkOPs > m_networkOPs
Definition: Application.cpp:190
ripple::ApplicationImp::getNodeFamily
Family & getNodeFamily() override
Definition: Application.cpp:507
ripple::PathRequests
Definition: PathRequests.h:33
ripple::ApplicationImp::txQ_
std::unique_ptr< TxQ > txQ_
Definition: Application.cpp:203
ripple::ApplicationImp::cachedSLEs_
CachedSLEs cachedSLEs_
Definition: Application.cpp:170
ripple::TxDBInit
constexpr std::array< char const *, 8 > TxDBInit
Definition: DBInit.h:84
std::max
T max(T... args)
ripple::NodeStore::Manager::instance
static Manager & instance()
Returns the instance of the manager singleton.
Definition: ManagerImp.cpp:119
ripple::WalletDBInit
constexpr std::array< char const *, 6 > WalletDBInit
Definition: DBInit.h:141
ripple::ApplicationImp::m_masterMutex
Application::MutexType m_masterMutex
Definition: Application.cpp:156
BasicApp::get_io_service
boost::asio::io_service & get_io_service()
Definition: BasicApp.h:41
ripple::ApplicationImp::initNodeStore
bool initNodeStore()
Definition: Application.cpp:933
ripple::ApplicationImp::maxDisallowedLedger_
std::atomic< LedgerIndex > maxDisallowedLedger_
Definition: Application.cpp:1239
ripple::ApplicationImp::publisherManifests_
std::unique_ptr< ManifestCache > publisherManifests_
Definition: Application.cpp:194
ripple::AmendmentTable
The amendment table stores the list of enabled and potential amendments.
Definition: AmendmentTable.h:34
ripple::ApplicationImp::getMasterTransaction
TransactionMaster & getMasterTransaction() override
Definition: Application.cpp:594
ripple::make_InboundTransactions
std::unique_ptr< InboundTransactions > make_InboundTransactions(Application &app, Stoppable &parent, beast::insight::Collector::ptr const &collector, std::function< void(std::shared_ptr< SHAMap > const &, bool)> gotSet)
Definition: InboundTransactions.cpp:270
std::unique_ptr
STL class.
ripple::NetClock::time_point
std::chrono::time_point< NetClock > time_point
Definition: chrono.h:54
ripple::Config::LOAD_FILE
@ LOAD_FILE
Definition: Config.h:122
ripple::ApplicationImp::io_latency_sampler::start
void start()
Definition: Application.cpp:107
std::condition_variable::notify_all
T notify_all(T... args)
Json::Value::isObjectOrNull
bool isObjectOrNull() const
Definition: json_value.cpp:1033
ripple::ApplicationImp::getValidations
RCLValidations & getValidations() override
Definition: Application.cpp:738
ripple::ApplicationImp::setEntropyTimer
void setEntropyTimer()
Definition: Application.cpp:1115
ripple::make_Application
std::unique_ptr< Application > make_Application(std::unique_ptr< Config > config, std::unique_ptr< Logs > logs, std::unique_ptr< TimeKeeper > timeKeeper)
Definition: Application.cpp:2195
ripple::ValidatorKeys::manifest
std::string manifest
Definition: ValidatorKeys.h:42
std::ref
T ref(T... args)
ripple::make_ServerHandler
std::unique_ptr< ServerHandler > make_ServerHandler(Application &app, Stoppable &parent, boost::asio::io_service &io_service, JobQueue &jobQueue, NetworkOPs &networkOPs, Resource::Manager &resourceManager, CollectorManager &cm)
Definition: ServerHandlerImp.cpp:1155
std::exception::what
T what(T... args)
Json::Value
Represents a JSON value.
Definition: json_value.h:145
beast::insight::Event::notify
void notify(std::chrono::duration< Rep, Period > const &value) const
Push an event notification.
Definition: Event.h:66
ripple::ApplicationImp::logs_
std::unique_ptr< Logs > logs_
Definition: Application.cpp:151
ripple::InboundTransactions
Manages the acquisition and lifetime of transaction sets.
Definition: InboundTransactions.h:36
ripple::ApplicationImp::onPrepare
void onPrepare() override
Override called during preparation.
Definition: Application.cpp:981
Json::Value::asString
std::string asString() const
Returns the unquoted string value.
Definition: json_value.cpp:469
std::ifstream
STL class.
ripple::LgrDBName
constexpr auto LgrDBName
Definition: DBInit.h:43
ripple::getRegisteredFeature
boost::optional< uint256 > getRegisteredFeature(std::string const &name)
Definition: Feature.cpp:143
beast
Definition: base_uint.h:585
std::chrono