// Squawk messenger. // Copyright (C) 2019 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 LMDBDATABASE_DATABASE_H #define LMDBDATABASE_DATABASE_H #include #include #include #include #include #include #include #include #include #include "exceptions.h" namespace LMDBDataBase { class StorageBase; template class Serializer; template class Storage; template class Cache; typedef MDB_txn* TransactionID; class DataBase { friend class StorageBase; public: DataBase(const QString& name, uint16_t mapSize = 10); ~DataBase(); void open(); void close(); bool ready() const; bool removeDirectory(); QString createDirectory(); QString getName() const; void drop(); TransactionID beginReadOnlyTransaction() const; TransactionID beginTransaction() const; void commitTransaction(TransactionID id) const; void abortTransaction(TransactionID id) const; template Storage* addTable(const std::string& name); template Cache* addCache(const std::string& name); template Storage* getTable(const std::string& name); template Cache* getCache(const std::string& name); private: typedef std::map Tables; typedef std::set Transactions; TransactionID beginReadOnlyTransaction(const std::string& storageName) const; TransactionID beginTransaction(const std::string& storageName) const; void commitTransaction(TransactionID id, const std::string& storageName) const; void abortTransaction(TransactionID id, const std::string& storageName) const; private: std::string name; bool opened; uint16_t size; MDB_env* environment; Tables tables; Transactions* transactions; inline static const std::string emptyName = ""; }; } #include "operators.hpp" template LMDBDataBase::Storage* LMDBDataBase::DataBase::addTable(const std::string& p_name) { if (opened) { throw Opened(name, "add table " + p_name); } Storage* table = new Storage(p_name, this); tables.insert(std::make_pair(p_name, (StorageBase*)table)); return table; } template LMDBDataBase::Cache * LMDBDataBase::DataBase::addCache(const std::string& p_name) { if (opened) { throw Opened(name, "add cache " + p_name); } Cache* cache = new Cache(p_name, this); tables.insert(std::make_pair(p_name, (StorageBase*)cache)); return cache; } template LMDBDataBase::Storage* LMDBDataBase::DataBase::getTable(const std::string& p_name) { return static_cast*>(tables.at(p_name)); } template LMDBDataBase::Cache* LMDBDataBase::DataBase::getCache(const std::string& p_name) { return static_cast*>(tables.at(p_name)); } #endif // LMDBDATABASE_DATABASE_H