This commit is contained in:
parent
d6ac8cfeca
commit
9a3d6e725e
@ -223,356 +223,5 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename cn_t, typename ctx_t, typename op_t, typename w_t,
|
|
||||||
typename wn_t>
|
|
||||||
struct db_next_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
std::string action;
|
|
||||||
|
|
||||||
w_t next{ctx};
|
|
||||||
|
|
||||||
using group_func_t = std::function<void(w_t &)>;
|
|
||||||
|
|
||||||
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
|
||||||
return next.where(column_name);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
|
||||||
return ctx->where->dump(idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
|
||||||
return next.group(std::move(func));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename cn_t, typename ctx_t, typename op_t, typename w_t,
|
|
||||||
typename wn_t>
|
|
||||||
struct db_next_limit_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
std::string action;
|
|
||||||
|
|
||||||
w_t next{ctx};
|
|
||||||
|
|
||||||
using group_func_t = std::function<void(w_t &)>;
|
|
||||||
|
|
||||||
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
|
||||||
return next.where(column_name);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
|
||||||
return ctx->where->dump(idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
|
||||||
return next.group(std::move(func));
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto limit(std::int32_t value) -> op_t {
|
|
||||||
return op_t{ctx}.limit(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto order_by(std::string column_name, bool ascending) -> op_t {
|
|
||||||
return op_t{ctx}.order_by(column_name, ascending);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename cn_t, typename ctx_t, typename op_t, typename w_t>
|
|
||||||
struct db_where_next_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
w_t *owner;
|
|
||||||
|
|
||||||
using n_t = db_next_t<cn_t, ctx_t, op_t, w_t, db_where_next_t>;
|
|
||||||
|
|
||||||
[[nodiscard]] auto and_() -> n_t & {
|
|
||||||
owner->actions.emplace_back(n_t{
|
|
||||||
ctx,
|
|
||||||
"AND",
|
|
||||||
});
|
|
||||||
|
|
||||||
return std::get<n_t>(*std::prev(owner->actions.end()));
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
|
||||||
return ctx->where->dump(idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto or_() -> n_t & {
|
|
||||||
owner->actions.emplace_back(n_t{
|
|
||||||
ctx,
|
|
||||||
"OR",
|
|
||||||
});
|
|
||||||
|
|
||||||
return std::get<n_t>(*std::prev(owner->actions.end()));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename cn_t, typename ctx_t, typename op_t, typename w_t>
|
|
||||||
struct db_where_next_limit_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
w_t *owner;
|
|
||||||
|
|
||||||
using n_t = db_next_limit_t<cn_t, ctx_t, op_t, w_t, db_where_next_limit_t>;
|
|
||||||
|
|
||||||
[[nodiscard]] auto and_() -> n_t & {
|
|
||||||
owner->actions.emplace_back(n_t{
|
|
||||||
ctx,
|
|
||||||
"AND",
|
|
||||||
});
|
|
||||||
|
|
||||||
return std::get<n_t>(*std::prev(owner->actions.end()));
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
|
||||||
return ctx->where->dump(idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto limit(std::int32_t value) -> op_t {
|
|
||||||
return op_t{ctx}.limit(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto order_by(std::string column_name, bool ascending) -> op_t {
|
|
||||||
return op_t{ctx}.order_by(column_name, ascending);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto or_() -> n_t & {
|
|
||||||
owner->actions.emplace_back(n_t{
|
|
||||||
ctx,
|
|
||||||
"OR",
|
|
||||||
});
|
|
||||||
|
|
||||||
return std::get<n_t>(*std::prev(owner->actions.end()));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename ctx_t, typename op_t, typename w_t>
|
|
||||||
struct db_comp_next_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
w_t *owner;
|
|
||||||
std::string column_name;
|
|
||||||
|
|
||||||
using wn_t = db_where_next_t<db_comp_next_t, ctx_t, op_t, w_t>;
|
|
||||||
|
|
||||||
[[nodiscard]] auto create(std::string operation, db::db_types_t value) {
|
|
||||||
owner->actions.emplace_back(comp_data_t{
|
|
||||||
column_name,
|
|
||||||
operation,
|
|
||||||
value,
|
|
||||||
});
|
|
||||||
|
|
||||||
ctx->where_values.push_back(
|
|
||||||
&std::get<comp_data_t>(*std::prev(owner->actions.end())).value);
|
|
||||||
|
|
||||||
return wn_t{
|
|
||||||
ctx,
|
|
||||||
owner,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
auto equals(db::db_types_t value) -> wn_t { return create("=", value); };
|
|
||||||
|
|
||||||
auto gt(db::db_types_t value) -> wn_t { return create(">", value); }
|
|
||||||
|
|
||||||
auto gte(db::db_types_t value) -> wn_t { return create(">=", value); }
|
|
||||||
|
|
||||||
auto like(db::db_types_t value) -> wn_t { return create("LIKE", value); }
|
|
||||||
|
|
||||||
auto lt(db::db_types_t value) -> wn_t { return create("<", value); }
|
|
||||||
|
|
||||||
auto lte(db::db_types_t value) -> wn_t { return create("<=", value); }
|
|
||||||
|
|
||||||
auto not_equals(db::db_types_t value) -> wn_t { return create("!=", value); };
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename ctx_t, typename op_t, typename w_t>
|
|
||||||
struct db_comp_next_limit_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
w_t *owner;
|
|
||||||
std::string column_name;
|
|
||||||
|
|
||||||
using wn_t = db_where_next_limit_t<db_comp_next_limit_t, ctx_t, op_t, w_t>;
|
|
||||||
|
|
||||||
[[nodiscard]] auto create(std::string operation, db::db_types_t value) {
|
|
||||||
owner->actions.emplace_back(comp_data_t{
|
|
||||||
column_name,
|
|
||||||
operation,
|
|
||||||
value,
|
|
||||||
});
|
|
||||||
|
|
||||||
ctx->where_values.push_back(
|
|
||||||
&std::get<comp_data_t>(*std::prev(owner->actions.end())).value);
|
|
||||||
|
|
||||||
return wn_t{
|
|
||||||
ctx,
|
|
||||||
owner,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
auto equals(db::db_types_t value) -> wn_t { return create("=", value); };
|
|
||||||
|
|
||||||
auto gt(db::db_types_t value) -> wn_t { return create(">", value); }
|
|
||||||
|
|
||||||
auto gte(db::db_types_t value) -> wn_t { return create(">=", value); }
|
|
||||||
|
|
||||||
auto like(db::db_types_t value) -> wn_t { return create("LIKE", value); }
|
|
||||||
|
|
||||||
auto lt(db::db_types_t value) -> wn_t { return create("<", value); }
|
|
||||||
|
|
||||||
auto lte(db::db_types_t value) -> wn_t { return create("<=", value); }
|
|
||||||
|
|
||||||
auto not_equals(db::db_types_t value) -> wn_t { return create("!=", value); };
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename ctx_t, typename op_t> struct db_where_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
|
|
||||||
using cn_t = db_comp_next_t<ctx_t, op_t, db_where_t>;
|
|
||||||
using wn_t = db_where_next_t<cn_t, ctx_t, op_t, db_where_t>;
|
|
||||||
using n_t = db_next_t<cn_t, ctx_t, op_t, db_where_t, wn_t>;
|
|
||||||
|
|
||||||
using group_func_t = std::function<void(db_where_t &)>;
|
|
||||||
|
|
||||||
using action_t = std::variant<comp_data_t, n_t, db_where_t>;
|
|
||||||
|
|
||||||
std::vector<action_t> actions{};
|
|
||||||
|
|
||||||
[[nodiscard]] static auto dump(std::int32_t &idx,
|
|
||||||
auto &&data) -> std::string {
|
|
||||||
std::stringstream stream;
|
|
||||||
|
|
||||||
for (auto &&action : data.actions) {
|
|
||||||
std::visit(overloaded{
|
|
||||||
[&idx, &stream](const comp_data_t &comp) {
|
|
||||||
stream << '"' << comp.column_name << '"' << comp.op_type
|
|
||||||
<< '?' + std::to_string(++idx);
|
|
||||||
},
|
|
||||||
[&idx, &stream](const n_t &next) {
|
|
||||||
stream << ' ' << next.action << ' '
|
|
||||||
<< dump(idx, next.next);
|
|
||||||
},
|
|
||||||
[&idx, &stream](const db_where_t &where) {
|
|
||||||
stream << '(' << dump(idx, where) << ')';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
action);
|
|
||||||
}
|
|
||||||
|
|
||||||
return stream.str();
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
|
||||||
return dump(idx, *this);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
|
||||||
db_where_t where{ctx};
|
|
||||||
func(where);
|
|
||||||
|
|
||||||
actions.emplace_back(std::move(where));
|
|
||||||
return wn_t{
|
|
||||||
ctx,
|
|
||||||
this,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
|
||||||
return cn_t{
|
|
||||||
ctx,
|
|
||||||
this,
|
|
||||||
column_name,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename ctx_t, typename op_t> struct db_where_with_limit_t final {
|
|
||||||
std::shared_ptr<ctx_t> ctx;
|
|
||||||
|
|
||||||
using cn_t = db_comp_next_limit_t<ctx_t, op_t, db_where_with_limit_t>;
|
|
||||||
using wn_t = db_where_next_limit_t<cn_t, ctx_t, op_t, db_where_with_limit_t>;
|
|
||||||
using n_t = db_next_limit_t<cn_t, ctx_t, op_t, db_where_with_limit_t, wn_t>;
|
|
||||||
|
|
||||||
using group_func_t = std::function<void(db_where_with_limit_t &)>;
|
|
||||||
|
|
||||||
using action_t = std::variant<comp_data_t, n_t, db_where_with_limit_t>;
|
|
||||||
|
|
||||||
std::vector<action_t> actions{};
|
|
||||||
|
|
||||||
[[nodiscard]] static auto dump(std::int32_t &idx,
|
|
||||||
auto &&data) -> std::string {
|
|
||||||
std::stringstream stream;
|
|
||||||
|
|
||||||
for (auto &&action : data.actions) {
|
|
||||||
std::visit(overloaded{
|
|
||||||
[&idx, &stream](const comp_data_t &comp) {
|
|
||||||
stream << '"' << comp.column_name << '"' << comp.op_type
|
|
||||||
<< '?' + std::to_string(++idx);
|
|
||||||
},
|
|
||||||
[&idx, &stream](const n_t &next) {
|
|
||||||
stream << ' ' << next.action << ' '
|
|
||||||
<< dump(idx, next.next);
|
|
||||||
},
|
|
||||||
[&idx, &stream](const db_where_with_limit_t &where) {
|
|
||||||
stream << '(' << dump(idx, where) << ')';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
action);
|
|
||||||
}
|
|
||||||
|
|
||||||
return stream.str();
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
|
||||||
|
|
||||||
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
|
||||||
return dump(idx, *this);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
|
||||||
db_where_with_limit_t where{ctx};
|
|
||||||
func(where);
|
|
||||||
|
|
||||||
actions.emplace_back(std::move(where));
|
|
||||||
return wn_t{
|
|
||||||
ctx,
|
|
||||||
this,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto limit(std::int32_t value) -> op_t {
|
|
||||||
return op_t{ctx}.limit(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto order_by(std::string column_name, bool ascending) -> op_t {
|
|
||||||
return op_t{ctx}.order_by(column_name, ascending);
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
|
||||||
return cn_t{
|
|
||||||
ctx,
|
|
||||||
this,
|
|
||||||
column_name,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
} // namespace repertory::db
|
} // namespace repertory::db
|
||||||
|
|
||||||
#endif // INCLUDE_DATABASE_DB_COMMON_HPP_
|
#endif // INCLUDE_DATABASE_DB_COMMON_HPP_
|
||||||
|
@ -23,7 +23,8 @@
|
|||||||
#define INCLUDE_DATABASE_DB_DELETE_HPP_
|
#define INCLUDE_DATABASE_DB_DELETE_HPP_
|
||||||
|
|
||||||
#include "database/db_common.hpp"
|
#include "database/db_common.hpp"
|
||||||
#include "utils/error_utils.hpp"
|
|
||||||
|
#include "database/db_where_t.hpp"
|
||||||
|
|
||||||
namespace repertory::db {
|
namespace repertory::db {
|
||||||
class db_delete final {
|
class db_delete final {
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
#define INCLUDE_DATABASE_DB_INSERT_HPP_
|
#define INCLUDE_DATABASE_DB_INSERT_HPP_
|
||||||
|
|
||||||
#include "database/db_common.hpp"
|
#include "database/db_common.hpp"
|
||||||
#include "utils/error_utils.hpp"
|
|
||||||
|
|
||||||
namespace repertory::db {
|
namespace repertory::db {
|
||||||
class db_insert final {
|
class db_insert final {
|
||||||
@ -57,8 +56,8 @@ public:
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] auto column_value(std::string column_name, db_types_t value)
|
[[nodiscard]] auto column_value(std::string column_name,
|
||||||
-> db_insert &;
|
db_types_t value) -> db_insert &;
|
||||||
|
|
||||||
[[nodiscard]] auto dump() const -> std::string;
|
[[nodiscard]] auto dump() const -> std::string;
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@
|
|||||||
#define INCLUDE_DATABASE_DB_SELECT_HPP_
|
#define INCLUDE_DATABASE_DB_SELECT_HPP_
|
||||||
|
|
||||||
#include "database/db_common.hpp"
|
#include "database/db_common.hpp"
|
||||||
#include "db_common.hpp"
|
|
||||||
#include "utils/error_utils.hpp"
|
#include "database/db_where_limit_t.hpp"
|
||||||
|
|
||||||
namespace repertory::db {
|
namespace repertory::db {
|
||||||
class db_select final {
|
class db_select final {
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
|
|
||||||
#include "database/db_common.hpp"
|
#include "database/db_common.hpp"
|
||||||
|
|
||||||
|
#include "database/db_where_limit_t.hpp"
|
||||||
|
|
||||||
namespace repertory::db {
|
namespace repertory::db {
|
||||||
class db_update final {
|
class db_update final {
|
||||||
public:
|
public:
|
||||||
|
216
repertory/librepertory/include/database/db_where_limit_t.hpp
Normal file
216
repertory/librepertory/include/database/db_where_limit_t.hpp
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
/*
|
||||||
|
Copyright <2018-2024> <scott.e.graves@protonmail.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
*/
|
||||||
|
#ifndef INCLUDE_DATABASE_DB_WHERE_LIMIT_T_HPP_
|
||||||
|
#define INCLUDE_DATABASE_DB_WHERE_LIMIT_T_HPP_
|
||||||
|
|
||||||
|
#include "database/db_common.hpp"
|
||||||
|
|
||||||
|
namespace repertory::db {
|
||||||
|
template <typename cn_t, typename ctx_t, typename op_t, typename w_t,
|
||||||
|
typename wn_t>
|
||||||
|
struct db_next_limit_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
std::string action;
|
||||||
|
|
||||||
|
w_t next{ctx};
|
||||||
|
|
||||||
|
using group_func_t = std::function<void(w_t &)>;
|
||||||
|
|
||||||
|
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
||||||
|
return next.where(column_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
||||||
|
return ctx->where->dump(idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
||||||
|
return next.group(std::move(func));
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto limit(std::int32_t value) -> op_t {
|
||||||
|
return op_t{ctx}.limit(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto order_by(std::string column_name, bool ascending) -> op_t {
|
||||||
|
return op_t{ctx}.order_by(column_name, ascending);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename cn_t, typename ctx_t, typename op_t, typename w_t>
|
||||||
|
struct db_where_next_limit_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
w_t *owner;
|
||||||
|
|
||||||
|
using n_t = db_next_limit_t<cn_t, ctx_t, op_t, w_t, db_where_next_limit_t>;
|
||||||
|
|
||||||
|
[[nodiscard]] auto and_() -> n_t & {
|
||||||
|
owner->actions.emplace_back(n_t{
|
||||||
|
ctx,
|
||||||
|
"AND",
|
||||||
|
});
|
||||||
|
|
||||||
|
return std::get<n_t>(*std::prev(owner->actions.end()));
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
||||||
|
return ctx->where->dump(idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto limit(std::int32_t value) -> op_t {
|
||||||
|
return op_t{ctx}.limit(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto order_by(std::string column_name, bool ascending) -> op_t {
|
||||||
|
return op_t{ctx}.order_by(column_name, ascending);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto or_() -> n_t & {
|
||||||
|
owner->actions.emplace_back(n_t{
|
||||||
|
ctx,
|
||||||
|
"OR",
|
||||||
|
});
|
||||||
|
|
||||||
|
return std::get<n_t>(*std::prev(owner->actions.end()));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ctx_t, typename op_t, typename w_t>
|
||||||
|
struct db_comp_next_limit_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
w_t *owner;
|
||||||
|
std::string column_name;
|
||||||
|
|
||||||
|
using wn_t = db_where_next_limit_t<db_comp_next_limit_t, ctx_t, op_t, w_t>;
|
||||||
|
|
||||||
|
[[nodiscard]] auto create(std::string operation, db::db_types_t value) {
|
||||||
|
owner->actions.emplace_back(comp_data_t{
|
||||||
|
column_name,
|
||||||
|
operation,
|
||||||
|
value,
|
||||||
|
});
|
||||||
|
|
||||||
|
ctx->where_values.push_back(
|
||||||
|
&std::get<comp_data_t>(*std::prev(owner->actions.end())).value);
|
||||||
|
|
||||||
|
return wn_t{
|
||||||
|
ctx,
|
||||||
|
owner,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
auto equals(db::db_types_t value) -> wn_t { return create("=", value); };
|
||||||
|
|
||||||
|
auto gt(db::db_types_t value) -> wn_t { return create(">", value); }
|
||||||
|
|
||||||
|
auto gte(db::db_types_t value) -> wn_t { return create(">=", value); }
|
||||||
|
|
||||||
|
auto like(db::db_types_t value) -> wn_t { return create("LIKE", value); }
|
||||||
|
|
||||||
|
auto lt(db::db_types_t value) -> wn_t { return create("<", value); }
|
||||||
|
|
||||||
|
auto lte(db::db_types_t value) -> wn_t { return create("<=", value); }
|
||||||
|
|
||||||
|
auto not_equals(db::db_types_t value) -> wn_t { return create("!=", value); };
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ctx_t, typename op_t> struct db_where_with_limit_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
|
||||||
|
using cn_t = db_comp_next_limit_t<ctx_t, op_t, db_where_with_limit_t>;
|
||||||
|
using wn_t = db_where_next_limit_t<cn_t, ctx_t, op_t, db_where_with_limit_t>;
|
||||||
|
using n_t = db_next_limit_t<cn_t, ctx_t, op_t, db_where_with_limit_t, wn_t>;
|
||||||
|
|
||||||
|
using group_func_t = std::function<void(db_where_with_limit_t &)>;
|
||||||
|
|
||||||
|
using action_t = std::variant<comp_data_t, n_t, db_where_with_limit_t>;
|
||||||
|
|
||||||
|
std::vector<action_t> actions{};
|
||||||
|
|
||||||
|
[[nodiscard]] static auto dump(std::int32_t &idx,
|
||||||
|
auto &&data) -> std::string {
|
||||||
|
std::stringstream stream;
|
||||||
|
|
||||||
|
for (auto &&action : data.actions) {
|
||||||
|
std::visit(overloaded{
|
||||||
|
[&idx, &stream](const comp_data_t &comp) {
|
||||||
|
stream << '"' << comp.column_name << '"' << comp.op_type
|
||||||
|
<< '?' + std::to_string(++idx);
|
||||||
|
},
|
||||||
|
[&idx, &stream](const n_t &next) {
|
||||||
|
stream << ' ' << next.action << ' '
|
||||||
|
<< dump(idx, next.next);
|
||||||
|
},
|
||||||
|
[&idx, &stream](const db_where_with_limit_t &where) {
|
||||||
|
stream << '(' << dump(idx, where) << ')';
|
||||||
|
},
|
||||||
|
},
|
||||||
|
action);
|
||||||
|
}
|
||||||
|
|
||||||
|
return stream.str();
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
||||||
|
return dump(idx, *this);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
||||||
|
db_where_with_limit_t where{ctx};
|
||||||
|
func(where);
|
||||||
|
|
||||||
|
actions.emplace_back(std::move(where));
|
||||||
|
return wn_t{
|
||||||
|
ctx,
|
||||||
|
this,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto limit(std::int32_t value) -> op_t {
|
||||||
|
return op_t{ctx}.limit(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto order_by(std::string column_name, bool ascending) -> op_t {
|
||||||
|
return op_t{ctx}.order_by(column_name, ascending);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
||||||
|
return cn_t{
|
||||||
|
ctx,
|
||||||
|
this,
|
||||||
|
column_name,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // namespace repertory::db
|
||||||
|
|
||||||
|
#endif // INCLUDE_DATABASE_DB_WHERE_LIMIT_T_HPP_
|
192
repertory/librepertory/include/database/db_where_t.hpp
Normal file
192
repertory/librepertory/include/database/db_where_t.hpp
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
/*
|
||||||
|
Copyright <2018-2024> <scott.e.graves@protonmail.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
*/
|
||||||
|
#ifndef INCLUDE_DATABASE_DB_WHERE_T_HPP_
|
||||||
|
#define INCLUDE_DATABASE_DB_WHERE_T_HPP_
|
||||||
|
|
||||||
|
#include "database/db_common.hpp"
|
||||||
|
|
||||||
|
namespace repertory::db {
|
||||||
|
template <typename cn_t, typename ctx_t, typename op_t, typename w_t,
|
||||||
|
typename wn_t>
|
||||||
|
struct db_next_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
std::string action;
|
||||||
|
|
||||||
|
w_t next{ctx};
|
||||||
|
|
||||||
|
using group_func_t = std::function<void(w_t &)>;
|
||||||
|
|
||||||
|
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
||||||
|
return next.where(column_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
||||||
|
return ctx->where->dump(idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
||||||
|
return next.group(std::move(func));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename cn_t, typename ctx_t, typename op_t, typename w_t>
|
||||||
|
struct db_where_next_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
w_t *owner;
|
||||||
|
|
||||||
|
using n_t = db_next_t<cn_t, ctx_t, op_t, w_t, db_where_next_t>;
|
||||||
|
|
||||||
|
[[nodiscard]] auto and_() -> n_t & {
|
||||||
|
owner->actions.emplace_back(n_t{
|
||||||
|
ctx,
|
||||||
|
"AND",
|
||||||
|
});
|
||||||
|
|
||||||
|
return std::get<n_t>(*std::prev(owner->actions.end()));
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
||||||
|
return ctx->where->dump(idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto or_() -> n_t & {
|
||||||
|
owner->actions.emplace_back(n_t{
|
||||||
|
ctx,
|
||||||
|
"OR",
|
||||||
|
});
|
||||||
|
|
||||||
|
return std::get<n_t>(*std::prev(owner->actions.end()));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ctx_t, typename op_t, typename w_t>
|
||||||
|
struct db_comp_next_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
w_t *owner;
|
||||||
|
std::string column_name;
|
||||||
|
|
||||||
|
using wn_t = db_where_next_t<db_comp_next_t, ctx_t, op_t, w_t>;
|
||||||
|
|
||||||
|
[[nodiscard]] auto create(std::string operation, db::db_types_t value) {
|
||||||
|
owner->actions.emplace_back(comp_data_t{
|
||||||
|
column_name,
|
||||||
|
operation,
|
||||||
|
value,
|
||||||
|
});
|
||||||
|
|
||||||
|
ctx->where_values.push_back(
|
||||||
|
&std::get<comp_data_t>(*std::prev(owner->actions.end())).value);
|
||||||
|
|
||||||
|
return wn_t{
|
||||||
|
ctx,
|
||||||
|
owner,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
auto equals(db::db_types_t value) -> wn_t { return create("=", value); };
|
||||||
|
|
||||||
|
auto gt(db::db_types_t value) -> wn_t { return create(">", value); }
|
||||||
|
|
||||||
|
auto gte(db::db_types_t value) -> wn_t { return create(">=", value); }
|
||||||
|
|
||||||
|
auto like(db::db_types_t value) -> wn_t { return create("LIKE", value); }
|
||||||
|
|
||||||
|
auto lt(db::db_types_t value) -> wn_t { return create("<", value); }
|
||||||
|
|
||||||
|
auto lte(db::db_types_t value) -> wn_t { return create("<=", value); }
|
||||||
|
|
||||||
|
auto not_equals(db::db_types_t value) -> wn_t { return create("!=", value); };
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ctx_t, typename op_t> struct db_where_t final {
|
||||||
|
std::shared_ptr<ctx_t> ctx;
|
||||||
|
|
||||||
|
using cn_t = db_comp_next_t<ctx_t, op_t, db_where_t>;
|
||||||
|
using wn_t = db_where_next_t<cn_t, ctx_t, op_t, db_where_t>;
|
||||||
|
using n_t = db_next_t<cn_t, ctx_t, op_t, db_where_t, wn_t>;
|
||||||
|
|
||||||
|
using group_func_t = std::function<void(db_where_t &)>;
|
||||||
|
|
||||||
|
using action_t = std::variant<comp_data_t, n_t, db_where_t>;
|
||||||
|
|
||||||
|
std::vector<action_t> actions{};
|
||||||
|
|
||||||
|
[[nodiscard]] static auto dump(std::int32_t &idx,
|
||||||
|
auto &&data) -> std::string {
|
||||||
|
std::stringstream stream;
|
||||||
|
|
||||||
|
for (auto &&action : data.actions) {
|
||||||
|
std::visit(overloaded{
|
||||||
|
[&idx, &stream](const comp_data_t &comp) {
|
||||||
|
stream << '"' << comp.column_name << '"' << comp.op_type
|
||||||
|
<< '?' + std::to_string(++idx);
|
||||||
|
},
|
||||||
|
[&idx, &stream](const n_t &next) {
|
||||||
|
stream << ' ' << next.action << ' '
|
||||||
|
<< dump(idx, next.next);
|
||||||
|
},
|
||||||
|
[&idx, &stream](const db_where_t &where) {
|
||||||
|
stream << '(' << dump(idx, where) << ')';
|
||||||
|
},
|
||||||
|
},
|
||||||
|
action);
|
||||||
|
}
|
||||||
|
|
||||||
|
return stream.str();
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump() const -> std::string { return op_t{ctx}.dump(); }
|
||||||
|
|
||||||
|
[[nodiscard]] auto dump(std::int32_t &idx) const -> std::string {
|
||||||
|
return dump(idx, *this);
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto group(group_func_t func) -> wn_t {
|
||||||
|
db_where_t where{ctx};
|
||||||
|
func(where);
|
||||||
|
|
||||||
|
actions.emplace_back(std::move(where));
|
||||||
|
return wn_t{
|
||||||
|
ctx,
|
||||||
|
this,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] auto where(std::string column_name) -> cn_t {
|
||||||
|
return cn_t{
|
||||||
|
ctx,
|
||||||
|
this,
|
||||||
|
column_name,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // namespace repertory::db
|
||||||
|
|
||||||
|
#endif // INCLUDE_DATABASE_DB_WHERE_T_HPP_
|
Loading…
x
Reference in New Issue
Block a user