/* * LMDB Abstraction Layer. * Copyright (C) 2023 Yury Gubich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef LMDBAL_BASE_H #define LMDBAL_BASE_H #include #include #include #include #include #include #include #include #include #include "exceptions.h" namespace LMDBAL { class iStorage; template class Serializer; template class Storage; template class Cache; typedef MDB_txn* TransactionID; /** LMDBAL::Storage* addStorage(const std::string& name); template LMDBAL::Cache* addCache(const std::string& name); template LMDBAL::Storage* getStorage(const std::string& name); template LMDBAL::Cache* getCache(const std::string& name); private: typedef std::map Storages; /** Transactions; /** LMDBAL::Storage* LMDBAL::Base::addStorage(const std::string& _name) { if (opened) { throw Opened(name, "add storage " + _name); } Storage* storage = new Storage(_name, this); std::pair pair = storages.insert(std::make_pair(_name, (iStorage*)storage)); if (!pair.second) throw StorageDuplicate(name, _name); return storage; } /** * \brief Adds LMDBAL::Cache to the database * * Defines that the database is going to have the following cache. * The LMDBAL::Base must be closed * * \param[in] _name - cache name * \returns cache pointer. LMDBAL::Base keeps the ownership of the added cache, you don't need to destoroy it * * \tparam K - key type of the cache * \tparam V - value type of the cahce * * \exception LMDBAL::Opened thrown if this method is called on the opened database * \exception LMDBAL::StorageDuplicate thrown if somebody tries to add cache with repeating name */ template LMDBAL::Cache * LMDBAL::Base::addCache(const std::string& _name) { if (opened) { throw Opened(name, "add cache " + _name); } Cache* cache = new Cache(_name, this); std::pair pair = storages.insert(std::make_pair(_name, (iStorage*)cache)); if (!pair.second) throw StorageDuplicate(name, _name); return cache; } /** * \brief Returns LMDBAL::Storage handle * * Requested storage must have been added before opening database * Note that template parameters is user responsibility zone! * If user, for instance, had added storage but calling * this method with template parameters * on the same name of the previously added storage, or calling it on cache - the behaviour is undefined * * \param[in] _name - storage name * \returns storage pointer. LMDBAL::Base keeps the ownership of the added storage, you don't need to destoroy it * * \tparam K - key type of the storage * \tparam V - value type of the storage * * \exception std::out_of_range thrown if storage with the given name was not found */ template LMDBAL::Storage* LMDBAL::Base::getStorage(const std::string& _name) { return static_cast*>(storages.at(_name)); } /** * \brief Returns LMDBAL::Cache handle * * Requested cache must have been added before opening database * Note that template parameters is user responsibility zone! * If user, for instance, had added cache but calling * this method with template parameters * on the same name of the previously added cache, or calling it on storage - the behaviour is undefined * * \param[in] _name - cache name * \returns cache pointer. LMDBAL::Base keeps the ownership of the added cache, you don't need to destoroy it * * \tparam K - key type of the cache * \tparam V - value type of the cahce * * \exception std::out_of_range thrown if cache with the given name was not found */ template LMDBAL::Cache* LMDBAL::Base::getCache(const std::string& _name) { return static_cast*>(storages.at(_name)); } #endif //LMDBAL_BASE_H