12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394 |
- /*************************************************************************
- *
- * Copyright 2016 Realm Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- **************************************************************************/
- #ifndef REALM_TABLE_HPP
- #define REALM_TABLE_HPP
- #include <algorithm>
- #include <map>
- #include <utility>
- #include <typeinfo>
- #include <memory>
- #include <mutex>
- #include <realm/util/features.h>
- #include <realm/util/function_ref.hpp>
- #include <realm/util/thread.hpp>
- #include <realm/table_ref.hpp>
- #include <realm/spec.hpp>
- #include <realm/query.hpp>
- #include <realm/table_cluster_tree.hpp>
- #include <realm/keys.hpp>
- #include <realm/global_key.hpp>
- // Only set this to one when testing the code paths that exercise object ID
- // hash collisions. It artificially limits the "optimistic" local ID to use
- // only the lower 15 bits of the ID rather than the lower 63 bits, making it
- // feasible to generate collisions within reasonable time.
- #define REALM_EXERCISE_OBJECT_ID_COLLISION 0
- namespace realm {
- class BacklinkColumn;
- template <class>
- class BacklinkCount;
- class BinaryColumy;
- class ConstTableView;
- class Group;
- class SortDescriptor;
- class StringIndex;
- class TableView;
- template <class>
- class Columns;
- template <class>
- class SubQuery;
- class ColKeys;
- struct GlobalKey;
- class LinkChain;
- class Subexpr;
- struct Link {
- };
- typedef Link BackLink;
- namespace _impl {
- class TableFriend;
- }
- namespace metrics {
- class QueryInfo;
- }
- namespace query_parser {
- class Arguments;
- class KeyPathMapping;
- class ParserDriver;
- } // namespace query_parser
- enum class ExpressionComparisonType : unsigned char {
- Any,
- All,
- None,
- };
- class Table {
- public:
- /// Construct a new freestanding top-level table with static
- /// lifetime. For debugging only.
- Table(Allocator& = Allocator::get_default());
- /// Construct a copy of the specified table as a new freestanding
- /// top-level table with static lifetime. For debugging only.
- Table(const Table&, Allocator& = Allocator::get_default());
- ~Table() noexcept;
- Allocator& get_alloc() const;
- /// Get the name of this table, if it has one. Only group-level tables have
- /// names. For a table of any other kind, this function returns the empty
- /// string.
- StringData get_name() const noexcept;
- const char* get_state() const noexcept;
- /// If this table is a group-level table, the parent group is returned,
- /// otherwise null is returned.
- Group* get_parent_group() const noexcept;
- // Whether or not elements can be null.
- bool is_nullable(ColKey col_key) const;
- // Whether or not the column is a list.
- bool is_list(ColKey col_key) const;
- //@{
- /// Conventience functions for inspecting the dynamic table type.
- ///
- bool is_embedded() const noexcept; // true if table holds embedded objects
- size_t get_column_count() const noexcept;
- DataType get_column_type(ColKey column_key) const;
- StringData get_column_name(ColKey column_key) const;
- ColumnAttrMask get_column_attr(ColKey column_key) const noexcept;
- DataType get_dictionary_key_type(ColKey column_key) const noexcept;
- ColKey get_column_key(StringData name) const noexcept;
- ColKeys get_column_keys() const;
- typedef util::Optional<std::pair<ConstTableRef, ColKey>> BacklinkOrigin;
- BacklinkOrigin find_backlink_origin(StringData origin_table_name, StringData origin_col_name) const noexcept;
- BacklinkOrigin find_backlink_origin(ColKey backlink_col) const noexcept;
- std::vector<std::pair<TableKey, ColKey>> get_incoming_link_columns() const noexcept;
- //@}
- // Primary key columns
- ColKey get_primary_key_column() const;
- void set_primary_key_column(ColKey col);
- void validate_primary_column();
- //@{
- /// Convenience functions for manipulating the dynamic table type.
- ///
- static const size_t max_column_name_length = 63;
- static const uint64_t max_num_columns = 0xFFFFUL; // <-- must be power of two -1
- ColKey add_column(DataType type, StringData name, bool nullable = false);
- ColKey add_column(Table& target, StringData name);
- ColKey add_column_list(DataType type, StringData name, bool nullable = false);
- ColKey add_column_list(Table& target, StringData name);
- ColKey add_column_set(DataType type, StringData name, bool nullable = false);
- ColKey add_column_set(Table& target, StringData name);
- ColKey add_column_dictionary(DataType type, StringData name, bool nullable = false,
- DataType key_type = type_String);
- ColKey add_column_dictionary(Table& target, StringData name, DataType key_type = type_String);
- [[deprecated("Use add_column(Table&) or add_column_list(Table&) instead.")]] //
- ColKey
- add_column_link(DataType type, StringData name, Table& target);
- void remove_column(ColKey col_key);
- void rename_column(ColKey col_key, StringData new_name);
- bool valid_column(ColKey col_key) const noexcept;
- void check_column(ColKey col_key) const;
- // Change the embedded property of a table. If switching to being embedded, the table must
- // not have a primary key and all objects must have exactly 1 backlink.
- void set_embedded(bool embedded);
- //@}
- /// True for `col_type_Link` and `col_type_LinkList`.
- static bool is_link_type(ColumnType) noexcept;
- //@{
- /// has_search_index() returns true if, and only if a search index has been
- /// added to the specified column. Rather than throwing, it returns false if
- /// the table accessor is detached or the specified index is out of range.
- ///
- /// add_search_index() adds a search index to the specified column of the
- /// table. It has no effect if a search index has already been added to the
- /// specified column (idempotency).
- ///
- /// remove_search_index() removes the search index from the specified column
- /// of the table. It has no effect if the specified column has no search
- /// index. The search index cannot be removed from the primary key of a
- /// table.
- ///
- /// \param col_key The key of a column of the table.
- bool has_search_index(ColKey col_key) const noexcept;
- void add_search_index(ColKey col_key);
- void remove_search_index(ColKey col_key);
- void enumerate_string_column(ColKey col_key);
- bool is_enumerated(ColKey col_key) const noexcept;
- bool contains_unique_values(ColKey col_key) const;
- //@}
- /// If the specified column is optimized to store only unique values, then
- /// this function returns the number of unique values currently
- /// stored. Otherwise it returns zero. This function is mainly intended for
- /// debugging purposes.
- size_t get_num_unique_values(ColKey col_key) const;
- template <class T>
- Columns<T> column(ColKey col_key, ExpressionComparisonType = ExpressionComparisonType::Any) const;
- template <class T>
- Columns<T> column(const Table& origin, ColKey origin_col_key) const;
- // BacklinkCount is a total count per row and therefore not attached to a specific column
- template <class T>
- BacklinkCount<T> get_backlink_count() const;
- template <class T>
- SubQuery<T> column(ColKey col_key, Query subquery) const;
- template <class T>
- SubQuery<T> column(const Table& origin, ColKey origin_col_key, Query subquery) const;
- // Table size and deletion
- bool is_empty() const noexcept;
- size_t size() const noexcept
- {
- return m_clusters.size();
- }
- size_t nb_unresolved() const noexcept
- {
- return m_tombstones ? m_tombstones->size() : 0;
- }
- //@{
- /// Object handling.
- // Create an object with key. If the key is omitted, a key will be generated by the system
- Obj create_object(ObjKey key = {}, const FieldValues& = {});
- // Create an object with specific GlobalKey - or return already existing object
- // Potential tombstone will be resurrected
- Obj create_object(GlobalKey object_id, const FieldValues& = {});
- // Create an object with primary key. If an object with the given primary key already exists, it
- // will be returned and did_create (if supplied) will be set to false.
- // Potential tombstone will be resurrected
- Obj create_object_with_primary_key(const Mixed& primary_key, FieldValues&&, bool* did_create = nullptr);
- Obj create_object_with_primary_key(const Mixed& primary_key, bool* did_create = nullptr)
- {
- return create_object_with_primary_key(primary_key, {{}}, did_create);
- }
- // Return key for existing object or return null key.
- ObjKey find_primary_key(Mixed value) const;
- // Return ObjKey for object identified by id. If objects does not exist, return null key
- // Important: This function must not be called for tables with primary keys.
- ObjKey get_objkey(GlobalKey id) const;
- // Return key for existing object or return unresolved key.
- // Important: This is to be used ONLY by the Sync client. SDKs should NEVER
- // observe an unresolved key. Ever.
- ObjKey get_objkey_from_primary_key(const Mixed& primary_key);
- // Return key for existing object or return unresolved key.
- // Important: This is to be used ONLY by the Sync client. SDKs should NEVER
- // observe an unresolved key. Ever.
- // Important (2): This function must not be called for tables with primary keys.
- ObjKey get_objkey_from_global_key(GlobalKey key);
- /// Create a number of objects and add corresponding keys to a vector
- void create_objects(size_t number, std::vector<ObjKey>& keys);
- /// Create a number of objects with keys supplied
- void create_objects(const std::vector<ObjKey>& keys);
- /// Does the key refer to an object within the table?
- bool is_valid(ObjKey key) const
- {
- return m_clusters.is_valid(key);
- }
- GlobalKey get_object_id(ObjKey key) const;
- Obj get_object(ObjKey key) const
- {
- REALM_ASSERT(!key.is_unresolved());
- return m_clusters.get(key);
- }
- Obj get_object(size_t ndx) const
- {
- return m_clusters.get(ndx);
- }
- // Get object based on primary key
- Obj get_object_with_primary_key(Mixed pk) const;
- // Get primary key based on ObjKey
- Mixed get_primary_key(ObjKey key);
- // Get logical index for object. This function is not very efficient
- size_t get_object_ndx(ObjKey key) const noexcept
- {
- return m_clusters.get_ndx(key);
- }
- void dump_objects();
- bool traverse_clusters(ClusterTree::TraverseFunction func) const
- {
- return m_clusters.traverse(func);
- }
- /// remove_object() removes the specified object from the table.
- /// Any links from the specified object into objects residing in an embedded
- /// table will cause those objects to be deleted as well, and so on recursively.
- void remove_object(ObjKey key);
- /// remove_object_recursive() will delete linked rows if the removed link was the
- /// last one holding on to the row in question. This will be done recursively.
- void remove_object_recursive(ObjKey key);
- // Invalidate object. To be used by the Sync client.
- // - turns the object into a tombstone if links exist
- // - otherwise works just as remove_object()
- ObjKey invalidate_object(ObjKey key);
- Obj get_tombstone(ObjKey key) const
- {
- REALM_ASSERT(key.is_unresolved());
- REALM_ASSERT(m_tombstones);
- return m_tombstones->get(key);
- }
- void clear();
- using Iterator = TableClusterTree::Iterator;
- Iterator begin() const;
- Iterator end() const;
- void remove_object(const Iterator& it)
- {
- remove_object(it->get_key());
- }
- //@}
- TableRef get_link_target(ColKey column_key) noexcept;
- ConstTableRef get_link_target(ColKey column_key) const noexcept;
- static const size_t max_string_size = 0xFFFFF8 - Array::header_size - 1;
- static const size_t max_binary_size = 0xFFFFF8 - Array::header_size;
- static constexpr int_fast64_t max_integer = std::numeric_limits<int64_t>::max();
- static constexpr int_fast64_t min_integer = std::numeric_limits<int64_t>::min();
- /// Only group-level unordered tables can be used as origins or targets of
- /// links.
- bool is_group_level() const noexcept;
- /// A Table accessor obtained from a frozen transaction is also frozen.
- bool is_frozen() const noexcept
- {
- return m_is_frozen;
- }
- /// If this table is a group-level table, then this function returns the
- /// index of this table within the group. Otherwise it returns realm::npos.
- size_t get_index_in_group() const noexcept;
- TableKey get_key() const noexcept;
- uint64_t allocate_sequence_number();
- // Used by upgrade
- void set_sequence_number(uint64_t seq);
- void set_collision_map(ref_type ref);
- // Get the key of this table directly, without needing a Table accessor.
- static TableKey get_key_direct(Allocator& alloc, ref_type top_ref);
- // Aggregate functions
- size_t count_int(ColKey col_key, int64_t value) const;
- size_t count_string(ColKey col_key, StringData value) const;
- size_t count_float(ColKey col_key, float value) const;
- size_t count_double(ColKey col_key, double value) const;
- size_t count_decimal(ColKey col_key, Decimal128 value) const;
- int64_t sum_int(ColKey col_key) const;
- double sum_float(ColKey col_key) const;
- double sum_double(ColKey col_key) const;
- Decimal128 sum_decimal(ColKey col_key) const;
- Decimal128 sum_mixed(ColKey col_key) const;
- int64_t maximum_int(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- float maximum_float(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- double maximum_double(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- Decimal128 maximum_decimal(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- Mixed maximum_mixed(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- Timestamp maximum_timestamp(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- int64_t minimum_int(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- float minimum_float(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- double minimum_double(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- Decimal128 minimum_decimal(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- Mixed minimum_mixed(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- Timestamp minimum_timestamp(ColKey col_key, ObjKey* return_ndx = nullptr) const;
- double average_int(ColKey col_key, size_t* value_count = nullptr) const;
- double average_float(ColKey col_key, size_t* value_count = nullptr) const;
- double average_double(ColKey col_key, size_t* value_count = nullptr) const;
- Decimal128 average_decimal(ColKey col_key, size_t* value_count = nullptr) const;
- Decimal128 average_mixed(ColKey col_key, size_t* value_count = nullptr) const;
- // Will return pointer to search index accessor. Will return nullptr if no index
- StringIndex* get_search_index(ColKey col) const noexcept
- {
- report_invalid_key(col);
- if (!has_search_index(col))
- return nullptr;
- return m_index_accessors[col.get_index().val];
- }
- template <class T>
- ObjKey find_first(ColKey col_key, T value) const;
- ObjKey find_first_int(ColKey col_key, int64_t value) const;
- ObjKey find_first_bool(ColKey col_key, bool value) const;
- ObjKey find_first_timestamp(ColKey col_key, Timestamp value) const;
- ObjKey find_first_object_id(ColKey col_key, ObjectId value) const;
- ObjKey find_first_float(ColKey col_key, float value) const;
- ObjKey find_first_double(ColKey col_key, double value) const;
- ObjKey find_first_decimal(ColKey col_key, Decimal128 value) const;
- ObjKey find_first_string(ColKey col_key, StringData value) const;
- ObjKey find_first_binary(ColKey col_key, BinaryData value) const;
- ObjKey find_first_null(ColKey col_key) const;
- ObjKey find_first_uuid(ColKey col_key, UUID value) const;
- // TableView find_all_link(Key target_key);
- // ConstTableView find_all_link(Key target_key) const;
- TableView find_all_int(ColKey col_key, int64_t value);
- ConstTableView find_all_int(ColKey col_key, int64_t value) const;
- TableView find_all_bool(ColKey col_key, bool value);
- ConstTableView find_all_bool(ColKey col_key, bool value) const;
- TableView find_all_float(ColKey col_key, float value);
- ConstTableView find_all_float(ColKey col_key, float value) const;
- TableView find_all_double(ColKey col_key, double value);
- ConstTableView find_all_double(ColKey col_key, double value) const;
- TableView find_all_string(ColKey col_key, StringData value);
- ConstTableView find_all_string(ColKey col_key, StringData value) const;
- TableView find_all_binary(ColKey col_key, BinaryData value);
- ConstTableView find_all_binary(ColKey col_key, BinaryData value) const;
- TableView find_all_null(ColKey col_key);
- ConstTableView find_all_null(ColKey col_key) const;
- TableView get_sorted_view(ColKey col_key, bool ascending = true);
- ConstTableView get_sorted_view(ColKey col_key, bool ascending = true) const;
- TableView get_sorted_view(SortDescriptor order);
- ConstTableView get_sorted_view(SortDescriptor order) const;
- // Report the current content version. This is a 64-bit value which is bumped whenever
- // the content in the table changes.
- uint_fast64_t get_content_version() const noexcept;
- // Report the current instance version. This is a 64-bit value which is bumped
- // whenever the table accessor is recycled.
- uint_fast64_t get_instance_version() const noexcept;
- // Report the current storage version. This is a 64-bit value which is bumped
- // whenever the location in memory of any part of the table changes.
- uint_fast64_t get_storage_version(uint64_t instance_version) const;
- uint_fast64_t get_storage_version() const;
- void bump_storage_version() const noexcept;
- void bump_content_version() const noexcept;
- // Change the nullability of the column identified by col_key.
- // This might result in the creation of a new column and deletion of the old.
- // The column key to use going forward is returned.
- // If the conversion is from nullable to non-nullable, throw_on_null determines
- // the reaction to encountering a null value: If clear, null values will be
- // converted to default values. If set, a 'column_not_nullable' is thrown and the
- // table is unchanged.
- ColKey set_nullability(ColKey col_key, bool nullable, bool throw_on_null);
- // Iterate through (subset of) columns. The supplied function may abort iteration
- // by returning 'true' (early out).
- template <typename Func>
- bool for_each_and_every_column(Func func) const
- {
- for (auto col_key : m_leaf_ndx2colkey) {
- if (!col_key)
- continue;
- if (func(col_key))
- return true;
- }
- return false;
- }
- template <typename Func>
- bool for_each_public_column(Func func) const
- {
- for (auto col_key : m_leaf_ndx2colkey) {
- if (!col_key)
- continue;
- if (col_key.get_type() == col_type_BackLink)
- continue;
- if (func(col_key))
- return true;
- }
- return false;
- }
- template <typename Func>
- bool for_each_backlink_column(Func func) const
- {
- // Could be optimized - to not iterate through all non-backlink columns:
- for (auto col_key : m_leaf_ndx2colkey) {
- if (!col_key)
- continue;
- if (col_key.get_type() != col_type_BackLink)
- continue;
- if (func(col_key))
- return true;
- }
- return false;
- }
- private:
- template <class T>
- TableView find_all(ColKey col_key, T value);
- void build_column_mapping();
- ColKey generate_col_key(ColumnType ct, ColumnAttrMask attrs);
- void convert_column(ColKey from, ColKey to, bool throw_on_null);
- template <class F, class T>
- void change_nullability(ColKey from, ColKey to, bool throw_on_null);
- template <class F, class T>
- void change_nullability_list(ColKey from, ColKey to, bool throw_on_null);
- Obj create_linked_object(GlobalKey = {});
- /// Changes embeddedness unconditionally. Called only from Group::do_get_or_add_table()
- void do_set_embedded(bool embedded);
- public:
- // mapping between index used in leaf nodes (leaf_ndx) and index used in spec (spec_ndx)
- // as well as the full column key. A leaf_ndx can be obtained directly from the column key
- size_t colkey2spec_ndx(ColKey key) const;
- size_t leaf_ndx2spec_ndx(ColKey::Idx idx) const;
- ColKey::Idx spec_ndx2leaf_ndx(size_t idx) const;
- ColKey leaf_ndx2colkey(ColKey::Idx idx) const;
- ColKey spec_ndx2colkey(size_t ndx) const;
- void report_invalid_key(ColKey col_key) const;
- // Queries
- // Using where(tv) is the new method to perform queries on TableView. The 'tv' can have any order; it does not
- // need to be sorted, and, resulting view retains its order.
- Query where(ConstTableView* tv = nullptr)
- {
- return Query(m_own_ref, tv);
- }
- Query where(ConstTableView* tv = nullptr) const
- {
- return Query(m_own_ref, tv);
- }
- // Perform queries on a Link Collection. The returned Query holds a reference to collection.
- Query where(const ObjList& list) const
- {
- return Query(m_own_ref, list);
- }
- Query where(const DictionaryLinkValues& dictionary_of_links) const;
- Query query(const std::string& query_string, const std::vector<Mixed>& arguments = {}) const;
- Query query(const std::string& query_string, const std::vector<Mixed>& arguments,
- const query_parser::KeyPathMapping& mapping) const;
- Query query(const std::string& query_string, query_parser::Arguments& arguments,
- const query_parser::KeyPathMapping&) const;
- //@{
- /// WARNING: The link() and backlink() methods will alter a state on the Table object and return a reference
- /// to itself. Be aware if assigning the return value of link() to a variable; this might be an error!
- /// This is an error:
- /// Table& cats = owners->link(1);
- /// auto& dogs = owners->link(2);
- /// Query q = person_table->where()
- /// .and_query(cats.column<String>(5).equal("Fido"))
- /// .Or()
- /// .and_query(dogs.column<String>(6).equal("Meowth"));
- /// Instead, do this:
- /// Query q = owners->where()
- /// .and_query(person_table->link(1).column<String>(5).equal("Fido"))
- /// .Or()
- /// .and_query(person_table->link(2).column<String>(6).equal("Meowth"));
- /// The two calls to link() in the erroneous example will append the two values 0 and 1 to an internal vector in
- /// the owners table, and we end up with three references to that same table: owners, cats and dogs. They are all
- /// the same table, its vector has the values {0, 1}, so a query would not make any sense.
- LinkChain link(ColKey link_column) const;
- LinkChain backlink(const Table& origin, ColKey origin_col_key) const;
- // Conversion
- void schema_to_json(std::ostream& out, const std::map<std::string, std::string>& renames) const;
- void to_json(std::ostream& out, size_t link_depth, const std::map<std::string, std::string>& renames,
- JSONOutputMode output_mode = output_mode_json) const;
- /// \brief Compare two tables for equality.
- ///
- /// Two tables are equal if they have equal descriptors
- /// (`Descriptor::operator==()`) and equal contents. Equal descriptors imply
- /// that the two tables have the same columns in the same order. Equal
- /// contents means that the two tables must have the same number of rows,
- /// and that for each row index, the two rows must have the same values in
- /// each column.
- ///
- /// In mixed columns, both the value types and the values are required to be
- /// equal.
- ///
- /// For a particular row and column, if the two values are themselves tables
- /// (subtable and mixed columns) value equality implies a recursive
- /// invocation of `Table::operator==()`.
- bool operator==(const Table&) const;
- /// \brief Compare two tables for inequality.
- ///
- /// See operator==().
- bool operator!=(const Table& t) const;
- /// Compute the sum of the sizes in number of bytes of all the array nodes
- /// that currently make up this table. See also
- /// Group::compute_aggregate_byte_size().
- ///
- /// If this table accessor is the detached state, this function returns
- /// zero.
- size_t compute_aggregated_byte_size() const noexcept;
- // Debug
- void verify() const;
- #ifdef REALM_DEBUG
- MemStats stats() const;
- #endif
- TableRef get_opposite_table(ColKey col_key) const;
- TableKey get_opposite_table_key(ColKey col_key) const;
- bool links_to_self(ColKey col_key) const;
- ColKey get_opposite_column(ColKey col_key) const;
- ColKey find_opposite_column(ColKey col_key) const;
- protected:
- /// Compare the objects of two tables under the assumption that the two tables
- /// have the same number of columns, and the same data type at each column
- /// index (as expressed through the DataType enum).
- bool compare_objects(const Table&) const;
- private:
- enum LifeCycleCookie {
- cookie_created = 0x1234,
- cookie_transaction_ended = 0xcafe,
- cookie_initialized = 0xbeef,
- cookie_removed = 0xbabe,
- cookie_void = 0x5678,
- cookie_deleted = 0xdead,
- };
- mutable WrappedAllocator m_alloc;
- Array m_top;
- void update_allocator_wrapper(bool writable)
- {
- m_alloc.update_from_underlying_allocator(writable);
- }
- void refresh_allocator_wrapper() const noexcept
- {
- m_alloc.refresh_ref_translation();
- }
- Spec m_spec; // 1st slot in m_top
- TableClusterTree m_clusters; // 3rd slot in m_top
- std::unique_ptr<TableClusterTree> m_tombstones; // 13th slot in m_top
- TableKey m_key; // 4th slot in m_top
- Array m_index_refs; // 5th slot in m_top
- Array m_opposite_table; // 7th slot in m_top
- Array m_opposite_column; // 8th slot in m_top
- std::vector<StringIndex*> m_index_accessors;
- ColKey m_primary_key_col;
- Replication* const* m_repl;
- static Replication* g_dummy_replication;
- bool m_is_frozen = false;
- util::Optional<bool> m_has_any_embedded_objects;
- TableRef m_own_ref;
- void batch_erase_rows(const KeyColumn& keys);
- size_t do_set_link(ColKey col_key, size_t row_ndx, size_t target_row_ndx);
- void populate_search_index(ColKey col_key);
- void erase_from_search_indexes(ObjKey key);
- void update_indexes(ObjKey key, const FieldValues& values);
- void clear_indexes();
- // Migration support
- void migrate_column_info();
- bool verify_column_keys();
- void migrate_indexes(ColKey pk_col_key);
- void migrate_subspec();
- void create_columns();
- bool migrate_objects(); // Returns true if there are no links to migrate
- void migrate_links();
- void finalize_migration(ColKey pk_col_key);
- /// Disable copying assignment.
- ///
- /// It could easily be implemented by calling assign(), but the
- /// non-checking nature of the low-level dynamically typed API
- /// makes it too risky to offer this feature as an
- /// operator.
- Table& operator=(const Table&) = delete;
- /// Create an uninitialized accessor whose lifetime is managed by Group
- Table(Replication* const* repl, Allocator&);
- void revive(Replication* const* repl, Allocator& new_allocator, bool writable);
- void init(ref_type top_ref, ArrayParent*, size_t ndx_in_parent, bool is_writable, bool is_frozen);
- void ensure_graveyard();
- void set_key(TableKey key);
- ColKey do_insert_column(ColKey col_key, DataType type, StringData name, Table* target_table,
- DataType key_type = DataType(0));
- struct InsertSubtableColumns;
- struct EraseSubtableColumns;
- struct RenameSubtableColumns;
- void erase_root_column(ColKey col_key);
- ColKey do_insert_root_column(ColKey col_key, ColumnType, StringData name, DataType key_type = DataType(0));
- void do_erase_root_column(ColKey col_key);
- void do_add_search_index(ColKey col_key);
- bool has_any_embedded_objects();
- void set_opposite_column(ColKey col_key, TableKey opposite_table, ColKey opposite_column);
- ColKey find_backlink_column(ColKey origin_col_key, TableKey origin_table) const;
- ColKey find_or_add_backlink_column(ColKey origin_col_key, TableKey origin_table);
- void do_set_primary_key_column(ColKey col_key);
- void validate_column_is_unique(ColKey col_key) const;
- ObjKey get_next_valid_key();
- /// Some Object IDs are generated as a tuple of the client_file_ident and a
- /// local sequence number. This function takes the next number in the
- /// sequence for the given table and returns an appropriate globally unique
- /// GlobalKey.
- GlobalKey allocate_object_id_squeezed();
- /// Find the local 64-bit object ID for the provided global 128-bit ID.
- ObjKey global_to_local_object_id_hashed(GlobalKey global_id) const;
- /// After a local ObjKey collision has been detected, this function may be
- /// called to obtain a non-colliding local ObjKey in such a way that subsequent
- /// calls to global_to_local_object_id() will return the correct local ObjKey
- /// for both \a incoming_id and \a colliding_id.
- ObjKey allocate_local_id_after_hash_collision(GlobalKey incoming_id, GlobalKey colliding_id,
- ObjKey colliding_local_id);
- /// Create a placeholder for a not yet existing object and return key to it
- Obj get_or_create_tombstone(ObjKey key, const FieldValues& values);
- /// Should be called when an object is deleted
- void free_local_id_after_hash_collision(ObjKey key);
- /// Should be called when last entry is removed - or when table is cleared
- void free_collision_table();
- /// Called in the context of Group::commit() to ensure that
- /// attached table accessors stay valid across a commit. Please
- /// note that this works only for non-transactional commits. Table
- /// accessors obtained during a transaction are always detached
- /// when the transaction ends.
- void update_from_parent() noexcept;
- // Detach accessor. This recycles the Table accessor and all subordinate
- // accessors become invalid.
- void detach(LifeCycleCookie) noexcept;
- void fully_detach() noexcept;
- ColumnType get_real_column_type(ColKey col_key) const noexcept;
- uint64_t get_sync_file_id() const noexcept;
- static size_t get_size_from_ref(ref_type top_ref, Allocator&) noexcept;
- static size_t get_size_from_ref(ref_type spec_ref, ref_type columns_ref, Allocator&) noexcept;
- /// Create an empty table with independent spec and return just
- /// the reference to the underlying memory.
- static ref_type create_empty_table(Allocator&, TableKey = TableKey());
- void nullify_links(CascadeState&);
- void remove_recursive(CascadeState&);
- /// Used by query. Follows chain of link columns and returns final target table
- const Table* get_link_chain_target(const std::vector<ColKey>&) const;
- Replication* get_repl() const noexcept;
- void set_ndx_in_parent(size_t ndx_in_parent) noexcept;
- /// Refresh the part of the accessor tree that is rooted at this
- /// table.
- void refresh_accessor_tree();
- void refresh_index_accessors();
- void refresh_content_version();
- void flush_for_commit();
- bool is_cross_table_link_target() const noexcept;
- template <typename T>
- void aggregate(QueryStateBase& st, ColKey col_key) const;
- template <typename T>
- double average(ColKey col_key, size_t* resultcount) const;
- std::vector<ColKey> m_leaf_ndx2colkey;
- std::vector<ColKey::Idx> m_spec_ndx2leaf_ndx;
- std::vector<size_t> m_leaf_ndx2spec_ndx;
- bool m_is_embedded = false;
- uint64_t m_in_file_version_at_transaction_boundary = 0;
- LifeCycleCookie m_cookie;
- static constexpr int top_position_for_spec = 0;
- static constexpr int top_position_for_columns = 1;
- static constexpr int top_position_for_cluster_tree = 2;
- static constexpr int top_position_for_key = 3;
- static constexpr int top_position_for_search_indexes = 4;
- static constexpr int top_position_for_column_key = 5;
- static constexpr int top_position_for_version = 6;
- static constexpr int top_position_for_opposite_table = 7;
- static constexpr int top_position_for_opposite_column = 8;
- static constexpr int top_position_for_sequence_number = 9;
- static constexpr int top_position_for_collision_map = 10;
- static constexpr int top_position_for_pk_col = 11;
- static constexpr int top_position_for_flags = 12;
- // flags contents: bit 0 - is table embedded?
- static constexpr int top_position_for_tombstones = 13;
- static constexpr int top_array_size = 14;
- enum { s_collision_map_lo = 0, s_collision_map_hi = 1, s_collision_map_local_id = 2, s_collision_map_num_slots };
- friend class SubtableNode;
- friend class _impl::TableFriend;
- friend class Query;
- friend class metrics::QueryInfo;
- template <class>
- friend class SimpleQuerySupport;
- friend class LangBindHelper;
- friend class ConstTableView;
- template <class T>
- friend class Columns;
- friend class Columns<StringData>;
- friend class ParentNode;
- friend struct util::serializer::SerialisationState;
- friend class LinkMap;
- friend class LinkView;
- friend class Group;
- friend class Transaction;
- friend class Cluster;
- friend class ClusterTree;
- friend class TableClusterTree;
- friend class ColKeyIterator;
- friend class Obj;
- friend class LnkLst;
- friend class Dictionary;
- friend class IncludeDescriptor;
- };
- class ColKeyIterator {
- public:
- bool operator!=(const ColKeyIterator& other)
- {
- return m_pos != other.m_pos;
- }
- ColKeyIterator& operator++()
- {
- ++m_pos;
- return *this;
- }
- ColKeyIterator operator++(int)
- {
- ColKeyIterator tmp(m_table, m_pos);
- ++m_pos;
- return tmp;
- }
- ColKey operator*()
- {
- if (m_pos < m_table->get_column_count()) {
- REALM_ASSERT(m_table->m_spec.get_key(m_pos) == m_table->spec_ndx2colkey(m_pos));
- return m_table->m_spec.get_key(m_pos);
- }
- return {};
- }
- private:
- friend class ColKeys;
- const Table* m_table;
- size_t m_pos;
- ColKeyIterator(const Table* t, size_t p)
- : m_table(t)
- , m_pos(p)
- {
- }
- };
- class ColKeys {
- public:
- ColKeys(const Table* t)
- : m_table(t)
- {
- }
- ColKeys()
- : m_table(nullptr)
- {
- }
- size_t size() const
- {
- return m_table->get_column_count();
- }
- bool empty() const
- {
- return size() == 0;
- }
- ColKey operator[](size_t p) const
- {
- return ColKeyIterator(m_table, p).operator*();
- }
- ColKeyIterator begin() const
- {
- return ColKeyIterator(m_table, 0);
- }
- ColKeyIterator end() const
- {
- return ColKeyIterator(m_table, size());
- }
- private:
- const Table* m_table;
- };
- // Class used to collect a chain of links when building up a Query following links.
- // It has member functions corresponding to the ones defined on Table.
- class LinkChain {
- public:
- LinkChain(ConstTableRef t = {}, ExpressionComparisonType type = ExpressionComparisonType::Any)
- : m_current_table(t)
- , m_base_table(t)
- , m_comparison_type(type)
- {
- }
- ConstTableRef get_base_table()
- {
- return m_base_table;
- }
- ConstTableRef get_current_table() const
- {
- return m_current_table;
- }
- ColKey get_current_col() const
- {
- return m_link_cols.back();
- }
- LinkChain& link(ColKey link_column)
- {
- add(link_column);
- return *this;
- }
- LinkChain& link(std::string col_name)
- {
- auto ck = m_current_table->get_column_key(col_name);
- if (!ck) {
- throw std::runtime_error(util::format("%1 has no property %2", m_current_table->get_name(), col_name));
- }
- add(ck);
- return *this;
- }
- LinkChain& backlink(const Table& origin, ColKey origin_col_key)
- {
- auto backlink_col_key = origin.get_opposite_column(origin_col_key);
- return link(backlink_col_key);
- }
- Subexpr* column(const std::string&);
- Subexpr* subquery(Query subquery);
- template <class T>
- inline Columns<T> column(ColKey col_key)
- {
- m_current_table->report_invalid_key(col_key);
- // Check if user-given template type equals Realm type.
- auto ct = col_key.get_type();
- if (ct == col_type_LinkList)
- ct = col_type_Link;
- if constexpr (std::is_same_v<T, Dictionary>) {
- if (!col_key.is_dictionary())
- throw LogicError(LogicError::type_mismatch);
- }
- else {
- if (ct != ColumnTypeTraits<T>::column_id)
- throw LogicError(LogicError::type_mismatch);
- }
- if (std::is_same<T, Link>::value || std::is_same<T, LnkLst>::value || std::is_same<T, BackLink>::value) {
- m_link_cols.push_back(col_key);
- }
- return Columns<T>(col_key, m_base_table, m_link_cols, m_comparison_type);
- }
- template <class T>
- Columns<T> column(const Table& origin, ColKey origin_col_key)
- {
- static_assert(std::is_same<T, BackLink>::value, "");
- auto backlink_col_key = origin.get_opposite_column(origin_col_key);
- m_link_cols.push_back(backlink_col_key);
- return Columns<T>(backlink_col_key, m_base_table, std::move(m_link_cols));
- }
- template <class T>
- SubQuery<T> column(ColKey col_key, Query subquery)
- {
- static_assert(std::is_same<T, Link>::value, "A subquery must involve a link list or backlink column");
- return SubQuery<T>(column<T>(col_key), std::move(subquery));
- }
- template <class T>
- SubQuery<T> column(const Table& origin, ColKey origin_col_key, Query subquery)
- {
- static_assert(std::is_same<T, BackLink>::value, "A subquery must involve a link list or backlink column");
- return SubQuery<T>(column<T>(origin, origin_col_key), std::move(subquery));
- }
- template <class T>
- BacklinkCount<T> get_backlink_count()
- {
- return BacklinkCount<T>(m_base_table, std::move(m_link_cols));
- }
- private:
- friend class Table;
- friend class query_parser::ParserDriver;
- std::vector<ColKey> m_link_cols;
- ConstTableRef m_current_table;
- ConstTableRef m_base_table;
- ExpressionComparisonType m_comparison_type;
- void add(ColKey ck);
- template <class T>
- Subexpr* create_subexpr(ColKey col_key)
- {
- return new Columns<T>(col_key, m_base_table, m_link_cols, m_comparison_type);
- }
- };
- // Implementation:
- inline ColKeys Table::get_column_keys() const
- {
- return ColKeys(this);
- }
- inline uint_fast64_t Table::get_content_version() const noexcept
- {
- return m_alloc.get_content_version();
- }
- inline uint_fast64_t Table::get_instance_version() const noexcept
- {
- return m_alloc.get_instance_version();
- }
- inline uint_fast64_t Table::get_storage_version(uint64_t instance_version) const
- {
- return m_alloc.get_storage_version(instance_version);
- }
- inline uint_fast64_t Table::get_storage_version() const
- {
- return m_alloc.get_storage_version();
- }
- inline TableKey Table::get_key() const noexcept
- {
- return m_key;
- }
- inline void Table::bump_storage_version() const noexcept
- {
- return m_alloc.bump_storage_version();
- }
- inline void Table::bump_content_version() const noexcept
- {
- m_alloc.bump_content_version();
- }
- inline size_t Table::get_column_count() const noexcept
- {
- return m_spec.get_public_column_count();
- }
- inline bool Table::is_embedded() const noexcept
- {
- return m_is_embedded;
- }
- inline StringData Table::get_column_name(ColKey column_key) const
- {
- auto spec_ndx = colkey2spec_ndx(column_key);
- REALM_ASSERT_3(spec_ndx, <, get_column_count());
- return m_spec.get_column_name(spec_ndx);
- }
- inline ColKey Table::get_column_key(StringData name) const noexcept
- {
- size_t spec_ndx = m_spec.get_column_index(name);
- if (spec_ndx == npos)
- return ColKey();
- return spec_ndx2colkey(spec_ndx);
- }
- inline ColumnType Table::get_real_column_type(ColKey col_key) const noexcept
- {
- return col_key.get_type();
- }
- inline DataType Table::get_column_type(ColKey column_key) const
- {
- return DataType(column_key.get_type());
- }
- inline ColumnAttrMask Table::get_column_attr(ColKey column_key) const noexcept
- {
- return column_key.get_attrs();
- }
- inline DataType Table::get_dictionary_key_type(ColKey column_key) const noexcept
- {
- auto spec_ndx = colkey2spec_ndx(column_key);
- REALM_ASSERT_3(spec_ndx, <, get_column_count());
- return m_spec.get_dictionary_key_type(spec_ndx);
- }
- inline Table::Table(Allocator& alloc)
- : m_alloc(alloc)
- , m_top(m_alloc)
- , m_spec(m_alloc)
- , m_clusters(this, m_alloc, top_position_for_cluster_tree)
- , m_index_refs(m_alloc)
- , m_opposite_table(m_alloc)
- , m_opposite_column(m_alloc)
- , m_repl(&g_dummy_replication)
- , m_own_ref(this, alloc.get_instance_version())
- {
- m_spec.set_parent(&m_top, top_position_for_spec);
- m_index_refs.set_parent(&m_top, top_position_for_search_indexes);
- m_opposite_table.set_parent(&m_top, top_position_for_opposite_table);
- m_opposite_column.set_parent(&m_top, top_position_for_opposite_column);
- ref_type ref = create_empty_table(m_alloc); // Throws
- ArrayParent* parent = nullptr;
- size_t ndx_in_parent = 0;
- init(ref, parent, ndx_in_parent, true, false);
- }
- inline Table::Table(Replication* const* repl, Allocator& alloc)
- : m_alloc(alloc)
- , m_top(m_alloc)
- , m_spec(m_alloc)
- , m_clusters(this, m_alloc, top_position_for_cluster_tree)
- , m_index_refs(m_alloc)
- , m_opposite_table(m_alloc)
- , m_opposite_column(m_alloc)
- , m_repl(repl)
- , m_own_ref(this, alloc.get_instance_version())
- {
- m_spec.set_parent(&m_top, top_position_for_spec);
- m_index_refs.set_parent(&m_top, top_position_for_search_indexes);
- m_opposite_table.set_parent(&m_top, top_position_for_opposite_table);
- m_opposite_column.set_parent(&m_top, top_position_for_opposite_column);
- m_cookie = cookie_created;
- }
- inline void Table::revive(Replication* const* repl, Allocator& alloc, bool writable)
- {
- m_alloc.switch_underlying_allocator(alloc);
- m_alloc.update_from_underlying_allocator(writable);
- m_repl = repl;
- m_own_ref = TableRef(this, m_alloc.get_instance_version());
- // since we're rebinding to a new table, we'll bump version counters
- // Possible optimization: save version counters along with the table data
- // and restore them from there. Should decrease amount of non-necessary
- // recomputations of any queries relying on this table.
- bump_content_version();
- bump_storage_version();
- // we assume all other accessors are detached, so we're done.
- }
- inline Allocator& Table::get_alloc() const
- {
- return m_alloc;
- }
- // For use by queries
- template <class T>
- inline Columns<T> Table::column(ColKey col_key, ExpressionComparisonType cmp_type) const
- {
- LinkChain lc(m_own_ref, cmp_type);
- return lc.column<T>(col_key);
- }
- template <class T>
- inline Columns<T> Table::column(const Table& origin, ColKey origin_col_key) const
- {
- LinkChain lc(m_own_ref);
- return lc.column<T>(origin, origin_col_key);
- }
- template <class T>
- inline BacklinkCount<T> Table::get_backlink_count() const
- {
- return BacklinkCount<T>(this, {});
- }
- template <class T>
- SubQuery<T> Table::column(ColKey col_key, Query subquery) const
- {
- LinkChain lc(m_own_ref);
- return lc.column<T>(col_key, subquery);
- }
- template <class T>
- SubQuery<T> Table::column(const Table& origin, ColKey origin_col_key, Query subquery) const
- {
- LinkChain lc(m_own_ref);
- return lc.column<T>(origin, origin_col_key, subquery);
- }
- inline LinkChain Table::link(ColKey link_column) const
- {
- LinkChain lc(m_own_ref);
- lc.add(link_column);
- return lc;
- }
- inline LinkChain Table::backlink(const Table& origin, ColKey origin_col_key) const
- {
- auto backlink_col_key = origin.get_opposite_column(origin_col_key);
- return link(backlink_col_key);
- }
- inline bool Table::is_empty() const noexcept
- {
- return size() == 0;
- }
- inline ConstTableRef Table::get_link_target(ColKey col_key) const noexcept
- {
- return const_cast<Table*>(this)->get_link_target(col_key);
- }
- inline bool Table::is_group_level() const noexcept
- {
- return bool(get_parent_group());
- }
- inline bool Table::operator==(const Table& t) const
- {
- return m_spec == t.m_spec && compare_objects(t); // Throws
- }
- inline bool Table::operator!=(const Table& t) const
- {
- return !(*this == t); // Throws
- }
- inline size_t Table::get_size_from_ref(ref_type top_ref, Allocator& alloc) noexcept
- {
- const char* top_header = alloc.translate(top_ref);
- std::pair<int_least64_t, int_least64_t> p = Array::get_two(top_header, 0);
- ref_type spec_ref = to_ref(p.first), columns_ref = to_ref(p.second);
- return get_size_from_ref(spec_ref, columns_ref, alloc);
- }
- inline bool Table::is_link_type(ColumnType col_type) noexcept
- {
- return col_type == col_type_Link || col_type == col_type_LinkList;
- }
- inline Replication* Table::get_repl() const noexcept
- {
- return *m_repl;
- }
- inline void Table::set_ndx_in_parent(size_t ndx_in_parent) noexcept
- {
- REALM_ASSERT(m_top.is_attached());
- m_top.set_ndx_in_parent(ndx_in_parent);
- }
- inline size_t Table::colkey2spec_ndx(ColKey key) const
- {
- auto leaf_idx = key.get_index();
- REALM_ASSERT(leaf_idx.val < m_leaf_ndx2spec_ndx.size());
- return m_leaf_ndx2spec_ndx[leaf_idx.val];
- }
- inline ColKey Table::spec_ndx2colkey(size_t spec_ndx) const
- {
- REALM_ASSERT(spec_ndx < m_spec_ndx2leaf_ndx.size());
- return m_leaf_ndx2colkey[m_spec_ndx2leaf_ndx[spec_ndx].val];
- }
- inline void Table::report_invalid_key(ColKey col_key) const
- {
- if (col_key == ColKey())
- throw LogicError(LogicError::column_does_not_exist);
- auto idx = col_key.get_index();
- if (idx.val >= m_leaf_ndx2colkey.size() || m_leaf_ndx2colkey[idx.val] != col_key)
- throw LogicError(LogicError::column_does_not_exist);
- }
- inline size_t Table::leaf_ndx2spec_ndx(ColKey::Idx leaf_ndx) const
- {
- REALM_ASSERT(leaf_ndx.val < m_leaf_ndx2colkey.size());
- return m_leaf_ndx2spec_ndx[leaf_ndx.val];
- }
- inline ColKey::Idx Table::spec_ndx2leaf_ndx(size_t spec_ndx) const
- {
- REALM_ASSERT(spec_ndx < m_spec_ndx2leaf_ndx.size());
- return m_spec_ndx2leaf_ndx[spec_ndx];
- }
- inline ColKey Table::leaf_ndx2colkey(ColKey::Idx leaf_ndx) const
- {
- // this may be called with leaf indicies outside of the table. This can happen
- // when a column is removed from the mapping, but space for it is still reserved
- // at leaf level. Operations on Cluster and ClusterTree which walks the columns
- // based on leaf indicies may ask for colkeys which are no longer valid.
- if (leaf_ndx.val < m_leaf_ndx2spec_ndx.size())
- return m_leaf_ndx2colkey[leaf_ndx.val];
- else
- return ColKey();
- }
- bool inline Table::valid_column(ColKey col_key) const noexcept
- {
- if (col_key == ColKey())
- return false;
- ColKey::Idx leaf_idx = col_key.get_index();
- if (leaf_idx.val >= m_leaf_ndx2colkey.size())
- return false;
- return col_key == m_leaf_ndx2colkey[leaf_idx.val];
- }
- inline void Table::check_column(ColKey col_key) const
- {
- if (REALM_UNLIKELY(!valid_column(col_key)))
- throw ColumnNotFound();
- }
- // The purpose of this class is to give internal access to some, but
- // not all of the non-public parts of the Table class.
- class _impl::TableFriend {
- public:
- static Spec& get_spec(Table& table) noexcept
- {
- return table.m_spec;
- }
- static const Spec& get_spec(const Table& table) noexcept
- {
- return table.m_spec;
- }
- static TableRef get_opposite_link_table(const Table& table, ColKey col_key);
- static Group* get_parent_group(const Table& table) noexcept
- {
- return table.get_parent_group();
- }
- static void remove_recursive(Table& table, CascadeState& rows)
- {
- table.remove_recursive(rows); // Throws
- }
- static void batch_erase_rows(Table& table, const KeyColumn& keys)
- {
- table.batch_erase_rows(keys); // Throws
- }
- // Temporary hack
- static Obj create_linked_object(Table& table, GlobalKey id)
- {
- return table.create_linked_object(id);
- }
- static ObjKey global_to_local_object_id_hashed(const Table& table, GlobalKey global_id)
- {
- return table.global_to_local_object_id_hashed(global_id);
- }
- };
- } // namespace realm
- #endif // REALM_TABLE_HPP
|