2018-01-18 03:14:13 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2016-09-24 06:01:57 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_DB_H
|
|
|
|
|
2017-09-12 18:37:44 +02:00
|
|
|
/// Database: an object store from the primitives of `cell`, `column`, and `row`.
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
|
|
|
struct init;
|
2018-12-24 22:32:22 +01:00
|
|
|
struct error;
|
2017-08-30 23:07:36 +02:00
|
|
|
struct gopts;
|
|
|
|
struct sopts;
|
2017-08-28 23:51:22 +02:00
|
|
|
struct cell;
|
|
|
|
struct row;
|
|
|
|
struct column;
|
2017-09-22 05:08:11 +02:00
|
|
|
struct index;
|
2017-08-28 23:51:22 +02:00
|
|
|
struct database;
|
2018-12-12 18:57:46 +01:00
|
|
|
struct options;
|
2017-08-28 23:51:22 +02:00
|
|
|
|
|
|
|
// db subsystem has its own logging facility
|
|
|
|
extern struct log::log log;
|
2018-12-09 00:37:18 +01:00
|
|
|
|
2019-06-01 01:06:55 +02:00
|
|
|
// Version information from rocksdb headers and library
|
|
|
|
extern const info::versions version_api, version_abi;
|
2018-12-09 00:37:18 +01:00
|
|
|
|
|
|
|
// Supported compressions (detected when running ircd)
|
2019-06-02 10:03:28 +02:00
|
|
|
extern std::array<std::tuple<std::string, ulong>, 16> compressions;
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2016-09-24 06:01:57 +02:00
|
|
|
|
2018-12-03 21:20:55 +01:00
|
|
|
#include "pos.h"
|
2018-01-18 03:14:13 +01:00
|
|
|
#include "delta.h"
|
|
|
|
#include "comparator.h"
|
2018-09-19 00:07:09 +02:00
|
|
|
#include "compactor.h"
|
2019-06-11 21:47:43 +02:00
|
|
|
#include "prefix_transform.h"
|
2018-01-18 03:14:13 +01:00
|
|
|
#include "merge.h"
|
2018-09-20 00:38:37 +02:00
|
|
|
#include "descriptor.h"
|
2019-07-21 00:29:33 +02:00
|
|
|
#include "rocksdb.h"
|
2019-01-23 22:03:39 +01:00
|
|
|
#include "database.h"
|
2019-07-21 00:29:33 +02:00
|
|
|
#include "snapshot.h"
|
|
|
|
#include "sst.h"
|
|
|
|
#include "wal.h"
|
2018-12-24 22:32:22 +01:00
|
|
|
#include "error.h"
|
2018-05-15 01:17:43 +02:00
|
|
|
#include "cache.h"
|
2018-01-18 03:14:13 +01:00
|
|
|
#include "opts.h"
|
|
|
|
#include "column.h"
|
2019-06-11 21:55:14 +02:00
|
|
|
#include "domain.h"
|
2018-01-18 03:14:13 +01:00
|
|
|
#include "cell.h"
|
|
|
|
#include "row.h"
|
|
|
|
#include "json.h"
|
2018-01-30 18:58:36 +01:00
|
|
|
#include "txn.h"
|
2018-05-24 02:03:09 +02:00
|
|
|
#include "stats.h"
|
2017-03-14 19:39:26 +01:00
|
|
|
|
2017-04-03 06:02:32 +02:00
|
|
|
//
|
|
|
|
// Misc utils
|
|
|
|
//
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
// Utils for "name:checkpoint" string amalgam
|
|
|
|
std::string namepoint(const string_view &name, const uint64_t &checkpoint);
|
|
|
|
std::pair<string_view, uint64_t> namepoint(const string_view &name);
|
|
|
|
|
|
|
|
// Generate local filesytem path based on name / name:checkpoint / etc.
|
|
|
|
std::string path(const string_view &name, const uint64_t &checkpoint);
|
|
|
|
std::string path(const string_view &name);
|
|
|
|
|
2018-12-03 21:30:59 +01:00
|
|
|
// Paths of available databases.
|
2017-08-28 23:51:22 +02:00
|
|
|
std::vector<std::string> available();
|
|
|
|
}
|
2016-09-25 03:18:54 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using db::database;
|
|
|
|
}
|
2017-03-23 22:58:24 +01:00
|
|
|
|
2018-01-18 03:14:13 +01:00
|
|
|
/// Database subsystem initialization and destruction
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::db::init
|
2017-08-23 22:41:21 +02:00
|
|
|
{
|
2019-06-07 03:43:18 +02:00
|
|
|
static void compressions();
|
|
|
|
static void directory();
|
|
|
|
static void test_direct_io();
|
|
|
|
static void test_hw_crc32();
|
|
|
|
|
|
|
|
public:
|
2017-08-23 22:41:21 +02:00
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|