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
|
|
|
|
|
|
|
|
namespace rocksdb
|
|
|
|
{
|
|
|
|
struct DB;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace db {
|
|
|
|
|
|
|
|
IRCD_EXCEPTION(ircd::error, error)
|
|
|
|
IRCD_EXCEPTION(error, not_found)
|
|
|
|
IRCD_EXCEPTION(error, corruption)
|
|
|
|
IRCD_EXCEPTION(error, not_supported)
|
|
|
|
IRCD_EXCEPTION(error, invalid_argument)
|
|
|
|
IRCD_EXCEPTION(error, io_error)
|
|
|
|
IRCD_EXCEPTION(error, merge_in_progress)
|
|
|
|
IRCD_EXCEPTION(error, incomplete)
|
|
|
|
IRCD_EXCEPTION(error, shutdown_in_progress)
|
|
|
|
IRCD_EXCEPTION(error, timed_out)
|
|
|
|
IRCD_EXCEPTION(error, aborted)
|
|
|
|
IRCD_EXCEPTION(error, busy)
|
|
|
|
IRCD_EXCEPTION(error, expired)
|
|
|
|
IRCD_EXCEPTION(error, try_again)
|
|
|
|
|
|
|
|
std::string path(const std::string &name);
|
|
|
|
|
2016-09-25 03:18:54 +02:00
|
|
|
template<class T>
|
|
|
|
struct optval
|
|
|
|
:std::pair<T, ssize_t>
|
|
|
|
{
|
|
|
|
optval(const T &key, const ssize_t &val = std::numeric_limits<ssize_t>::min());
|
|
|
|
};
|
|
|
|
|
2016-09-26 06:07:22 +02:00
|
|
|
template<class T> using optlist = std::initializer_list<optval<T>>;
|
|
|
|
template<class T> bool has_opt(const optlist<T> &, const T &);
|
|
|
|
template<class T> ssize_t opt_val(const optlist<T> &, const T &);
|
2016-09-25 03:18:54 +02:00
|
|
|
|
|
|
|
// Reads may be posted to a separate thread which incurs the time of IO while the calling
|
|
|
|
// ircd::context yields.
|
|
|
|
enum class get
|
|
|
|
{
|
|
|
|
PIN, // Keep iter data in memory for iter lifetime (good for lots of ++/--)
|
|
|
|
CACHE, // Update the cache (CACHE is default for non-iterator operations)
|
|
|
|
NO_CACHE, // Do not update the cache (NO_CACHE is default for iterators)
|
|
|
|
NO_SNAPSHOT, // Snapshots provide consistent views for iteration.
|
|
|
|
NO_CHECKSUM, // Integrity of data will be checked unless this is specified
|
|
|
|
READAHEAD, // Pair with a size in bytes for prefetching additional data
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gopts
|
|
|
|
:optlist<get>
|
|
|
|
{
|
|
|
|
template<class... list> gopts(list&&... l): optlist<get>{std::forward<list>(l)...} {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Writes usually occur without yielding your context because the DB is write-log oriented.
|
|
|
|
enum class set
|
2016-09-24 06:01:57 +02:00
|
|
|
{
|
2016-09-25 03:18:54 +02:00
|
|
|
FSYNC, // Uses kernel filesystem synchronization after write (slow)
|
|
|
|
NO_JOURNAL, // Write Ahead Log (WAL) for some crash recovery
|
|
|
|
MISSING_COLUMNS // No exception thrown when writing to a deleted column family
|
2016-09-24 06:01:57 +02:00
|
|
|
};
|
|
|
|
|
2016-09-25 03:18:54 +02:00
|
|
|
struct sopts
|
|
|
|
:optlist<set>
|
2016-09-24 06:01:57 +02:00
|
|
|
{
|
2016-09-25 03:18:54 +02:00
|
|
|
template<class... list> sopts(list&&... l): optlist<set>{std::forward<list>(l)...} {}
|
2016-09-24 06:01:57 +02:00
|
|
|
};
|
|
|
|
|
2016-09-25 03:18:54 +02:00
|
|
|
enum class opt
|
2016-09-24 06:01:57 +02:00
|
|
|
{
|
2016-11-29 16:23:38 +01:00
|
|
|
READ_ONLY, // Opens database without writing permitted.
|
|
|
|
OPEN_FAST, // Skips a lot of stuff to make opening a handle faster
|
|
|
|
OPEN_SMALL, // Optimizes the cache hierarchy for < 1GiB databases.
|
|
|
|
OPEN_BULKLOAD, // Optimizes the handle to accept a large amount of writes at once
|
2016-09-25 03:18:54 +02:00
|
|
|
NO_CREATE, // A new database may be created (if none found) unless this is specified
|
|
|
|
NO_EXISTING, // An error is given if database already exists
|
|
|
|
NO_CHECKSUM, // (paranoid_checks)
|
|
|
|
NO_MADV_DONTNEED, // Never issue MADV_DONTNEED (on windows turns off all pagecaching!)
|
|
|
|
NO_MADV_RANDOM, // Skip MADV_RANDOM on database file opening
|
|
|
|
FALLOCATE, // Allow use of fallocate()
|
|
|
|
NO_FALLOCATE, // Disallow use fallocate() calls
|
|
|
|
NO_FDATASYNC, // Flushing is only ever directed by the kernel pagecache
|
|
|
|
FSYNC, // Use fsync() instead of fdatasync()
|
|
|
|
MMAP_READS, // mmap() table files for reading
|
|
|
|
MMAP_WRITES, // mmap() table files for writing (hinders db journal)
|
|
|
|
STATS_THREAD, // Stats collection etc related to DB threading (thread_track)
|
|
|
|
STATS_MALLOC, // Stats collection for memory allocation when applicable
|
2016-09-26 06:07:22 +02:00
|
|
|
LRU_CACHE, // Pair with a size in bytes for the LRU cache size
|
2016-09-25 03:18:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct opts
|
|
|
|
:optlist<opt>
|
|
|
|
{
|
|
|
|
template<class... list> opts(list&&... l): optlist<opt>{std::forward<list>(l)...} {}
|
2016-09-24 06:01:57 +02:00
|
|
|
};
|
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
struct handle
|
2016-09-26 06:07:22 +02:00
|
|
|
{
|
2017-03-14 19:39:26 +01:00
|
|
|
struct const_iterator;
|
2016-09-26 06:07:22 +02:00
|
|
|
|
|
|
|
private:
|
2016-09-24 06:01:57 +02:00
|
|
|
std::unique_ptr<struct meta> meta;
|
|
|
|
std::unique_ptr<rocksdb::DB> d;
|
|
|
|
|
|
|
|
public:
|
2016-11-29 16:23:38 +01:00
|
|
|
using closure = std::function<void (const string_view &)>;
|
2016-09-26 06:07:22 +02:00
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
operator bool() const { return bool(d); }
|
|
|
|
bool operator!() const { return !d; }
|
|
|
|
|
2016-09-26 06:07:22 +02:00
|
|
|
// Iterations
|
2016-11-29 16:23:38 +01:00
|
|
|
const_iterator lower_bound(const string_view &key, const gopts & = {});
|
|
|
|
const_iterator upper_bound(const string_view &key, const gopts & = {});
|
2016-09-26 06:07:22 +02:00
|
|
|
const_iterator cbegin(const gopts & = {});
|
|
|
|
const_iterator cend(const gopts & = {});
|
2016-09-24 06:01:57 +02:00
|
|
|
|
2016-09-25 06:12:43 +02:00
|
|
|
// Tests if key exists
|
2016-11-29 16:23:38 +01:00
|
|
|
bool has(const string_view &key, const gopts & = {});
|
2016-09-25 06:12:43 +02:00
|
|
|
|
|
|
|
// Perform a get into a closure. This offers a reference to the data with zero-copy.
|
2016-11-29 16:23:38 +01:00
|
|
|
void operator()(const string_view &key, const closure &func, const gopts & = {});
|
|
|
|
void operator()(const string_view &key, const gopts &, const closure &func);
|
2016-09-25 06:12:43 +02:00
|
|
|
|
|
|
|
// Get data into your buffer. The signed char buffer is null terminated; the unsigned is not.
|
2016-11-29 16:23:38 +01:00
|
|
|
size_t get(const string_view &key, char *const &buf, const size_t &max, const gopts & = {});
|
|
|
|
size_t get(const string_view &key, uint8_t *const &buf, const size_t &max, const gopts & = {});
|
|
|
|
std::string get(const string_view &key, const gopts & = {});
|
2016-09-25 06:12:43 +02:00
|
|
|
|
|
|
|
// Write data to the db
|
2016-11-29 16:23:38 +01:00
|
|
|
void set(const string_view &key, const string_view &value, const sopts & = {});
|
|
|
|
void set(const string_view &key, const uint8_t *const &buf, const size_t &size, const sopts & = {});
|
2016-09-24 06:01:57 +02:00
|
|
|
|
2016-09-25 06:12:43 +02:00
|
|
|
// Remove data from the db. not_found is never thrown.
|
2016-11-29 16:23:38 +01:00
|
|
|
void del(const string_view &key, const sopts & = {});
|
2016-09-25 06:12:43 +02:00
|
|
|
|
2016-09-25 03:18:54 +02:00
|
|
|
handle(const std::string &name, const opts & = {});
|
2017-03-14 19:39:26 +01:00
|
|
|
handle();
|
|
|
|
handle(handle &&) noexcept;
|
|
|
|
handle &operator=(handle &&) noexcept;
|
2016-09-24 06:01:57 +02:00
|
|
|
~handle() noexcept;
|
|
|
|
};
|
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
struct handle::const_iterator
|
|
|
|
{
|
|
|
|
using key_type = string_view;
|
|
|
|
using mapped_type = string_view;
|
|
|
|
using value_type = std::pair<key_type, mapped_type>;
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct state;
|
|
|
|
friend class handle;
|
|
|
|
|
|
|
|
std::unique_ptr<struct state> state;
|
|
|
|
mutable value_type val;
|
|
|
|
|
|
|
|
const_iterator(std::unique_ptr<struct state> &&);
|
|
|
|
|
|
|
|
public:
|
|
|
|
operator bool() const;
|
|
|
|
bool operator!() const;
|
|
|
|
bool operator<(const const_iterator &) const;
|
|
|
|
bool operator>(const const_iterator &) const;
|
|
|
|
bool operator==(const const_iterator &) const;
|
|
|
|
bool operator!=(const const_iterator &) const;
|
|
|
|
bool operator<=(const const_iterator &) const;
|
|
|
|
bool operator>=(const const_iterator &) const;
|
|
|
|
|
|
|
|
const value_type *operator->() const;
|
|
|
|
const value_type &operator*() const;
|
|
|
|
|
|
|
|
const_iterator &operator++();
|
|
|
|
const_iterator &operator--();
|
|
|
|
|
|
|
|
const_iterator() = default;
|
|
|
|
const_iterator(const_iterator &&) noexcept;
|
|
|
|
const_iterator(const const_iterator &) = delete;
|
|
|
|
~const_iterator() noexcept;
|
|
|
|
};
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
void write(handle &, const string_view &key, const json::doc &obj, const sopts & = {});
|
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
handle::const_iterator begin(handle &);
|
|
|
|
handle::const_iterator end(handle &);
|
2016-09-26 06:07:22 +02:00
|
|
|
|
2016-09-24 06:01:57 +02:00
|
|
|
struct init
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|
|
|
|
|
2016-09-25 03:25:57 +02:00
|
|
|
// db subsystem has its own SNOMASK'ed logging facility.
|
|
|
|
extern struct log::log log;
|
|
|
|
|
2016-09-24 06:01:57 +02:00
|
|
|
} // namespace db
|
|
|
|
} // namespace ircd
|
2016-09-25 03:18:54 +02:00
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
inline ircd::db::handle::const_iterator
|
2016-09-26 06:07:22 +02:00
|
|
|
ircd::db::end(handle &handle)
|
|
|
|
{
|
|
|
|
return handle.cend();
|
|
|
|
}
|
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
inline ircd::db::handle::const_iterator
|
2016-09-26 06:07:22 +02:00
|
|
|
ircd::db::begin(handle &handle)
|
|
|
|
{
|
|
|
|
return handle.cbegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
ssize_t
|
|
|
|
ircd::db::opt_val(const optlist<T> &list,
|
|
|
|
const T &opt)
|
|
|
|
{
|
|
|
|
for(const auto &p : list)
|
|
|
|
if(p.first == opt)
|
|
|
|
return p.second;
|
|
|
|
|
|
|
|
return std::numeric_limits<ssize_t>::min();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
bool
|
|
|
|
ircd::db::has_opt(const optlist<T> &list,
|
|
|
|
const T &opt)
|
|
|
|
{
|
|
|
|
for(const auto &p : list)
|
|
|
|
if(p.first == opt)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-09-25 03:18:54 +02:00
|
|
|
template<class T>
|
|
|
|
ircd::db::optval<T>::optval(const T &key,
|
|
|
|
const ssize_t &val)
|
|
|
|
:std::pair<T, ssize_t>{key, val}
|
|
|
|
{
|
|
|
|
}
|