rippled
ManagerImp.h
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 #ifndef RIPPLE_NODESTORE_MANAGERIMP_H_INCLUDED
21 #define RIPPLE_NODESTORE_MANAGERIMP_H_INCLUDED
22 
23 #include <ripple/nodestore/Manager.h>
24 
25 namespace ripple {
26 
27 namespace NodeStore {
28 
29 class ManagerImp : public Manager
30 {
31 private:
34 
35 public:
36  static ManagerImp&
37  instance();
38 
39  static void
41 
42  ManagerImp() = default;
43 
44  ~ManagerImp() = default;
45 
46  Factory*
47  find(std::string const& name) override;
48 
49  void
50  insert(Factory& factory) override;
51 
52  void
53  erase(Factory& factory) override;
54 
57  Section const& parameters,
58  std::size_t burstSize,
59  Scheduler& scheduler,
60  beast::Journal journal) override;
61 
64  std::size_t burstSize,
65  Scheduler& scheduler,
66  int readThreads,
67  Section const& config,
68  beast::Journal journal) override;
69 };
70 
71 } // namespace NodeStore
72 } // namespace ripple
73 
74 #endif
ripple::Section
Holds a collection of configuration values.
Definition: BasicConfig.h:42
ripple::NodeStore::Manager
Singleton for managing NodeStore factories and back ends.
Definition: Manager.h:32
ripple::NodeStore::Factory
Base class for backend factories.
Definition: Factory.h:33
std::string
STL class.
ripple::NodeStore::ManagerImp::insert
void insert(Factory &factory) override
Add a factory.
Definition: ManagerImp.cpp:86
ripple::NodeStore::ManagerImp
Definition: ManagerImp.h:29
std::vector
STL class.
ripple::NodeStore::ManagerImp::missing_backend
static void missing_backend()
Definition: ManagerImp.cpp:37
ripple::NodeStore::ManagerImp::make_Database
std::unique_ptr< Database > make_Database(std::size_t burstSize, Scheduler &scheduler, int readThreads, Section const &config, beast::Journal journal) override
Construct a NodeStore database.
Definition: ManagerImp.cpp:72
ripple::NodeStore::ManagerImp::make_Backend
std::unique_ptr< Backend > make_Backend(Section const &parameters, std::size_t burstSize, Scheduler &scheduler, beast::Journal journal) override
Create a backend.
Definition: ManagerImp.cpp:45
ripple::NodeStore::ManagerImp::ManagerImp
ManagerImp()=default
ripple::NodeStore::ManagerImp::find
Factory * find(std::string const &name) override
Return a pointer to the matching factory if it exists.
Definition: ManagerImp.cpp:105
ripple::NodeStore::ManagerImp::instance
static ManagerImp & instance()
Definition: ManagerImp.cpp:30
beast::Journal
A generic endpoint for log messages.
Definition: Journal.h:58
ripple::NodeStore::ManagerImp::~ManagerImp
~ManagerImp()=default
ripple::NodeStore::Scheduler
Scheduling for asynchronous backend activity.
Definition: ripple/nodestore/Scheduler.h:60
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
ripple::NodeStore::ManagerImp::list_
std::vector< Factory * > list_
Definition: ManagerImp.h:33
ripple::NodeStore::ManagerImp::mutex_
std::mutex mutex_
Definition: ManagerImp.h:32
std::mutex
STL class.
std::size_t
std::unique_ptr
STL class.
ripple::NodeStore::ManagerImp::erase
void erase(Factory &factory) override
Remove a factory.
Definition: ManagerImp.cpp:93