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.
|
2017-03-31 00:57:08 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_DB_OPTS_H
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
enum class set :uint64_t;
|
|
|
|
enum class get :uint64_t;
|
2017-08-28 23:51:22 +02:00
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
template<class> struct opts;
|
2017-08-28 23:51:22 +02:00
|
|
|
struct sopts;
|
|
|
|
struct gopts;
|
2017-09-22 05:08:11 +02:00
|
|
|
|
|
|
|
template<class T> bool test(const opts<T> &, const typename std::underlying_type<T>::type &);
|
|
|
|
template<class T> bool test(const opts<T> &, const T &value);
|
|
|
|
|
|
|
|
template<class T> opts<T> &operator|=(opts<T> &, const opts<T> &);
|
|
|
|
template<class T> opts<T> &operator|=(opts<T> &, const T &value);
|
|
|
|
|
|
|
|
template<class T> opts<T> &operator&=(opts<T> &, const opts<T> &);
|
|
|
|
template<class T> opts<T> &operator&=(opts<T> &, const T &value);
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2017-03-31 00:57:08 +02:00
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
enum class ircd::db::set
|
|
|
|
:uint64_t
|
2017-03-31 00:57:08 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
FSYNC = 0x0001, // Uses kernel filesystem synchronization after write (slow)
|
|
|
|
NO_JOURNAL = 0x0002, // Write Ahead Log (WAL) for some crash recovery
|
|
|
|
MISSING_COLUMNS = 0x0004, // No exception thrown when writing to a deleted column family
|
2017-03-31 00:57:08 +02:00
|
|
|
};
|
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
enum class ircd::db::get
|
|
|
|
:uint64_t
|
2017-03-31 01:20:01 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
PIN = 0x0001, // Keep iter data in memory for iter lifetime (good for lots of ++/--)
|
|
|
|
CACHE = 0x0002, // Update the cache (CACHE is default for non-iterator operations)
|
|
|
|
NO_CACHE = 0x0004, // Do not update the cache (NO_CACHE is default for iterators)
|
|
|
|
NO_SNAPSHOT = 0x0008, // This iterator will have the latest data (tailing)
|
|
|
|
NO_CHECKSUM = 0x0010, // Integrity of data will be checked unless this is specified
|
2017-09-24 04:47:36 +02:00
|
|
|
PREFIX = 0x0020, // (prefix_same_as_start); automatic for index columns with pfx
|
|
|
|
ORDERED = 0x0040, // (total_order_seek); relevant to index columns
|
2017-03-31 01:20:01 +02:00
|
|
|
};
|
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
template<class T>
|
|
|
|
struct ircd::db::opts
|
2017-03-31 01:20:01 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
using flag_t = typename std::underlying_type<T>::type;
|
|
|
|
|
|
|
|
flag_t value {0};
|
|
|
|
|
|
|
|
opts() = default;
|
|
|
|
opts(const std::initializer_list<T> &list)
|
|
|
|
:value{combine_flags(list)}
|
2017-08-23 22:37:47 +02:00
|
|
|
{}
|
2017-03-31 01:20:01 +02:00
|
|
|
};
|
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
struct ircd::db::sopts
|
|
|
|
:opts<set>
|
2017-03-31 01:20:01 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
using opts<set>::opts;
|
2017-03-31 01:20:01 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::db::gopts
|
2017-09-22 05:08:11 +02:00
|
|
|
:opts<get>
|
2017-03-31 01:20:01 +02:00
|
|
|
{
|
|
|
|
database::snapshot snapshot;
|
2018-04-14 07:08:57 +02:00
|
|
|
const rocksdb::Slice *lower_bound { nullptr };
|
|
|
|
const rocksdb::Slice *upper_bound { nullptr };
|
|
|
|
size_t readahead { 0 };
|
|
|
|
uint64_t seqnum { 0 };
|
2017-03-31 01:20:01 +02:00
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
using opts<get>::opts;
|
2017-03-31 01:20:01 +02:00
|
|
|
};
|
|
|
|
|
2017-03-31 00:57:08 +02:00
|
|
|
template<class T>
|
2017-09-22 05:08:11 +02:00
|
|
|
ircd::db::opts<T> &
|
|
|
|
ircd::db::operator&=(opts<T> &a,
|
|
|
|
const T &value)
|
2017-03-31 00:57:08 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
using flag_t = typename opts<T>::flag_t;
|
2017-03-31 00:57:08 +02:00
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
a.value &= flag_t(value);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
ircd::db::opts<T> &
|
|
|
|
ircd::db::operator&=(opts<T> &a,
|
|
|
|
const opts<T> &b)
|
|
|
|
{
|
|
|
|
a.value &= b.value;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
ircd::db::opts<T> &
|
|
|
|
ircd::db::operator|=(opts<T> &a,
|
|
|
|
const T &value)
|
|
|
|
{
|
|
|
|
using flag_t = typename opts<T>::flag_t;
|
|
|
|
|
|
|
|
a.value |= flag_t(value);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
ircd::db::opts<T> &
|
|
|
|
ircd::db::operator|=(opts<T> &a,
|
|
|
|
const opts<T> &b)
|
|
|
|
{
|
|
|
|
a.value |= b.value;
|
|
|
|
return a;
|
2017-03-31 00:57:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
bool
|
2017-09-22 05:08:11 +02:00
|
|
|
ircd::db::test(const opts<T> &a,
|
|
|
|
const T &value)
|
2017-03-31 00:57:08 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
using flag_t = typename opts<T>::flag_t;
|
2017-03-31 00:57:08 +02:00
|
|
|
|
2017-09-22 05:08:11 +02:00
|
|
|
return a.value & flag_t(value);
|
2017-03-31 00:57:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
2017-09-22 05:08:11 +02:00
|
|
|
bool
|
|
|
|
ircd::db::test(const opts<T> &a,
|
|
|
|
const typename std::underlying_type<T>::type &value)
|
2017-03-31 00:57:08 +02:00
|
|
|
{
|
2017-09-22 05:08:11 +02:00
|
|
|
return (a.value & value) == value;
|
2017-03-31 00:57:08 +02:00
|
|
|
}
|