cluster.hpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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_CLUSTER_HPP
  19. #define REALM_CLUSTER_HPP
  20. #include <realm/keys.hpp>
  21. #include <realm/mixed.hpp>
  22. #include <realm/array.hpp>
  23. #include <realm/array_unsigned.hpp>
  24. #include <realm/data_type.hpp>
  25. #include <realm/column_type_traits.hpp>
  26. namespace realm {
  27. class Spec;
  28. class Table;
  29. class Obj;
  30. class Cluster;
  31. class ClusterNodeInner;
  32. class ClusterTree;
  33. class ColumnAttrMask;
  34. class CascadeState;
  35. struct FieldValue {
  36. FieldValue(ColKey k, Mixed val)
  37. : col_key(k)
  38. , value(val)
  39. {
  40. }
  41. ColKey col_key;
  42. Mixed value;
  43. };
  44. using FieldValues = std::vector<FieldValue>;
  45. class ClusterNode : public Array {
  46. public:
  47. // This structure is used to bring information back to the upper nodes when
  48. // inserting new objects or finding existing ones.
  49. struct State {
  50. int64_t split_key; // When a node is split, this variable holds the value of the
  51. // first key in the new node. (Relative to the key offset)
  52. MemRef mem; // MemRef to the Cluster holding the new/found object
  53. size_t index = realm::npos; // The index within the Cluster at which the object is stored.
  54. operator bool() const
  55. {
  56. return index != realm::npos;
  57. }
  58. };
  59. struct IteratorState {
  60. IteratorState(Cluster& leaf)
  61. : m_current_leaf(leaf)
  62. {
  63. }
  64. IteratorState(const IteratorState&);
  65. void clear();
  66. void init(State&, ObjKey);
  67. Cluster& m_current_leaf;
  68. int64_t m_key_offset = 0;
  69. size_t m_current_index = 0;
  70. };
  71. ClusterNode(uint64_t offset, Allocator& allocator, const ClusterTree& tree_top)
  72. : Array(allocator)
  73. , m_tree_top(tree_top)
  74. , m_keys(allocator)
  75. , m_offset(offset)
  76. {
  77. m_keys.set_parent(this, 0);
  78. }
  79. virtual ~ClusterNode()
  80. {
  81. }
  82. void init_from_parent()
  83. {
  84. ref_type ref = get_ref_from_parent();
  85. char* header = m_alloc.translate(ref);
  86. init(MemRef(header, ref, m_alloc));
  87. }
  88. int64_t get_key_value(size_t ndx) const
  89. {
  90. return m_keys.get(ndx);
  91. }
  92. const Table* get_owning_table() const noexcept;
  93. virtual void update_from_parent() noexcept = 0;
  94. virtual bool is_leaf() const = 0;
  95. virtual int get_sub_tree_depth() const = 0;
  96. virtual size_t node_size() const = 0;
  97. /// Number of elements in this subtree
  98. virtual size_t get_tree_size() const = 0;
  99. /// Last key in this subtree
  100. virtual int64_t get_last_key_value() const = 0;
  101. virtual void ensure_general_form() = 0;
  102. /// Initialize node from 'mem'
  103. virtual void init(MemRef mem) = 0;
  104. /// Descend the tree from the root and copy-on-write the leaf
  105. /// This will update all parents accordingly
  106. virtual MemRef ensure_writeable(ObjKey k) = 0;
  107. /// A leaf cluster has got a new ref. Descend the tree from the root,
  108. /// find the leaf and update the ref in the parent node
  109. virtual void update_ref_in_parent(ObjKey k, ref_type ref) = 0;
  110. /// Init and potentially Insert a column
  111. virtual void insert_column(ColKey col) = 0;
  112. /// Clear and potentially Remove a column
  113. virtual void remove_column(ColKey col) = 0;
  114. /// Return number of columns created. To be used by upgrade logic
  115. virtual size_t nb_columns() const
  116. {
  117. return realm::npos;
  118. }
  119. /// Create a new object identified by 'key' and update 'state' accordingly
  120. /// Return reference to new node created (if any)
  121. virtual ref_type insert(ObjKey k, const FieldValues& init_values, State& state) = 0;
  122. /// Locate object identified by 'key' and update 'state' accordingly
  123. void get(ObjKey key, State& state) const;
  124. /// Locate object identified by 'key' and update 'state' accordingly
  125. /// Returns `false` if the object doesn't not exist.
  126. virtual bool try_get(ObjKey key, State& state) const noexcept = 0;
  127. /// Locate object identified by 'ndx' and update 'state' accordingly
  128. virtual ObjKey get(size_t ndx, State& state) const = 0;
  129. /// Return the index at which key is stored
  130. virtual size_t get_ndx(ObjKey key, size_t ndx) const noexcept = 0;
  131. /// Erase element identified by 'key'
  132. virtual size_t erase(ObjKey key, CascadeState& state) = 0;
  133. /// Nullify links pointing to element identified by 'key'
  134. virtual void nullify_incoming_links(ObjKey key, CascadeState& state) = 0;
  135. /// Move elements from position 'ndx' to 'new_node'. The new node is supposed
  136. /// to be a sibling positioned right after this one. All key values must
  137. /// be subtracted 'key_adj'
  138. virtual void move(size_t ndx, ClusterNode* new_leaf, int64_t key_adj) = 0;
  139. virtual void dump_objects(int64_t key_offset, std::string lead) const = 0;
  140. ObjKey get_real_key(size_t ndx) const
  141. {
  142. return ObjKey(get_key_value(ndx) + m_offset);
  143. }
  144. const ClusterKeyArray* get_key_array() const
  145. {
  146. return &m_keys;
  147. }
  148. void set_offset(uint64_t offs)
  149. {
  150. m_offset = offs;
  151. }
  152. uint64_t get_offset() const
  153. {
  154. return m_offset;
  155. }
  156. protected:
  157. #if REALM_MAX_BPNODE_SIZE > 256
  158. static constexpr int node_shift_factor = 8;
  159. #else
  160. static constexpr int node_shift_factor = 2;
  161. #endif
  162. static constexpr size_t cluster_node_size = 1 << node_shift_factor;
  163. const ClusterTree& m_tree_top;
  164. ClusterKeyArray m_keys;
  165. uint64_t m_offset;
  166. };
  167. class Cluster : public ClusterNode {
  168. public:
  169. Cluster(uint64_t offset, Allocator& allocator, const ClusterTree& tree_top)
  170. : ClusterNode(offset, allocator, tree_top)
  171. {
  172. }
  173. ~Cluster() override;
  174. static MemRef create_empty_cluster(Allocator& alloc);
  175. void create(); // Note: leaf columns - may include holes
  176. void init(MemRef mem) override;
  177. void update_from_parent() noexcept override;
  178. bool is_writeable() const
  179. {
  180. return !Array::is_read_only();
  181. }
  182. MemRef ensure_writeable(ObjKey k) override;
  183. void update_ref_in_parent(ObjKey, ref_type ref) override;
  184. bool is_leaf() const override
  185. {
  186. return true;
  187. }
  188. int get_sub_tree_depth() const override
  189. {
  190. return 0;
  191. }
  192. static size_t node_size_from_header(Allocator& alloc, const char* header);
  193. size_t node_size() const override
  194. {
  195. if (!is_attached()) {
  196. return 0;
  197. }
  198. return m_keys.is_attached() ? m_keys.size() : get_size_in_compact_form();
  199. }
  200. size_t get_tree_size() const override
  201. {
  202. return node_size();
  203. }
  204. int64_t get_last_key_value() const override
  205. {
  206. auto sz = node_size();
  207. return sz ? get_key_value(sz - 1) : -1;
  208. }
  209. size_t lower_bound_key(ObjKey key) const
  210. {
  211. if (m_keys.is_attached()) {
  212. return m_keys.lower_bound(uint64_t(key.value));
  213. }
  214. else {
  215. size_t sz = size_t(Array::get(0)) >> 1;
  216. if (key.value < 0)
  217. return 0;
  218. if (size_t(key.value) > sz)
  219. return sz;
  220. }
  221. return size_t(key.value);
  222. }
  223. void adjust_keys(int64_t offset)
  224. {
  225. ensure_general_form();
  226. m_keys.adjust(0, m_keys.size(), offset);
  227. }
  228. ColKey get_col_key(size_t ndx_in_parent) const;
  229. void ensure_general_form() override;
  230. void insert_column(ColKey col) override; // Does not move columns!
  231. void remove_column(ColKey col) override; // Does not move columns - may leave a 'hole'
  232. size_t nb_columns() const override
  233. {
  234. return size() - s_first_col_index;
  235. }
  236. ref_type insert(ObjKey k, const FieldValues& init_values, State& state) override;
  237. bool try_get(ObjKey k, State& state) const noexcept override;
  238. ObjKey get(size_t, State& state) const override;
  239. size_t get_ndx(ObjKey key, size_t ndx) const noexcept override;
  240. size_t erase(ObjKey k, CascadeState& state) override;
  241. void nullify_incoming_links(ObjKey key, CascadeState& state) override;
  242. void upgrade_string_to_enum(ColKey col, ArrayString& keys);
  243. void init_leaf(ColKey col, ArrayPayload* leaf) const;
  244. void add_leaf(ColKey col, ref_type ref);
  245. void verify() const;
  246. void dump_objects(int64_t key_offset, std::string lead) const override;
  247. private:
  248. friend class ClusterTree;
  249. friend class TableClusterTree;
  250. static constexpr size_t s_key_ref_or_size_index = 0;
  251. static constexpr size_t s_first_col_index = 1;
  252. size_t get_size_in_compact_form() const
  253. {
  254. return size_t(Array::get(s_key_ref_or_size_index)) >> 1; // Size is stored as tagged value
  255. }
  256. void insert_row(size_t ndx, ObjKey k, const FieldValues& init_values);
  257. void move(size_t ndx, ClusterNode* new_node, int64_t key_adj) override;
  258. template <class T>
  259. void do_create(ColKey col);
  260. template <class T>
  261. void do_insert_column(ColKey col, bool nullable);
  262. template <class T>
  263. void do_insert_row(size_t ndx, ColKey col, Mixed init_val, bool nullable);
  264. template <class T>
  265. void do_move(size_t ndx, ColKey col, Cluster* to);
  266. template <class T>
  267. void do_erase(size_t ndx, ColKey col);
  268. void remove_backlinks(ObjKey origin_key, ColKey col, const std::vector<ObjKey>& keys, CascadeState& state) const;
  269. void remove_backlinks(ObjKey origin_key, ColKey col, const std::vector<ObjLink>& links,
  270. CascadeState& state) const;
  271. void do_erase_key(size_t ndx, ColKey col, CascadeState& state);
  272. void do_insert_key(size_t ndx, ColKey col, Mixed init_val, ObjKey origin_key);
  273. void do_insert_link(size_t ndx, ColKey col, Mixed init_val, ObjKey origin_key);
  274. template <class T>
  275. void set_spec(T&, ColKey::Idx) const;
  276. template <class ArrayType>
  277. void verify(ref_type ref, size_t index, util::Optional<size_t>& sz) const;
  278. };
  279. }
  280. #endif /* SRC_REALM_CLUSTER_HPP_ */