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;
|
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;
|
2017-09-19 21:40:53 -07:00
|
|
|
enum class pos :int8_t;
|
2017-08-28 14:51:22 -07: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-23 21:01:57 -07:00
|
|
|
|
2018-01-17 18:14:13 -08:00
|
|
|
/// Types of iterator operations
|
|
|
|
enum class ircd::db::pos
|
|
|
|
:int8_t
|
2017-03-14 11:39:26 -07:00
|
|
|
{
|
2018-01-17 18:14:13 -08: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"
|
|
|
|
#include "prefix.h"
|
|
|
|
#include "merge.h"
|
2018-01-23 15:30:48 -08:00
|
|
|
#include "database/rocksdb.h"
|
2018-01-18 17:59:22 -08:00
|
|
|
#include "database/database.h"
|
|
|
|
#include "database/descriptor.h"
|
|
|
|
#include "database/options.h"
|
|
|
|
#include "database/snapshot.h"
|
2018-01-17 18:14:13 -08:00
|
|
|
#include "opts.h"
|
|
|
|
#include "column.h"
|
|
|
|
#include "cell.h"
|
|
|
|
#include "row.h"
|
|
|
|
#include "index.h"
|
|
|
|
#include "json.h"
|
2018-01-30 09:58:36 -08:00
|
|
|
#include "txn.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
|
|
|
|
{
|
|
|
|
extern const char *const version;
|
2017-04-02 21:02:32 -07:00
|
|
|
|
2017-08-28 14:51:22 -07:00
|
|
|
std::string path(const std::string &name);
|
|
|
|
std::vector<std::string> available();
|
2017-04-02 21:02:32 -07:00
|
|
|
|
2017-08-28 14:51:22 -07:00
|
|
|
void log_rdb_perf_context(const bool &all = true);
|
2017-09-16 11:51:52 -07:00
|
|
|
|
|
|
|
string_view reflect(const pos &);
|
2017-08-28 14:51:22 -07:00
|
|
|
}
|
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
|
|
|
{
|
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|