// 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 CORE_DATABASE_H #define CORE_DATABASE_H #include #include #include #include #include #include class DataBase { class _Table; template class Serializer; public: template class Table; DataBase(const QString& name, uint16_t mapSize = 10); ~DataBase(); void open(); void close(); bool ready() const; bool removeDirectory(); QString getName() const; void drop(); template Table* addTable(const std::string& name); template Table* getTable(const std::string& name); public: //exceptions class Exception; class Directory; class Closed; class Opened; class NotFound; class Exist; class Unknown; private: std::string name; bool opened; uint16_t size; MDB_env* environment; std::map tables; }; #include "exceptions.h" template DataBase::Table* DataBase::addTable(const std::string& p_name) { if (opened) { throw Opened(name, "add table " + p_name); } DataBase::Table* table = new DataBase::Table(p_name, this); tables.insert(std::make_pair(p_name, (_Table*)table)); return table; } template DataBase::Table* DataBase::getTable(const std::string& p_name) { return static_cast*>(tables.at(p_name)); } #endif // CORE_DATABASE_H