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_ROW_H
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
|
|
|
struct row;
|
|
|
|
|
|
|
|
// [SET] Delete row from DB (convenience to an op::DELETE delta)
|
|
|
|
void del(row &, const sopts & = {});
|
|
|
|
}
|
2017-03-31 00:57:08 +02:00
|
|
|
|
2017-09-17 00:20:13 +02:00
|
|
|
/// A `row` is a collection of cells from different columns which all share the same
|
|
|
|
/// key. This is an interface for dealing with those cells in the aggregate.
|
|
|
|
///
|
|
|
|
/// Note that in a `row` each `cell` comes from a different `column`, but `cell::key()`
|
|
|
|
/// will all return the same index value across the whole `row`. To get the names
|
|
|
|
/// of the columns themselves to build ex. the key name of a JSON key-value pair,
|
|
|
|
/// use `cell::col()`, which will be different for each `cell` across the `row`.
|
|
|
|
///
|
|
|
|
/// The db::row::iterator iterates over the cells in a row; to iterate over
|
|
|
|
/// multiple rows use the db::cursor
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::db::row
|
2017-09-29 06:19:02 +02:00
|
|
|
:vector_view<cell>
|
2017-03-31 00:57:08 +02:00
|
|
|
{
|
2017-04-03 06:02:32 +02:00
|
|
|
struct delta;
|
2017-03-31 00:57:08 +02:00
|
|
|
|
|
|
|
public:
|
2017-08-30 23:22:19 +02:00
|
|
|
bool valid() const; // true on any cell valid; false on empty
|
2017-09-16 20:48:09 +02:00
|
|
|
bool valid(const string_view &) const; // true on any cell valid equal; false on empty
|
2017-08-30 23:22:19 +02:00
|
|
|
|
2017-09-22 02:00:48 +02:00
|
|
|
// [GET] Find cell by name
|
2017-04-03 06:02:32 +02:00
|
|
|
const_iterator find(const string_view &column) const;
|
|
|
|
iterator find(const string_view &column);
|
|
|
|
|
2017-09-22 02:00:48 +02:00
|
|
|
// [GET] Get cell (or throw)
|
|
|
|
const cell &operator[](const size_t &column) const;
|
2017-04-03 06:02:32 +02:00
|
|
|
const cell &operator[](const string_view &column) const;
|
2017-09-22 02:00:48 +02:00
|
|
|
cell &operator[](const size_t &column);
|
2017-04-03 06:02:32 +02:00
|
|
|
cell &operator[](const string_view &column);
|
|
|
|
|
|
|
|
// [SET] Perform operation
|
|
|
|
void operator()(const op &, const string_view &col, const string_view &val = {}, const sopts & = {});
|
|
|
|
|
2017-09-29 06:19:02 +02:00
|
|
|
using vector_view<cell>::vector_view;
|
2017-04-03 06:02:32 +02:00
|
|
|
|
|
|
|
row(database &,
|
|
|
|
const string_view &key = {},
|
|
|
|
const vector_view<string_view> &columns = {},
|
2017-09-29 06:19:02 +02:00
|
|
|
const vector_view<cell> &buf = {},
|
2017-08-23 22:37:47 +02:00
|
|
|
gopts opts = {});
|
2017-04-03 06:02:32 +02:00
|
|
|
|
2017-08-30 23:22:19 +02:00
|
|
|
template<class... T>
|
|
|
|
row(database &,
|
|
|
|
const string_view &key = {},
|
|
|
|
const json::tuple<T...> & = {},
|
2017-09-29 06:19:02 +02:00
|
|
|
const vector_view<cell> &buf = {},
|
2017-08-30 23:22:19 +02:00
|
|
|
gopts opts = {});
|
|
|
|
|
2017-09-12 21:03:13 +02:00
|
|
|
template<class pos> friend size_t seek(row &, const pos &);
|
2017-04-03 06:02:32 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::db
|
|
|
|
{
|
|
|
|
// [SET] Perform operations in a sequence as a single transaction. No template
|
|
|
|
// iterators supported yet, just a ptr range good for contiguous sequences.
|
|
|
|
void write(const row::delta *const &begin, const row::delta *const &end, const sopts & = {});
|
|
|
|
void write(const std::initializer_list<row::delta> &, const sopts & = {});
|
|
|
|
void write(const sopts &, const std::initializer_list<row::delta> &);
|
|
|
|
void write(const row::delta &, const sopts & = {});
|
|
|
|
}
|
|
|
|
|
2017-08-23 22:37:47 +02:00
|
|
|
//
|
|
|
|
// A delta is an element of a database transaction. You can use this to make
|
|
|
|
// an all-succeed-or-all-fail commitment to multiple rows at once. It is also
|
|
|
|
// useful to make a commitment on a single row as a convenient way to compose
|
|
|
|
// all of a row's cells together.
|
|
|
|
//
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::db::row::delta
|
2017-08-29 03:44:27 +02:00
|
|
|
:std::tuple<op, row *>
|
2017-08-23 22:37:47 +02:00
|
|
|
{
|
2017-09-19 05:51:53 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
OP, ROW
|
|
|
|
};
|
|
|
|
|
2017-08-23 22:37:47 +02:00
|
|
|
delta(row &r, const enum op &op = op::SET)
|
2017-08-29 03:44:27 +02:00
|
|
|
:std::tuple<enum op, row *>{op, &r}
|
2017-08-23 22:37:47 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
delta(const enum op &op, row &r)
|
2017-08-29 03:44:27 +02:00
|
|
|
:std::tuple<enum op, row *>{op, &r}
|
2017-08-23 22:37:47 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2017-08-30 23:22:19 +02:00
|
|
|
template<class... T>
|
|
|
|
ircd::db::row::row(database &d,
|
|
|
|
const string_view &key,
|
|
|
|
const json::tuple<T...> &t,
|
2017-09-29 06:19:02 +02:00
|
|
|
const vector_view<cell> &buf,
|
2017-08-30 23:22:19 +02:00
|
|
|
gopts opts)
|
2017-09-29 06:19:02 +02:00
|
|
|
:row{[&d, &key, &t, &buf, &opts]
|
2017-08-30 23:22:19 +02:00
|
|
|
() -> row
|
|
|
|
{
|
|
|
|
std::array<string_view, t.size()> cols;
|
|
|
|
json::_key_transform(t, std::begin(cols), std::end(cols));
|
2017-09-29 06:19:02 +02:00
|
|
|
return { d, key, cols, buf, opts };
|
2017-08-30 23:22:19 +02:00
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-03 06:02:32 +02:00
|
|
|
inline ircd::db::cell &
|
2017-09-22 02:00:48 +02:00
|
|
|
ircd::db::row::operator[](const size_t &i)
|
2017-04-03 06:02:32 +02:00
|
|
|
{
|
2017-09-29 06:19:02 +02:00
|
|
|
return vector_view<cell>::at(i);
|
2017-04-03 06:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline const ircd::db::cell &
|
2017-09-22 02:00:48 +02:00
|
|
|
ircd::db::row::operator[](const size_t &i)
|
2017-04-03 06:02:32 +02:00
|
|
|
const
|
|
|
|
{
|
2017-09-29 06:19:02 +02:00
|
|
|
return vector_view<cell>::at(i);
|
2017-04-03 06:02:32 +02:00
|
|
|
}
|