table.hpp 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374
  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_HPP
  19. #define REALM_TABLE_HPP
  20. #include "external/mpark/variant.hpp"
  21. #include <algorithm>
  22. #include <map>
  23. #include <utility>
  24. #include <typeinfo>
  25. #include <memory>
  26. #include <mutex>
  27. #include <realm/util/features.h>
  28. #include <realm/util/function_ref.hpp>
  29. #include <realm/util/thread.hpp>
  30. #include <realm/table_ref.hpp>
  31. #include <realm/spec.hpp>
  32. #include <realm/query.hpp>
  33. #include <realm/cluster_tree.hpp>
  34. #include <realm/keys.hpp>
  35. #include <realm/global_key.hpp>
  36. // Only set this to one when testing the code paths that exercise object ID
  37. // hash collisions. It artificially limits the "optimistic" local ID to use
  38. // only the lower 15 bits of the ID rather than the lower 63 bits, making it
  39. // feasible to generate collisions within reasonable time.
  40. #define REALM_EXERCISE_OBJECT_ID_COLLISION 0
  41. namespace realm {
  42. class BacklinkColumn;
  43. template <class>
  44. class BacklinkCount;
  45. class TableView;
  46. class Group;
  47. class SortDescriptor;
  48. class TableView;
  49. template <class>
  50. class Columns;
  51. template <class>
  52. class SubQuery;
  53. class ColKeys;
  54. struct GlobalKey;
  55. class LinkChain;
  56. class Subexpr;
  57. class StringIndex;
  58. struct Link {
  59. };
  60. typedef Link BackLink;
  61. namespace _impl {
  62. class TableFriend;
  63. }
  64. namespace util {
  65. class Logger;
  66. }
  67. namespace metrics {
  68. class QueryInfo;
  69. }
  70. namespace query_parser {
  71. class Arguments;
  72. class KeyPathMapping;
  73. class ParserDriver;
  74. } // namespace query_parser
  75. enum class ExpressionComparisonType : unsigned char {
  76. Any,
  77. All,
  78. None,
  79. };
  80. class Table {
  81. public:
  82. /// The type of tables supported by a realm.
  83. /// Note: Any change to this enum is a file-format breaking change.
  84. /// Note: Enumeration value assignments must be kept in sync with
  85. /// <realm/object-store/object_schema.hpp>.
  86. enum class Type : uint8_t { TopLevel = 0, Embedded = 0x1, TopLevelAsymmetric = 0x2 };
  87. constexpr static uint8_t table_type_mask = 0x3;
  88. /// Construct a new freestanding top-level table with static
  89. /// lifetime. For debugging only.
  90. Table(Allocator& = Allocator::get_default());
  91. /// Construct a copy of the specified table as a new freestanding
  92. /// top-level table with static lifetime. For debugging only.
  93. Table(const Table&, Allocator& = Allocator::get_default());
  94. ~Table() noexcept;
  95. Allocator& get_alloc() const;
  96. /// Get the name of this table, if it has one. Only group-level tables have
  97. /// names. For a table of any other kind, this function returns the empty
  98. /// string.
  99. StringData get_name() const noexcept;
  100. // Get table name with class prefix removed
  101. StringData get_class_name() const noexcept;
  102. const char* get_state() const noexcept;
  103. /// If this table is a group-level table, the parent group is returned,
  104. /// otherwise null is returned.
  105. Group* get_parent_group() const noexcept;
  106. // Whether or not elements can be null.
  107. bool is_nullable(ColKey col_key) const;
  108. // Whether or not the column is a list.
  109. bool is_list(ColKey col_key) const;
  110. //@{
  111. /// Conventience functions for inspecting the dynamic table type.
  112. ///
  113. bool is_embedded() const noexcept; // true if table holds embedded objects
  114. bool is_asymmetric() const noexcept; // true if table is asymmetric
  115. Type get_table_type() const noexcept;
  116. size_t get_column_count() const noexcept;
  117. DataType get_column_type(ColKey column_key) const;
  118. StringData get_column_name(ColKey column_key) const;
  119. ColumnAttrMask get_column_attr(ColKey column_key) const noexcept;
  120. DataType get_dictionary_key_type(ColKey column_key) const noexcept;
  121. ColKey get_column_key(StringData name) const noexcept;
  122. ColKeys get_column_keys() const;
  123. typedef util::Optional<std::pair<ConstTableRef, ColKey>> BacklinkOrigin;
  124. BacklinkOrigin find_backlink_origin(StringData origin_table_name, StringData origin_col_name) const noexcept;
  125. BacklinkOrigin find_backlink_origin(ColKey backlink_col) const noexcept;
  126. std::vector<std::pair<TableKey, ColKey>> get_incoming_link_columns() const noexcept;
  127. //@}
  128. // Primary key columns
  129. ColKey get_primary_key_column() const;
  130. void set_primary_key_column(ColKey col);
  131. void validate_primary_column();
  132. //@{
  133. /// Convenience functions for manipulating the dynamic table type.
  134. ///
  135. static const size_t max_column_name_length = 63;
  136. static const uint64_t max_num_columns = 0xFFFFUL; // <-- must be power of two -1
  137. ColKey add_column(DataType type, StringData name, bool nullable = false);
  138. ColKey add_column(Table& target, StringData name);
  139. ColKey add_column_list(DataType type, StringData name, bool nullable = false);
  140. ColKey add_column_list(Table& target, StringData name);
  141. ColKey add_column_set(DataType type, StringData name, bool nullable = false);
  142. ColKey add_column_set(Table& target, StringData name);
  143. ColKey add_column_dictionary(DataType type, StringData name, bool nullable = false,
  144. DataType key_type = type_String);
  145. ColKey add_column_dictionary(Table& target, StringData name, DataType key_type = type_String);
  146. [[deprecated("Use add_column(Table&) or add_column_list(Table&) instead.")]] //
  147. ColKey
  148. add_column_link(DataType type, StringData name, Table& target);
  149. void remove_column(ColKey col_key);
  150. void rename_column(ColKey col_key, StringData new_name);
  151. bool valid_column(ColKey col_key) const noexcept;
  152. void check_column(ColKey col_key) const
  153. {
  154. if (REALM_UNLIKELY(!valid_column(col_key)))
  155. throw InvalidColumnKey();
  156. }
  157. // Change the type of a table. Only allowed to switch to/from TopLevel from/to Embedded.
  158. void set_table_type(Type new_type, bool handle_backlinks = false);
  159. //@}
  160. /// True for `col_type_Link` and `col_type_LinkList`.
  161. static bool is_link_type(ColumnType) noexcept;
  162. //@{
  163. /// has_search_index() returns true if, and only if a search index has been
  164. /// added to the specified column. Rather than throwing, it returns false if
  165. /// the table accessor is detached or the specified index is out of range.
  166. ///
  167. /// add_search_index() adds a search index to the specified column of the
  168. /// table. It has no effect if a search index has already been added to the
  169. /// specified column (idempotency).
  170. ///
  171. /// remove_search_index() removes the search index from the specified column
  172. /// of the table. It has no effect if the specified column has no search
  173. /// index. The search index cannot be removed from the primary key of a
  174. /// table.
  175. ///
  176. /// \param col_key The key of a column of the table.
  177. IndexType search_index_type(ColKey col_key) const noexcept;
  178. bool has_search_index(ColKey col_key) const noexcept
  179. {
  180. return search_index_type(col_key) == IndexType::General;
  181. }
  182. void add_search_index(ColKey col_key, IndexType type = IndexType::General);
  183. void add_fulltext_index(ColKey col_key)
  184. {
  185. add_search_index(col_key, IndexType::Fulltext);
  186. }
  187. void remove_search_index(ColKey col_key);
  188. void enumerate_string_column(ColKey col_key);
  189. bool is_enumerated(ColKey col_key) const noexcept;
  190. bool contains_unique_values(ColKey col_key) const;
  191. //@}
  192. /// If the specified column is optimized to store only unique values, then
  193. /// this function returns the number of unique values currently
  194. /// stored. Otherwise it returns zero. This function is mainly intended for
  195. /// debugging purposes.
  196. size_t get_num_unique_values(ColKey col_key) const;
  197. template <class T>
  198. Columns<T> column(ColKey col_key, util::Optional<ExpressionComparisonType> = util::none) const;
  199. template <class T>
  200. Columns<T> column(const Table& origin, ColKey origin_col_key) const;
  201. // BacklinkCount is a total count per row and therefore not attached to a specific column
  202. template <class T>
  203. BacklinkCount<T> get_backlink_count() const;
  204. template <class T>
  205. SubQuery<T> column(ColKey col_key, Query subquery) const;
  206. template <class T>
  207. SubQuery<T> column(const Table& origin, ColKey origin_col_key, Query subquery) const;
  208. // Table size and deletion
  209. bool is_empty() const noexcept;
  210. size_t size() const noexcept
  211. {
  212. return m_clusters.size();
  213. }
  214. size_t nb_unresolved() const noexcept
  215. {
  216. return m_tombstones ? m_tombstones->size() : 0;
  217. }
  218. //@{
  219. /// Object handling.
  220. enum class UpdateMode { never, changed, all };
  221. // Create an object with key. If the key is omitted, a key will be generated by the system
  222. Obj create_object(ObjKey key = {}, const FieldValues& = {});
  223. // Create an object with specific GlobalKey - or return already existing object
  224. // Potential tombstone will be resurrected
  225. Obj create_object(GlobalKey object_id, const FieldValues& = {});
  226. // Create an object with primary key. If an object with the given primary key already exists, it
  227. // will be returned and did_create (if supplied) will be set to false.
  228. // Potential tombstone will be resurrected
  229. Obj create_object_with_primary_key(const Mixed& primary_key, FieldValues&&, UpdateMode mode = UpdateMode::all,
  230. bool* did_create = nullptr);
  231. Obj create_object_with_primary_key(const Mixed& primary_key, bool* did_create = nullptr)
  232. {
  233. return create_object_with_primary_key(primary_key, {{}}, UpdateMode::all, did_create);
  234. }
  235. // Return key for existing object or return null key.
  236. ObjKey find_primary_key(Mixed value) const;
  237. // Return ObjKey for object identified by id. If objects does not exist, return null key
  238. // Important: This function must not be called for tables with primary keys.
  239. ObjKey get_objkey(GlobalKey id) const;
  240. // Return key for existing object or return unresolved key.
  241. // Important: This is to be used ONLY by the Sync client. SDKs should NEVER
  242. // observe an unresolved key. Ever.
  243. ObjKey get_objkey_from_primary_key(const Mixed& primary_key);
  244. // Return key for existing object or return unresolved key.
  245. // Important: This is to be used ONLY by the Sync client. SDKs should NEVER
  246. // observe an unresolved key. Ever.
  247. // Important (2): This function must not be called for tables with primary keys.
  248. ObjKey get_objkey_from_global_key(GlobalKey key);
  249. /// Create a number of objects and add corresponding keys to a vector
  250. void create_objects(size_t number, std::vector<ObjKey>& keys);
  251. /// Create a number of objects with keys supplied
  252. void create_objects(const std::vector<ObjKey>& keys);
  253. /// Does the key refer to an object within the table?
  254. bool is_valid(ObjKey key) const noexcept
  255. {
  256. return m_clusters.is_valid(key);
  257. }
  258. GlobalKey get_object_id(ObjKey key) const;
  259. Obj get_object(ObjKey key) const
  260. {
  261. REALM_ASSERT(!key.is_unresolved());
  262. return m_clusters.get(key);
  263. }
  264. Obj try_get_object(ObjKey key) const noexcept
  265. {
  266. return m_clusters.try_get_obj(key);
  267. }
  268. Obj get_object(size_t ndx) const
  269. {
  270. return m_clusters.get(ndx);
  271. }
  272. // Get object based on primary key
  273. Obj get_object_with_primary_key(Mixed pk) const;
  274. // Get primary key based on ObjKey
  275. Mixed get_primary_key(ObjKey key) const;
  276. // Get logical index for object. This function is not very efficient
  277. size_t get_object_ndx(ObjKey key) const noexcept
  278. {
  279. return m_clusters.get_ndx(key);
  280. }
  281. void dump_objects();
  282. bool traverse_clusters(ClusterTree::TraverseFunction func) const
  283. {
  284. return m_clusters.traverse(func);
  285. }
  286. /// remove_object() removes the specified object from the table.
  287. /// Any links from the specified object into objects residing in an embedded
  288. /// table will cause those objects to be deleted as well, and so on recursively.
  289. void remove_object(ObjKey key);
  290. /// remove_object_recursive() will delete linked rows if the removed link was the
  291. /// last one holding on to the row in question. This will be done recursively.
  292. void remove_object_recursive(ObjKey key);
  293. // Invalidate object. To be used by the Sync client.
  294. // - turns the object into a tombstone if links exist
  295. // - otherwise works just as remove_object()
  296. ObjKey invalidate_object(ObjKey key);
  297. Obj try_get_tombstone(ObjKey key) const
  298. {
  299. REALM_ASSERT(key.is_unresolved());
  300. REALM_ASSERT(m_tombstones);
  301. return m_tombstones->try_get_obj(key);
  302. }
  303. void clear();
  304. using Iterator = ClusterTree::Iterator;
  305. Iterator begin() const;
  306. Iterator end() const;
  307. void remove_object(const Iterator& it)
  308. {
  309. remove_object(it->get_key());
  310. }
  311. //@}
  312. TableRef get_link_target(ColKey column_key) noexcept;
  313. ConstTableRef get_link_target(ColKey column_key) const noexcept;
  314. static const size_t max_string_size = 0xFFFFF8 - Array::header_size - 1;
  315. static const size_t max_binary_size = 0xFFFFF8 - Array::header_size;
  316. static constexpr int_fast64_t max_integer = std::numeric_limits<int64_t>::max();
  317. static constexpr int_fast64_t min_integer = std::numeric_limits<int64_t>::min();
  318. /// Only group-level unordered tables can be used as origins or targets of
  319. /// links.
  320. bool is_group_level() const noexcept;
  321. /// A Table accessor obtained from a frozen transaction is also frozen.
  322. bool is_frozen() const noexcept
  323. {
  324. return m_is_frozen;
  325. }
  326. /// If this table is a group-level table, then this function returns the
  327. /// index of this table within the group. Otherwise it returns realm::npos.
  328. size_t get_index_in_group() const noexcept;
  329. TableKey get_key() const noexcept;
  330. uint64_t allocate_sequence_number();
  331. // Used by upgrade
  332. void set_sequence_number(uint64_t seq);
  333. void set_collision_map(ref_type ref);
  334. // Get the key of this table directly, without needing a Table accessor.
  335. static TableKey get_key_direct(Allocator& alloc, ref_type top_ref);
  336. // Aggregate functions
  337. size_t count_int(ColKey col_key, int64_t value) const;
  338. size_t count_string(ColKey col_key, StringData value) const;
  339. size_t count_float(ColKey col_key, float value) const;
  340. size_t count_double(ColKey col_key, double value) const;
  341. size_t count_decimal(ColKey col_key, Decimal128 value) const;
  342. // Aggregates return nullopt if the operation is not supported on the given column
  343. // Everything but `sum` returns `some(null)` if there are no non-null values
  344. // Sum returns `some(0)` if there are no non-null values.
  345. std::optional<Mixed> sum(ColKey col_key) const;
  346. std::optional<Mixed> min(ColKey col_key, ObjKey* = nullptr) const;
  347. std::optional<Mixed> max(ColKey col_key, ObjKey* = nullptr) const;
  348. std::optional<Mixed> avg(ColKey col_key, size_t* value_count = nullptr) const;
  349. // Will return pointer to search index accessor. Will return nullptr if no index
  350. StringIndex* get_search_index(ColKey col) const noexcept
  351. {
  352. check_column(col);
  353. return m_index_accessors[col.get_index().val].get();
  354. }
  355. template <class T>
  356. ObjKey find_first(ColKey col_key, T value) const;
  357. ObjKey find_first_int(ColKey col_key, int64_t value) const;
  358. ObjKey find_first_bool(ColKey col_key, bool value) const;
  359. ObjKey find_first_timestamp(ColKey col_key, Timestamp value) const;
  360. ObjKey find_first_object_id(ColKey col_key, ObjectId value) const;
  361. ObjKey find_first_float(ColKey col_key, float value) const;
  362. ObjKey find_first_double(ColKey col_key, double value) const;
  363. ObjKey find_first_decimal(ColKey col_key, Decimal128 value) const;
  364. ObjKey find_first_string(ColKey col_key, StringData value) const;
  365. ObjKey find_first_binary(ColKey col_key, BinaryData value) const;
  366. ObjKey find_first_null(ColKey col_key) const;
  367. ObjKey find_first_uuid(ColKey col_key, UUID value) const;
  368. // TableView find_all_link(Key target_key);
  369. TableView find_all_int(ColKey col_key, int64_t value);
  370. TableView find_all_int(ColKey col_key, int64_t value) const;
  371. TableView find_all_bool(ColKey col_key, bool value);
  372. TableView find_all_bool(ColKey col_key, bool value) const;
  373. TableView find_all_float(ColKey col_key, float value);
  374. TableView find_all_float(ColKey col_key, float value) const;
  375. TableView find_all_double(ColKey col_key, double value);
  376. TableView find_all_double(ColKey col_key, double value) const;
  377. TableView find_all_string(ColKey col_key, StringData value);
  378. TableView find_all_string(ColKey col_key, StringData value) const;
  379. TableView find_all_binary(ColKey col_key, BinaryData value);
  380. TableView find_all_binary(ColKey col_key, BinaryData value) const;
  381. TableView find_all_null(ColKey col_key);
  382. TableView find_all_null(ColKey col_key) const;
  383. TableView find_all_fulltext(ColKey col_key, StringData value) const;
  384. TableView get_sorted_view(ColKey col_key, bool ascending = true);
  385. TableView get_sorted_view(ColKey col_key, bool ascending = true) const;
  386. TableView get_sorted_view(SortDescriptor order);
  387. TableView get_sorted_view(SortDescriptor order) const;
  388. // Report the current content version. This is a 64-bit value which is bumped whenever
  389. // the content in the table changes.
  390. uint_fast64_t get_content_version() const noexcept;
  391. // Report the current instance version. This is a 64-bit value which is bumped
  392. // whenever the table accessor is recycled.
  393. uint_fast64_t get_instance_version() const noexcept;
  394. // Report the current storage version. This is a 64-bit value which is bumped
  395. // whenever the location in memory of any part of the table changes.
  396. uint_fast64_t get_storage_version(uint64_t instance_version) const;
  397. uint_fast64_t get_storage_version() const;
  398. void bump_storage_version() const noexcept;
  399. void bump_content_version() const noexcept;
  400. // Change the nullability of the column identified by col_key.
  401. // This might result in the creation of a new column and deletion of the old.
  402. // The column key to use going forward is returned.
  403. // If the conversion is from nullable to non-nullable, throw_on_null determines
  404. // the reaction to encountering a null value: If clear, null values will be
  405. // converted to default values. If set, a 'column_not_nullable' is thrown and the
  406. // table is unchanged.
  407. ColKey set_nullability(ColKey col_key, bool nullable, bool throw_on_null);
  408. // Iterate through (subset of) columns. The supplied function may abort iteration
  409. // by returning 'IteratorControl::Stop' (early out).
  410. template <typename Func>
  411. bool for_each_and_every_column(Func func) const
  412. {
  413. for (auto col_key : m_leaf_ndx2colkey) {
  414. if (!col_key)
  415. continue;
  416. if (func(col_key) == IteratorControl::Stop)
  417. return true;
  418. }
  419. return false;
  420. }
  421. template <typename Func>
  422. bool for_each_public_column(Func func) const
  423. {
  424. for (auto col_key : m_leaf_ndx2colkey) {
  425. if (!col_key)
  426. continue;
  427. if (col_key.get_type() == col_type_BackLink)
  428. continue;
  429. if (func(col_key) == IteratorControl::Stop)
  430. return true;
  431. }
  432. return false;
  433. }
  434. template <typename Func>
  435. bool for_each_backlink_column(Func func) const
  436. {
  437. // Could be optimized - to not iterate through all non-backlink columns:
  438. for (auto col_key : m_leaf_ndx2colkey) {
  439. if (!col_key)
  440. continue;
  441. if (col_key.get_type() != col_type_BackLink)
  442. continue;
  443. if (func(col_key) == IteratorControl::Stop)
  444. return true;
  445. }
  446. return false;
  447. }
  448. private:
  449. template <class T>
  450. TableView find_all(ColKey col_key, T value);
  451. void build_column_mapping();
  452. ColKey generate_col_key(ColumnType ct, ColumnAttrMask attrs);
  453. void convert_column(ColKey from, ColKey to, bool throw_on_null);
  454. template <class F, class T>
  455. void change_nullability(ColKey from, ColKey to, bool throw_on_null);
  456. template <class F, class T>
  457. void change_nullability_list(ColKey from, ColKey to, bool throw_on_null);
  458. Obj create_linked_object();
  459. // Change the embedded property of a table. If switching to being embedded, the table must
  460. // not have a primary key and all objects must have exactly 1 backlink.
  461. void set_embedded(bool embedded, bool handle_backlinks);
  462. /// Changes type unconditionally. Called only from Group::do_get_or_add_table()
  463. void do_set_table_type(Type table_type);
  464. public:
  465. // mapping between index used in leaf nodes (leaf_ndx) and index used in spec (spec_ndx)
  466. // as well as the full column key. A leaf_ndx can be obtained directly from the column key
  467. size_t colkey2spec_ndx(ColKey key) const;
  468. size_t leaf_ndx2spec_ndx(ColKey::Idx idx) const;
  469. ColKey::Idx spec_ndx2leaf_ndx(size_t idx) const;
  470. ColKey leaf_ndx2colkey(ColKey::Idx idx) const;
  471. ColKey spec_ndx2colkey(size_t ndx) const;
  472. // Queries
  473. // Using where(tv) is the new method to perform queries on TableView. The 'tv' can have any order; it does not
  474. // need to be sorted, and, resulting view retains its order.
  475. Query where(TableView* tv = nullptr)
  476. {
  477. return Query(m_own_ref, tv);
  478. }
  479. Query where(TableView* tv = nullptr) const
  480. {
  481. return Query(m_own_ref, tv);
  482. }
  483. // Perform queries on a Link Collection. The returned Query holds a reference to collection.
  484. Query where(const ObjList& list) const
  485. {
  486. return Query(m_own_ref, list);
  487. }
  488. Query where(const DictionaryLinkValues& dictionary_of_links) const;
  489. Query query(const std::string& query_string,
  490. const std::vector<mpark::variant<Mixed, std::vector<Mixed>>>& arguments = {}) const;
  491. Query query(const std::string& query_string, const std::vector<Mixed>& arguments) const;
  492. Query query(const std::string& query_string, const std::vector<Mixed>& arguments,
  493. const query_parser::KeyPathMapping& mapping) const;
  494. Query query(const std::string& query_string,
  495. const std::vector<mpark::variant<Mixed, std::vector<Mixed>>>& arguments,
  496. const query_parser::KeyPathMapping& mapping) const;
  497. Query query(const std::string& query_string, query_parser::Arguments& arguments,
  498. const query_parser::KeyPathMapping&) const;
  499. //@{
  500. /// WARNING: The link() and backlink() methods will alter a state on the Table object and return a reference
  501. /// to itself. Be aware if assigning the return value of link() to a variable; this might be an error!
  502. /// This is an error:
  503. /// Table& cats = owners->link(1);
  504. /// auto& dogs = owners->link(2);
  505. /// Query q = person_table->where()
  506. /// .and_query(cats.column<String>(5).equal("Fido"))
  507. /// .Or()
  508. /// .and_query(dogs.column<String>(6).equal("Meowth"));
  509. /// Instead, do this:
  510. /// Query q = owners->where()
  511. /// .and_query(person_table->link(1).column<String>(5).equal("Fido"))
  512. /// .Or()
  513. /// .and_query(person_table->link(2).column<String>(6).equal("Meowth"));
  514. /// The two calls to link() in the erroneous example will append the two values 0 and 1 to an internal vector in
  515. /// the owners table, and we end up with three references to that same table: owners, cats and dogs. They are all
  516. /// the same table, its vector has the values {0, 1}, so a query would not make any sense.
  517. LinkChain link(ColKey link_column) const;
  518. LinkChain backlink(const Table& origin, ColKey origin_col_key) const;
  519. // Conversion
  520. void schema_to_json(std::ostream& out, const std::map<std::string, std::string>& renames) const;
  521. void to_json(std::ostream& out, size_t link_depth, const std::map<std::string, std::string>& renames,
  522. JSONOutputMode output_mode = output_mode_json) const;
  523. /// \brief Compare two tables for equality.
  524. ///
  525. /// Two tables are equal if they have equal descriptors
  526. /// (`Descriptor::operator==()`) and equal contents. Equal descriptors imply
  527. /// that the two tables have the same columns in the same order. Equal
  528. /// contents means that the two tables must have the same number of rows,
  529. /// and that for each row index, the two rows must have the same values in
  530. /// each column.
  531. ///
  532. /// In mixed columns, both the value types and the values are required to be
  533. /// equal.
  534. ///
  535. /// For a particular row and column, if the two values are themselves tables
  536. /// (subtable and mixed columns) value equality implies a recursive
  537. /// invocation of `Table::operator==()`.
  538. bool operator==(const Table&) const;
  539. /// \brief Compare two tables for inequality.
  540. ///
  541. /// See operator==().
  542. bool operator!=(const Table& t) const;
  543. // Debug
  544. void verify() const;
  545. #ifdef REALM_DEBUG
  546. MemStats stats() const;
  547. #endif
  548. TableRef get_opposite_table(ColKey col_key) const;
  549. TableKey get_opposite_table_key(ColKey col_key) const;
  550. bool links_to_self(ColKey col_key) const;
  551. ColKey get_opposite_column(ColKey col_key) const;
  552. ColKey find_opposite_column(ColKey col_key) const;
  553. class DisableReplication {
  554. public:
  555. DisableReplication(Table& table) noexcept
  556. : m_table(table)
  557. , m_repl(table.m_repl)
  558. {
  559. m_table.m_repl = &g_dummy_replication;
  560. }
  561. ~DisableReplication()
  562. {
  563. m_table.m_repl = m_repl;
  564. }
  565. private:
  566. Table& m_table;
  567. Replication* const* m_repl;
  568. };
  569. private:
  570. enum LifeCycleCookie {
  571. cookie_created = 0x1234,
  572. cookie_transaction_ended = 0xcafe,
  573. cookie_initialized = 0xbeef,
  574. cookie_removed = 0xbabe,
  575. cookie_void = 0x5678,
  576. cookie_deleted = 0xdead,
  577. };
  578. // This is only used for debugging checks, so relaxed operations are fine.
  579. class AtomicLifeCycleCookie {
  580. public:
  581. void operator=(LifeCycleCookie cookie)
  582. {
  583. m_storage.store(cookie, std::memory_order_relaxed);
  584. }
  585. operator LifeCycleCookie() const
  586. {
  587. return m_storage.load(std::memory_order_relaxed);
  588. }
  589. private:
  590. std::atomic<LifeCycleCookie> m_storage = {};
  591. };
  592. mutable WrappedAllocator m_alloc;
  593. Array m_top;
  594. void update_allocator_wrapper(bool writable)
  595. {
  596. m_alloc.update_from_underlying_allocator(writable);
  597. }
  598. void refresh_allocator_wrapper() const noexcept
  599. {
  600. m_alloc.refresh_ref_translation();
  601. }
  602. Spec m_spec; // 1st slot in m_top
  603. ClusterTree m_clusters; // 3rd slot in m_top
  604. std::unique_ptr<ClusterTree> m_tombstones; // 13th slot in m_top
  605. TableKey m_key; // 4th slot in m_top
  606. Array m_index_refs; // 5th slot in m_top
  607. Array m_opposite_table; // 7th slot in m_top
  608. Array m_opposite_column; // 8th slot in m_top
  609. std::vector<std::unique_ptr<StringIndex>> m_index_accessors;
  610. ColKey m_primary_key_col;
  611. Replication* const* m_repl;
  612. static Replication* g_dummy_replication;
  613. bool m_is_frozen = false;
  614. util::Optional<bool> m_has_any_embedded_objects;
  615. TableRef m_own_ref;
  616. void batch_erase_rows(const KeyColumn& keys);
  617. size_t do_set_link(ColKey col_key, size_t row_ndx, size_t target_row_ndx);
  618. void populate_search_index(ColKey col_key);
  619. void erase_from_search_indexes(ObjKey key);
  620. void update_indexes(ObjKey key, const FieldValues& values);
  621. void clear_indexes();
  622. // Migration support
  623. void migrate_column_info();
  624. bool verify_column_keys();
  625. void migrate_indexes(ColKey pk_col_key);
  626. void migrate_subspec();
  627. void create_columns();
  628. bool migrate_objects(); // Returns true if there are no links to migrate
  629. void migrate_links();
  630. void finalize_migration(ColKey pk_col_key);
  631. void migrate_sets_and_dictionaries();
  632. /// Disable copying assignment.
  633. ///
  634. /// It could easily be implemented by calling assign(), but the
  635. /// non-checking nature of the low-level dynamically typed API
  636. /// makes it too risky to offer this feature as an
  637. /// operator.
  638. Table& operator=(const Table&) = delete;
  639. /// Create an uninitialized accessor whose lifetime is managed by Group
  640. Table(Replication* const* repl, Allocator&);
  641. void revive(Replication* const* repl, Allocator& new_allocator, bool writable);
  642. void init(ref_type top_ref, ArrayParent*, size_t ndx_in_parent, bool is_writable, bool is_frozen);
  643. void ensure_graveyard();
  644. void set_key(TableKey key);
  645. ColKey do_insert_column(ColKey col_key, DataType type, StringData name, Table* target_table,
  646. DataType key_type = DataType(0));
  647. struct InsertSubtableColumns;
  648. struct EraseSubtableColumns;
  649. struct RenameSubtableColumns;
  650. void erase_root_column(ColKey col_key);
  651. ColKey do_insert_root_column(ColKey col_key, ColumnType, StringData name, DataType key_type = DataType(0));
  652. void do_erase_root_column(ColKey col_key);
  653. void do_add_search_index(ColKey col_key, IndexType type);
  654. bool has_any_embedded_objects();
  655. void set_opposite_column(ColKey col_key, TableKey opposite_table, ColKey opposite_column);
  656. ColKey find_backlink_column(ColKey origin_col_key, TableKey origin_table) const;
  657. ColKey find_or_add_backlink_column(ColKey origin_col_key, TableKey origin_table);
  658. void do_set_primary_key_column(ColKey col_key);
  659. void validate_column_is_unique(ColKey col_key) const;
  660. ObjKey get_next_valid_key();
  661. /// Some Object IDs are generated as a tuple of the client_file_ident and a
  662. /// local sequence number. This function takes the next number in the
  663. /// sequence for the given table and returns an appropriate globally unique
  664. /// GlobalKey.
  665. GlobalKey allocate_object_id_squeezed();
  666. /// Find the local 64-bit object ID for the provided global 128-bit ID.
  667. ObjKey global_to_local_object_id_hashed(GlobalKey global_id) const;
  668. /// After a local ObjKey collision has been detected, this function may be
  669. /// called to obtain a non-colliding local ObjKey in such a way that subsequent
  670. /// calls to global_to_local_object_id() will return the correct local ObjKey
  671. /// for both \a incoming_id and \a colliding_id.
  672. ObjKey allocate_local_id_after_hash_collision(GlobalKey incoming_id, GlobalKey colliding_id,
  673. ObjKey colliding_local_id);
  674. /// Create a placeholder for a not yet existing object and return key to it
  675. Obj get_or_create_tombstone(ObjKey key, ColKey pk_col, Mixed pk_val);
  676. /// Should be called when an object is deleted
  677. void free_local_id_after_hash_collision(ObjKey key);
  678. /// Should be called when last entry is removed - or when table is cleared
  679. void free_collision_table();
  680. /// Called in the context of Group::commit() to ensure that
  681. /// attached table accessors stay valid across a commit. Please
  682. /// note that this works only for non-transactional commits. Table
  683. /// accessors obtained during a transaction are always detached
  684. /// when the transaction ends.
  685. void update_from_parent() noexcept;
  686. // Detach accessor. This recycles the Table accessor and all subordinate
  687. // accessors become invalid.
  688. void detach(LifeCycleCookie) noexcept;
  689. void fully_detach() noexcept;
  690. ColumnType get_real_column_type(ColKey col_key) const noexcept;
  691. uint64_t get_sync_file_id() const noexcept;
  692. /// Create an empty table with independent spec and return just
  693. /// the reference to the underlying memory.
  694. static ref_type create_empty_table(Allocator&, TableKey = TableKey());
  695. void nullify_links(CascadeState&);
  696. void remove_recursive(CascadeState&);
  697. Replication* get_repl() const noexcept;
  698. util::Logger* get_logger() const noexcept;
  699. void set_ndx_in_parent(size_t ndx_in_parent) noexcept;
  700. /// Refresh the part of the accessor tree that is rooted at this
  701. /// table.
  702. void refresh_accessor_tree();
  703. void refresh_index_accessors();
  704. void refresh_content_version();
  705. void flush_for_commit();
  706. bool is_cross_table_link_target() const noexcept;
  707. template <typename T>
  708. void aggregate(QueryStateBase& st, ColKey col_key) const;
  709. std::vector<ColKey> m_leaf_ndx2colkey;
  710. std::vector<ColKey::Idx> m_spec_ndx2leaf_ndx;
  711. std::vector<size_t> m_leaf_ndx2spec_ndx;
  712. Type m_table_type = Type::TopLevel;
  713. uint64_t m_in_file_version_at_transaction_boundary = 0;
  714. AtomicLifeCycleCookie m_cookie;
  715. static constexpr int top_position_for_spec = 0;
  716. static constexpr int top_position_for_columns = 1;
  717. static constexpr int top_position_for_cluster_tree = 2;
  718. static constexpr int top_position_for_key = 3;
  719. static constexpr int top_position_for_search_indexes = 4;
  720. static constexpr int top_position_for_column_key = 5;
  721. static constexpr int top_position_for_version = 6;
  722. static constexpr int top_position_for_opposite_table = 7;
  723. static constexpr int top_position_for_opposite_column = 8;
  724. static constexpr int top_position_for_sequence_number = 9;
  725. static constexpr int top_position_for_collision_map = 10;
  726. static constexpr int top_position_for_pk_col = 11;
  727. static constexpr int top_position_for_flags = 12;
  728. // flags contents: bit 0-1 - table type
  729. static constexpr int top_position_for_tombstones = 13;
  730. static constexpr int top_array_size = 14;
  731. enum { s_collision_map_lo = 0, s_collision_map_hi = 1, s_collision_map_local_id = 2, s_collision_map_num_slots };
  732. friend class _impl::TableFriend;
  733. friend class Query;
  734. friend class metrics::QueryInfo;
  735. template <class>
  736. friend class SimpleQuerySupport;
  737. friend class TableView;
  738. template <class T>
  739. friend class Columns;
  740. friend class Columns<StringData>;
  741. friend class ParentNode;
  742. friend struct util::serializer::SerialisationState;
  743. friend class LinkMap;
  744. friend class LinkView;
  745. friend class Group;
  746. friend class Transaction;
  747. friend class Cluster;
  748. friend class ClusterTree;
  749. friend class ColKeyIterator;
  750. friend class Obj;
  751. friend class LnkLst;
  752. friend class Dictionary;
  753. friend class IncludeDescriptor;
  754. template <class T>
  755. friend class AggregateHelper;
  756. };
  757. std::ostream& operator<<(std::ostream& o, Table::Type table_type);
  758. class ColKeyIterator {
  759. public:
  760. bool operator!=(const ColKeyIterator& other)
  761. {
  762. return m_pos != other.m_pos;
  763. }
  764. ColKeyIterator& operator++()
  765. {
  766. ++m_pos;
  767. return *this;
  768. }
  769. ColKeyIterator operator++(int)
  770. {
  771. ColKeyIterator tmp(m_table, m_pos);
  772. ++m_pos;
  773. return tmp;
  774. }
  775. ColKey operator*()
  776. {
  777. if (m_pos < m_table->get_column_count()) {
  778. REALM_ASSERT(m_table->m_spec.get_key(m_pos) == m_table->spec_ndx2colkey(m_pos));
  779. return m_table->m_spec.get_key(m_pos);
  780. }
  781. return {};
  782. }
  783. private:
  784. friend class ColKeys;
  785. const Table* m_table;
  786. size_t m_pos;
  787. ColKeyIterator(const Table* t, size_t p)
  788. : m_table(t)
  789. , m_pos(p)
  790. {
  791. }
  792. };
  793. class ColKeys {
  794. public:
  795. ColKeys(const Table* t)
  796. : m_table(t)
  797. {
  798. }
  799. ColKeys()
  800. : m_table(nullptr)
  801. {
  802. }
  803. size_t size() const
  804. {
  805. return m_table->get_column_count();
  806. }
  807. bool empty() const
  808. {
  809. return size() == 0;
  810. }
  811. ColKey operator[](size_t p) const
  812. {
  813. return ColKeyIterator(m_table, p).operator*();
  814. }
  815. ColKeyIterator begin() const
  816. {
  817. return ColKeyIterator(m_table, 0);
  818. }
  819. ColKeyIterator end() const
  820. {
  821. return ColKeyIterator(m_table, size());
  822. }
  823. private:
  824. const Table* m_table;
  825. };
  826. // Class used to collect a chain of links when building up a Query following links.
  827. // It has member functions corresponding to the ones defined on Table.
  828. class LinkChain {
  829. public:
  830. LinkChain(ConstTableRef t = {}, util::Optional<ExpressionComparisonType> type = util::none)
  831. : m_current_table(t)
  832. , m_base_table(t)
  833. , m_comparison_type(type)
  834. {
  835. }
  836. ConstTableRef get_base_table()
  837. {
  838. return m_base_table;
  839. }
  840. ConstTableRef get_current_table() const
  841. {
  842. return m_current_table;
  843. }
  844. ColKey get_current_col() const
  845. {
  846. return m_link_cols.back();
  847. }
  848. LinkChain& link(ColKey link_column)
  849. {
  850. add(link_column);
  851. return *this;
  852. }
  853. LinkChain& link(std::string col_name)
  854. {
  855. auto ck = m_current_table->get_column_key(col_name);
  856. if (!ck) {
  857. throw LogicError(ErrorCodes::InvalidProperty,
  858. util::format("'%1' has no property '%2'", m_current_table->get_class_name(), col_name));
  859. }
  860. add(ck);
  861. return *this;
  862. }
  863. LinkChain& backlink(const Table& origin, ColKey origin_col_key)
  864. {
  865. auto backlink_col_key = origin.get_opposite_column(origin_col_key);
  866. return link(backlink_col_key);
  867. }
  868. std::unique_ptr<Subexpr> column(const std::string&);
  869. std::unique_ptr<Subexpr> subquery(Query subquery);
  870. template <class T>
  871. inline Columns<T> column(ColKey col_key)
  872. {
  873. m_current_table->check_column(col_key);
  874. // Check if user-given template type equals Realm type.
  875. auto ct = col_key.get_type();
  876. if (ct == col_type_LinkList)
  877. ct = col_type_Link;
  878. if constexpr (std::is_same_v<T, Dictionary>) {
  879. if (!col_key.is_dictionary())
  880. throw LogicError(ErrorCodes::TypeMismatch, "Not a dictionary");
  881. }
  882. else {
  883. if (ct != ColumnTypeTraits<T>::column_id)
  884. throw LogicError(ErrorCodes::TypeMismatch,
  885. util::format("Expected %1 to be a %2", m_current_table->get_column_name(col_key),
  886. ColumnTypeTraits<T>::column_id));
  887. }
  888. if (std::is_same<T, Link>::value || std::is_same<T, LnkLst>::value || std::is_same<T, BackLink>::value) {
  889. m_link_cols.push_back(col_key);
  890. }
  891. return Columns<T>(col_key, m_base_table, m_link_cols, m_comparison_type);
  892. }
  893. template <class T>
  894. Columns<T> column(const Table& origin, ColKey origin_col_key)
  895. {
  896. static_assert(std::is_same<T, BackLink>::value, "");
  897. auto backlink_col_key = origin.get_opposite_column(origin_col_key);
  898. m_link_cols.push_back(backlink_col_key);
  899. return Columns<T>(backlink_col_key, m_base_table, std::move(m_link_cols));
  900. }
  901. template <class T>
  902. SubQuery<T> column(ColKey col_key, Query subquery)
  903. {
  904. static_assert(std::is_same<T, Link>::value, "A subquery must involve a link list or backlink column");
  905. return SubQuery<T>(column<T>(col_key), std::move(subquery));
  906. }
  907. template <class T>
  908. SubQuery<T> column(const Table& origin, ColKey origin_col_key, Query subquery)
  909. {
  910. static_assert(std::is_same<T, BackLink>::value, "A subquery must involve a link list or backlink column");
  911. return SubQuery<T>(column<T>(origin, origin_col_key), std::move(subquery));
  912. }
  913. template <class T>
  914. BacklinkCount<T> get_backlink_count()
  915. {
  916. return BacklinkCount<T>(m_base_table, std::move(m_link_cols));
  917. }
  918. private:
  919. friend class Table;
  920. friend class query_parser::ParserDriver;
  921. std::vector<ColKey> m_link_cols;
  922. ConstTableRef m_current_table;
  923. ConstTableRef m_base_table;
  924. util::Optional<ExpressionComparisonType> m_comparison_type;
  925. void add(ColKey ck);
  926. template <class T>
  927. std::unique_ptr<Subexpr> create_subexpr(ColKey col_key)
  928. {
  929. return std::make_unique<Columns<T>>(col_key, m_base_table, m_link_cols, m_comparison_type);
  930. }
  931. };
  932. // Implementation:
  933. inline ColKeys Table::get_column_keys() const
  934. {
  935. return ColKeys(this);
  936. }
  937. inline uint_fast64_t Table::get_content_version() const noexcept
  938. {
  939. return m_alloc.get_content_version();
  940. }
  941. inline uint_fast64_t Table::get_instance_version() const noexcept
  942. {
  943. return m_alloc.get_instance_version();
  944. }
  945. inline uint_fast64_t Table::get_storage_version(uint64_t instance_version) const
  946. {
  947. return m_alloc.get_storage_version(instance_version);
  948. }
  949. inline uint_fast64_t Table::get_storage_version() const
  950. {
  951. return m_alloc.get_storage_version();
  952. }
  953. inline TableKey Table::get_key() const noexcept
  954. {
  955. return m_key;
  956. }
  957. inline void Table::bump_storage_version() const noexcept
  958. {
  959. return m_alloc.bump_storage_version();
  960. }
  961. inline void Table::bump_content_version() const noexcept
  962. {
  963. m_alloc.bump_content_version();
  964. }
  965. inline size_t Table::get_column_count() const noexcept
  966. {
  967. return m_spec.get_public_column_count();
  968. }
  969. inline bool Table::is_embedded() const noexcept
  970. {
  971. return m_table_type == Type::Embedded;
  972. }
  973. inline bool Table::is_asymmetric() const noexcept
  974. {
  975. return m_table_type == Type::TopLevelAsymmetric;
  976. }
  977. inline Table::Type Table::get_table_type() const noexcept
  978. {
  979. return m_table_type;
  980. }
  981. inline StringData Table::get_column_name(ColKey column_key) const
  982. {
  983. auto spec_ndx = colkey2spec_ndx(column_key);
  984. REALM_ASSERT_3(spec_ndx, <, get_column_count());
  985. return m_spec.get_column_name(spec_ndx);
  986. }
  987. inline ColKey Table::get_column_key(StringData name) const noexcept
  988. {
  989. size_t spec_ndx = m_spec.get_column_index(name);
  990. if (spec_ndx == npos)
  991. return ColKey();
  992. return spec_ndx2colkey(spec_ndx);
  993. }
  994. inline ColumnType Table::get_real_column_type(ColKey col_key) const noexcept
  995. {
  996. return col_key.get_type();
  997. }
  998. inline DataType Table::get_column_type(ColKey column_key) const
  999. {
  1000. return DataType(column_key.get_type());
  1001. }
  1002. inline ColumnAttrMask Table::get_column_attr(ColKey column_key) const noexcept
  1003. {
  1004. return column_key.get_attrs();
  1005. }
  1006. inline DataType Table::get_dictionary_key_type(ColKey column_key) const noexcept
  1007. {
  1008. auto spec_ndx = colkey2spec_ndx(column_key);
  1009. REALM_ASSERT_3(spec_ndx, <, get_column_count());
  1010. return m_spec.get_dictionary_key_type(spec_ndx);
  1011. }
  1012. inline void Table::revive(Replication* const* repl, Allocator& alloc, bool writable)
  1013. {
  1014. m_alloc.switch_underlying_allocator(alloc);
  1015. m_alloc.update_from_underlying_allocator(writable);
  1016. m_repl = repl;
  1017. m_own_ref = TableRef(this, m_alloc.get_instance_version());
  1018. // since we're rebinding to a new table, we'll bump version counters
  1019. // Possible optimization: save version counters along with the table data
  1020. // and restore them from there. Should decrease amount of non-necessary
  1021. // recomputations of any queries relying on this table.
  1022. bump_content_version();
  1023. bump_storage_version();
  1024. // we assume all other accessors are detached, so we're done.
  1025. }
  1026. inline Allocator& Table::get_alloc() const
  1027. {
  1028. return m_alloc;
  1029. }
  1030. // For use by queries
  1031. template <class T>
  1032. inline Columns<T> Table::column(ColKey col_key, util::Optional<ExpressionComparisonType> cmp_type) const
  1033. {
  1034. LinkChain lc(m_own_ref, cmp_type);
  1035. return lc.column<T>(col_key);
  1036. }
  1037. template <class T>
  1038. inline Columns<T> Table::column(const Table& origin, ColKey origin_col_key) const
  1039. {
  1040. LinkChain lc(m_own_ref);
  1041. return lc.column<T>(origin, origin_col_key);
  1042. }
  1043. template <class T>
  1044. inline BacklinkCount<T> Table::get_backlink_count() const
  1045. {
  1046. return BacklinkCount<T>(this, {});
  1047. }
  1048. template <class T>
  1049. SubQuery<T> Table::column(ColKey col_key, Query subquery) const
  1050. {
  1051. LinkChain lc(m_own_ref);
  1052. return lc.column<T>(col_key, subquery);
  1053. }
  1054. template <class T>
  1055. SubQuery<T> Table::column(const Table& origin, ColKey origin_col_key, Query subquery) const
  1056. {
  1057. LinkChain lc(m_own_ref);
  1058. return lc.column<T>(origin, origin_col_key, subquery);
  1059. }
  1060. inline LinkChain Table::link(ColKey link_column) const
  1061. {
  1062. LinkChain lc(m_own_ref);
  1063. lc.add(link_column);
  1064. return lc;
  1065. }
  1066. inline LinkChain Table::backlink(const Table& origin, ColKey origin_col_key) const
  1067. {
  1068. auto backlink_col_key = origin.get_opposite_column(origin_col_key);
  1069. return link(backlink_col_key);
  1070. }
  1071. inline bool Table::is_empty() const noexcept
  1072. {
  1073. return size() == 0;
  1074. }
  1075. inline ConstTableRef Table::get_link_target(ColKey col_key) const noexcept
  1076. {
  1077. return const_cast<Table*>(this)->get_link_target(col_key);
  1078. }
  1079. inline bool Table::is_group_level() const noexcept
  1080. {
  1081. return bool(get_parent_group());
  1082. }
  1083. inline bool Table::operator!=(const Table& t) const
  1084. {
  1085. return !(*this == t); // Throws
  1086. }
  1087. inline bool Table::is_link_type(ColumnType col_type) noexcept
  1088. {
  1089. return col_type == col_type_Link || col_type == col_type_LinkList;
  1090. }
  1091. inline Replication* Table::get_repl() const noexcept
  1092. {
  1093. return *m_repl;
  1094. }
  1095. inline void Table::set_ndx_in_parent(size_t ndx_in_parent) noexcept
  1096. {
  1097. REALM_ASSERT(m_top.is_attached());
  1098. m_top.set_ndx_in_parent(ndx_in_parent);
  1099. }
  1100. inline size_t Table::colkey2spec_ndx(ColKey key) const
  1101. {
  1102. auto leaf_idx = key.get_index();
  1103. REALM_ASSERT(leaf_idx.val < m_leaf_ndx2spec_ndx.size());
  1104. return m_leaf_ndx2spec_ndx[leaf_idx.val];
  1105. }
  1106. inline ColKey Table::spec_ndx2colkey(size_t spec_ndx) const
  1107. {
  1108. REALM_ASSERT(spec_ndx < m_spec_ndx2leaf_ndx.size());
  1109. return m_leaf_ndx2colkey[m_spec_ndx2leaf_ndx[spec_ndx].val];
  1110. }
  1111. inline size_t Table::leaf_ndx2spec_ndx(ColKey::Idx leaf_ndx) const
  1112. {
  1113. REALM_ASSERT(leaf_ndx.val < m_leaf_ndx2colkey.size());
  1114. return m_leaf_ndx2spec_ndx[leaf_ndx.val];
  1115. }
  1116. inline ColKey::Idx Table::spec_ndx2leaf_ndx(size_t spec_ndx) const
  1117. {
  1118. REALM_ASSERT(spec_ndx < m_spec_ndx2leaf_ndx.size());
  1119. return m_spec_ndx2leaf_ndx[spec_ndx];
  1120. }
  1121. inline ColKey Table::leaf_ndx2colkey(ColKey::Idx leaf_ndx) const
  1122. {
  1123. // this may be called with leaf indicies outside of the table. This can happen
  1124. // when a column is removed from the mapping, but space for it is still reserved
  1125. // at leaf level. Operations on Cluster and ClusterTree which walks the columns
  1126. // based on leaf indicies may ask for colkeys which are no longer valid.
  1127. if (leaf_ndx.val < m_leaf_ndx2spec_ndx.size())
  1128. return m_leaf_ndx2colkey[leaf_ndx.val];
  1129. else
  1130. return ColKey();
  1131. }
  1132. bool inline Table::valid_column(ColKey col_key) const noexcept
  1133. {
  1134. if (col_key == ColKey())
  1135. return false;
  1136. ColKey::Idx leaf_idx = col_key.get_index();
  1137. if (leaf_idx.val >= m_leaf_ndx2colkey.size())
  1138. return false;
  1139. return col_key == m_leaf_ndx2colkey[leaf_idx.val];
  1140. }
  1141. // The purpose of this class is to give internal access to some, but
  1142. // not all of the non-public parts of the Table class.
  1143. class _impl::TableFriend {
  1144. public:
  1145. static Spec& get_spec(Table& table) noexcept
  1146. {
  1147. return table.m_spec;
  1148. }
  1149. static const Spec& get_spec(const Table& table) noexcept
  1150. {
  1151. return table.m_spec;
  1152. }
  1153. static TableRef get_opposite_link_table(const Table& table, ColKey col_key);
  1154. static Group* get_parent_group(const Table& table) noexcept
  1155. {
  1156. return table.get_parent_group();
  1157. }
  1158. static void remove_recursive(Table& table, CascadeState& rows)
  1159. {
  1160. table.remove_recursive(rows); // Throws
  1161. }
  1162. static void batch_erase_rows(Table& table, const KeyColumn& keys)
  1163. {
  1164. table.batch_erase_rows(keys); // Throws
  1165. }
  1166. static ObjKey global_to_local_object_id_hashed(const Table& table, GlobalKey global_id)
  1167. {
  1168. return table.global_to_local_object_id_hashed(global_id);
  1169. }
  1170. };
  1171. } // namespace realm
  1172. #endif // REALM_TABLE_HPP