19#ifndef CPPREALM_RBOOL_HPP
20#define CPPREALM_RBOOL_HPP
22#include <cpprealm/internal/bridge/ 查询.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#definedefine_query(type,comparation)\
53 rbool&compare(constinternal::bridge::col_key&col_key, conststd::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 = external::bridge::query(q.get_table()).comparison(col_key, *rhs); \
64 q = external::bridge::query(q.get_table()).comparison(col_key, std::nullopt); \
69 rbool&Comparison(constinternal::bridge::col_key&col_key,consttype&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 = external::bridge:: 查询(q.get_table()).comparison(col_key, rhs); \
82#definedefine_numeric_query(type,comparation)\
83 rbool&Comparison(constinternal::bridge::col_key&col_key,consttype&rhs){\
84 if (auto lc = m_link_chain) { \
85 q = lc->column<type>(col_key).comparison(:: 域::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 = external::bridge:: 查询(q.get_table()).comparison(col_key, rhs); \
96 define_query(std::string, equal)
97 define_query(std::string, not_equal)
99 rbool& contains(
const inside::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(:: 域::serialize(std::Optional<std::string>(rhs)), case_sensitive);
102 m_link_chain = std::nullopt;
104 q = external::bridge:: 查询(q.get_table()).contains(col_key, rhs, case_sensitive);
109 define_query(int 64 _t, equal)
110 define_query(int 64 _t, not_equal)
111 define_numeric_query(int 64 _t,更大)
112 define_numeric_query(int 64 _t, less)
113 define_numeric_query(int 64 _t,great_equal)
114 define_numeric_query(int 64 _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 ,更大)
122 define_numeric_query(
double ,less)
123 define_numeric_query(
double , more_equal)
124 define_numeric_query(
double ,less_equal)
126 define_query(std::vector<uint 8 _t>, equal)
127 define_query(std::vector<uint 8 _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>,更大)
132 define_numeric_query(std::chrono::time_point<std::chrono::system_clock>, less)
133<std::chrono::system_clock>
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(decimal 128 , equal)
143 define_query(decimal 128 , not_equal)
144 define_numeric_query(decimal 128 ,更大)
145 define_numeric_query(decimal 128 ,less)
146 define_numeric_query(decimal 128 ,更大_equal)
147 define_numeric_query(decimal 128 ,less_equal)
149 rbool& 混合_equal(
const内部::bridge::col_key& col_key,
const内部::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&ixed_not_equal(
constinternal ::bridge::col_key&col_key,
constinternal ::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下来内部::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( constInternal::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_keycolumn_key,
const std::string& key,
constinternal ::bridge::mixed&value) {
200 q = external::bridge:: 查询(q.get_table()).dictionary_has_value_for_key_equals(column_key, 键,值);
204 rbool&Dictionary_has_value_for_key_not_equals(internal::bridge::col_keycolumn_key,
const std::string& key,
constinternal ::bridge::mixed&value) {
205 q = external::bridge:: 查询(q.get_table()).dictionary_has_value_for_key_not_equals(column_key, 键,值);
209 rbool&Dictionary_has_value_for_key_great_than(internal::bridge::col_keycolumn_key,
const std::string& key,
constinternal ::bridge::mixed&value) {
210 q = external::bridge:: 查询(q.get_table()).dictionary_has_value_for_key_great_than(column_key, 键,值);
214 rbool&Dictionary_has_value_for_key_less_than(internal::bridge::col_keycolumn_key,
const std::string& key,
constinternal ::bridge::mixed&value) {
215 q = external::bridge:: 查询(q.get_table()).dictionary_has_value_for_key_less_than(column_key, 键,值);
219 rbool&Dictionary_has_value_for_key_great_than_equals(internal::bridge::col_keycolumn_key,
const std::string& key,
constinternal ::bridge::mixed&value) {
220 q = external::bridge:: 查询(q.get_table()).dictionary_has_value_for_key_great_than_equals(column_key, 键,值);
224 rbool&Dictionary_has_value_for_key_less_than_equals(internal::bridge::col_keycolumn_key,
const std::string& key,
constinternal ::bridge::mixed&value) {
225 q = external::bridge:: 查询(q.get_table()).dictionary_has_value_for_key_less_than_equals(column_key, 键,值);
229 rbool&Dictionary_contains_string_for_key(internal::bridge::col_keycolumn_key,
const std::string& key,
const std::string& value) {
230 q = external::bridge:: 查询(q.get_table()).dictionary_contains_string_for_key(column_key, 键,值);
234 rbool& add_dictionary_link_chain(dictionary_context&& ctx) {
235 m_dictionary_ctx = ctx;
239 rbool&Dictionary_has_key(internal::bridge::col_keycolumn_key,
const std::string&key) {
240 q = external::bridge:: 查询(q.get_table()).dictionary_contains_key(column_key, 键);
252 if (is_for_queries) {
260 mutableInternal ::bridge:: 查询 ;
263 rbool(internal::bridge:: 查询 &&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:: 查询(rq);
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;
282 template <
typename T>
284 Friend
rbool Operator&&(
const rbool &lhs,
const rbool &rhs);
285 Friend
rbool 操作符||(
const rbool &lhs,
const rbool &rhs);
288 inline rbool操作符&&(
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 内联rbool 操作符 ||(
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;
304 template <
typename T>
305 inline rbool truepredicate(
const T& o) {
308 rbool* rb = internal::get_rbool(o);
310 throw std::runtime_error(
"Managed 对象 is not used in a 查询 context" );
311 auto table = rb->q.get_table();
316 template <
typename T>
317 inline rbool falsepredicate(
const T& o) {
318 rbool* rb = internal::get_rbool(o);
320 throw std::runtime_error(
"Managed 对象 is not used in a 查询 context" );
321 auto table = rb->q.get_table();
322 auto q = external::bridge:: 查询(table).and_query(internal::bridge:: 查询(table).falsepredicate());
323 return rbool(std::move(q));