rippled
ManagerImp.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/nodestore/impl/DatabaseNodeImp.h>
21 #include <ripple/nodestore/impl/ManagerImp.h>
22 
23 #include <boost/algorithm/string/predicate.hpp>
24 
25 namespace ripple {
26 namespace NodeStore {
27 
28 ManagerImp&
30 {
31  static ManagerImp _;
32  return _;
33 }
34 
35 void
37 {
38  Throw<std::runtime_error>(
39  "Your rippled.cfg is missing a [node_db] entry, "
40  "please see the rippled-example.cfg file!");
41 }
42 
45  Section const& parameters,
46  Scheduler& scheduler,
47  beast::Journal journal)
48 {
49  std::string const type{get<std::string>(parameters, "type")};
50  if (type.empty())
52 
53  auto factory{find(type)};
54  if (!factory)
56 
57  return factory->createInstance(
58  NodeObject::keyBytes, parameters, scheduler, journal);
59 }
60 
63  std::string const& name,
64  Scheduler& scheduler,
65  int readThreads,
66  Stoppable& parent,
67  Section const& config,
68  beast::Journal journal)
69 {
70  auto backend{make_Backend(config, scheduler, journal)};
71  backend->open();
72  return std::make_unique<DatabaseNodeImp>(
73  name,
74  scheduler,
75  readThreads,
76  parent,
77  std::move(backend),
78  config,
79  journal);
80 }
81 
82 void
84 {
86  list_.push_back(&factory);
87 }
88 
89 void
91 {
93  auto const iter =
94  std::find_if(list_.begin(), list_.end(), [&factory](Factory* other) {
95  return other == &factory;
96  });
97  assert(iter != list_.end());
98  list_.erase(iter);
99 }
100 
101 Factory*
103 {
105  auto const iter =
106  std::find_if(list_.begin(), list_.end(), [&name](Factory* other) {
107  return boost::iequals(name, other->getName());
108  });
109  if (iter == list_.end())
110  return nullptr;
111  return *iter;
112 }
113 
114 //------------------------------------------------------------------------------
115 
116 Manager&
118 {
119  return ManagerImp::instance();
120 }
121 
122 //------------------------------------------------------------------------------
123 
126  Section const& config,
127  Scheduler& scheduler,
128  beast::Journal journal)
129 {
130  return Manager::instance().make_Backend(config, scheduler, journal);
131 }
132 
133 } // namespace NodeStore
134 } // namespace ripple
ripple::Section
Holds a collection of configuration values.
Definition: BasicConfig.h:43
ripple::NodeStore::Manager
Singleton for managing NodeStore factories and back ends.
Definition: Manager.h:31
ripple::NodeStore::ManagerImp::make_Database
std::unique_ptr< Database > make_Database(std::string const &name, Scheduler &scheduler, int readThreads, Stoppable &parent, Section const &config, beast::Journal journal) override
Construct a NodeStore database.
Definition: ManagerImp.cpp:62
ripple::NodeStore::Factory
Base class for backend factories.
Definition: Factory.h:32
std::string
STL class.
ripple::NodeStore::ManagerImp::insert
void insert(Factory &factory) override
Add a factory.
Definition: ManagerImp.cpp:83
ripple::NodeStore::ManagerImp
Definition: ManagerImp.h:28
std::find_if
T find_if(T... args)
ripple::NodeStore::ManagerImp::missing_backend
static void missing_backend()
Definition: ManagerImp.cpp:36
std::lock_guard
STL class.
ripple::NodeStore::Manager::make_Backend
virtual std::unique_ptr< Backend > make_Backend(Section const &parameters, Scheduler &scheduler, beast::Journal journal)=0
Create a backend.
ripple::NodeStore::ManagerImp::find
Factory * find(std::string const &name) override
Return a pointer to the matching factory if it exists.
Definition: ManagerImp.cpp:102
ripple::Stoppable
Provides an interface for starting and stopping.
Definition: Stoppable.h:201
ripple::NodeStore::ManagerImp::instance
static ManagerImp & instance()
Definition: ManagerImp.cpp:29
beast::Journal
A generic endpoint for log messages.
Definition: Journal.h:58
ripple::NodeStore::Scheduler
Scheduling for asynchronous backend activity.
Definition: ripple/nodestore/Scheduler.h:57
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
ripple::NodeObject::keyBytes
static constexpr std::size_t keyBytes
Definition: NodeObject.h:57
ripple::NodeStore::ManagerImp::list_
std::vector< Factory * > list_
Definition: ManagerImp.h:32
ripple::NodeStore::make_Backend
std::unique_ptr< Backend > make_Backend(Section const &config, Scheduler &scheduler, beast::Journal journal)
Create a Backend.
Definition: ManagerImp.cpp:125
ripple::NodeStore::ManagerImp::mutex_
std::mutex mutex_
Definition: ManagerImp.h:31
ripple::NodeStore::ManagerImp::make_Backend
std::unique_ptr< Backend > make_Backend(Section const &parameters, Scheduler &scheduler, beast::Journal journal) override
Create a backend.
Definition: ManagerImp.cpp:44
ripple::NodeStore::Manager::instance
static Manager & instance()
Returns the instance of the manager singleton.
Definition: ManagerImp.cpp:117
std::unique_ptr
STL class.
ripple::NodeStore::ManagerImp::erase
void erase(Factory &factory) override
Remove a factory.
Definition: ManagerImp.cpp:90