/* * Copyright (C) 2016 Charybdis Development Team * Copyright (C) 2016 Jason Volk * * 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_CELL_H namespace ircd::db { struct cell; // Util const std::string &name(const cell &); uint64_t sequence(const cell &); } // A cell is a single key-value element existing within a column. This structure // provides the necessary facilities for working with a single cell. Many simple // operations can also be done through the column interface itself so check column.h // for satisfaction. Cells from different columns sharing the same key are composed // into a `row` (see: row.h). // // When composed into a `row` or `object` remember that calls to cell::key() will // all be the same index key -- not the name of the column the cell is representing // in the row. You probably want cell::col() when iterating the row to build a // JSON object's keys when iterating across a row. // // NOTE that this cell struct is type-agnostic. The database is capable of storing // binary data in the key or the value for a cell. The string_view will work with // both a normal string and binary data, so this class is not a template and offers // no conversions at this level. see: value.h/object.h // struct ircd::db::cell { struct delta; column c; database::snapshot ss; std::unique_ptr it; public: operator const rocksdb::Iterator &() const { return *it; } operator const database::snapshot &() const { return ss; } explicit operator const column &() const { return c; } operator rocksdb::Iterator &() { return *it; } operator database::snapshot &() { return ss; } explicit operator column &() { return c; } bool valid() const; // cell exists bool valid(const string_view &) const; // valid equal key bool valid_gt(const string_view &) const; // valid greater than key bool valid_lte(const string_view &) const; // valid less than or equal key operator bool() const { return valid(); } bool operator!() const { return !valid(); } // [GET] read from cell (zero-copy) string_view col() const { return name(c); /* always column name */ } string_view key() const; // key == index or empty on invalid string_view val() const; // empty on !valid() string_view key(); // reload then key == index or empty on invalid string_view val(); // reload then empty on !valid() // [GET] read from cell (zero-copy) explicit operator string_view() const; // empty on !valid() explicit operator string_view(); // reload then empty on !valid() // [SET] Perform operation on this cell only void operator()(const op &, const string_view &val = {}, const sopts & = {}); // [SET] assign cell cell &operator=(const string_view &); // [GET] -> [SET] assign cell (atomic) bool compare_exchange(string_view &expected, const string_view &desired); string_view exchange(const string_view &desired); // [GET] load cell only (returns valid) bool load(const string_view &index = {}, gopts = {}); cell(column, std::unique_ptr, gopts = {}); cell(column, const string_view &index, std::unique_ptr, gopts = {}); cell(column, const string_view &index, gopts = {}); cell(database &, const string_view &column, const string_view &index, gopts = {}); cell(database &, const string_view &column, gopts = {}); cell(); cell(cell &&) noexcept; cell(const cell &) = delete; cell &operator=(cell &&) noexcept; cell &operator=(const cell &) = delete; ~cell() noexcept; friend std::ostream &operator<<(std::ostream &s, const cell &c); template friend bool seek(cell &c, const pos &p); }; 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 like // vectors and initializer_lists. To support any iterator I think we'll need to // forward-expose a wrapping of rocksdb::WriteBatch. void write(const cell::delta *const &begin, const cell::delta *const &end, const sopts & = {}); void write(const std::initializer_list &, const sopts & = {}); void write(const sopts &, const std::initializer_list &); void write(const cell::delta &, const sopts & = {}); } // // A delta is an element of a database transaction. You can use this to change // the values of cells. Use cell deltas to make an all-succeed-or-all-fail // transaction across many cells in various columns at once. // struct ircd::db::cell::delta :std::tuple { delta(cell &c, const string_view &val, const enum op &op = op::SET) :std::tuple{op, &c, val} {} delta(const enum op &op, cell &c, const string_view &val = {}) :std::tuple{op, &c, val} {} }; inline std::ostream & ircd::db::operator<<(std::ostream &s, const cell &c) { s << string_view{c}; return s; }