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  onStart() override
982  {
983  JLOG(m_journal.info()) << "Application starting. Version is "
985 
986  using namespace std::chrono_literals;
987  if (startTimers_)
988  {
989  setSweepTimer();
990  setEntropyTimer();
991  }
992 
994 
995  m_resolver->start();
996  }
997 
998  // Called to indicate shutdown.
999  void
1000  onStop() override
1001  {
1002  JLOG(m_journal.debug()) << "Application stopping";
1003 
1005 
1006  // VFALCO Enormous hack, we have to force the probe to cancel
1007  // before we stop the io_service queue or else it never
1008  // unblocks in its destructor. The fix is to make all
1009  // io_objects gracefully handle exit so that we can
1010  // naturally return from io_service::run() instead of
1011  // forcing a call to io_service::stop()
1013 
1014  m_resolver->stop_async();
1015 
1016  // NIKB This is a hack - we need to wait for the resolver to
1017  // stop. before we stop the io_server_queue or weird
1018  // things will happen.
1019  m_resolver->stop();
1020 
1021  {
1022  boost::system::error_code ec;
1023  sweepTimer_.cancel(ec);
1024  if (ec)
1025  {
1026  JLOG(m_journal.error())
1027  << "Application: sweepTimer cancel error: " << ec.message();
1028  }
1029 
1030  ec.clear();
1031  entropyTimer_.cancel(ec);
1032  if (ec)
1033  {
1034  JLOG(m_journal.error())
1035  << "Application: entropyTimer cancel error: "
1036  << ec.message();
1037  }
1038  }
1039  // Make sure that any waitHandlers pending in our timers are done
1040  // before we declare ourselves stopped.
1041  using namespace std::chrono_literals;
1042  waitHandlerCounter_.join("Application", 1s, m_journal);
1043 
1044  mValidations.flush();
1045 
1046  validatorSites_->stop();
1047 
1048  // TODO Store manifests in manifests.sqlite instead of wallet.db
1049  validatorManifests_->save(
1050  getWalletDB(),
1051  "ValidatorManifests",
1052  [this](PublicKey const& pubKey) {
1053  return validators().listed(pubKey);
1054  });
1055 
1056  publisherManifests_->save(
1057  getWalletDB(),
1058  "PublisherManifests",
1059  [this](PublicKey const& pubKey) {
1060  return validators().trustedPublisher(pubKey);
1061  });
1062 
1063  stopped();
1064  }
1065 
1066  //--------------------------------------------------------------------------
1067  //
1068  // PropertyStream
1069  //
1070 
1071  void
1073  {
1074  }
1075 
1076  //--------------------------------------------------------------------------
1077 
1078  void
1080  {
1081  // Only start the timer if waitHandlerCounter_ is not yet joined.
1082  if (auto optionalCountedHandler = waitHandlerCounter_.wrap(
1083  [this](boost::system::error_code const& e) {
1084  if ((e.value() == boost::system::errc::success) &&
1085  (!m_jobQueue->isStopped()))
1086  {
1087  m_jobQueue->addJob(
1088  jtSWEEP, "sweep", [this](Job&) { doSweep(); });
1089  }
1090  // Recover as best we can if an unexpected error occurs.
1091  if (e.value() != boost::system::errc::success &&
1092  e.value() != boost::asio::error::operation_aborted)
1093  {
1094  // Try again later and hope for the best.
1095  JLOG(m_journal.error())
1096  << "Sweep timer got error '" << e.message()
1097  << "'. Restarting timer.";
1098  setSweepTimer();
1099  }
1100  }))
1101  {
1102  using namespace std::chrono;
1103  sweepTimer_.expires_from_now(
1104  seconds{config_->getValueFor(SizedItem::sweepInterval)});
1105  sweepTimer_.async_wait(std::move(*optionalCountedHandler));
1106  }
1107  }
1108 
1109  void
1111  {
1112  // Only start the timer if waitHandlerCounter_ is not yet joined.
1113  if (auto optionalCountedHandler = waitHandlerCounter_.wrap(
1114  [this](boost::system::error_code const& e) {
1115  if (e.value() == boost::system::errc::success)
1116  {
1117  crypto_prng().mix_entropy();
1118  setEntropyTimer();
1119  }
1120  // Recover as best we can if an unexpected error occurs.
1121  if (e.value() != boost::system::errc::success &&
1122  e.value() != boost::asio::error::operation_aborted)
1123  {
1124  // Try again later and hope for the best.
1125  JLOG(m_journal.error())
1126  << "Entropy timer got error '" << e.message()
1127  << "'. Restarting timer.";
1128  setEntropyTimer();
1129  }
1130  }))
1131  {
1132  using namespace std::chrono_literals;
1133  entropyTimer_.expires_from_now(5min);
1134  entropyTimer_.async_wait(std::move(*optionalCountedHandler));
1135  }
1136  }
1137 
1138  void
1140  {
1141  if (!config_->standalone())
1142  {
1143  boost::filesystem::space_info space =
1144  boost::filesystem::space(config_->legacy("database_path"));
1145 
1146  if (space.available < megabytes(512))
1147  {
1148  JLOG(m_journal.fatal())
1149  << "Remaining free disk space is less than 512MB";
1150  signalStop();
1151  }
1152 
1154  boost::filesystem::path dbPath = dbSetup.dataDir / TxDBName;
1155  boost::system::error_code ec;
1156  boost::optional<std::uint64_t> dbSize =
1157  boost::filesystem::file_size(dbPath, ec);
1158  if (ec)
1159  {
1160  JLOG(m_journal.error())
1161  << "Error checking transaction db file size: "
1162  << ec.message();
1163  dbSize.reset();
1164  }
1165 
1166  auto db = mTxnDB->checkoutDb();
1167  static auto const pageSize = [&] {
1168  std::uint32_t ps;
1169  *db << "PRAGMA page_size;", soci::into(ps);
1170  return ps;
1171  }();
1172  static auto const maxPages = [&] {
1173  std::uint32_t mp;
1174  *db << "PRAGMA max_page_count;", soci::into(mp);
1175  return mp;
1176  }();
1177  std::uint32_t pageCount;
1178  *db << "PRAGMA page_count;", soci::into(pageCount);
1179  std::uint32_t freePages = maxPages - pageCount;
1180  std::uint64_t freeSpace =
1181  safe_cast<std::uint64_t>(freePages) * pageSize;
1182  JLOG(m_journal.info())
1183  << "Transaction DB pathname: " << dbPath.string()
1184  << "; file size: " << dbSize.value_or(-1) << " bytes"
1185  << "; SQLite page size: " << pageSize << " bytes"
1186  << "; Free pages: " << freePages
1187  << "; Free space: " << freeSpace << " bytes; "
1188  << "Note that this does not take into account available disk "
1189  "space.";
1190 
1191  if (freeSpace < megabytes(512))
1192  {
1193  JLOG(m_journal.fatal())
1194  << "Free SQLite space for transaction db is less than "
1195  "512MB. To fix this, rippled must be executed with the "
1196  "\"--vacuum\" parameter before restarting. "
1197  "Note that this activity can take multiple days, "
1198  "depending on database size.";
1199  signalStop();
1200  }
1201  }
1202 
1203  // VFALCO NOTE Does the order of calls matter?
1204  // VFALCO TODO fix the dependency inversion using an observer,
1205  // have listeners register for "onSweep ()" notification.
1206 
1207  nodeFamily_.sweep();
1208  if (shardFamily_)
1209  shardFamily_->sweep();
1211  getNodeStore().sweep();
1212  if (shardStore_)
1213  shardStore_->sweep();
1214  getLedgerMaster().sweep();
1215  getTempNodeCache().sweep();
1216  getValidations().expire();
1218  m_acceptedLedgerCache.sweep();
1219  cachedSLEs_.expire();
1220 
1221  // Set timer to do another sweep later.
1222  setSweepTimer();
1223  }
1224 
1225  LedgerIndex
1227  {
1228  return maxDisallowedLedger_;
1229  }
1230 
1231 private:
1232  // For a newly-started validator, this is the greatest persisted ledger
1233  // and new validations must be greater than this.
1235 
1236  bool
1237  nodeToShards();
1238 
1239  void
1241 
1244 
1246  loadLedgerFromFile(std::string const& ledgerID);
1247 
1248  bool
1249  loadOldLedger(std::string const& ledgerID, bool replay, bool isFilename);
1250 
1251  void
1253 };
1254 
1255 //------------------------------------------------------------------------------
1256 
1257 // TODO Break this up into smaller, more digestible initialization segments.
1258 bool
1260 {
1261  // We want to intercept CTRL-C and the standard termination signal SIGTERM
1262  // and terminate the process. This handler will NEVER be invoked twice.
1263  //
1264  // Note that async_wait is "one-shot": for each call, the handler will be
1265  // invoked exactly once, either when one of the registered signals in the
1266  // signal set occurs or the signal set is cancelled. Subsequent signals are
1267  // effectively ignored (technically, they are queued up, waiting for a call
1268  // to async_wait).
1269  m_signals.add(SIGINT);
1270  m_signals.add(SIGTERM);
1271  m_signals.async_wait(
1272  [this](boost::system::error_code const& ec, int signum) {
1273  // Indicates the signal handler has been aborted; do nothing
1274  if (ec == boost::asio::error::operation_aborted)
1275  return;
1276 
1277  JLOG(m_journal.info()) << "Received signal " << signum;
1278 
1279  if (signum == SIGTERM || signum == SIGINT)
1280  signalStop();
1281  });
1282 
1283  assert(mTxnDB == nullptr);
1284 
1285  auto debug_log = config_->getDebugLogFile();
1286 
1287  if (!debug_log.empty())
1288  {
1289  // Let debug messages go to the file but only WARNING or higher to
1290  // regular output (unless verbose)
1291 
1292  if (!logs_->open(debug_log))
1293  std::cerr << "Can't open log file " << debug_log << '\n';
1294 
1295  using namespace beast::severities;
1296  if (logs_->threshold() > kDebug)
1297  logs_->threshold(kDebug);
1298  }
1299  JLOG(m_journal.info()) << "process starting: "
1301 
1302  if (numberOfThreads(*config_) < 2)
1303  {
1304  JLOG(m_journal.warn()) << "Limited to a single I/O service thread by "
1305  "system configuration.";
1306  }
1307 
1308  // Optionally turn off logging to console.
1309  logs_->silent(config_->silent());
1310 
1311  m_jobQueue->setThreadCount(config_->WORKERS, config_->standalone());
1312 
1313  if (!config_->standalone())
1314  timeKeeper_->run(config_->SNTP_SERVERS);
1315 
1316  if (!initSQLiteDBs() || !initNodeStore())
1317  return false;
1318 
1319  if (shardStore_)
1320  {
1321  shardFamily_ =
1322  std::make_unique<ShardFamily>(*this, *m_collectorManager);
1323 
1324  if (!shardStore_->init())
1325  return false;
1326  }
1327 
1328  if (!peerReservations_->load(getWalletDB()))
1329  {
1330  JLOG(m_journal.fatal()) << "Cannot find peer reservations!";
1331  return false;
1332  }
1333 
1336 
1337  // Configure the amendments the server supports
1338  {
1339  auto const& sa = detail::supportedAmendments();
1340  std::vector<std::string> saHashes;
1341  saHashes.reserve(sa.size());
1342  for (auto const& name : sa)
1343  {
1344  auto const f = getRegisteredFeature(name);
1345  BOOST_ASSERT(f);
1346  if (f)
1347  saHashes.push_back(to_string(*f) + " " + name);
1348  }
1349  Section supportedAmendments("Supported Amendments");
1350  supportedAmendments.append(saHashes);
1351 
1352  Section enabledAmendments = config_->section(SECTION_AMENDMENTS);
1353 
1355  *this,
1356  config().AMENDMENT_MAJORITY_TIME,
1357  supportedAmendments,
1358  enabledAmendments,
1359  config_->section(SECTION_VETO_AMENDMENTS),
1360  logs_->journal("Amendments"));
1361  }
1362 
1364 
1365  auto const startUp = config_->START_UP;
1366  if (startUp == Config::FRESH)
1367  {
1368  JLOG(m_journal.info()) << "Starting new Ledger";
1369 
1371  }
1372  else if (
1373  startUp == Config::LOAD || startUp == Config::LOAD_FILE ||
1374  startUp == Config::REPLAY)
1375  {
1376  JLOG(m_journal.info()) << "Loading specified Ledger";
1377 
1378  if (!loadOldLedger(
1379  config_->START_LEDGER,
1380  startUp == Config::REPLAY,
1381  startUp == Config::LOAD_FILE))
1382  {
1383  JLOG(m_journal.error())
1384  << "The specified ledger could not be loaded.";
1385  return false;
1386  }
1387  }
1388  else if (startUp == Config::NETWORK)
1389  {
1390  // This should probably become the default once we have a stable
1391  // network.
1392  if (!config_->standalone())
1393  m_networkOPs->setNeedNetworkLedger();
1394 
1396  }
1397  else
1398  {
1400  }
1401 
1402  m_orderBookDB.setup(getLedgerMaster().getCurrentLedger());
1403 
1405 
1406  if (!cluster_->load(config().section(SECTION_CLUSTER_NODES)))
1407  {
1408  JLOG(m_journal.fatal()) << "Invalid entry in cluster configuration.";
1409  return false;
1410  }
1411 
1412  {
1414  return false;
1415 
1416  if (!validatorManifests_->load(
1417  getWalletDB(),
1418  "ValidatorManifests",
1420  config().section(SECTION_VALIDATOR_KEY_REVOCATION).values()))
1421  {
1422  JLOG(m_journal.fatal()) << "Invalid configured validator manifest.";
1423  return false;
1424  }
1425 
1426  publisherManifests_->load(getWalletDB(), "PublisherManifests");
1427 
1428  // Setup trusted validators
1429  if (!validators_->load(
1431  config().section(SECTION_VALIDATORS).values(),
1432  config().section(SECTION_VALIDATOR_LIST_KEYS).values()))
1433  {
1434  JLOG(m_journal.fatal())
1435  << "Invalid entry in validator configuration.";
1436  return false;
1437  }
1438  }
1439 
1440  if (!validatorSites_->load(
1441  config().section(SECTION_VALIDATOR_LIST_SITES).values()))
1442  {
1443  JLOG(m_journal.fatal())
1444  << "Invalid entry in [" << SECTION_VALIDATOR_LIST_SITES << "]";
1445  return false;
1446  }
1447 
1448  //----------------------------------------------------------------------
1449  //
1450  // Server
1451  //
1452  //----------------------------------------------------------------------
1453 
1454  // VFALCO NOTE Unfortunately, in stand-alone mode some code still
1455  // foolishly calls overlay(). When this is fixed we can
1456  // move the instantiation inside a conditional:
1457  //
1458  // if (!config_.standalone())
1460  *this,
1462  *m_jobQueue,
1463  *serverHandler_,
1465  *m_resolver,
1466  get_io_service(),
1467  *config_,
1468  m_collectorManager->collector());
1469  add(*overlay_); // add to PropertyStream
1470 
1471  if (!config_->standalone())
1472  {
1473  // NodeStore import into the ShardStore requires the SQLite database
1474  if (config_->nodeToShard && !nodeToShards())
1475  return false;
1476  }
1477 
1478  // start first consensus round
1479  if (!m_networkOPs->beginConsensus(
1480  m_ledgerMaster->getClosedLedger()->info().hash))
1481  {
1482  JLOG(m_journal.fatal()) << "Unable to start consensus";
1483  return false;
1484  }
1485 
1486  {
1487  try
1488  {
1489  auto setup = setup_ServerHandler(
1491  setup.makeContexts();
1492  serverHandler_->setup(setup, m_journal);
1493  }
1494  catch (std::exception const& e)
1495  {
1496  if (auto stream = m_journal.fatal())
1497  {
1498  stream << "Unable to setup server handler";
1499  if (std::strlen(e.what()) > 0)
1500  stream << ": " << e.what();
1501  }
1502  return false;
1503  }
1504  }
1505 
1506  // Begin connecting to network.
1507  if (!config_->standalone())
1508  {
1509  // Should this message be here, conceptually? In theory this sort
1510  // of message, if displayed, should be displayed from PeerFinder.
1511  if (config_->PEER_PRIVATE && config_->IPS_FIXED.empty())
1512  {
1513  JLOG(m_journal.warn())
1514  << "No outbound peer connections will be made";
1515  }
1516 
1517  // VFALCO NOTE the state timer resets the deadlock detector.
1518  //
1519  m_networkOPs->setStateTimer();
1520  }
1521  else
1522  {
1523  JLOG(m_journal.warn()) << "Running in standalone mode";
1524 
1525  m_networkOPs->setStandAlone();
1526  }
1527 
1528  if (config_->canSign())
1529  {
1530  JLOG(m_journal.warn()) << "*** The server is configured to allow the "
1531  "'sign' and 'sign_for'";
1532  JLOG(m_journal.warn()) << "*** commands. These commands have security "
1533  "implications and have";
1534  JLOG(m_journal.warn()) << "*** been deprecated. They will be removed "
1535  "in a future release of";
1536  JLOG(m_journal.warn()) << "*** rippled.";
1537  JLOG(m_journal.warn()) << "*** If you do not use them to sign "
1538  "transactions please edit your";
1539  JLOG(m_journal.warn())
1540  << "*** configuration file and remove the [enable_signing] stanza.";
1541  JLOG(m_journal.warn()) << "*** If you do use them to sign transactions "
1542  "please migrate to a";
1543  JLOG(m_journal.warn())
1544  << "*** standalone signing solution as soon as possible.";
1545  }
1546 
1547  //
1548  // Execute start up rpc commands.
1549  //
1550  for (auto cmd : config_->section(SECTION_RPC_STARTUP).lines())
1551  {
1552  Json::Reader jrReader;
1553  Json::Value jvCommand;
1554 
1555  if (!jrReader.parse(cmd, jvCommand))
1556  {
1557  JLOG(m_journal.fatal()) << "Couldn't parse entry in ["
1558  << SECTION_RPC_STARTUP << "]: '" << cmd;
1559  }
1560 
1561  if (!config_->quiet())
1562  {
1563  JLOG(m_journal.fatal())
1564  << "Startup RPC: " << jvCommand << std::endl;
1565  }
1566 
1569  RPC::JsonContext context{
1570  {journal("RPCHandler"),
1571  *this,
1572  loadType,
1573  getOPs(),
1574  getLedgerMaster(),
1575  c,
1576  Role::ADMIN,
1577  {},
1578  {},
1580  jvCommand};
1581 
1582  Json::Value jvResult;
1583  RPC::doCommand(context, jvResult);
1584 
1585  if (!config_->quiet())
1586  {
1587  JLOG(m_journal.fatal()) << "Result: " << jvResult << std::endl;
1588  }
1589  }
1590 
1591  RPC::ShardArchiveHandler* shardArchiveHandler = nullptr;
1592  if (shardStore_)
1593  {
1594  try
1595  {
1596  // Create a ShardArchiveHandler if recovery
1597  // is needed (there's a state database left
1598  // over from a previous run).
1599  auto handler = getShardArchiveHandler(true);
1600 
1601  // Recovery is needed.
1602  if (handler)
1603  shardArchiveHandler = handler;
1604  }
1605  catch (std::exception const& e)
1606  {
1607  JLOG(m_journal.fatal())
1608  << "Exception when starting ShardArchiveHandler from "
1609  "state database: "
1610  << e.what();
1611 
1612  return false;
1613  }
1614  }
1615 
1616  if (shardArchiveHandler && !shardArchiveHandler->start())
1617  {
1618  JLOG(m_journal.fatal()) << "Failed to start ShardArchiveHandler.";
1619 
1620  return false;
1621  }
1622 
1623  validatorSites_->start();
1624 
1625  return true;
1626 }
1627 
1628 void
1629 ApplicationImp::doStart(bool withTimers)
1630 {
1631  startTimers_ = withTimers;
1632  start();
1633 }
1634 
1635 void
1637 {
1638  if (!config_->standalone())
1639  {
1640  // VFALCO NOTE This seems unnecessary. If we properly refactor the load
1641  // manager then the deadlock detector can just always be
1642  // "armed"
1643  //
1645  }
1646 
1647  {
1649  cv_.wait(lk, [this] { return isTimeToStop; });
1650  }
1651 
1652  // Stop the server. When this returns, all
1653  // Stoppable objects should be stopped.
1654  JLOG(m_journal.info()) << "Received shutdown request";
1655  stop(m_journal);
1656  JLOG(m_journal.info()) << "Done.";
1657 }
1658 
1659 void
1661 {
1662  // Unblock the main thread (which is sitting in run()).
1663  // When we get C++20 this can use std::latch.
1664  std::lock_guard lk{mut_};
1665 
1666  if (!isTimeToStop)
1667  {
1668  isTimeToStop = true;
1669  cv_.notify_all();
1670  }
1671 }
1672 
1673 bool
1675 {
1676  // from Stoppable mixin
1677  return isStopped();
1678 }
1679 
1680 bool
1682 {
1683  return checkSigs_;
1684 }
1685 
1686 void
1688 {
1689  checkSigs_ = check;
1690 }
1691 
1692 int
1694 {
1695  // Standard handles, config file, misc I/O etc:
1696  int needed = 128;
1697 
1698  // 2x the configured peer limit for peer connections:
1699  needed += 2 * overlay_->limit();
1700 
1701  // the number of fds needed by the backend (internally
1702  // doubled if online delete is enabled).
1703  needed += std::max(5, m_shaMapStore->fdRequired());
1704 
1705  if (shardStore_)
1706  needed += shardStore_->fdRequired();
1707 
1708  // One fd per incoming connection a port can accept, or
1709  // if no limit is set, assume it'll handle 256 clients.
1710  for (auto const& p : serverHandler_->setup().ports)
1711  needed += std::max(256, p.limit);
1712 
1713  // The minimum number of file descriptors we need is 1024:
1714  return std::max(1024, needed);
1715 }
1716 
1717 //------------------------------------------------------------------------------
1718 
1719 void
1721 {
1722  std::vector<uint256> initialAmendments =
1723  (config_->START_UP == Config::FRESH) ? m_amendmentTable->getDesired()
1725 
1726  std::shared_ptr<Ledger> const genesis = std::make_shared<Ledger>(
1727  create_genesis, *config_, initialAmendments, nodeFamily_);
1728  m_ledgerMaster->storeLedger(genesis);
1729 
1730  auto const next =
1731  std::make_shared<Ledger>(*genesis, timeKeeper().closeTime());
1732  next->updateSkipList();
1733  next->setImmutable(*config_);
1734  openLedger_.emplace(next, cachedSLEs_, logs_->journal("OpenLedger"));
1735  m_ledgerMaster->storeLedger(next);
1736  m_ledgerMaster->switchLCL(next);
1737 }
1738 
1741 {
1742  auto j = journal("Ledger");
1743 
1744  try
1745  {
1746  auto const [ledger, seq, hash] =
1747  loadLedgerHelper("order by LedgerSeq desc limit 1", *this);
1748 
1749  if (!ledger)
1750  return ledger;
1751 
1752  ledger->setImmutable(*config_);
1753 
1754  if (getLedgerMaster().haveLedger(seq))
1755  ledger->setValidated();
1756 
1757  if (ledger->info().hash == hash)
1758  {
1759  JLOG(j.trace()) << "Loaded ledger: " << hash;
1760  return ledger;
1761  }
1762 
1763  if (auto stream = j.error())
1764  {
1765  stream << "Failed on ledger";
1766  Json::Value p;
1767  addJson(p, {*ledger, LedgerFill::full});
1768  stream << p;
1769  }
1770 
1771  return {};
1772  }
1773  catch (SHAMapMissingNode const& mn)
1774  {
1775  JLOG(j.warn()) << "Ledger in database: " << mn.what();
1776  return {};
1777  }
1778 }
1779 
1782 {
1783  try
1784  {
1785  std::ifstream ledgerFile(name, std::ios::in);
1786 
1787  if (!ledgerFile)
1788  {
1789  JLOG(m_journal.fatal()) << "Unable to open file '" << name << "'";
1790  return nullptr;
1791  }
1792 
1793  Json::Reader reader;
1794  Json::Value jLedger;
1795 
1796  if (!reader.parse(ledgerFile, jLedger))
1797  {
1798  JLOG(m_journal.fatal()) << "Unable to parse ledger JSON";
1799  return nullptr;
1800  }
1801 
1802  std::reference_wrapper<Json::Value> ledger(jLedger);
1803 
1804  // accept a wrapped ledger
1805  if (ledger.get().isMember("result"))
1806  ledger = ledger.get()["result"];
1807 
1808  if (ledger.get().isMember("ledger"))
1809  ledger = ledger.get()["ledger"];
1810 
1811  std::uint32_t seq = 1;
1812  auto closeTime = timeKeeper().closeTime();
1813  using namespace std::chrono_literals;
1814  auto closeTimeResolution = 30s;
1815  bool closeTimeEstimated = false;
1816  std::uint64_t totalDrops = 0;
1817 
1818  if (ledger.get().isMember("accountState"))
1819  {
1820  if (ledger.get().isMember(jss::ledger_index))
1821  {
1822  seq = ledger.get()[jss::ledger_index].asUInt();
1823  }
1824 
1825  if (ledger.get().isMember("close_time"))
1826  {
1827  using tp = NetClock::time_point;
1828  using d = tp::duration;
1829  closeTime = tp{d{ledger.get()["close_time"].asUInt()}};
1830  }
1831  if (ledger.get().isMember("close_time_resolution"))
1832  {
1833  using namespace std::chrono;
1834  closeTimeResolution =
1835  seconds{ledger.get()["close_time_resolution"].asUInt()};
1836  }
1837  if (ledger.get().isMember("close_time_estimated"))
1838  {
1839  closeTimeEstimated =
1840  ledger.get()["close_time_estimated"].asBool();
1841  }
1842  if (ledger.get().isMember("total_coins"))
1843  {
1844  totalDrops = beast::lexicalCastThrow<std::uint64_t>(
1845  ledger.get()["total_coins"].asString());
1846  }
1847 
1848  ledger = ledger.get()["accountState"];
1849  }
1850 
1851  if (!ledger.get().isArrayOrNull())
1852  {
1853  JLOG(m_journal.fatal()) << "State nodes must be an array";
1854  return nullptr;
1855  }
1856 
1857  auto loadLedger =
1858  std::make_shared<Ledger>(seq, closeTime, *config_, nodeFamily_);
1859  loadLedger->setTotalDrops(totalDrops);
1860 
1861  for (Json::UInt index = 0; index < ledger.get().size(); ++index)
1862  {
1863  Json::Value& entry = ledger.get()[index];
1864 
1865  if (!entry.isObjectOrNull())
1866  {
1867  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1868  return nullptr;
1869  }
1870 
1871  uint256 uIndex;
1872 
1873  if (!uIndex.parseHex(entry[jss::index].asString()))
1874  {
1875  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1876  return nullptr;
1877  }
1878 
1879  entry.removeMember(jss::index);
1880 
1881  STParsedJSONObject stp("sle", ledger.get()[index]);
1882 
1883  if (!stp.object || uIndex.isZero())
1884  {
1885  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1886  return nullptr;
1887  }
1888 
1889  // VFALCO TODO This is the only place that
1890  // constructor is used, try to remove it
1891  STLedgerEntry sle(*stp.object, uIndex);
1892 
1893  if (!loadLedger->addSLE(sle))
1894  {
1895  JLOG(m_journal.fatal())
1896  << "Couldn't add serialized ledger: " << uIndex;
1897  return nullptr;
1898  }
1899  }
1900 
1901  loadLedger->stateMap().flushDirty(hotACCOUNT_NODE);
1902 
1903  loadLedger->setAccepted(
1904  closeTime, closeTimeResolution, !closeTimeEstimated, *config_);
1905 
1906  return loadLedger;
1907  }
1908  catch (std::exception const& x)
1909  {
1910  JLOG(m_journal.fatal()) << "Ledger contains invalid data: " << x.what();
1911  return nullptr;
1912  }
1913 }
1914 
1915 bool
1917  std::string const& ledgerID,
1918  bool replay,
1919  bool isFileName)
1920 {
1921  try
1922  {
1923  std::shared_ptr<Ledger const> loadLedger, replayLedger;
1924 
1925  if (isFileName)
1926  {
1927  if (!ledgerID.empty())
1928  loadLedger = loadLedgerFromFile(ledgerID);
1929  }
1930  else if (ledgerID.length() == 64)
1931  {
1932  uint256 hash;
1933 
1934  if (hash.parseHex(ledgerID))
1935  {
1936  loadLedger = loadByHash(hash, *this);
1937 
1938  if (!loadLedger)
1939  {
1940  // Try to build the ledger from the back end
1941  auto il = std::make_shared<InboundLedger>(
1942  *this,
1943  hash,
1944  0,
1946  stopwatch());
1947  if (il->checkLocal())
1948  loadLedger = il->getLedger();
1949  }
1950  }
1951  }
1952  else if (ledgerID.empty() || boost::iequals(ledgerID, "latest"))
1953  {
1954  loadLedger = getLastFullLedger();
1955  }
1956  else
1957  {
1958  // assume by sequence
1959  std::uint32_t index;
1960 
1961  if (beast::lexicalCastChecked(index, ledgerID))
1962  loadLedger = loadByIndex(index, *this);
1963  }
1964 
1965  if (!loadLedger)
1966  return false;
1967 
1968  if (replay)
1969  {
1970  // Replay a ledger close with same prior ledger and transactions
1971 
1972  // this ledger holds the transactions we want to replay
1973  replayLedger = loadLedger;
1974 
1975  JLOG(m_journal.info()) << "Loading parent ledger";
1976 
1977  loadLedger = loadByHash(replayLedger->info().parentHash, *this);
1978  if (!loadLedger)
1979  {
1980  JLOG(m_journal.info())
1981  << "Loading parent ledger from node store";
1982 
1983  // Try to build the ledger from the back end
1984  auto il = std::make_shared<InboundLedger>(
1985  *this,
1986  replayLedger->info().parentHash,
1987  0,
1989  stopwatch());
1990 
1991  if (il->checkLocal())
1992  loadLedger = il->getLedger();
1993 
1994  if (!loadLedger)
1995  {
1996  JLOG(m_journal.fatal()) << "Replay ledger missing/damaged";
1997  assert(false);
1998  return false;
1999  }
2000  }
2001  }
2002  using namespace std::chrono_literals;
2003  using namespace date;
2004  static constexpr NetClock::time_point ledgerWarnTimePoint{
2005  sys_days{January / 1 / 2018} - sys_days{January / 1 / 2000}};
2006  if (loadLedger->info().closeTime < ledgerWarnTimePoint)
2007  {
2008  JLOG(m_journal.fatal())
2009  << "\n\n*** WARNING ***\n"
2010  "You are replaying a ledger from before "
2011  << to_string(ledgerWarnTimePoint)
2012  << " UTC.\n"
2013  "This replay will not handle your ledger as it was "
2014  "originally "
2015  "handled.\nConsider running an earlier version of rippled "
2016  "to "
2017  "get the older rules.\n*** CONTINUING ***\n";
2018  }
2019 
2020  JLOG(m_journal.info()) << "Loading ledger " << loadLedger->info().hash
2021  << " seq:" << loadLedger->info().seq;
2022 
2023  if (loadLedger->info().accountHash.isZero())
2024  {
2025  JLOG(m_journal.fatal()) << "Ledger is empty.";
2026  assert(false);
2027  return false;
2028  }
2029 
2030  if (!loadLedger->walkLedger(journal("Ledger")))
2031  {
2032  JLOG(m_journal.fatal()) << "Ledger is missing nodes.";
2033  assert(false);
2034  return false;
2035  }
2036 
2037  if (!loadLedger->assertSensible(journal("Ledger")))
2038  {
2039  JLOG(m_journal.fatal()) << "Ledger is not sensible.";
2040  assert(false);
2041  return false;
2042  }
2043 
2044  m_ledgerMaster->setLedgerRangePresent(
2045  loadLedger->info().seq, loadLedger->info().seq);
2046 
2047  m_ledgerMaster->switchLCL(loadLedger);
2048  loadLedger->setValidated();
2049  m_ledgerMaster->setFullLedger(loadLedger, true, false);
2050  openLedger_.emplace(
2051  loadLedger, cachedSLEs_, logs_->journal("OpenLedger"));
2052 
2053  if (replay)
2054  {
2055  // inject transaction(s) from the replayLedger into our open ledger
2056  // and build replay structure
2057  auto replayData =
2058  std::make_unique<LedgerReplay>(loadLedger, replayLedger);
2059 
2060  for (auto const& [_, tx] : replayData->orderedTxns())
2061  {
2062  (void)_;
2063  auto txID = tx->getTransactionID();
2064 
2065  auto s = std::make_shared<Serializer>();
2066  tx->add(*s);
2067 
2069 
2070  openLedger_->modify(
2071  [&txID, &s](OpenView& view, beast::Journal j) {
2072  view.rawTxInsert(txID, std::move(s), nullptr);
2073  return true;
2074  });
2075  }
2076 
2077  m_ledgerMaster->takeReplay(std::move(replayData));
2078  }
2079  }
2080  catch (SHAMapMissingNode const& mn)
2081  {
2082  JLOG(m_journal.fatal())
2083  << "While loading specified ledger: " << mn.what();
2084  return false;
2085  }
2086  catch (boost::bad_lexical_cast&)
2087  {
2088  JLOG(m_journal.fatal())
2089  << "Ledger specified '" << ledgerID << "' is not valid";
2090  return false;
2091  }
2092 
2093  return true;
2094 }
2095 
2096 bool
2098 {
2099  if (!config().ELB_SUPPORT)
2100  return true;
2101 
2102  if (isShutdown())
2103  {
2104  reason = "Server is shutting down";
2105  return false;
2106  }
2107 
2108  if (getOPs().isNeedNetworkLedger())
2109  {
2110  reason = "Not synchronized with network yet";
2111  return false;
2112  }
2113 
2114  if (getOPs().isAmendmentBlocked())
2115  {
2116  reason = "Server version too old";
2117  return false;
2118  }
2119 
2120  if (getOPs().isUNLBlocked())
2121  {
2122  reason = "No valid validator list available";
2123  return false;
2124  }
2125 
2126  if (getOPs().getOperatingMode() < OperatingMode::SYNCING)
2127  {
2128  reason = "Not synchronized with network";
2129  return false;
2130  }
2131 
2132  if (!getLedgerMaster().isCaughtUp(reason))
2133  return false;
2134 
2135  if (getFeeTrack().isLoadedLocal())
2136  {
2137  reason = "Too much load";
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::RPC::ShardArchiveHandler::start
bool start()
Starts downloading and importing archives.
Definition: ShardArchiveHandler.cpp:256
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:2097
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:1000
ripple::ApplicationImp::onWrite
void onWrite(beast::PropertyStream::Map &stream) override
Subclass override.
Definition: Application.cpp:1072
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:1406
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:1636
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:1585
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:1259
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:216
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:1660
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:45
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:981
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::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:1781
ripple::ApplicationImp::checkSigs
bool checkSigs() const override
Definition: Application.cpp:1681
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:3988
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:1226
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:191
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:1480
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:354
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:1916
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:172
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:1629
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:1351
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:1740
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:1674
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:1720
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:1079
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:1693
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:1139
ripple::make_SHAMapStore
std::unique_ptr< SHAMapStore > make_SHAMapStore(Application &app, Stoppable &parent, NodeStore::Scheduler &scheduler, beast::Journal journal)
Definition: SHAMapStoreImp.cpp:765
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:1234
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:1110
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
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