2018-01-17 18:14:13 -08: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-03 18:22:01 -08: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-23 21:01:57 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_DB_H
|
|
|
|
|
2017-09-12 09:37:44 -07:00
|
|
|
/// Database: an object store from the primitives of `cell`, `column`, and `row`.
|
2017-08-28 14:51:22 -07:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
|
|
|
struct init;
|
2018-12-24 13:32:22 -08:00
|
|
|
struct error;
|
2017-08-30 14:07:36 -07:00
|
|
|
struct gopts;
|
|
|
|
struct sopts;
|
2017-08-28 14:51:22 -07:00
|
|
|
struct cell;
|
|
|
|
struct row;
|
|
|
|
struct column;
|
2017-09-21 20:08:11 -07:00
|
|
|
struct index;
|
2017-08-28 14:51:22 -07:00
|
|
|
struct database;
|
2018-12-12 09:57:46 -08:00
|
|
|
struct options;
|
2017-08-28 14:51:22 -07:00
|
|
|
|
|
|
|
// db subsystem has its own logging facility
|
|
|
|
extern struct log::log log;
|
2018-12-08 15:37:18 -08:00
|
|
|
|
2019-05-31 16:06:55 -07:00
|
|
|
// Version information from rocksdb headers and library
|
|
|
|
extern const info::versions version_api, version_abi;
|
2018-12-08 15:37:18 -08:00
|
|
|
|
|
|
|
// Supported compressions (detected when running ircd)
|
2019-06-02 01:03:28 -07:00
|
|
|
extern std::array<std::tuple<std::string, ulong>, 16> compressions;
|
2017-08-28 14:51:22 -07:00
|
|
|
}
|
2016-09-23 21:01:57 -07:00
|
|
|
|
2018-12-03 12:20:55 -08:00
|
|
|
#include "pos.h"
|
2018-01-17 18:14:13 -08:00
|
|
|
#include "delta.h"
|
|
|
|
#include "comparator.h"
|
2018-09-18 15:07:09 -07:00
|
|
|
#include "compactor.h"
|
2019-06-11 12:47:43 -07:00
|
|
|
#include "prefix_transform.h"
|
2018-01-17 18:14:13 -08:00
|
|
|
#include "merge.h"
|
2018-09-19 15:38:37 -07:00
|
|
|
#include "descriptor.h"
|
2019-07-20 15:29:33 -07:00
|
|
|
#include "rocksdb.h"
|
2019-01-23 13:03:39 -08:00
|
|
|
#include "database.h"
|
2019-07-20 15:29:33 -07:00
|
|
|
#include "snapshot.h"
|
|
|
|
#include "sst.h"
|
|
|
|
#include "wal.h"
|
2018-12-24 13:32:22 -08:00
|
|
|
#include "error.h"
|
2018-05-14 16:17:43 -07:00
|
|
|
#include "cache.h"
|
2018-01-17 18:14:13 -08:00
|
|
|
#include "opts.h"
|
|
|
|
#include "column.h"
|
2019-06-11 12:55:14 -07:00
|
|
|
#include "domain.h"
|
2018-01-17 18:14:13 -08:00
|
|
|
#include "cell.h"
|
|
|
|
#include "row.h"
|
|
|
|
#include "json.h"
|
2018-01-30 09:58:36 -08:00
|
|
|
#include "txn.h"
|
2018-05-23 17:03:09 -07:00
|
|
|
#include "stats.h"
|
2017-03-14 11:39:26 -07:00
|
|
|
|
2017-04-02 21:02:32 -07:00
|
|
|
//
|
|
|
|
// Misc utils
|
|
|
|
//
|
2017-08-28 14:51:22 -07:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
2018-05-24 20:01:52 -07: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 12:30:59 -08:00
|
|
|
// Paths of available databases.
|
2017-08-28 14:51:22 -07:00
|
|
|
std::vector<std::string> available();
|
|
|
|
}
|
2016-09-24 18:18:54 -07:00
|
|
|
|
2017-08-28 14:51:22 -07:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using db::database;
|
|
|
|
}
|
2017-03-23 14:58:24 -07:00
|
|
|
|
2018-01-17 18:14:13 -08:00
|
|
|
/// Database subsystem initialization and destruction
|
2017-08-28 14:51:22 -07:00
|
|
|
struct ircd::db::init
|
2017-08-23 14:41:21 -06:00
|
|
|
{
|
2019-06-06 18:43:18 -07:00
|
|
|
static void compressions();
|
|
|
|
static void directory();
|
|
|
|
static void test_direct_io();
|
|
|
|
static void test_hw_crc32();
|
|
|
|
|
|
|
|
public:
|
2017-08-23 14:41:21 -06:00
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|