19#ifndef CPPREALM_RBOOL_HPP
20#define CPPREALM_RBOOL_HPP
22#include <cpprealm/internal/bridge/query.hpp>
23#include <cpprealm/internal/bridge/realm.hpp>
24#include <cpprealm/internal/bridge/table.hpp>
25#include <cpprealm/internal/bridge/utils.hpp>
26#include <cpprealm/types.hpp>
45 m_link_chain->link(col_key);
47 m_link_chain = m_table.get_link(col_key);
52#define define_query(type, comparison) \
53 rbool& comparison(const internal::bridge::col_key& col_key, const std::optional<type>& rhs) { \
54 if (auto lc = m_link_chain) { \
55 q = lc->column<type>(col_key).comparison(rhs); \
56 m_link_chain = std::nullopt; \
57 } else if (m_dictionary_ctx) { \
58 q = q.dictionary_link_subexpr(m_dictionary_ctx->origin_col_key, col_key, m_dictionary_ctx->m_key).comparison(rhs); \
59 m_dictionary_ctx = std::nullopt; \
62 q = internal::bridge::query(q.get_table()).comparison(col_key, *rhs); \
64 q = internal::bridge::query(q.get_table()).comparison(col_key, std::nullopt); \
69 rbool& comparison(const internal::bridge::col_key& col_key, const type& rhs) { \
70 if (auto lc = m_link_chain) { \
71 q = lc->column<type>(col_key).comparison(std::optional<type>(rhs)); \
72 m_link_chain = std::nullopt; \
73 } else if (m_dictionary_ctx) { \
74 q = q.dictionary_link_subexpr(m_dictionary_ctx->origin_col_key, col_key, m_dictionary_ctx->m_key).comparison(std::optional<type>(rhs)); \
75 m_dictionary_ctx = std::nullopt; \
77 q = internal::bridge::query(q.get_table()).comparison(col_key, rhs); \
82#define define_numeric_query(type, comparison) \
83 rbool& comparison(const internal::bridge::col_key& col_key, const type& rhs) { \
84 if (auto lc = m_link_chain) { \
85 q = lc->column<type>(col_key).comparison(::realm::serialize(std::optional<type>(rhs))); \
86 m_link_chain = std::nullopt; \
87 } else if (m_dictionary_ctx) { \
88 q = q.dictionary_link_subexpr(m_dictionary_ctx->origin_col_key, col_key, m_dictionary_ctx->m_key).comparison(std::optional<type>(rhs)); \
89 m_dictionary_ctx = std::nullopt; \
91 q = internal::bridge::query(q.get_table()).comparison(col_key, rhs); \
96 define_query(std::string, equal)
97 define_query(std::string, not_equal)
99 rbool& contains(
const internal::bridge::col_key& col_key,
const std::string& rhs,
bool case_sensitive =
true) {
100 if (
auto lc = m_link_chain) {
101 q = lc->column<std::string>(col_key).contains(::realm::serialize(std::optional<std::string>(rhs)), case_sensitive);
102 m_link_chain = std::nullopt;
104 q = internal::bridge::query(q.get_table()).contains(col_key, rhs, case_sensitive);
109 define_query(int64_t, equal)
110 define_query(int64_t, not_equal)
111 define_numeric_query(int64_t, greater)
112 define_numeric_query(int64_t, less)
113 define_numeric_query(int64_t, greater_equal)
114 define_numeric_query(int64_t, less_equal)
116 define_query(
bool, equal)
117 define_query(
bool, not_equal)
119 define_query(
double, equal)
120 define_query(
double, not_equal)
121 define_numeric_query(
double, greater)
122 define_numeric_query(
double, less)
123 define_numeric_query(
double, greater_equal)
124 define_numeric_query(
double, less_equal)
126 define_query(std::vector<uint8_t>, equal)
127 define_query(std::vector<uint8_t>, not_equal)
129 define_query(std::chrono::time_point<std::chrono::system_clock>, equal)
130 define_query(std::chrono::time_point<std::chrono::system_clock>, not_equal)
131 define_numeric_query(std::chrono::time_point<std::chrono::system_clock>, greater)
132 define_numeric_query(std::chrono::time_point<std::chrono::system_clock>, less)
133 define_numeric_query(std::chrono::time_point<std::chrono::system_clock>, greater_equal)
134 define_numeric_query(std::chrono::time_point<std::chrono::system_clock>, less_equal)
136 define_query(uuid, equal)
137 define_query(uuid, not_equal)
139 define_query(object_id, equal)
140 define_query(object_id, not_equal)
142 define_query(decimal128, equal)
143 define_query(decimal128, not_equal)
144 define_numeric_query(decimal128, greater)
145 define_numeric_query(decimal128, less)
146 define_numeric_query(decimal128, greater_equal)
147 define_numeric_query(decimal128, less_equal)
149 rbool& mixed_equal(
const internal::bridge::col_key& col_key,
const internal::bridge::mixed& rhs) {
150 if (
auto lc = m_link_chain) {
151 q = lc->column<std::string>(col_key).mixed_equal(rhs);
152 m_link_chain = std::nullopt;
154 q.equal(col_key, rhs);
159 rbool& mixed_not_equal(
const internal::bridge::col_key& col_key,
const internal::bridge::mixed& rhs) {
160 if (
auto lc = m_link_chain) {
161 q = lc->column_mixed(col_key).mixed_not_equal(rhs);
162 m_link_chain = std::nullopt;
164 q.not_equal(col_key, rhs);
169 rbool& link_equal(
const internal::bridge::col_key& col_key,
const std::optional<internal::bridge::obj>& rhs) {
170 if (
auto lc = m_link_chain) {
171 q = lc->column<internal::bridge::obj>(col_key).equal(rhs);
172 m_link_chain = std::nullopt;
175 q.links_to(col_key, *rhs);
177 q.links_to(col_key, internal::bridge::obj());
183 rbool& link_not_equal(
const internal::bridge::col_key& col_key,
const std::optional<internal::bridge::obj>& rhs) {
184 if (
auto lc = m_link_chain) {
185 q = lc->column<internal::bridge::obj>(col_key).not_equal(rhs);
186 m_link_chain = std::nullopt;
189 q.not_links_to(col_key, *rhs);
191 q.not_links_to(col_key, internal::bridge::obj());
199 rbool& dictionary_has_value_for_key_equals(internal::bridge::col_key column_key,
const std::string& key,
const internal::bridge::mixed& value) {
200 q = internal::bridge::query(q.get_table()).dictionary_has_value_for_key_equals(column_key, key, value);
204 rbool& dictionary_has_value_for_key_not_equals(internal::bridge::col_key column_key,
const std::string& key,
const internal::bridge::mixed& value) {
205 q = internal::bridge::query(q.get_table()).dictionary_has_value_for_key_not_equals(column_key, key, value);
209 rbool& dictionary_has_value_for_key_greater_than(internal::bridge::col_key column_key,
const std::string& key,
const internal::bridge::mixed& value) {
210 q = internal::bridge::query(q.get_table()).dictionary_has_value_for_key_greater_than(column_key, key, value);
214 rbool& dictionary_has_value_for_key_less_than(internal::bridge::col_key column_key,
const std::string& key,
const internal::bridge::mixed& value) {
215 q = internal::bridge::query(q.get_table()).dictionary_has_value_for_key_less_than(column_key, key, value);
219 rbool& dictionary_has_value_for_key_greater_than_equals(internal::bridge::col_key column_key,
const std::string& key,
const internal::bridge::mixed& value) {
220 q = internal::bridge::query(q.get_table()).dictionary_has_value_for_key_greater_than_equals(column_key, key, value);
224 rbool& dictionary_has_value_for_key_less_than_equals(internal::bridge::col_key column_key,
const std::string& key,
const internal::bridge::mixed& value) {
225 q = internal::bridge::query(q.get_table()).dictionary_has_value_for_key_less_than_equals(column_key, key, value);
229 rbool& dictionary_contains_string_for_key(internal::bridge::col_key column_key,
const std::string& key,
const std::string& value) {
230 q = internal::bridge::query(q.get_table()).dictionary_contains_string_for_key(column_key, key, value);
234 rbool& add_dictionary_link_chain(dictionary_context&& ctx) {
235 m_dictionary_ctx = ctx;
239 rbool& dictionary_has_key(internal::bridge::col_key column_key,
const std::string& key) {
240 q = internal::bridge::query(q.get_table()).dictionary_contains_key(column_key, key);
248 operator bool()
const {
251 rbool operator!()
const {
252 if (is_for_queries) {
260 mutable internal::bridge::query q;
263 rbool(internal::bridge::query &&q) : q(q), is_for_queries(true) {
264 m_table = q.get_table();
266 rbool(
bool b) : b(b) {}
267 rbool(
const rbool &r) {
268 if (r.is_for_queries) {
269 new (&q) internal::bridge::query(r.q);
270 is_for_queries =
true;
276 bool is_for_queries =
false;
277 bool is_dictionary_link =
false;
278 std::optional<internal::bridge::link_chain> m_link_chain;
279 internal::bridge::table m_table;
280 std::optional<dictionary_context> m_dictionary_ctx;
283 friend struct results;
284 friend rbool operator&&(
const rbool &lhs,
const rbool &rhs);
285 friend rbool operator||(
const rbool &lhs,
const rbool &rhs);
288 inline rbool operator &&(
const rbool& lhs,
const rbool& rhs) {
289 if (lhs.is_for_queries) {
290 lhs.q.and_query(rhs.q);
293 return lhs.b && rhs.b;
295 inline rbool operator ||(
const rbool& lhs,
const rbool& rhs) {
296 if (lhs.is_for_queries) {
297 lhs.q = lhs.q || rhs.q;
300 return lhs.b && rhs.b;
305 inline rbool truepredicate(
const T& o) {
308 rbool* rb = internal::get_rbool(o);
310 throw std::runtime_error(
"Managed object is not used in a query context");
311 auto table = rb->q.get_table();
317 inline rbool falsepredicate(
const T& o) {
318 rbool* rb = internal::get_rbool(o);
320 throw std::runtime_error(
"Managed object is not used in a query context");
321 auto table = rb->q.get_table();
322 auto q = internal::bridge::query(table).and_query(internal::bridge::query(table).falsepredicate());
323 return rbool(std::move(q));
Definition: col_key.hpp:28