d806d635f9
Fixed test for index.
39 lines
880 B
C++
39 lines
880 B
C++
#pragma once
|
|
|
|
#include "config/config.hpp"
|
|
#include "data_structures/concurrent/concurrent_map.hpp"
|
|
#include "database/db.hpp"
|
|
#include "dbms/cleaner.hpp"
|
|
#include "snapshot/snapshoter.hpp"
|
|
|
|
class Dbms
|
|
{
|
|
public:
|
|
Dbms() { create_default(); }
|
|
|
|
// returns active database
|
|
Db &active();
|
|
|
|
// set active database
|
|
// if active database doesn't exist creates one
|
|
Db &active(const std::string &name);
|
|
|
|
// TODO: DELETE action
|
|
|
|
private:
|
|
// creates default database
|
|
Db &create_default() { return active("default"); }
|
|
|
|
// dbs container
|
|
ConcurrentMap<std::string, Db> dbs;
|
|
|
|
// currently active database
|
|
std::atomic<Db *> active_db;
|
|
|
|
// Cleaning thread.
|
|
Cleaning cleaning = {dbs, CONFIG_INTEGER(config::CLEANING_CYCLE_SEC)};
|
|
|
|
// Snapshoting thread.
|
|
Snapshoter snapshoter = {dbs, CONFIG_INTEGER(config::SNAPSHOT_CYCLE_SEC)};
|
|
};
|