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;
|
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;
|
2017-09-20 06:40:53 +02:00
|
|
|
enum class pos :int8_t;
|
2017-08-28 23:51:22 +02:00
|
|
|
|
|
|
|
// Errors for the database subsystem. The exceptions that use _HIDENAME
|
|
|
|
// are built from RocksDB errors which already have an info string with
|
|
|
|
// an included name.
|
|
|
|
//
|
|
|
|
IRCD_EXCEPTION(ircd::error, error)
|
|
|
|
IRCD_EXCEPTION(error, not_found)
|
|
|
|
IRCD_EXCEPTION(error, schema_error)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, corruption)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, not_supported)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, invalid_argument)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, io_error)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, merge_in_progress)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, incomplete)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, shutdown_in_progress)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, timed_out)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, aborted)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, busy)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, expired)
|
|
|
|
IRCD_EXCEPTION_HIDENAME(error, try_again)
|
|
|
|
|
|
|
|
// db subsystem has its own logging facility
|
|
|
|
extern struct log::log log;
|
|
|
|
}
|
2016-09-24 06:01:57 +02:00
|
|
|
|
2018-01-18 03:14:13 +01:00
|
|
|
/// Types of iterator operations
|
|
|
|
enum class ircd::db::pos
|
|
|
|
:int8_t
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
2018-01-18 03:14:13 +01:00
|
|
|
FRONT = -2, // .front() | first element
|
|
|
|
PREV = -1, // std::prev() | previous element
|
|
|
|
END = 0, // break; | exit iteration (or past the end)
|
|
|
|
NEXT = 1, // continue; | next element
|
|
|
|
BACK = 2, // .back() | last element
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "delta.h"
|
|
|
|
#include "comparator.h"
|
2018-09-19 00:07:09 +02:00
|
|
|
#include "compactor.h"
|
2018-01-18 03:14:13 +01:00
|
|
|
#include "prefix.h"
|
|
|
|
#include "merge.h"
|
2018-09-20 00:38:37 +02:00
|
|
|
#include "descriptor.h"
|
2018-01-24 00:30:48 +01:00
|
|
|
#include "database/rocksdb.h"
|
2018-01-19 02:59:22 +01:00
|
|
|
#include "database/database.h"
|
|
|
|
#include "database/options.h"
|
|
|
|
#include "database/snapshot.h"
|
2018-09-22 22:13:05 +02:00
|
|
|
#include "database/sst.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"
|
|
|
|
#include "cell.h"
|
|
|
|
#include "row.h"
|
|
|
|
#include "index.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
|
|
|
|
{
|
|
|
|
extern const char *const version;
|
2017-04-03 06:02:32 +02:00
|
|
|
|
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);
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
std::vector<std::string> available();
|
2017-04-03 06:02:32 +02:00
|
|
|
|
2017-09-16 20:51:52 +02:00
|
|
|
string_view reflect(const pos &);
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
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
|
|
|
{
|
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|