// 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(); QString getName() const; template Table* addTable(const QString& name); public: //exceptions 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 QString& p_name) { std::string nm = p_name.toStdString(); if (opened) { throw Opened(name, nm); } DataBase::Table* table = new DataBase::Table(nm, this); tables.insert(std::make_pair(nm, (_Table*)table)); return table; } #endif // CORE_DATABASE_H