2016-09-24 06:01:57 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 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
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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 op :uint8_t;
|
|
|
|
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
|
|
|
|
2017-09-12 18:37:44 +02:00
|
|
|
/// Forward declarations for rocksdb because we do not include it here.
|
|
|
|
///
|
|
|
|
/// These are forward declarations to objects we may carry a pointer to.
|
|
|
|
/// Users of ircd::db should not have to deal directly with these types.
|
|
|
|
///
|
2017-03-31 00:57:08 +02:00
|
|
|
namespace rocksdb
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
2017-03-31 00:57:08 +02:00
|
|
|
struct DB;
|
2017-04-03 06:02:32 +02:00
|
|
|
struct Slice;
|
2017-03-31 00:57:08 +02:00
|
|
|
struct Options;
|
|
|
|
struct DBOptions;
|
|
|
|
struct ColumnFamilyOptions;
|
|
|
|
struct PlainTableOptions;
|
|
|
|
struct BlockBasedTableOptions;
|
|
|
|
struct Cache;
|
|
|
|
struct Iterator;
|
|
|
|
struct ColumnFamilyHandle;
|
|
|
|
struct Snapshot;
|
2017-09-08 11:14:17 +02:00
|
|
|
struct WriteBatch;
|
2017-03-31 00:57:08 +02:00
|
|
|
}
|
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
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
rocksdb::Slice slice(const string_view &);
|
|
|
|
string_view slice(const rocksdb::Slice &);
|
2017-04-03 06:02:32 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
bool valid(const rocksdb::Iterator &);
|
|
|
|
string_view key(const rocksdb::Iterator &);
|
|
|
|
string_view val(const rocksdb::Iterator &);
|
2016-09-25 03:25:57 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
std::string path(const std::string &name);
|
|
|
|
std::vector<std::string> available();
|
2017-04-03 06:02:32 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
void log_rdb_perf_context(const bool &all = true);
|
2017-09-16 20:51:52 +02:00
|
|
|
|
|
|
|
string_view reflect(const pos &);
|
2017-09-20 06:40:53 +02:00
|
|
|
|
|
|
|
// Indicates an op uses both a key and value for its operation. Some only use
|
|
|
|
// a key name so an empty value argument in a delta is okay when false.
|
|
|
|
bool value_required(const op &);
|
|
|
|
string_view reflect(const op &);
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2016-09-25 03:18:54 +02:00
|
|
|
|
2017-09-08 11:04:21 +02:00
|
|
|
enum class ircd::db::pos
|
2017-09-20 06:40:53 +02:00
|
|
|
:int8_t
|
2017-09-08 11:04:21 +02:00
|
|
|
{
|
2017-10-02 06:33:00 +02: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
|
2017-09-08 11:04:21 +02:00
|
|
|
};
|
|
|
|
|
2017-09-20 06:40:53 +02:00
|
|
|
enum ircd::db::op
|
|
|
|
:uint8_t
|
|
|
|
{
|
|
|
|
GET, // no-op sentinel, do not use (debug asserts)
|
|
|
|
SET, // (batch.Put)
|
|
|
|
MERGE, // (batch.Merge)
|
|
|
|
DELETE, // (batch.Delete)
|
|
|
|
DELETE_RANGE, // (batch.DeleteRange)
|
|
|
|
SINGLE_DELETE, // (batch.SingleDelete)
|
|
|
|
};
|
|
|
|
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "delta.h"
|
|
|
|
#include "comparator.h"
|
|
|
|
#include "prefix.h"
|
|
|
|
#include "merge.h"
|
|
|
|
#include "database.h"
|
|
|
|
#include "opts.h"
|
|
|
|
#include "column.h"
|
|
|
|
#include "cell.h"
|
|
|
|
#include "row.h"
|
|
|
|
#include "index.h"
|
|
|
|
#include "json.h"
|
|
|
|
#include "iov.h"
|
2017-04-03 06:02:32 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using db::database;
|
|
|
|
}
|
2017-03-23 22:58:24 +01:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::db::init
|
2017-08-23 22:41:21 +02:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|