table_view.hpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  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_TABLE_VIEW_HPP
  19. #define REALM_TABLE_VIEW_HPP
  20. #include <realm/sort_descriptor.hpp>
  21. #include <realm/table.hpp>
  22. #include <realm/util/features.h>
  23. #include <realm/obj_list.hpp>
  24. #include <realm/list.hpp>
  25. #include <realm/set.hpp>
  26. namespace realm {
  27. // Views, tables and synchronization between them:
  28. //
  29. // Views are built through queries against either tables or another view.
  30. // Views may be restricted to only hold entries provided by another view.
  31. // this other view is called the "restricting view".
  32. // Views may be sorted in ascending or descending order of values in one ore more columns.
  33. //
  34. // Views remember the query from which it was originally built.
  35. // Views remember the table from which it was originally built.
  36. // Views remember a restricting view if one was used when it was originally built.
  37. // Views remember the sorting criteria (columns and direction)
  38. //
  39. // A view may be operated in one of two distinct modes: *reflective* and *imperative*.
  40. // Sometimes the term "reactive" is used instead of "reflective" with the same meaning.
  41. //
  42. // Reflective views:
  43. // - A reflective view *always* *reflect* the result of running the query.
  44. // If the underlying tables or tableviews change, the reflective view changes as well.
  45. // A reflective view may need to rerun the query it was generated from, a potentially
  46. // costly operation which happens on demand.
  47. // - It does not matter whether changes are explicitly done within the transaction, or
  48. // occur implicitly as part of advance_read() or promote_to_write().
  49. //
  50. // Imperative views:
  51. // - An imperative view only *initially* holds the result of the query. An imperative
  52. // view *never* reruns the query. To force the view to match it's query (by rerunning it),
  53. // the view must be operated in reflective mode.
  54. // An imperative view can be modified explicitly. References can be added, removed or
  55. // changed.
  56. //
  57. // - In imperative mode, the references in the view tracks movement of the referenced data:
  58. // If you delete an entry which is referenced from a view, said reference is detached,
  59. // not removed.
  60. // - It does not matter whether the delete is done in-line (as part of the current transaction),
  61. // or if it is done implicitly as part of advance_read() or promote_to_write().
  62. //
  63. // The choice between reflective and imperative views might eventually be represented by a
  64. // switch on the tableview, but isn't yet. For now, clients (bindings) must call sync_if_needed()
  65. // to get reflective behavior.
  66. //
  67. // Use cases:
  68. //
  69. // 1. Presenting data
  70. // The first use case (and primary motivator behind the reflective view) is to just track
  71. // and present the state of the database. In this case, the view is operated in reflective
  72. // mode, it is not modified within the transaction, and it is not used to modify data in
  73. // other parts of the database.
  74. //
  75. // 2. Background execution
  76. // This is the second use case. The implicit rerun of the query in our first use case
  77. // may be too costly to be acceptable on the main thread. Instead you want to run the query
  78. // on a worker thread, but display it on the main thread. To achieve this, you need two
  79. // Transactions locked on to the same version of the database. If you have that, you can
  80. // import_copy_of() a view from one transaction to the other. See also db.hpp for more
  81. // information. Technically, you can also import_copy_of into a transaction locked to a
  82. // different version. The imported view will automatically match the importing version.
  83. //
  84. // 3. Iterating a view and changing data
  85. // The third use case (and a motivator behind the imperative view) is when you want
  86. // to make changes to the database in accordance with a query result. Imagine you want to
  87. // find all employees with a salary below a limit and raise their salaries to the limit (pseudocode):
  88. //
  89. // promote_to_write();
  90. // view = table.where().less_than(salary_column,limit).find_all();
  91. // for (size_t i = 0; i < view.size(); ++i) {
  92. // view[i].set(salary_column, limit);
  93. // // add this to get reflective mode: view.sync_if_needed();
  94. // }
  95. // commit_and_continue_as_read();
  96. //
  97. // This is idiomatic imperative code and it works if the view is operated in imperative mode.
  98. //
  99. // If the view is operated in reflective mode, the behaviour surprises most people: When the
  100. // first salary is changed, the entry no longer fullfills the query, so it is dropped from the
  101. // view implicitly. view[0] is removed, view[1] moves to view[0] and so forth. But the next
  102. // loop iteration has i=1 and refers to view[1], thus skipping view[0]. The end result is that
  103. // every other employee get a raise, while the others don't.
  104. //
  105. // 4. Iterating intermixed with implicit updates
  106. // This leads us to use case 4, which is similar to use case 3, but uses promote_to_write()
  107. // intermixed with iterating a view. This is actually quite important to some, who do not want
  108. // to end up with a large write transaction.
  109. //
  110. // view = table.where().less_than(salary_column,limit).find_all();
  111. // for (size_t i = 0; i < view.size(); ++i) {
  112. // promote_to_write();
  113. // view[i].set(salary_column, limit);
  114. // commit_and_continue_as_write();
  115. // }
  116. //
  117. // Anything can happen at the call to promote_to_write(). The key question then becomes: how
  118. // do we support a safe way of realising the original goal (raising salaries) ?
  119. //
  120. // using the imperative operating mode:
  121. //
  122. // view = table.where().less_than(salary_column,limit).find_all();
  123. // for (size_t i = 0; i < view.size(); ++i) {
  124. // promote_to_write();
  125. // // add r.sync_if_needed(); to get reflective mode
  126. // if (r.is_obj_valid(i)) {
  127. // auto r = view[i];
  128. // view[i].set(salary_column, limit);
  129. // }
  130. // commit_and_continue_as_write();
  131. // }
  132. //
  133. // This is safe, and we just aim for providing low level safety: is_obj_valid() can tell
  134. // if the reference is valid, and the references in the view continue to point to the
  135. // same object at all times, also following implicit updates. The rest is up to the
  136. // application logic.
  137. //
  138. // It is important to see, that there is no guarantee that all relevant employees get
  139. // their raise in cases whith concurrent updates. At every call to promote_to_write() new
  140. // employees may be added to the underlying table, but as the view is in imperative mode,
  141. // these new employees are not added to the view. Also at promote_to_write() an existing
  142. // employee could recieve a (different, larger) raise which would then be overwritten and lost.
  143. // However, these are problems that you should expect, since the activity is spread over multiple
  144. // transactions.
  145. class TableView : public ObjList {
  146. public:
  147. /// Construct null view (no memory allocated).
  148. TableView() {}
  149. /// Construct empty view, ready for addition of row indices.
  150. explicit TableView(ConstTableRef parent);
  151. TableView(const Query& query, size_t limit);
  152. TableView(ConstTableRef parent, ColKey column, const Obj& obj);
  153. TableView(LinkCollectionPtr&& collection);
  154. /// Copy constructor.
  155. TableView(const TableView&);
  156. /// Move constructor.
  157. TableView(TableView&&) noexcept;
  158. TableView& operator=(const TableView&);
  159. TableView& operator=(TableView&&) noexcept;
  160. TableView(TableView& source, Transaction* tr, PayloadPolicy mode);
  161. ~TableView() {}
  162. TableRef get_parent() const noexcept
  163. {
  164. return m_table.cast_away_const();
  165. }
  166. TableRef get_target_table() const final
  167. {
  168. return m_table.cast_away_const();
  169. }
  170. size_t size() const final
  171. {
  172. return m_key_values.size();
  173. }
  174. bool is_empty() const noexcept
  175. {
  176. return m_key_values.size() == 0;
  177. }
  178. // Tells if the table that this TableView points at still exists or has been deleted.
  179. bool is_attached() const noexcept
  180. {
  181. return bool(m_table);
  182. }
  183. ObjKey get_key(size_t ndx) const final
  184. {
  185. return m_key_values.get(ndx);
  186. }
  187. bool is_obj_valid(size_t ndx) const noexcept
  188. {
  189. return m_table->is_valid(get_key(ndx));
  190. }
  191. Obj get_object(size_t ndx) const noexcept final
  192. {
  193. REALM_ASSERT(ndx < size());
  194. ObjKey key(m_key_values.get(ndx));
  195. return m_table->try_get_object(key);
  196. }
  197. // Get the query used to create this TableView
  198. // The query will have a null source table if this tv was not created from
  199. // a query
  200. const std::optional<Query>& get_query() const noexcept
  201. {
  202. return m_query;
  203. }
  204. void clear();
  205. // Change the TableView to be backed by another query
  206. // only works if the TableView is already backed by a query, and both
  207. // queries points to the same Table
  208. void update_query(const Query& q);
  209. std::unique_ptr<TableView> clone() const
  210. {
  211. return std::unique_ptr<TableView>(new TableView(*this));
  212. }
  213. LinkCollectionPtr clone_obj_list() const final
  214. {
  215. return std::unique_ptr<TableView>(new TableView(*this));
  216. }
  217. // import_copy_of() machinery entry points based on dynamic type. These methods:
  218. // a) forward their calls to the static type entry points.
  219. // b) new/delete patch data structures.
  220. std::unique_ptr<TableView> clone_for_handover(Transaction* tr, PayloadPolicy mode)
  221. {
  222. std::unique_ptr<TableView> retval(new TableView(*this, tr, mode));
  223. return retval;
  224. }
  225. template <Action action, typename T>
  226. Mixed aggregate(ColKey column_key, size_t* result_count = nullptr, ObjKey* return_key = nullptr) const;
  227. template <typename T>
  228. size_t aggregate_count(ColKey column_key, T count_target) const;
  229. size_t count_int(ColKey column_key, int64_t target) const;
  230. size_t count_float(ColKey column_key, float target) const;
  231. size_t count_double(ColKey column_key, double target) const;
  232. size_t count_timestamp(ColKey column_key, Timestamp target) const;
  233. size_t count_decimal(ColKey column_key, Decimal128 target) const;
  234. size_t count_mixed(ColKey column_key, Mixed target) const;
  235. /// Get the min element, according to whatever comparison function is
  236. /// meaningful for the collection, or none if min is not supported for this type.
  237. util::Optional<Mixed> min(ColKey column_key, ObjKey* return_key = nullptr) const;
  238. /// Get the max element, according to whatever comparison function is
  239. /// meaningful for the collection, or none if max is not supported for this type.
  240. util::Optional<Mixed> max(ColKey column_key, ObjKey* return_key = nullptr) const;
  241. /// For collections of arithmetic types, return the sum of all elements.
  242. /// For non arithmetic types, returns none.
  243. util::Optional<Mixed> sum(ColKey column_key) const;
  244. /// For collections of arithmetic types, return the average of all elements.
  245. /// For non arithmetic types, returns none.
  246. util::Optional<Mixed> avg(ColKey column_key, size_t* value_count = nullptr) const;
  247. /// Search this view for the specified key. If found, the index of that row
  248. /// within this view is returned, otherwise `realm::not_found` is returned.
  249. size_t find_by_source_ndx(ObjKey key) const noexcept
  250. {
  251. return m_key_values.find_first(key);
  252. }
  253. // Conversion
  254. void to_json(std::ostream&, size_t link_depth = 0, const std::map<std::string, std::string>& renames = {},
  255. JSONOutputMode mode = output_mode_json) const;
  256. // Determine if the view is 'in sync' with the underlying table
  257. // as well as other views used to generate the view. Note that updates
  258. // through views maintains synchronization between view and table.
  259. // It doesnt by itself maintain other views as well. So if a view
  260. // is generated from another view (not a table), updates may cause
  261. // that view to be outdated, AND as the generated view depends upon
  262. // it, it too will become outdated.
  263. bool is_in_sync() const final;
  264. // A TableView is frozen if it is a) obtained from a query against a frozen table
  265. // and b) is synchronized (is_in_sync())
  266. bool is_frozen()
  267. {
  268. return m_table->is_frozen() && is_in_sync();
  269. }
  270. // Tells if this TableView depends on a LinkList or row that has been deleted.
  271. bool depends_on_deleted_object() const;
  272. // Synchronize a view to match a table or tableview from which it
  273. // has been derived. Synchronization is achieved by rerunning the
  274. // query used to generate the view. If derived from another view, that
  275. // view will be synchronized as well.
  276. //
  277. // "live" or "reactive" views are implemented by calling sync_if_needed()
  278. // before any of the other access-methods whenever the view may have become
  279. // outdated.
  280. void sync_if_needed() const final;
  281. // Return the version of the source it was created from.
  282. TableVersions get_dependency_versions() const
  283. {
  284. TableVersions ret;
  285. get_dependencies(ret);
  286. return ret;
  287. }
  288. bool has_changed() const
  289. {
  290. return m_last_seen_versions != get_dependency_versions();
  291. }
  292. // Sort m_key_values according to one column
  293. void sort(ColKey column, bool ascending = true);
  294. // Sort m_key_values according to multiple columns
  295. void sort(SortDescriptor order);
  296. // Get the number of total results which have been filtered out because a number of "LIMIT" operations have
  297. // been applied. This number only applies to the last sync.
  298. size_t get_num_results_excluded_by_limit() const noexcept
  299. {
  300. return m_limit_count;
  301. }
  302. // Remove rows that are duplicated with respect to the column set passed as argument.
  303. // distinct() will preserve the original order of the row pointers, also if the order is a result of sort()
  304. // If two rows are indentical (for the given set of distinct-columns), then the last row is removed.
  305. // You can call sync_if_needed() to update the distinct view, just like you can for a sorted view.
  306. // Each time you call distinct() it will compound on the previous calls
  307. void distinct(ColKey column);
  308. void distinct(DistinctDescriptor columns);
  309. void limit(LimitDescriptor limit);
  310. // Replace the order of sort and distinct operations, bypassing manually
  311. // calling sort and distinct. This is a convenience method for bindings.
  312. void apply_descriptor_ordering(const DescriptorOrdering& new_ordering);
  313. // Gets a readable and parsable string which completely describes the sort and
  314. // distinct operations applied to this view.
  315. std::string get_descriptor_ordering_description() const;
  316. // Returns whether the rows are guaranteed to be in table order.
  317. // This is true only of unsorted TableViews created from either:
  318. // - Table::find_all()
  319. // - Query::find_all() when the query is not restricted to a view.
  320. bool is_in_table_order() const;
  321. bool is_backlink_view() const
  322. {
  323. return m_source_column_key != ColKey();
  324. }
  325. protected:
  326. // This TableView can be "born" from 4 different sources:
  327. // - LinkView
  328. // - Query::find_all()
  329. // - Table::get_distinct_view()
  330. // - Table::get_backlink_view()
  331. void get_dependencies(TableVersions&) const final;
  332. void do_sync();
  333. void do_sort(const DescriptorOrdering&);
  334. mutable ConstTableRef m_table;
  335. // The source column index that this view contain backlinks for.
  336. ColKey m_source_column_key;
  337. // The target object that rows in this view link to.
  338. Obj m_linked_obj;
  339. // If this TableView was created from an Object Collection, then this reference points to it. Otherwise it's 0
  340. mutable LinkCollectionPtr m_collection_source;
  341. // Stores the ordering criteria of applied sort and distinct operations.
  342. DescriptorOrdering m_descriptor_ordering;
  343. size_t m_limit_count = 0;
  344. // A valid query holds a reference to its table which must match our m_table.
  345. std::optional<Query> m_query;
  346. // parameters for findall, needed to rerun the query
  347. size_t m_limit = size_t(-1);
  348. // FIXME: This class should eventually be replaced by std::vector<ObjKey>
  349. // It implements a vector of ObjKey, where the elements are held in the
  350. // heap (default allocator is the only option)
  351. class KeyValues : public KeyColumn {
  352. public:
  353. KeyValues()
  354. : KeyColumn(Allocator::get_default())
  355. {
  356. }
  357. KeyValues(const KeyValues&) = delete;
  358. ~KeyValues()
  359. {
  360. destroy();
  361. }
  362. void move_from(KeyValues&);
  363. void copy_from(const KeyValues&);
  364. };
  365. mutable TableVersions m_last_seen_versions;
  366. KeyValues m_key_values;
  367. private:
  368. ObjKey find_first_integer(ColKey column_key, int64_t value) const;
  369. template <Action action>
  370. std::optional<Mixed> aggregate(ColKey column_key, size_t* count, ObjKey* return_key) const;
  371. util::RaceDetector m_race_detector;
  372. friend class Table;
  373. friend class Obj;
  374. friend class Query;
  375. friend class DB;
  376. friend class ObjList;
  377. friend class LnkLst;
  378. };
  379. // ================================================================================================
  380. // TableView Implementation:
  381. inline TableView::TableView(ConstTableRef parent)
  382. : m_table(parent) // Throws
  383. {
  384. m_key_values.create();
  385. if (m_table) {
  386. m_last_seen_versions.emplace_back(m_table->get_key(), m_table->get_content_version());
  387. }
  388. }
  389. inline TableView::TableView(const Query& query, size_t lim)
  390. : m_table(query.get_table())
  391. , m_query(query)
  392. , m_limit(lim)
  393. {
  394. m_key_values.create();
  395. REALM_ASSERT(query.m_table);
  396. }
  397. inline TableView::TableView(ConstTableRef src_table, ColKey src_column_key, const Obj& obj)
  398. : m_table(src_table) // Throws
  399. , m_source_column_key(src_column_key)
  400. , m_linked_obj(obj)
  401. {
  402. m_key_values.create();
  403. if (m_table) {
  404. m_last_seen_versions.emplace_back(m_table->get_key(), m_table->get_content_version());
  405. m_last_seen_versions.emplace_back(obj.get_table()->get_key(), obj.get_table()->get_content_version());
  406. }
  407. }
  408. inline TableView::TableView(LinkCollectionPtr&& collection)
  409. : m_table(collection->get_target_table()) // Throws
  410. , m_collection_source(std::move(collection))
  411. {
  412. REALM_ASSERT(m_collection_source);
  413. m_key_values.create();
  414. if (m_table) {
  415. m_last_seen_versions.emplace_back(m_table->get_key(), m_table->get_content_version());
  416. }
  417. }
  418. inline TableView::TableView(const TableView& tv)
  419. : m_table(tv.m_table)
  420. , m_source_column_key(tv.m_source_column_key)
  421. , m_linked_obj(tv.m_linked_obj)
  422. , m_collection_source(tv.m_collection_source ? tv.m_collection_source->clone_obj_list() : LinkCollectionPtr{})
  423. , m_descriptor_ordering(tv.m_descriptor_ordering)
  424. , m_query(tv.m_query)
  425. , m_limit(tv.m_limit)
  426. , m_last_seen_versions(tv.m_last_seen_versions)
  427. {
  428. m_key_values.copy_from(tv.m_key_values);
  429. m_limit_count = tv.m_limit_count;
  430. }
  431. inline TableView::TableView(TableView&& tv) noexcept
  432. : m_table(tv.m_table)
  433. , m_source_column_key(tv.m_source_column_key)
  434. , m_linked_obj(tv.m_linked_obj)
  435. , m_collection_source(std::move(tv.m_collection_source))
  436. , m_descriptor_ordering(std::move(tv.m_descriptor_ordering))
  437. , m_query(std::move(tv.m_query))
  438. , m_limit(tv.m_limit)
  439. // if we are created from a table view which is outdated, take care to use the outdated
  440. // version number so that we can later trigger a sync if needed.
  441. , m_last_seen_versions(std::move(tv.m_last_seen_versions))
  442. {
  443. m_key_values.move_from(tv.m_key_values);
  444. m_limit_count = tv.m_limit_count;
  445. }
  446. inline TableView& TableView::operator=(TableView&& tv) noexcept
  447. {
  448. m_table = std::move(tv.m_table);
  449. m_key_values.move_from(tv.m_key_values);
  450. m_query = std::move(tv.m_query);
  451. m_last_seen_versions = tv.m_last_seen_versions;
  452. m_limit = tv.m_limit;
  453. m_limit_count = tv.m_limit_count;
  454. m_source_column_key = tv.m_source_column_key;
  455. m_linked_obj = tv.m_linked_obj;
  456. m_collection_source = std::move(tv.m_collection_source);
  457. m_descriptor_ordering = std::move(tv.m_descriptor_ordering);
  458. return *this;
  459. }
  460. inline TableView& TableView::operator=(const TableView& tv)
  461. {
  462. if (this == &tv)
  463. return *this;
  464. m_key_values.copy_from(tv.m_key_values);
  465. m_query = tv.m_query;
  466. m_last_seen_versions = tv.m_last_seen_versions;
  467. m_limit = tv.m_limit;
  468. m_limit_count = tv.m_limit_count;
  469. m_source_column_key = tv.m_source_column_key;
  470. m_linked_obj = tv.m_linked_obj;
  471. m_collection_source = tv.m_collection_source ? tv.m_collection_source->clone_obj_list() : LinkCollectionPtr{};
  472. m_descriptor_ordering = tv.m_descriptor_ordering;
  473. return *this;
  474. }
  475. } // namespace realm
  476. #endif // REALM_TABLE_VIEW_HPP