//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright (c) 2012, 2013 Ripple Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //============================================================================== #ifndef RIPPLE_NODESTORE_DATABASENODEIMP_H_INCLUDED #define RIPPLE_NODESTORE_DATABASENODEIMP_H_INCLUDED #include #include #include namespace ripple { namespace NodeStore { class DatabaseNodeImp : public Database { public: DatabaseNodeImp() = delete; DatabaseNodeImp(DatabaseNodeImp const&) = delete; DatabaseNodeImp& operator=(DatabaseNodeImp const&) = delete; DatabaseNodeImp( Scheduler& scheduler, int readThreads, std::shared_ptr backend, Section const& config, beast::Journal j) : Database(scheduler, readThreads, config, j) , backend_(std::move(backend)) { std::optional cacheSize, cacheAge; if (config.exists("cache_size")) { cacheSize = get(config, "cache_size"); if (cacheSize.value() < 0) { Throw( "Specified negative value for cache_size"); } } if (config.exists("cache_age")) { cacheAge = get(config, "cache_age"); if (cacheAge.value() < 0) { Throw( "Specified negative value for cache_age"); } } if (cacheSize != 0 || cacheAge != 0) { cache_ = std::make_shared>( "DatabaseNodeImp", cacheSize.value_or(0), std::chrono::minutes(cacheAge.value_or(0)), stopwatch(), j); } XRPL_ASSERT( backend_, "ripple::NodeStore::DatabaseNodeImp::DatabaseNodeImp : non-null " "backend"); } ~DatabaseNodeImp() { stop(); } std::string getName() const override { return backend_->getName(); } std::int32_t getWriteLoad() const override { return backend_->getWriteLoad(); } void importDatabase(Database& source) override { importInternal(*backend_.get(), source); } void store(NodeObjectType type, Blob&& data, uint256 const& hash, std::uint32_t) override; bool isSameDB(std::uint32_t, std::uint32_t) override { // only one database return true; } void sync() override { backend_->sync(); } std::vector> fetchBatch(std::vector const& hashes); void asyncFetch( uint256 const& hash, std::uint32_t ledgerSeq, std::function const&)>&& callback) override; void sweep() override; private: // Cache for database objects. This cache is not always initialized. Check // for null before using. std::shared_ptr> cache_; // Persistent key/value storage std::shared_ptr backend_; std::shared_ptr fetchNodeObject( uint256 const& hash, std::uint32_t, FetchReport& fetchReport, bool duplicate) override; void for_each(std::function)> f) override { backend_->for_each(f); } }; } // namespace NodeStore } // namespace ripple #endif