query.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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/util/bind_ptr.hpp>
  40. #include <realm/column_type_traits.hpp>
  41. namespace realm {
  42. // Pre-declarations
  43. class ParentNode;
  44. class Table;
  45. class TableView;
  46. class TableView;
  47. class Array;
  48. class Expression;
  49. class Group;
  50. class Transaction;
  51. class LinkMap;
  52. namespace metrics {
  53. class QueryInfo;
  54. }
  55. struct QueryGroup {
  56. enum class State {
  57. Default,
  58. OrCondition,
  59. OrConditionChildren,
  60. };
  61. QueryGroup() = default;
  62. QueryGroup(const QueryGroup&);
  63. QueryGroup& operator=(const QueryGroup&);
  64. QueryGroup(QueryGroup&&) = default;
  65. QueryGroup& operator=(QueryGroup&&) = default;
  66. std::unique_ptr<ParentNode> m_root_node;
  67. bool m_pending_not = false;
  68. State m_state = State::Default;
  69. };
  70. class Query final {
  71. public:
  72. Query(ConstTableRef table, TableView* tv = nullptr);
  73. Query(ConstTableRef table, std::unique_ptr<TableView>);
  74. Query(ConstTableRef table, const ObjList& list);
  75. Query(ConstTableRef table, LinkCollectionPtr&& list_ptr);
  76. Query();
  77. Query(std::unique_ptr<Expression>);
  78. ~Query() noexcept;
  79. Query(const Query& copy);
  80. Query& operator=(const Query& source);
  81. Query(Query&&);
  82. Query& operator=(Query&&);
  83. // Find links that point to a specific target row
  84. Query& links_to(ColKey column_key, ObjKey target_key);
  85. // Find links that point to a specific object (for Mixed columns)
  86. Query& links_to(ColKey column_key, ObjLink target_link);
  87. // Find links that point to specific target objects
  88. Query& links_to(ColKey column_key, const std::vector<ObjKey>& target_obj);
  89. // Conditions: null
  90. Query& equal(ColKey column_key, null);
  91. Query& not_equal(ColKey column_key, null);
  92. // Conditions: int64_t
  93. Query& equal(ColKey column_key, int64_t value);
  94. Query& not_equal(ColKey column_key, int64_t value);
  95. Query& greater(ColKey column_key, int64_t value);
  96. Query& greater_equal(ColKey column_key, int64_t value);
  97. Query& less(ColKey column_key, int64_t value);
  98. Query& less_equal(ColKey column_key, int64_t value);
  99. Query& between(ColKey column_key, int64_t from, int64_t to);
  100. // Conditions: int (we need those because conversion from '1234' is ambiguous with float/double)
  101. Query& equal(ColKey column_key, int value);
  102. Query& not_equal(ColKey column_key, int value);
  103. Query& greater(ColKey column_key, int value);
  104. Query& greater_equal(ColKey column_key, int value);
  105. Query& less(ColKey column_key, int value);
  106. Query& less_equal(ColKey column_key, int value);
  107. Query& between(ColKey column_key, int from, int to);
  108. // Conditions: float
  109. Query& equal(ColKey column_key, float value);
  110. Query& not_equal(ColKey column_key, float value);
  111. Query& greater(ColKey column_key, float value);
  112. Query& greater_equal(ColKey column_key, float value);
  113. Query& less(ColKey column_key, float value);
  114. Query& less_equal(ColKey column_key, float value);
  115. Query& between(ColKey column_key, float from, float to);
  116. // Conditions: double
  117. Query& equal(ColKey column_key, double value);
  118. Query& not_equal(ColKey column_key, double value);
  119. Query& greater(ColKey column_key, double value);
  120. Query& greater_equal(ColKey column_key, double value);
  121. Query& less(ColKey column_key, double value);
  122. Query& less_equal(ColKey column_key, double value);
  123. Query& between(ColKey column_key, double from, double to);
  124. // Conditions: timestamp
  125. Query& equal(ColKey column_key, Timestamp value);
  126. Query& not_equal(ColKey column_key, Timestamp value);
  127. Query& greater(ColKey column_key, Timestamp value);
  128. Query& greater_equal(ColKey column_key, Timestamp value);
  129. Query& less_equal(ColKey column_key, Timestamp value);
  130. Query& less(ColKey column_key, Timestamp value);
  131. // Conditions: ObjectId
  132. Query& equal(ColKey column_key, ObjectId value);
  133. Query& not_equal(ColKey column_key, ObjectId value);
  134. Query& greater(ColKey column_key, ObjectId value);
  135. Query& greater_equal(ColKey column_key, ObjectId value);
  136. Query& less_equal(ColKey column_key, ObjectId value);
  137. Query& less(ColKey column_key, ObjectId value);
  138. // Conditions: UUID
  139. Query& equal(ColKey column_key, UUID value);
  140. Query& not_equal(ColKey column_key, UUID value);
  141. Query& greater(ColKey column_key, UUID value);
  142. Query& greater_equal(ColKey column_key, UUID value);
  143. Query& less_equal(ColKey column_key, UUID value);
  144. Query& less(ColKey column_key, UUID value);
  145. // Conditions: Decimal128
  146. Query& equal(ColKey column_key, Decimal128 value);
  147. Query& not_equal(ColKey column_key, Decimal128 value);
  148. Query& greater(ColKey column_key, Decimal128 value);
  149. Query& greater_equal(ColKey column_key, Decimal128 value);
  150. Query& less_equal(ColKey column_key, Decimal128 value);
  151. Query& less(ColKey column_key, Decimal128 value);
  152. Query& between(ColKey column_key, Decimal128 from, Decimal128 to);
  153. // Conditions: Mixed
  154. Query& equal(ColKey column_key, Mixed value, bool case_sensitive = true);
  155. Query& not_equal(ColKey column_key, Mixed value, bool case_sensitive = true);
  156. Query& greater(ColKey column_key, Mixed value);
  157. Query& greater_equal(ColKey column_key, Mixed value);
  158. Query& less(ColKey column_key, Mixed value);
  159. Query& less_equal(ColKey column_key, Mixed value);
  160. Query& begins_with(ColKey column_key, Mixed value, bool case_sensitive = true);
  161. Query& ends_with(ColKey column_key, Mixed value, bool case_sensitive = true);
  162. Query& contains(ColKey column_key, Mixed value, bool case_sensitive = true);
  163. Query& like(ColKey column_key, Mixed value, bool case_sensitive = true);
  164. // Conditions: size
  165. Query& size_equal(ColKey column_key, int64_t value);
  166. Query& size_not_equal(ColKey column_key, int64_t value);
  167. Query& size_greater(ColKey column_key, int64_t value);
  168. Query& size_greater_equal(ColKey column_key, int64_t value);
  169. Query& size_less_equal(ColKey column_key, int64_t value);
  170. Query& size_less(ColKey column_key, int64_t value);
  171. Query& size_between(ColKey column_key, int64_t from, int64_t to);
  172. // Conditions: bool
  173. Query& equal(ColKey column_key, bool value);
  174. Query& not_equal(ColKey column_key, bool value);
  175. // Conditions: strings
  176. Query& equal(ColKey column_key, StringData value, bool case_sensitive = true);
  177. Query& not_equal(ColKey column_key, StringData value, bool case_sensitive = true);
  178. Query& begins_with(ColKey column_key, StringData value, bool case_sensitive = true);
  179. Query& ends_with(ColKey column_key, StringData value, bool case_sensitive = true);
  180. Query& contains(ColKey column_key, StringData value, bool case_sensitive = true);
  181. Query& like(ColKey column_key, StringData value, bool case_sensitive = true);
  182. Query& fulltext(ColKey column_key, StringData value);
  183. Query& fulltext(ColKey column_key, StringData value, const LinkMap&);
  184. // These are shortcuts for equal(StringData(c_str)) and
  185. // not_equal(StringData(c_str)), and are needed to avoid unwanted
  186. // implicit conversion of char* to bool.
  187. Query& equal(ColKey column_key, const char* c_str, bool case_sensitive = true);
  188. Query& not_equal(ColKey column_key, const char* c_str, bool case_sensitive = true);
  189. // Conditions: binary data
  190. Query& equal(ColKey column_key, BinaryData value, bool case_sensitive = true);
  191. Query& not_equal(ColKey column_key, BinaryData value, bool case_sensitive = true);
  192. Query& begins_with(ColKey column_key, BinaryData value, bool case_sensitive = true);
  193. Query& ends_with(ColKey column_key, BinaryData value, bool case_sensitive = true);
  194. Query& contains(ColKey column_key, BinaryData value, bool case_sensitive = true);
  195. Query& like(ColKey column_key, BinaryData b, bool case_sensitive = true);
  196. // Conditions: untyped column vs column comparison
  197. // if the column types are not comparable, an exception is thrown
  198. Query& equal(ColKey column_key1, ColKey column_key2);
  199. Query& less(ColKey column_key1, ColKey column_key2);
  200. Query& less_equal(ColKey column_key1, ColKey column_key2);
  201. Query& greater(ColKey column_key1, ColKey column_key2);
  202. Query& greater_equal(ColKey column_key1, ColKey column_key2);
  203. Query& not_equal(ColKey column_key1, ColKey column_key2);
  204. // Negation
  205. Query& Not();
  206. // Grouping
  207. Query& group();
  208. Query& end_group();
  209. Query& Or();
  210. Query& and_query(const Query& q);
  211. Query& and_query(Query&& q);
  212. Query operator||(const Query& q);
  213. Query operator&&(const Query& q);
  214. Query operator!();
  215. // Searching
  216. ObjKey find() const;
  217. TableView find_all(size_t limit = size_t(-1)) const;
  218. // Aggregates
  219. size_t count() const;
  220. TableView find_all(const DescriptorOrdering& descriptor) const;
  221. size_t count(const DescriptorOrdering& descriptor) const;
  222. // Aggregates return nullopt if the operation is not supported on the given column
  223. // Everything but `sum` returns `some(null)` if there are no non-null values
  224. // Sum returns `some(0)` if there are no non-null values.
  225. std::optional<Mixed> sum(ColKey col_key) const;
  226. std::optional<Mixed> min(ColKey col_key, ObjKey* = nullptr) const;
  227. std::optional<Mixed> max(ColKey col_key, ObjKey* = nullptr) const;
  228. std::optional<Mixed> avg(ColKey col_key, size_t* value_count = nullptr) const;
  229. // Deletion
  230. size_t remove() const;
  231. #if REALM_MULTITHREAD_QUERY
  232. // Multi-threading
  233. TableView find_all_multi(size_t start = 0, size_t end = size_t(-1));
  234. TableView find_all_multi(size_t start = 0, size_t end = size_t(-1)) const;
  235. int set_threads(unsigned int threadcount);
  236. #endif
  237. const ConstTableRef& get_table() const noexcept
  238. {
  239. return m_table;
  240. }
  241. ConstTableRef& get_table()
  242. {
  243. return m_table;
  244. }
  245. void get_outside_versions(TableVersions&) const;
  246. // True if matching rows are guaranteed to be returned in table order.
  247. bool produces_results_in_table_order() const
  248. {
  249. return !m_view;
  250. }
  251. // Get the ObjKey of the object which owns the restricting view, or null
  252. // if that is not applicable
  253. ObjKey view_owner_obj_key() const noexcept
  254. {
  255. return m_view ? m_view->get_owning_obj().get_key() : ObjKey{};
  256. }
  257. // Calls sync_if_needed on the restricting view, if present.
  258. // Returns the current version of the table(s) this query depends on,
  259. // or empty vector if the query is not associated with a table.
  260. TableVersions sync_view_if_needed() const;
  261. std::string validate() const;
  262. std::string get_description() const;
  263. std::string get_description_safe() const noexcept;
  264. Query& set_ordering(util::bind_ptr<DescriptorOrdering> ordering);
  265. // This will remove the ordering from the Query object
  266. util::bind_ptr<DescriptorOrdering> get_ordering();
  267. bool eval_object(const Obj& obj) const;
  268. private:
  269. void create();
  270. void init() const;
  271. size_t find_internal(size_t start = 0, size_t end = size_t(-1)) const;
  272. void handle_pending_not();
  273. void set_table(TableRef tr);
  274. std::string get_description(util::serializer::SerialisationState& state) const;
  275. public:
  276. std::unique_ptr<Query> clone_for_handover(Transaction* tr, PayloadPolicy policy) const
  277. {
  278. return std::make_unique<Query>(this, tr, policy);
  279. }
  280. Query(const Query* source, Transaction* tr, PayloadPolicy policy);
  281. Query(const Query& source, Transaction* tr, PayloadPolicy policy)
  282. : Query(&source, tr, policy)
  283. {
  284. }
  285. private:
  286. void add_expression_node(std::unique_ptr<Expression>);
  287. template <typename TConditionFunction, class T>
  288. Query& add_condition(ColKey column_key, T value);
  289. template <typename TConditionFunction>
  290. Query& add_size_condition(ColKey column_key, int64_t value);
  291. template <typename T>
  292. void aggregate(QueryStateBase& st, ColKey column_key) const;
  293. size_t find_best_node(ParentNode* pn) const;
  294. void aggregate_internal(ParentNode* pn, QueryStateBase* st, size_t start, size_t end,
  295. ArrayPayload* source_column) const;
  296. void do_find_all(TableView& tv, size_t limit) const;
  297. size_t do_count(size_t limit = size_t(-1)) const;
  298. void delete_nodes() noexcept;
  299. bool has_conditions() const
  300. {
  301. return m_groups.size() > 0 && m_groups[0].m_root_node;
  302. }
  303. ParentNode* root_node() const
  304. {
  305. REALM_ASSERT(m_groups.size());
  306. return m_groups[0].m_root_node.get();
  307. }
  308. void add_node(std::unique_ptr<ParentNode>);
  309. friend class Table;
  310. friend class TableView;
  311. friend class SubQueryCount;
  312. friend class PrimitiveListCount;
  313. friend class metrics::QueryInfo;
  314. template <class>
  315. friend class AggregateHelper;
  316. std::string error_code;
  317. std::vector<QueryGroup> m_groups;
  318. mutable std::vector<TableKey> m_table_keys;
  319. TableRef m_table;
  320. // points to the base class of the restricting view. If the restricting
  321. // view is a link view, m_source_collection is non-zero. If it is a table view,
  322. // m_source_table_view is non-zero.
  323. ObjList* m_view = nullptr;
  324. // At most one of these can be non-zero, and if so the non-zero one indicates the restricting view.
  325. //
  326. // m_source_collection is a pointer to a collection which must also be a ObjList*
  327. // this includes: LnkLst, LnkSet, and DictionaryLinkValues. It cannot be a list of primitives because
  328. // it is used to populate a query through a collection of objects and there are asserts for this.
  329. LinkCollectionPtr m_source_collection; // collections are owned by the query.
  330. TableView* m_source_table_view = nullptr; // table views are not refcounted, and not owned by the query.
  331. std::unique_ptr<TableView> m_owned_source_table_view; // <--- except when indicated here
  332. util::bind_ptr<DescriptorOrdering> m_ordering;
  333. };
  334. // Implementation:
  335. inline Query& Query::equal(ColKey column_key, const char* c_str, bool case_sensitive)
  336. {
  337. return equal(column_key, StringData(c_str), case_sensitive);
  338. }
  339. inline Query& Query::not_equal(ColKey column_key, const char* c_str, bool case_sensitive)
  340. {
  341. return not_equal(column_key, StringData(c_str), case_sensitive);
  342. }
  343. } // namespace realm
  344. #endif // REALM_QUERY_HPP