query.hpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. /*************************************************************************
  2. *
  3. * Copyright 2016 Realm Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. **************************************************************************/
  18. #ifndef REALM_QUERY_HPP
  19. #define REALM_QUERY_HPP
  20. #include <cstdint>
  21. #include <cstdio>
  22. #include <climits>
  23. #include <algorithm>
  24. #include <string>
  25. #include <vector>
  26. #define REALM_MULTITHREAD_QUERY 0
  27. #if REALM_MULTITHREAD_QUERY
  28. // FIXME: Use our C++ thread abstraction API since it provides a much
  29. // higher level of encapsulation and safety.
  30. #include <pthread.h>
  31. #endif
  32. #include <realm/aggregate_ops.hpp>
  33. #include <realm/obj_list.hpp>
  34. #include <realm/table_ref.hpp>
  35. #include <realm/binary_data.hpp>
  36. #include <realm/timestamp.hpp>
  37. #include <realm/handover_defs.hpp>
  38. #include <realm/util/serializer.hpp>
  39. #include <realm/column_type_traits.hpp>
  40. namespace realm {
  41. // Pre-declarations
  42. class ParentNode;
  43. class Table;
  44. class TableView;
  45. class ConstTableView;
  46. class Array;
  47. class Expression;
  48. class Group;
  49. class Transaction;
  50. namespace metrics {
  51. class QueryInfo;
  52. }
  53. struct QueryGroup {
  54. enum class State {
  55. Default,
  56. OrCondition,
  57. OrConditionChildren,
  58. };
  59. QueryGroup() = default;
  60. QueryGroup(const QueryGroup&);
  61. QueryGroup& operator=(const QueryGroup&);
  62. QueryGroup(QueryGroup&&) = default;
  63. QueryGroup& operator=(QueryGroup&&) = default;
  64. std::unique_ptr<ParentNode> m_root_node;
  65. bool m_pending_not = false;
  66. State m_state = State::Default;
  67. };
  68. class Query final {
  69. public:
  70. Query(ConstTableRef table, ConstTableView* tv = nullptr);
  71. Query(ConstTableRef table, std::unique_ptr<ConstTableView>);
  72. Query(ConstTableRef table, const ObjList& list);
  73. Query(ConstTableRef table, LinkCollectionPtr&& list_ptr);
  74. Query();
  75. Query(std::unique_ptr<Expression>);
  76. ~Query() noexcept;
  77. Query(const Query& copy);
  78. Query& operator=(const Query& source);
  79. Query(Query&&);
  80. Query& operator=(Query&&);
  81. // Find links that point to a specific target row
  82. Query& links_to(ColKey column_key, ObjKey target_key);
  83. // Find links that point to a specific object (for Mixed columns)
  84. Query& links_to(ColKey column_key, ObjLink target_link);
  85. // Find links that point to specific target objects
  86. Query& links_to(ColKey column_key, const std::vector<ObjKey>& target_obj);
  87. // Conditions: null
  88. Query& equal(ColKey column_key, null);
  89. Query& not_equal(ColKey column_key, null);
  90. // Conditions: int64_t
  91. Query& equal(ColKey column_key, int64_t value);
  92. Query& not_equal(ColKey column_key, int64_t value);
  93. Query& greater(ColKey column_key, int64_t value);
  94. Query& greater_equal(ColKey column_key, int64_t value);
  95. Query& less(ColKey column_key, int64_t value);
  96. Query& less_equal(ColKey column_key, int64_t value);
  97. Query& between(ColKey column_key, int64_t from, int64_t to);
  98. // Conditions: int (we need those because conversion from '1234' is ambiguous with float/double)
  99. Query& equal(ColKey column_key, int value);
  100. Query& not_equal(ColKey column_key, int value);
  101. Query& greater(ColKey column_key, int value);
  102. Query& greater_equal(ColKey column_key, int value);
  103. Query& less(ColKey column_key, int value);
  104. Query& less_equal(ColKey column_key, int value);
  105. Query& between(ColKey column_key, int from, int to);
  106. // Conditions: float
  107. Query& equal(ColKey column_key, float value);
  108. Query& not_equal(ColKey column_key, float value);
  109. Query& greater(ColKey column_key, float value);
  110. Query& greater_equal(ColKey column_key, float value);
  111. Query& less(ColKey column_key, float value);
  112. Query& less_equal(ColKey column_key, float value);
  113. Query& between(ColKey column_key, float from, float to);
  114. // Conditions: double
  115. Query& equal(ColKey column_key, double value);
  116. Query& not_equal(ColKey column_key, double value);
  117. Query& greater(ColKey column_key, double value);
  118. Query& greater_equal(ColKey column_key, double value);
  119. Query& less(ColKey column_key, double value);
  120. Query& less_equal(ColKey column_key, double value);
  121. Query& between(ColKey column_key, double from, double to);
  122. // Conditions: timestamp
  123. Query& equal(ColKey column_key, Timestamp value);
  124. Query& not_equal(ColKey column_key, Timestamp value);
  125. Query& greater(ColKey column_key, Timestamp value);
  126. Query& greater_equal(ColKey column_key, Timestamp value);
  127. Query& less_equal(ColKey column_key, Timestamp value);
  128. Query& less(ColKey column_key, Timestamp value);
  129. // Conditions: ObjectId
  130. Query& equal(ColKey column_key, ObjectId value);
  131. Query& not_equal(ColKey column_key, ObjectId value);
  132. Query& greater(ColKey column_key, ObjectId value);
  133. Query& greater_equal(ColKey column_key, ObjectId value);
  134. Query& less_equal(ColKey column_key, ObjectId value);
  135. Query& less(ColKey column_key, ObjectId value);
  136. // Conditions: UUID
  137. Query& equal(ColKey column_key, UUID value);
  138. Query& not_equal(ColKey column_key, UUID value);
  139. Query& greater(ColKey column_key, UUID value);
  140. Query& greater_equal(ColKey column_key, UUID value);
  141. Query& less_equal(ColKey column_key, UUID value);
  142. Query& less(ColKey column_key, UUID value);
  143. // Conditions: Decimal128
  144. Query& equal(ColKey column_key, Decimal128 value);
  145. Query& not_equal(ColKey column_key, Decimal128 value);
  146. Query& greater(ColKey column_key, Decimal128 value);
  147. Query& greater_equal(ColKey column_key, Decimal128 value);
  148. Query& less_equal(ColKey column_key, Decimal128 value);
  149. Query& less(ColKey column_key, Decimal128 value);
  150. Query& between(ColKey column_key, Decimal128 from, Decimal128 to);
  151. // Conditions: Mixed
  152. Query& equal(ColKey column_key, Mixed value, bool case_sensitive = true);
  153. Query& not_equal(ColKey column_key, Mixed value, bool case_sensitive = true);
  154. Query& greater(ColKey column_key, Mixed value);
  155. Query& greater_equal(ColKey column_key, Mixed value);
  156. Query& less(ColKey column_key, Mixed value);
  157. Query& less_equal(ColKey column_key, Mixed value);
  158. Query& begins_with(ColKey column_key, Mixed value, bool case_sensitive = true);
  159. Query& ends_with(ColKey column_key, Mixed value, bool case_sensitive = true);
  160. Query& contains(ColKey column_key, Mixed value, bool case_sensitive = true);
  161. Query& like(ColKey column_key, Mixed value, bool case_sensitive = true);
  162. // Conditions: size
  163. Query& size_equal(ColKey column_key, int64_t value);
  164. Query& size_not_equal(ColKey column_key, int64_t value);
  165. Query& size_greater(ColKey column_key, int64_t value);
  166. Query& size_greater_equal(ColKey column_key, int64_t value);
  167. Query& size_less_equal(ColKey column_key, int64_t value);
  168. Query& size_less(ColKey column_key, int64_t value);
  169. Query& size_between(ColKey column_key, int64_t from, int64_t to);
  170. // Conditions: bool
  171. Query& equal(ColKey column_key, bool value);
  172. Query& not_equal(ColKey column_key, bool value);
  173. // Conditions: strings
  174. Query& equal(ColKey column_key, StringData value, bool case_sensitive = true);
  175. Query& not_equal(ColKey column_key, StringData value, bool case_sensitive = true);
  176. Query& begins_with(ColKey column_key, StringData value, bool case_sensitive = true);
  177. Query& ends_with(ColKey column_key, StringData value, bool case_sensitive = true);
  178. Query& contains(ColKey column_key, StringData value, bool case_sensitive = true);
  179. Query& like(ColKey column_key, StringData value, bool case_sensitive = true);
  180. // These are shortcuts for equal(StringData(c_str)) and
  181. // not_equal(StringData(c_str)), and are needed to avoid unwanted
  182. // implicit conversion of char* to bool.
  183. Query& equal(ColKey column_key, const char* c_str, bool case_sensitive = true);
  184. Query& not_equal(ColKey column_key, const char* c_str, bool case_sensitive = true);
  185. // Conditions: binary data
  186. Query& equal(ColKey column_key, BinaryData value, bool case_sensitive = true);
  187. Query& not_equal(ColKey column_key, BinaryData value, bool case_sensitive = true);
  188. Query& begins_with(ColKey column_key, BinaryData value, bool case_sensitive = true);
  189. Query& ends_with(ColKey column_key, BinaryData value, bool case_sensitive = true);
  190. Query& contains(ColKey column_key, BinaryData value, bool case_sensitive = true);
  191. Query& like(ColKey column_key, BinaryData b, bool case_sensitive = true);
  192. // Conditions: untyped column vs column comparison
  193. // if the column types are not comparable, an exception is thrown
  194. Query& equal(ColKey column_key1, ColKey column_key2);
  195. Query& less(ColKey column_key1, ColKey column_key2);
  196. Query& less_equal(ColKey column_key1, ColKey column_key2);
  197. Query& greater(ColKey column_key1, ColKey column_key2);
  198. Query& greater_equal(ColKey column_key1, ColKey column_key2);
  199. Query& not_equal(ColKey column_key1, ColKey column_key2);
  200. // Negation
  201. Query& Not();
  202. // Grouping
  203. Query& group();
  204. Query& end_group();
  205. Query& Or();
  206. Query& and_query(const Query& q);
  207. Query& and_query(Query&& q);
  208. Query operator||(const Query& q);
  209. Query operator&&(const Query& q);
  210. Query operator!();
  211. // Searching
  212. ObjKey find();
  213. TableView find_all(size_t start = 0, size_t end = size_t(-1), size_t limit = size_t(-1));
  214. // Aggregates
  215. size_t count() const;
  216. TableView find_all(const DescriptorOrdering& descriptor);
  217. size_t count(const DescriptorOrdering& descriptor);
  218. int64_t sum_int(ColKey column_key) const;
  219. double average_int(ColKey column_key, size_t* resultcount = nullptr) const;
  220. int64_t maximum_int(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  221. int64_t minimum_int(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  222. double sum_float(ColKey column_key) const;
  223. double average_float(ColKey column_key, size_t* resultcount = nullptr) const;
  224. float maximum_float(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  225. float minimum_float(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  226. double sum_double(ColKey column_key) const;
  227. double average_double(ColKey column_key, size_t* resultcount = nullptr) const;
  228. double maximum_double(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  229. double minimum_double(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  230. Timestamp maximum_timestamp(ColKey column_key, ObjKey* return_ndx = nullptr);
  231. Timestamp minimum_timestamp(ColKey column_key, ObjKey* return_ndx = nullptr);
  232. Decimal128 sum_decimal128(ColKey column_key) const;
  233. Decimal128 maximum_decimal128(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  234. Decimal128 minimum_decimal128(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  235. Decimal128 average_decimal128(ColKey column_key, size_t* resultcount = nullptr) const;
  236. Decimal128 sum_mixed(ColKey column_key) const;
  237. Mixed maximum_mixed(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  238. Mixed minimum_mixed(ColKey column_key, ObjKey* return_ndx = nullptr) const;
  239. Decimal128 average_mixed(ColKey column_key, size_t* resultcount = nullptr) const;
  240. // Deletion
  241. size_t remove();
  242. #if REALM_MULTITHREAD_QUERY
  243. // Multi-threading
  244. TableView find_all_multi(size_t start = 0, size_t end = size_t(-1));
  245. ConstTableView find_all_multi(size_t start = 0, size_t end = size_t(-1)) const;
  246. int set_threads(unsigned int threadcount);
  247. #endif
  248. ConstTableRef& get_table()
  249. {
  250. return m_table;
  251. }
  252. void get_outside_versions(TableVersions&) const;
  253. // True if matching rows are guaranteed to be returned in table order.
  254. bool produces_results_in_table_order() const
  255. {
  256. return !m_view;
  257. }
  258. // Get the ObjKey of the object which owns the restricting view, or null
  259. // if that is not applicable
  260. ObjKey view_owner_obj_key() const noexcept
  261. {
  262. return m_view ? m_view->get_owning_obj().get_key() : ObjKey{};
  263. }
  264. // Calls sync_if_needed on the restricting view, if present.
  265. // Returns the current version of the table(s) this query depends on,
  266. // or empty vector if the query is not associated with a table.
  267. TableVersions sync_view_if_needed() const;
  268. std::string validate();
  269. std::string get_description(const std::string& class_prefix = "") const;
  270. std::string get_description(util::serializer::SerialisationState& state) const;
  271. Query& set_ordering(std::unique_ptr<DescriptorOrdering> ordering);
  272. std::shared_ptr<DescriptorOrdering> get_ordering();
  273. bool eval_object(const Obj& obj) const;
  274. private:
  275. void create();
  276. void init() const;
  277. size_t find_internal(size_t start = 0, size_t end = size_t(-1)) const;
  278. void handle_pending_not();
  279. void set_table(TableRef tr);
  280. public:
  281. std::unique_ptr<Query> clone_for_handover(Transaction* tr, PayloadPolicy policy) const
  282. {
  283. return std::make_unique<Query>(this, tr, policy);
  284. }
  285. Query(const Query* source, Transaction* tr, PayloadPolicy policy);
  286. Query(const Query& source, Transaction* tr, PayloadPolicy policy)
  287. : Query(&source, tr, policy)
  288. {
  289. }
  290. private:
  291. void add_expression_node(std::unique_ptr<Expression>);
  292. template <typename TConditionFunction, class T>
  293. Query& add_condition(ColKey column_key, T value);
  294. template <typename TConditionFunction>
  295. Query& add_size_condition(ColKey column_key, int64_t value);
  296. template <typename T,
  297. typename R = typename aggregate_operations::Average<typename util::RemoveOptional<T>::type>::ResultType>
  298. R average(ColKey column_key, size_t* resultcount = nullptr) const;
  299. template <typename T>
  300. void aggregate(QueryStateBase& st, ColKey column_key, size_t* resultcount = nullptr,
  301. ObjKey* return_ndx = nullptr) const;
  302. size_t find_best_node(ParentNode* pn) const;
  303. void aggregate_internal(ParentNode* pn, QueryStateBase* st, size_t start, size_t end,
  304. ArrayPayload* source_column) const;
  305. void find_all(ConstTableView& tv, size_t start = 0, size_t end = size_t(-1), size_t limit = size_t(-1)) const;
  306. size_t do_count(size_t limit = size_t(-1)) const;
  307. void delete_nodes() noexcept;
  308. bool has_conditions() const
  309. {
  310. return m_groups.size() > 0 && m_groups[0].m_root_node;
  311. }
  312. ParentNode* root_node() const
  313. {
  314. REALM_ASSERT(m_groups.size());
  315. return m_groups[0].m_root_node.get();
  316. }
  317. void add_node(std::unique_ptr<ParentNode>);
  318. friend class Table;
  319. friend class ConstTableView;
  320. friend class SubQueryCount;
  321. friend class PrimitiveListCount;
  322. friend class metrics::QueryInfo;
  323. std::string error_code;
  324. std::vector<QueryGroup> m_groups;
  325. mutable std::vector<TableKey> m_table_keys;
  326. TableRef m_table;
  327. // points to the base class of the restricting view. If the restricting
  328. // view is a link view, m_source_collection is non-zero. If it is a table view,
  329. // m_source_table_view is non-zero.
  330. ObjList* m_view = nullptr;
  331. // At most one of these can be non-zero, and if so the non-zero one indicates the restricting view.
  332. //
  333. // m_source_collection is a pointer to a collection which must also be a ObjList*
  334. // this includes: LnkLst, LnkSet, and DictionaryLinkValues. It cannot be a list of primitives because
  335. // it is used to populate a query through a collection of objects and there are asserts for this.
  336. LinkCollectionPtr m_source_collection; // collections are owned by the query.
  337. ConstTableView* m_source_table_view = nullptr; // table views are not refcounted, and not owned by the query.
  338. std::unique_ptr<ConstTableView> m_owned_source_table_view; // <--- except when indicated here
  339. std::shared_ptr<DescriptorOrdering> m_ordering;
  340. };
  341. // Implementation:
  342. inline Query& Query::equal(ColKey column_key, const char* c_str, bool case_sensitive)
  343. {
  344. return equal(column_key, StringData(c_str), case_sensitive);
  345. }
  346. inline Query& Query::not_equal(ColKey column_key, const char* c_str, bool case_sensitive)
  347. {
  348. return not_equal(column_key, StringData(c_str), case_sensitive);
  349. }
  350. } // namespace realm
  351. #endif // REALM_QUERY_HPP