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))
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>(
864  mTxnDB->getSession() << boost::str(
865  boost::format("PRAGMA cache_size=-%d;") %
866  kilobytes(config_->getValueFor(SizedItem::txnDBCache)));
867  mTxnDB->setupCheckpointing(m_jobQueue.get(), logs());
868 
869  if (!setup.standAlone || setup.startUp == Config::LOAD ||
870  setup.startUp == Config::LOAD_FILE ||
871  setup.startUp == Config::REPLAY)
872  {
873  // Check if AccountTransactions has primary key
874  std::string cid, name, type;
875  std::size_t notnull, dflt_value, pk;
876  soci::indicator ind;
877  soci::statement st =
878  (mTxnDB->getSession().prepare
879  << ("PRAGMA table_info(AccountTransactions);"),
880  soci::into(cid),
881  soci::into(name),
882  soci::into(type),
883  soci::into(notnull),
884  soci::into(dflt_value, ind),
885  soci::into(pk));
886 
887  st.execute();
888  while (st.fetch())
889  {
890  if (pk == 1)
891  {
892  JLOG(m_journal.fatal())
893  << "AccountTransactions database "
894  "should not have a primary key";
895  return false;
896  }
897  }
898  }
899 
900  // ledger database
901  mLedgerDB = std::make_unique<DatabaseCon>(
903  mLedgerDB->getSession() << boost::str(
904  boost::format("PRAGMA cache_size=-%d;") %
905  kilobytes(config_->getValueFor(SizedItem::lgrDBCache)));
906  mLedgerDB->setupCheckpointing(m_jobQueue.get(), logs());
907 
908  // wallet database
909  setup.useGlobalPragma = false;
910  mWalletDB = std::make_unique<DatabaseCon>(
911  setup,
912  WalletDBName,
914  WalletDBInit);
915  }
916  catch (std::exception const& e)
917  {
918  JLOG(m_journal.fatal())
919  << "Failed to initialize SQLite databases: " << e.what();
920  return false;
921  }
922 
923  return true;
924  }
925 
926  bool
928  {
929  if (config_->doImport)
930  {
931  auto j = logs_->journal("NodeObject");
932  NodeStore::DummyScheduler dummyScheduler;
933  RootStoppable dummyRoot{"DummyRoot"};
936  "NodeStore.import",
937  dummyScheduler,
938  0,
939  dummyRoot,
941  j);
942 
943  JLOG(j.warn()) << "Starting node import from '" << source->getName()
944  << "' to '" << m_nodeStore->getName() << "'.";
945 
946  using namespace std::chrono;
947  auto const start = steady_clock::now();
948 
949  m_nodeStore->import(*source);
950 
951  auto const elapsed =
952  duration_cast<seconds>(steady_clock::now() - start);
953  JLOG(j.warn()) << "Node import from '" << source->getName()
954  << "' took " << elapsed.count() << " seconds.";
955  }
956 
957  // tune caches
958  using namespace std::chrono;
959  m_nodeStore->tune(
960  config_->getValueFor(SizedItem::nodeCacheSize),
961  seconds{config_->getValueFor(SizedItem::nodeCacheAge)});
962 
963  m_ledgerMaster->tune(
964  config_->getValueFor(SizedItem::ledgerSize),
965  seconds{config_->getValueFor(SizedItem::ledgerAge)});
966 
967  return true;
968  }
969 
970  //--------------------------------------------------------------------------
971  //
972  // Stoppable
973  //
974 
975  void
976  onPrepare() override
977  {
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  bool
1239  validateShards();
1240  void
1242 
1245 
1247  loadLedgerFromFile(std::string const& ledgerID);
1248 
1249  bool
1250  loadOldLedger(std::string const& ledgerID, bool replay, bool isFilename);
1251 
1252  void
1254 };
1255 
1256 //------------------------------------------------------------------------------
1257 
1258 // TODO Break this up into smaller, more digestible initialization segments.
1259 bool
1261 {
1262  // We want to intercept CTRL-C and the standard termination signal SIGTERM
1263  // and terminate the process. This handler will NEVER be invoked twice.
1264  //
1265  // Note that async_wait is "one-shot": for each call, the handler will be
1266  // invoked exactly once, either when one of the registered signals in the
1267  // signal set occurs or the signal set is cancelled. Subsequent signals are
1268  // effectively ignored (technically, they are queued up, waiting for a call
1269  // to async_wait).
1270  m_signals.add(SIGINT);
1271  m_signals.add(SIGTERM);
1272  m_signals.async_wait(
1273  [this](boost::system::error_code const& ec, int signum) {
1274  // Indicates the signal handler has been aborted; do nothing
1275  if (ec == boost::asio::error::operation_aborted)
1276  return;
1277 
1278  JLOG(m_journal.info()) << "Received signal " << signum;
1279 
1280  if (signum == SIGTERM || signum == SIGINT)
1281  signalStop();
1282  });
1283 
1284  assert(mTxnDB == nullptr);
1285 
1286  auto debug_log = config_->getDebugLogFile();
1287 
1288  if (!debug_log.empty())
1289  {
1290  // Let debug messages go to the file but only WARNING or higher to
1291  // regular output (unless verbose)
1292 
1293  if (!logs_->open(debug_log))
1294  std::cerr << "Can't open log file " << debug_log << '\n';
1295 
1296  using namespace beast::severities;
1297  if (logs_->threshold() > kDebug)
1298  logs_->threshold(kDebug);
1299  }
1300  JLOG(m_journal.info()) << "process starting: "
1302 
1303  if (numberOfThreads(*config_) < 2)
1304  {
1305  JLOG(m_journal.warn()) << "Limited to a single I/O service thread by "
1306  "system configuration.";
1307  }
1308 
1309  // Optionally turn off logging to console.
1310  logs_->silent(config_->silent());
1311 
1312  m_jobQueue->setThreadCount(config_->WORKERS, config_->standalone());
1313  grpcServer_->run();
1314 
1315  if (!config_->standalone())
1316  timeKeeper_->run(config_->SNTP_SERVERS);
1317 
1318  if (!initSQLiteDBs() || !initNodeStore())
1319  return false;
1320 
1321  if (shardStore_)
1322  {
1323  shardFamily_ =
1324  std::make_unique<ShardFamily>(*this, *m_collectorManager);
1325 
1326  if (!shardStore_->init())
1327  return false;
1328  }
1329 
1330  if (!peerReservations_->load(getWalletDB()))
1331  {
1332  JLOG(m_journal.fatal()) << "Cannot find peer reservations!";
1333  return false;
1334  }
1335 
1338 
1339  // Configure the amendments the server supports
1340  {
1341  auto const& sa = detail::supportedAmendments();
1342  std::vector<std::string> saHashes;
1343  saHashes.reserve(sa.size());
1344  for (auto const& name : sa)
1345  {
1346  auto const f = getRegisteredFeature(name);
1347  BOOST_ASSERT(f);
1348  if (f)
1349  saHashes.push_back(to_string(*f) + " " + name);
1350  }
1351  Section supportedAmendments("Supported Amendments");
1352  supportedAmendments.append(saHashes);
1353 
1354  Section enabledAmendments = config_->section(SECTION_AMENDMENTS);
1355 
1357  config().AMENDMENT_MAJORITY_TIME,
1358  supportedAmendments,
1359  enabledAmendments,
1360  config_->section(SECTION_VETO_AMENDMENTS),
1361  logs_->journal("Amendments"));
1362  }
1363 
1365 
1366  auto const startUp = config_->START_UP;
1367  if (startUp == Config::FRESH)
1368  {
1369  JLOG(m_journal.info()) << "Starting new Ledger";
1370 
1372  }
1373  else if (
1374  startUp == Config::LOAD || startUp == Config::LOAD_FILE ||
1375  startUp == Config::REPLAY)
1376  {
1377  JLOG(m_journal.info()) << "Loading specified Ledger";
1378 
1379  if (!loadOldLedger(
1380  config_->START_LEDGER,
1381  startUp == Config::REPLAY,
1382  startUp == Config::LOAD_FILE))
1383  {
1384  JLOG(m_journal.error())
1385  << "The specified ledger could not be loaded.";
1386  return false;
1387  }
1388  }
1389  else if (startUp == Config::NETWORK)
1390  {
1391  // This should probably become the default once we have a stable
1392  // network.
1393  if (!config_->standalone())
1394  m_networkOPs->setNeedNetworkLedger();
1395 
1397  }
1398  else
1399  {
1401  }
1402 
1403  m_orderBookDB.setup(getLedgerMaster().getCurrentLedger());
1404 
1406 
1407  if (!cluster_->load(config().section(SECTION_CLUSTER_NODES)))
1408  {
1409  JLOG(m_journal.fatal()) << "Invalid entry in cluster configuration.";
1410  return false;
1411  }
1412 
1413  {
1415  return false;
1416 
1417  if (!validatorManifests_->load(
1418  getWalletDB(),
1419  "ValidatorManifests",
1421  config().section(SECTION_VALIDATOR_KEY_REVOCATION).values()))
1422  {
1423  JLOG(m_journal.fatal()) << "Invalid configured validator manifest.";
1424  return false;
1425  }
1426 
1427  publisherManifests_->load(getWalletDB(), "PublisherManifests");
1428 
1429  // Setup trusted validators
1430  if (!validators_->load(
1432  config().section(SECTION_VALIDATORS).values(),
1433  config().section(SECTION_VALIDATOR_LIST_KEYS).values()))
1434  {
1435  JLOG(m_journal.fatal())
1436  << "Invalid entry in validator configuration.";
1437  return false;
1438  }
1439  }
1440 
1441  if (!validatorSites_->load(
1442  config().section(SECTION_VALIDATOR_LIST_SITES).values()))
1443  {
1444  JLOG(m_journal.fatal())
1445  << "Invalid entry in [" << SECTION_VALIDATOR_LIST_SITES << "]";
1446  return false;
1447  }
1448 
1449  //----------------------------------------------------------------------
1450  //
1451  // Server
1452  //
1453  //----------------------------------------------------------------------
1454 
1455  // VFALCO NOTE Unfortunately, in stand-alone mode some code still
1456  // foolishly calls overlay(). When this is fixed we can
1457  // move the instantiation inside a conditional:
1458  //
1459  // if (!config_.standalone())
1461  *this,
1463  *m_jobQueue,
1464  *serverHandler_,
1466  *m_resolver,
1467  get_io_service(),
1468  *config_,
1469  m_collectorManager->collector());
1470  add(*overlay_); // add to PropertyStream
1471 
1472  if (!config_->standalone())
1473  {
1474  // validation and node import require the sqlite db
1475  if (config_->nodeToShard && !nodeToShards())
1476  return false;
1477 
1478  if (config_->validateShards && !validateShards())
1479  return false;
1480  }
1481 
1482  validatorSites_->start();
1483 
1484  // start first consensus round
1485  if (!m_networkOPs->beginConsensus(
1486  m_ledgerMaster->getClosedLedger()->info().hash))
1487  {
1488  JLOG(m_journal.fatal()) << "Unable to start consensus";
1489  return false;
1490  }
1491 
1492  {
1493  try
1494  {
1495  auto setup = setup_ServerHandler(
1497  setup.makeContexts();
1498  serverHandler_->setup(setup, m_journal);
1499  }
1500  catch (std::exception const& e)
1501  {
1502  if (auto stream = m_journal.fatal())
1503  {
1504  stream << "Unable to setup server handler";
1505  if (std::strlen(e.what()) > 0)
1506  stream << ": " << e.what();
1507  }
1508  return false;
1509  }
1510  }
1511 
1512  // Begin connecting to network.
1513  if (!config_->standalone())
1514  {
1515  // Should this message be here, conceptually? In theory this sort
1516  // of message, if displayed, should be displayed from PeerFinder.
1517  if (config_->PEER_PRIVATE && config_->IPS_FIXED.empty())
1518  {
1519  JLOG(m_journal.warn())
1520  << "No outbound peer connections will be made";
1521  }
1522 
1523  // VFALCO NOTE the state timer resets the deadlock detector.
1524  //
1525  m_networkOPs->setStateTimer();
1526  }
1527  else
1528  {
1529  JLOG(m_journal.warn()) << "Running in standalone mode";
1530 
1531  m_networkOPs->setStandAlone();
1532  }
1533 
1534  if (config_->canSign())
1535  {
1536  JLOG(m_journal.warn()) << "*** The server is configured to allow the "
1537  "'sign' and 'sign_for'";
1538  JLOG(m_journal.warn()) << "*** commands. These commands have security "
1539  "implications and have";
1540  JLOG(m_journal.warn()) << "*** been deprecated. They will be removed "
1541  "in a future release of";
1542  JLOG(m_journal.warn()) << "*** rippled.";
1543  JLOG(m_journal.warn()) << "*** If you do not use them to sign "
1544  "transactions please edit your";
1545  JLOG(m_journal.warn())
1546  << "*** configuration file and remove the [enable_signing] stanza.";
1547  JLOG(m_journal.warn()) << "*** If you do use them to sign transactions "
1548  "please migrate to a";
1549  JLOG(m_journal.warn())
1550  << "*** standalone signing solution as soon as possible.";
1551  }
1552 
1553  //
1554  // Execute start up rpc commands.
1555  //
1556  for (auto cmd : config_->section(SECTION_RPC_STARTUP).lines())
1557  {
1558  Json::Reader jrReader;
1559  Json::Value jvCommand;
1560 
1561  if (!jrReader.parse(cmd, jvCommand))
1562  {
1563  JLOG(m_journal.fatal()) << "Couldn't parse entry in ["
1564  << SECTION_RPC_STARTUP << "]: '" << cmd;
1565  }
1566 
1567  if (!config_->quiet())
1568  {
1569  JLOG(m_journal.fatal())
1570  << "Startup RPC: " << jvCommand << std::endl;
1571  }
1572 
1575  RPC::JsonContext context{
1576  {journal("RPCHandler"),
1577  *this,
1578  loadType,
1579  getOPs(),
1580  getLedgerMaster(),
1581  c,
1582  Role::ADMIN,
1583  {},
1584  {},
1586  jvCommand};
1587 
1588  Json::Value jvResult;
1589  RPC::doCommand(context, jvResult);
1590 
1591  if (!config_->quiet())
1592  {
1593  JLOG(m_journal.fatal()) << "Result: " << jvResult << std::endl;
1594  }
1595  }
1596 
1597  if (shardStore_)
1598  {
1599  try
1600  {
1601  // Create a ShardArchiveHandler if recovery
1602  // is needed (there's a state database left
1603  // over from a previous run).
1604  auto handler = getShardArchiveHandler(true);
1605 
1606  // Recovery is needed.
1607  if (handler)
1608  {
1609  if (!handler->start())
1610  {
1611  JLOG(m_journal.fatal())
1612  << "Failed to start ShardArchiveHandler.";
1613 
1614  return false;
1615  }
1616  }
1617  }
1618  catch (std::exception const& e)
1619  {
1620  JLOG(m_journal.fatal())
1621  << "Exception when starting ShardArchiveHandler from "
1622  "state database: "
1623  << e.what();
1624 
1625  return false;
1626  }
1627  }
1628 
1629  return true;
1630 }
1631 
1632 void
1633 ApplicationImp::doStart(bool withTimers)
1634 {
1635  startTimers_ = withTimers;
1636  prepare();
1637  start();
1638 }
1639 
1640 void
1642 {
1643  if (!config_->standalone())
1644  {
1645  // VFALCO NOTE This seems unnecessary. If we properly refactor the load
1646  // manager then the deadlock detector can just always be
1647  // "armed"
1648  //
1650  }
1651 
1652  {
1654  cv_.wait(lk, [this] { return isTimeToStop; });
1655  }
1656 
1657  // Stop the server. When this returns, all
1658  // Stoppable objects should be stopped.
1659  JLOG(m_journal.info()) << "Received shutdown request";
1660  stop(m_journal);
1661  JLOG(m_journal.info()) << "Done.";
1662 }
1663 
1664 void
1666 {
1667  // Unblock the main thread (which is sitting in run()).
1668  // When we get C++20 this can use std::latch.
1669  std::lock_guard lk{mut_};
1670 
1671  if (!isTimeToStop)
1672  {
1673  isTimeToStop = true;
1674  cv_.notify_all();
1675  }
1676 }
1677 
1678 bool
1680 {
1681  // from Stoppable mixin
1682  return isStopped();
1683 }
1684 
1685 bool
1687 {
1688  return checkSigs_;
1689 }
1690 
1691 void
1693 {
1694  checkSigs_ = check;
1695 }
1696 
1697 int
1699 {
1700  // Standard handles, config file, misc I/O etc:
1701  int needed = 128;
1702 
1703  // 2x the configured peer limit for peer connections:
1704  needed += 2 * overlay_->limit();
1705 
1706  // the number of fds needed by the backend (internally
1707  // doubled if online delete is enabled).
1708  needed += std::max(5, m_shaMapStore->fdRequired());
1709 
1710  if (shardStore_)
1711  needed += shardStore_->fdRequired();
1712 
1713  // One fd per incoming connection a port can accept, or
1714  // if no limit is set, assume it'll handle 256 clients.
1715  for (auto const& p : serverHandler_->setup().ports)
1716  needed += std::max(256, p.limit);
1717 
1718  // The minimum number of file descriptors we need is 1024:
1719  return std::max(1024, needed);
1720 }
1721 
1722 //------------------------------------------------------------------------------
1723 
1724 void
1726 {
1727  std::vector<uint256> initialAmendments =
1728  (config_->START_UP == Config::FRESH) ? m_amendmentTable->getDesired()
1730 
1731  std::shared_ptr<Ledger> const genesis = std::make_shared<Ledger>(
1732  create_genesis, *config_, initialAmendments, nodeFamily_);
1733  m_ledgerMaster->storeLedger(genesis);
1734 
1735  auto const next =
1736  std::make_shared<Ledger>(*genesis, timeKeeper().closeTime());
1737  next->updateSkipList();
1738  next->setImmutable(*config_);
1739  openLedger_.emplace(next, cachedSLEs_, logs_->journal("OpenLedger"));
1740  m_ledgerMaster->storeLedger(next);
1741  m_ledgerMaster->switchLCL(next);
1742 }
1743 
1746 {
1747  auto j = journal("Ledger");
1748 
1749  try
1750  {
1751  auto const [ledger, seq, hash] =
1752  loadLedgerHelper("order by LedgerSeq desc limit 1", *this);
1753 
1754  if (!ledger)
1755  return ledger;
1756 
1757  ledger->setImmutable(*config_);
1758 
1759  if (getLedgerMaster().haveLedger(seq))
1760  ledger->setValidated();
1761 
1762  if (ledger->info().hash == hash)
1763  {
1764  JLOG(j.trace()) << "Loaded ledger: " << hash;
1765  return ledger;
1766  }
1767 
1768  if (auto stream = j.error())
1769  {
1770  stream << "Failed on ledger";
1771  Json::Value p;
1772  addJson(p, {*ledger, LedgerFill::full});
1773  stream << p;
1774  }
1775 
1776  return {};
1777  }
1778  catch (SHAMapMissingNode const& mn)
1779  {
1780  JLOG(j.warn()) << "Ledger in database: " << mn.what();
1781  return {};
1782  }
1783 }
1784 
1787 {
1788  try
1789  {
1790  std::ifstream ledgerFile(name, std::ios::in);
1791 
1792  if (!ledgerFile)
1793  {
1794  JLOG(m_journal.fatal()) << "Unable to open file '" << name << "'";
1795  return nullptr;
1796  }
1797 
1798  Json::Reader reader;
1799  Json::Value jLedger;
1800 
1801  if (!reader.parse(ledgerFile, jLedger))
1802  {
1803  JLOG(m_journal.fatal()) << "Unable to parse ledger JSON";
1804  return nullptr;
1805  }
1806 
1807  std::reference_wrapper<Json::Value> ledger(jLedger);
1808 
1809  // accept a wrapped ledger
1810  if (ledger.get().isMember("result"))
1811  ledger = ledger.get()["result"];
1812 
1813  if (ledger.get().isMember("ledger"))
1814  ledger = ledger.get()["ledger"];
1815 
1816  std::uint32_t seq = 1;
1817  auto closeTime = timeKeeper().closeTime();
1818  using namespace std::chrono_literals;
1819  auto closeTimeResolution = 30s;
1820  bool closeTimeEstimated = false;
1821  std::uint64_t totalDrops = 0;
1822 
1823  if (ledger.get().isMember("accountState"))
1824  {
1825  if (ledger.get().isMember(jss::ledger_index))
1826  {
1827  seq = ledger.get()[jss::ledger_index].asUInt();
1828  }
1829 
1830  if (ledger.get().isMember("close_time"))
1831  {
1832  using tp = NetClock::time_point;
1833  using d = tp::duration;
1834  closeTime = tp{d{ledger.get()["close_time"].asUInt()}};
1835  }
1836  if (ledger.get().isMember("close_time_resolution"))
1837  {
1838  using namespace std::chrono;
1839  closeTimeResolution =
1840  seconds{ledger.get()["close_time_resolution"].asUInt()};
1841  }
1842  if (ledger.get().isMember("close_time_estimated"))
1843  {
1844  closeTimeEstimated =
1845  ledger.get()["close_time_estimated"].asBool();
1846  }
1847  if (ledger.get().isMember("total_coins"))
1848  {
1849  totalDrops = beast::lexicalCastThrow<std::uint64_t>(
1850  ledger.get()["total_coins"].asString());
1851  }
1852 
1853  ledger = ledger.get()["accountState"];
1854  }
1855 
1856  if (!ledger.get().isArrayOrNull())
1857  {
1858  JLOG(m_journal.fatal()) << "State nodes must be an array";
1859  return nullptr;
1860  }
1861 
1862  auto loadLedger =
1863  std::make_shared<Ledger>(seq, closeTime, *config_, nodeFamily_);
1864  loadLedger->setTotalDrops(totalDrops);
1865 
1866  for (Json::UInt index = 0; index < ledger.get().size(); ++index)
1867  {
1868  Json::Value& entry = ledger.get()[index];
1869 
1870  if (!entry.isObjectOrNull())
1871  {
1872  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1873  return nullptr;
1874  }
1875 
1876  uint256 uIndex;
1877 
1878  if (!uIndex.SetHex(entry[jss::index].asString()))
1879  {
1880  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1881  return nullptr;
1882  }
1883 
1884  entry.removeMember(jss::index);
1885 
1886  STParsedJSONObject stp("sle", ledger.get()[index]);
1887 
1888  if (!stp.object || uIndex.isZero())
1889  {
1890  JLOG(m_journal.fatal()) << "Invalid entry in ledger";
1891  return nullptr;
1892  }
1893 
1894  // VFALCO TODO This is the only place that
1895  // constructor is used, try to remove it
1896  STLedgerEntry sle(*stp.object, uIndex);
1897 
1898  if (!loadLedger->addSLE(sle))
1899  {
1900  JLOG(m_journal.fatal())
1901  << "Couldn't add serialized ledger: " << uIndex;
1902  return nullptr;
1903  }
1904  }
1905 
1906  loadLedger->stateMap().flushDirty(
1907  hotACCOUNT_NODE, loadLedger->info().seq);
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.SetHex(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->assertSane(journal("Ledger")))
2044  {
2045  JLOG(m_journal.fatal()) << "Ledger is not sane.";
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 bool
2173 {
2174  assert(overlay_);
2175  assert(!config_->standalone());
2176 
2177  if (config_->section(ConfigSection::shardDatabase()).empty())
2178  {
2179  JLOG(m_journal.fatal())
2180  << "The [shard_db] configuration setting must be set";
2181  return false;
2182  }
2183  if (!shardStore_)
2184  {
2185  JLOG(m_journal.fatal()) << "Invalid [shard_db] configuration";
2186  return false;
2187  }
2188  shardStore_->validate();
2189  return true;
2190 }
2191 
2192 void
2194 {
2195  boost::optional<LedgerIndex> seq;
2196  {
2197  auto db = getLedgerDB().checkoutDb();
2198  *db << "SELECT MAX(LedgerSeq) FROM Ledgers;", soci::into(seq);
2199  }
2200  if (seq)
2201  maxDisallowedLedger_ = *seq;
2202 
2203  JLOG(m_journal.trace())
2204  << "Max persisted ledger is " << maxDisallowedLedger_;
2205 }
2206 
2207 //------------------------------------------------------------------------------
2208 
2209 Application::Application() : beast::PropertyStream::Source("app")
2210 {
2211 }
2212 
2213 //------------------------------------------------------------------------------
2214 
2217  std::unique_ptr<Config> config,
2218  std::unique_ptr<Logs> logs,
2219  std::unique_ptr<TimeKeeper> timeKeeper)
2220 {
2221  return std::make_unique<ApplicationImp>(
2222  std::move(config), std::move(logs), std::move(timeKeeper));
2223 }
2224 
2225 } // 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:1481
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:1133
ripple::Application
Definition: Application.h:97
ripple::WalletDBName
constexpr auto WalletDBName
Definition: DBInit.h:138
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:53
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:1225
ripple::LedgerMaster::sweep
void sweep()
Definition: LedgerMaster.cpp:1737
ripple::ApplicationImp::mValidations
RCLValidations mValidations
Definition: Application.cpp:201
ripple::TransactionMaster::sweep
void sweep(void)
Definition: TransactionMaster.cpp:145
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:86
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::SizedItem::nodeCacheSize
@ nodeCacheSize
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:67
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:52
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:592
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:1641
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:1457
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:167
ripple::ApplicationImp::m_acceptedLedgerCache
TaggedCache< uint256, AcceptedLedger > m_acceptedLedgerCache
Definition: Application.cpp:189
ripple::ApplicationImp::setup
bool setup() override
Definition: Application.cpp:1260
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::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:123
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:92
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:1665
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:47
ripple::ApplicationImp::perfLog_
std::unique_ptr< perf::PerfLog > perfLog_
Definition: Application.cpp:155
ripple::AccountIDCache
Caches the base58 representations of AccountIDs.
Definition: AccountID.h:147
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:429
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::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:1786
ripple::ApplicationImp::checkSigs
bool checkSigs() const override
Definition: Application.cpp:1686
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:72
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:3906
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:199
ripple::HashRouter::getDefaultRecoverLimit
static std::uint32_t getDefaultRecoverLimit()
Definition: HashRouter.h:160
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:1352
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:1240
ripple::TxQ
Transaction Queue.
Definition: TxQ.h:54
ripple::ApplicationImp::numberOfThreads
static std::size_t numberOfThreads(Config const &config)
Definition: Application.cpp:232
ripple::DatabaseCon::checkoutDb
LockedSociSession checkoutDb()
Definition: DatabaseCon.h:144
ripple::base_uint::isZero
bool isZero() const
Definition: base_uint.h:475
ripple::ApplicationImp::getSHAMapStore
SHAMapStore & getSHAMapStore() override
Definition: Application.cpp:780
ripple::RootStoppable
Definition: Stoppable.h:352
ripple::LgrDBPragma
constexpr std::array< char const *, 1 > LgrDBPragma
Definition: DBInit.h:44
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:119
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:1633
ripple::ApplicationImp::m_amendmentTable
std::unique_ptr< AmendmentTable > m_amendmentTable
Definition: Application.cpp:198
ripple::Config::NETWORK
@ NETWORK
Definition: Config.h:123
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:152
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:120
ripple::ApplicationImp::m_txMaster
TransactionMaster m_txMaster
Definition: Application.cpp:159
ripple::ApplicationImp::validateShards
bool validateShards()
Definition: Application.cpp:2172
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:552
ripple::RPC::ApiMaximumSupportedVersion
constexpr unsigned int ApiMaximumSupportedVersion
Definition: RPCHelpers.h:214
ripple::ApplicationImp::validatorSites
ValidatorSite & validatorSites() override
Definition: Application.cpp:750
ripple::base_uint::SetHex
bool SetHex(const char *psz, bool bStrict=false)
Parse a hex string into a base_uint The input can be:
Definition: base_uint.h:406
ripple::make_AmendmentTable
std::unique_ptr< AmendmentTable > make_AmendmentTable(std::chrono::seconds majorityTime, Section const &supported, Section const &enabled, Section const &vetoed, beast::Journal journal)
Definition: AmendmentTable.cpp:695
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::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:1745
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
std::uint32_t
std::condition_variable::wait
T wait(T... args)
ripple::ApplicationImp::isShutdown
bool isShutdown() override
Definition: Application.cpp:1679
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:1725
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:2209
ripple::ApplicationImp::setMaxDisallowedLedger
void setMaxDisallowedLedger()
Definition: Application.cpp:2193
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:31
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:123
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:85
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:238
ripple::ApplicationImp::getJobQueue
JobQueue & getJobQueue() override
Definition: Application.cpp:527
ripple::ApplicationImp::fdRequired
int fdRequired() const override
Definition: Application.cpp:1698
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:777
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:123
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:83
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:273
ripple::TxDBPragma
constexpr std::array TxDBPragma
Definition: DBInit.h:75
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:92
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:83
std::max
T max(T... args)
ripple::NodeStore::Manager::make_Database
virtual std::unique_ptr< Database > make_Database(std::string const &name, Scheduler &scheduler, int readThreads, Stoppable &parent, Section const &backendParameters, beast::Journal journal)=0
Construct a NodeStore database.
ripple::NodeStore::Manager::instance
static Manager & instance()
Returns the instance of the manager singleton.
Definition: ManagerImp.cpp:117
ripple::WalletDBInit
constexpr std::array< char const *, 6 > WalletDBInit
Definition: DBInit.h:140
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:927
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:264
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:123
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:2216
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:976
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:42
ripple::getRegisteredFeature
boost::optional< uint256 > getRegisteredFeature(std::string const &name)
Definition: Feature.cpp:143
beast
Definition: base_uint.h:646
std::chrono