collection.hpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. #ifndef REALM_COLLECTION_HPP
  2. #define REALM_COLLECTION_HPP
  3. #include <realm/obj.hpp>
  4. #include <realm/bplustree.hpp>
  5. #include <realm/obj_list.hpp>
  6. #include <realm/table.hpp>
  7. #include <iosfwd> // std::ostream
  8. #include <type_traits> // std::void_t
  9. namespace realm {
  10. template <class L>
  11. struct CollectionIterator;
  12. /// Base class for all collection accessors.
  13. ///
  14. /// Collections are bound to particular properties of an object. In a
  15. /// collection's public interface, the implementation must take care to keep the
  16. /// object consistent with the persisted state, mindful of the fact that the
  17. /// state may have changed as a consquence of modifications from other instances
  18. /// referencing the same persisted state.
  19. class CollectionBase {
  20. public:
  21. virtual ~CollectionBase() {}
  22. /// The size of the collection.
  23. virtual size_t size() const = 0;
  24. /// True if the element at @a ndx is NULL.
  25. virtual bool is_null(size_t ndx) const = 0;
  26. /// Get element at @a ndx as a `Mixed`.
  27. virtual Mixed get_any(size_t ndx) const = 0;
  28. /// Clear the collection.
  29. virtual void clear() = 0;
  30. /// Get the min element, according to whatever comparison function is
  31. /// meaningful for the collection, or none if min is not supported for this type.
  32. virtual util::Optional<Mixed> min(size_t* return_ndx = nullptr) const = 0;
  33. /// Get the max element, according to whatever comparison function is
  34. /// meaningful for the collection, or none if max is not supported for this type.
  35. virtual util::Optional<Mixed> max(size_t* return_ndx = nullptr) const = 0;
  36. /// For collections of arithmetic types, return the sum of all elements.
  37. /// For non arithmetic types, returns none.
  38. virtual util::Optional<Mixed> sum(size_t* return_cnt = nullptr) const = 0;
  39. /// For collections of arithmetic types, return the average of all elements.
  40. /// For non arithmetic types, returns none.
  41. virtual util::Optional<Mixed> avg(size_t* return_cnt = nullptr) const = 0;
  42. /// Produce a clone of the collection accessor referring to the same
  43. /// underlying memory.
  44. virtual std::unique_ptr<CollectionBase> clone_collection() const = 0;
  45. /// Modifies a vector of indices so that they refer to values sorted
  46. /// according to the specified sort order.
  47. virtual void sort(std::vector<size_t>& indices, bool ascending = true) const = 0;
  48. /// Modifies a vector of indices so that they refer to distinct values. If
  49. /// @a sort_order is supplied, the indices will refer to values in sort
  50. /// order, otherwise the indices will be in the same order as they appear in
  51. /// the collection.
  52. virtual void distinct(std::vector<size_t>& indices, util::Optional<bool> sort_order = util::none) const = 0;
  53. // Return index of the first occurrence of 'value'
  54. virtual size_t find_any(Mixed value) const = 0;
  55. /// True if `size()` returns 0.
  56. virtual bool is_empty() const final
  57. {
  58. return size() == 0;
  59. }
  60. /// Get the object that owns this collection.
  61. virtual const Obj& get_obj() const noexcept = 0;
  62. /// Get the column key for this collection.
  63. virtual ColKey get_col_key() const noexcept = 0;
  64. /// Return true if the collection has changed since the last call to
  65. /// `has_changed()`. Note that this function is not idempotent and updates
  66. /// the internal state of the accessor if it has changed.
  67. virtual bool has_changed() const = 0;
  68. /// Returns true if the accessor is in the attached state. By default, this
  69. /// checks if the owning object is still valid.
  70. virtual bool is_attached() const
  71. {
  72. return get_obj().is_valid();
  73. }
  74. // Note: virtual..final prevents static override.
  75. /// Get the key of the object that owns this collection.
  76. virtual ObjKey get_owner_key() const noexcept final
  77. {
  78. return get_obj().get_key();
  79. }
  80. /// Get the table of the object that owns this collection.
  81. virtual ConstTableRef get_table() const noexcept final
  82. {
  83. return get_obj().get_table();
  84. }
  85. /// If this is a collection of links, get the target table.
  86. virtual TableRef get_target_table() const final
  87. {
  88. return get_obj().get_target_table(get_col_key());
  89. }
  90. virtual size_t translate_index(size_t ndx) const noexcept
  91. {
  92. return ndx;
  93. }
  94. StringData get_property_name() const
  95. {
  96. return get_table()->get_column_name(get_col_key());
  97. }
  98. protected:
  99. friend class Transaction;
  100. CollectionBase() noexcept = default;
  101. CollectionBase(const CollectionBase&) noexcept = default;
  102. CollectionBase(CollectionBase&&) noexcept = default;
  103. CollectionBase& operator=(const CollectionBase&) noexcept = default;
  104. CollectionBase& operator=(CollectionBase&&) noexcept = default;
  105. void validate_index(const char* msg, size_t index, size_t size) const;
  106. };
  107. inline std::string_view collection_type_name(ColKey col, bool uppercase = false)
  108. {
  109. if (col.is_list())
  110. return uppercase ? "List" : "list";
  111. if (col.is_set())
  112. return uppercase ? "Set" : "set";
  113. if (col.is_dictionary())
  114. return uppercase ? "Dictionary" : "dictionary";
  115. return "";
  116. }
  117. inline void CollectionBase::validate_index(const char* msg, size_t index, size_t size) const
  118. {
  119. if (index >= size) {
  120. throw OutOfBounds(util::format("%1 on %2 '%3.%4'", msg, collection_type_name(get_col_key()),
  121. get_table()->get_class_name(), get_property_name()),
  122. index, size);
  123. }
  124. }
  125. template <class T>
  126. inline void check_column_type(ColKey col)
  127. {
  128. if (col && col.get_type() != ColumnTypeTraits<T>::column_id) {
  129. throw InvalidColumnKey();
  130. }
  131. }
  132. template <>
  133. inline void check_column_type<Int>(ColKey col)
  134. {
  135. if (col && (col.get_type() != col_type_Int || col.get_attrs().test(col_attr_Nullable))) {
  136. throw InvalidColumnKey();
  137. }
  138. }
  139. template <>
  140. inline void check_column_type<util::Optional<Int>>(ColKey col)
  141. {
  142. if (col && (col.get_type() != col_type_Int || !col.get_attrs().test(col_attr_Nullable))) {
  143. throw InvalidColumnKey();
  144. }
  145. }
  146. template <>
  147. inline void check_column_type<ObjKey>(ColKey col)
  148. {
  149. if (col) {
  150. bool is_link_list = (col.get_type() == col_type_LinkList);
  151. bool is_link_set = (col.is_set() && col.get_type() == col_type_Link);
  152. if (!(is_link_list || is_link_set))
  153. throw InvalidArgument(ErrorCodes::TypeMismatch, "Property not a list or set");
  154. }
  155. }
  156. template <class T, class = void>
  157. struct MinHelper {
  158. template <class U>
  159. static util::Optional<Mixed> eval(U&, size_t*) noexcept
  160. {
  161. return util::none;
  162. }
  163. static util::Optional<Mixed> not_found(size_t*) noexcept
  164. {
  165. return util::none;
  166. }
  167. };
  168. template <class T>
  169. struct MinHelper<T, std::void_t<ColumnMinMaxType<T>>> {
  170. template <class U>
  171. static util::Optional<Mixed> eval(U& tree, size_t* return_ndx)
  172. {
  173. auto optional_min = bptree_minimum<T>(tree, return_ndx);
  174. if (optional_min) {
  175. return Mixed{*optional_min};
  176. }
  177. return Mixed{};
  178. }
  179. static util::Optional<Mixed> not_found(size_t* return_ndx) noexcept
  180. {
  181. if (return_ndx)
  182. *return_ndx = realm::not_found;
  183. return Mixed{};
  184. }
  185. };
  186. template <class T, class Enable = void>
  187. struct MaxHelper {
  188. template <class U>
  189. static util::Optional<Mixed> eval(U&, size_t*) noexcept
  190. {
  191. return util::none;
  192. }
  193. static util::Optional<Mixed> not_found(size_t*) noexcept
  194. {
  195. return util::none;
  196. }
  197. };
  198. template <class T>
  199. struct MaxHelper<T, std::void_t<ColumnMinMaxType<T>>> {
  200. template <class U>
  201. static util::Optional<Mixed> eval(U& tree, size_t* return_ndx)
  202. {
  203. auto optional_max = bptree_maximum<T>(tree, return_ndx);
  204. if (optional_max) {
  205. return Mixed{*optional_max};
  206. }
  207. return Mixed{};
  208. }
  209. static util::Optional<Mixed> not_found(size_t* return_ndx) noexcept
  210. {
  211. if (return_ndx)
  212. *return_ndx = realm::not_found;
  213. return Mixed{};
  214. }
  215. };
  216. template <class T, class Enable = void>
  217. class SumHelper {
  218. public:
  219. template <class U>
  220. static util::Optional<Mixed> eval(U&, size_t* return_cnt) noexcept
  221. {
  222. if (return_cnt)
  223. *return_cnt = 0;
  224. return util::none;
  225. }
  226. static util::Optional<Mixed> not_found(size_t*) noexcept
  227. {
  228. return util::none;
  229. }
  230. };
  231. template <class T>
  232. class SumHelper<T, std::void_t<ColumnSumType<T>>> {
  233. public:
  234. template <class U>
  235. static util::Optional<Mixed> eval(U& tree, size_t* return_cnt)
  236. {
  237. return Mixed{bptree_sum<T>(tree, return_cnt)};
  238. }
  239. static util::Optional<Mixed> not_found(size_t* return_cnt) noexcept
  240. {
  241. if (return_cnt)
  242. *return_cnt = 0;
  243. using ResultType = typename aggregate_operations::Sum<typename util::RemoveOptional<T>::type>::ResultType;
  244. return Mixed{ResultType{}};
  245. }
  246. };
  247. template <class T, class = void>
  248. struct AverageHelper {
  249. template <class U>
  250. static util::Optional<Mixed> eval(U&, size_t* return_cnt) noexcept
  251. {
  252. if (return_cnt)
  253. *return_cnt = 0;
  254. return util::none;
  255. }
  256. static util::Optional<Mixed> not_found(size_t*) noexcept
  257. {
  258. return util::none;
  259. }
  260. };
  261. template <class T>
  262. struct AverageHelper<T, std::void_t<ColumnSumType<T>>> {
  263. template <class U>
  264. static util::Optional<Mixed> eval(U& tree, size_t* return_cnt)
  265. {
  266. size_t count = 0;
  267. auto result = Mixed{bptree_average<T>(tree, &count)};
  268. if (return_cnt) {
  269. *return_cnt = count;
  270. }
  271. return count == 0 ? util::none : result;
  272. }
  273. static util::Optional<Mixed> not_found(size_t* return_cnt) noexcept
  274. {
  275. if (return_cnt)
  276. *return_cnt = 0;
  277. return Mixed{};
  278. }
  279. };
  280. /// Convenience base class for collections, which implements most of the
  281. /// relevant interfaces for a collection that is bound to an object accessor and
  282. /// representable as a BPlusTree<T>.
  283. template <class Interface, class Derived>
  284. class CollectionBaseImpl : public Interface, protected ArrayParent {
  285. public:
  286. static_assert(std::is_base_of_v<CollectionBase, Interface>);
  287. // Overriding members of CollectionBase:
  288. ColKey get_col_key() const noexcept final
  289. {
  290. return m_col_key;
  291. }
  292. const Obj& get_obj() const noexcept final
  293. {
  294. return m_obj;
  295. }
  296. /// Returns true if the accessor has changed since the last time
  297. /// `has_changed()` was called.
  298. ///
  299. /// Note: This method is not idempotent.
  300. ///
  301. /// Note: This involves a call to `update_if_needed()`.
  302. ///
  303. /// Note: This function does not return true for an accessor that became
  304. /// detached since the last call, even though it may look to the caller as
  305. /// if the size of the collection suddenly became zero.
  306. bool has_changed() const final
  307. {
  308. // `has_changed()` sneakily modifies internal state.
  309. update_if_needed();
  310. if (m_last_content_version != m_content_version) {
  311. m_last_content_version = m_content_version;
  312. return true;
  313. }
  314. return false;
  315. }
  316. using Interface::get_owner_key;
  317. using Interface::get_table;
  318. using Interface::get_target_table;
  319. protected:
  320. Obj m_obj;
  321. ColKey m_col_key;
  322. bool m_nullable = false;
  323. mutable uint_fast64_t m_content_version = 0;
  324. // Content version used by `has_changed()`.
  325. mutable uint_fast64_t m_last_content_version = 0;
  326. CollectionBaseImpl() = default;
  327. CollectionBaseImpl(const CollectionBaseImpl& other) = default;
  328. CollectionBaseImpl(CollectionBaseImpl&& other) = default;
  329. CollectionBaseImpl(const Obj& obj, ColKey col_key) noexcept
  330. : m_obj(obj)
  331. , m_col_key(col_key)
  332. , m_nullable(col_key.is_nullable())
  333. {
  334. }
  335. CollectionBaseImpl& operator=(const CollectionBaseImpl& other) = default;
  336. CollectionBaseImpl& operator=(CollectionBaseImpl&& other) = default;
  337. bool operator==(const Derived& other) const noexcept
  338. {
  339. return get_table() == other.get_table() && get_owner_key() == other.get_owner_key() &&
  340. get_col_key() == other.get_col_key();
  341. }
  342. bool operator!=(const Derived& other) const noexcept
  343. {
  344. return !(*this == other);
  345. }
  346. /// Refresh the associated `Obj` (if needed), and update the internal
  347. /// content version number. This is meant to be called from a derived class
  348. /// before accessing its data.
  349. ///
  350. /// If the `Obj` changed since the last call, or the content version was
  351. /// bumped, this returns `UpdateStatus::Updated`. In response, the caller
  352. /// must invoke `init_from_parent()` or similar on its internal state
  353. /// accessors to refresh its view of the data.
  354. ///
  355. /// If the owning object (or parent container) was deleted, this returns
  356. /// `UpdateStatus::Detached`, and the caller is allowed to enter a
  357. /// degenerate state.
  358. ///
  359. /// If no change has happened to the data, this function returns
  360. /// `UpdateStatus::NoChange`, and the caller is allowed to not do anything.
  361. virtual UpdateStatus update_if_needed() const
  362. {
  363. UpdateStatus status = m_obj.update_if_needed_with_status();
  364. if (status != UpdateStatus::Detached) {
  365. auto content_version = m_obj.get_alloc().get_content_version();
  366. if (content_version != m_content_version) {
  367. m_content_version = content_version;
  368. status = UpdateStatus::Updated;
  369. }
  370. }
  371. return status;
  372. }
  373. /// Refresh the associated `Obj` (if needed) and ensure that the
  374. /// collection is created. Must be used in places where you
  375. /// modify a potentially detached collection.
  376. ///
  377. /// The caller must react to the `UpdateStatus` in the same way as with
  378. /// `update_if_needed()`, i.e., eventually end up calling
  379. /// `init_from_parent()` or similar.
  380. ///
  381. /// Throws if the owning object no longer exists. Note: This means that this
  382. /// method will never return `UpdateStatus::Detached`.
  383. virtual UpdateStatus ensure_created()
  384. {
  385. bool changed = m_obj.update_if_needed(); // Throws if the object does not exist.
  386. auto content_version = m_obj.get_alloc().get_content_version();
  387. if (changed || content_version != m_content_version) {
  388. m_content_version = content_version;
  389. return UpdateStatus::Updated;
  390. }
  391. return UpdateStatus::NoChange;
  392. }
  393. void bump_content_version()
  394. {
  395. m_content_version = m_obj.bump_content_version();
  396. }
  397. /// Reset the accessor's tracking of the content version. Derived classes
  398. /// may choose to call this to force the accessor to become out of date,
  399. /// such that `update_if_needed()` returns `UpdateStatus::Updated` the next
  400. /// time it is called (or `UpdateStatus::Detached` if the data vanished in
  401. /// the meantime).
  402. void reset_content_version()
  403. {
  404. m_content_version = 0;
  405. }
  406. // Overriding ArrayParent interface:
  407. ref_type get_child_ref(size_t child_ndx) const noexcept final
  408. {
  409. static_cast<void>(child_ndx);
  410. try {
  411. return to_ref(m_obj._get<int64_t>(m_col_key.get_index()));
  412. }
  413. catch (const KeyNotFound&) {
  414. return ref_type(0);
  415. }
  416. }
  417. void update_child_ref(size_t child_ndx, ref_type new_ref) final
  418. {
  419. static_cast<void>(child_ndx);
  420. m_obj.set_int(m_col_key, from_ref(new_ref));
  421. }
  422. };
  423. namespace _impl {
  424. /// Translate from condensed index to uncondensed index in collections that hide
  425. /// tombstones.
  426. size_t virtual2real(const std::vector<size_t>& vec, size_t ndx) noexcept;
  427. size_t virtual2real(const BPlusTree<ObjKey>* tree, size_t ndx) noexcept;
  428. /// Translate from uncondensed index to condensed into in collections that hide
  429. /// tombstones.
  430. size_t real2virtual(const std::vector<size_t>& vec, size_t ndx) noexcept;
  431. /// Rebuild the list of unresolved keys for tombstone handling.
  432. void update_unresolved(std::vector<size_t>& vec, const BPlusTree<ObjKey>* tree);
  433. /// Clear the context flag on the tree if there are no more unresolved links.
  434. void check_for_last_unresolved(BPlusTree<ObjKey>* tree);
  435. /// Proxy class needed because the ObjList interface clobbers method names from
  436. /// CollectionBase.
  437. struct ObjListProxy : ObjList {
  438. virtual TableRef proxy_get_target_table() const = 0;
  439. TableRef get_target_table() const final
  440. {
  441. return proxy_get_target_table();
  442. }
  443. };
  444. } // namespace _impl
  445. /// Base class for collections of objects, where unresolved links (tombstones)
  446. /// can occur.
  447. template <class Interface>
  448. class ObjCollectionBase : public Interface, public _impl::ObjListProxy {
  449. public:
  450. static_assert(std::is_base_of_v<CollectionBase, Interface>);
  451. using Interface::get_col_key;
  452. using Interface::get_obj;
  453. using Interface::get_table;
  454. using Interface::is_attached;
  455. using Interface::size;
  456. // Overriding methods in ObjList:
  457. void get_dependencies(TableVersions& versions) const final
  458. {
  459. if (is_attached()) {
  460. auto table = this->get_table();
  461. versions.emplace_back(table->get_key(), table->get_content_version());
  462. }
  463. }
  464. void sync_if_needed() const final
  465. {
  466. update_if_needed();
  467. }
  468. bool is_in_sync() const noexcept final
  469. {
  470. return true;
  471. }
  472. bool has_unresolved() const noexcept
  473. {
  474. update_if_needed();
  475. return m_unresolved.size() != 0;
  476. }
  477. using Interface::get_target_table;
  478. protected:
  479. ObjCollectionBase() = default;
  480. ObjCollectionBase(const ObjCollectionBase&) = default;
  481. ObjCollectionBase(ObjCollectionBase&&) = default;
  482. ObjCollectionBase& operator=(const ObjCollectionBase&) = default;
  483. ObjCollectionBase& operator=(ObjCollectionBase&&) = default;
  484. /// Implementations should call `update_if_needed()` on their inner accessor
  485. /// (without `update_unresolved()`).
  486. virtual UpdateStatus do_update_if_needed() const = 0;
  487. /// Implementations should return a non-const reference to their internal
  488. /// `BPlusTree<T>`.
  489. virtual BPlusTree<ObjKey>* get_mutable_tree() const = 0;
  490. /// Implements update_if_needed() in a way that ensures the consistency of
  491. /// the unresolved list. Derived classes should call this instead of calling
  492. /// `update_if_needed()` on their inner accessor.
  493. UpdateStatus update_if_needed() const
  494. {
  495. auto status = do_update_if_needed();
  496. update_unresolved(status);
  497. return status;
  498. }
  499. /// Translate from condensed index to uncondensed.
  500. size_t virtual2real(size_t ndx) const noexcept
  501. {
  502. return _impl::virtual2real(m_unresolved, ndx);
  503. }
  504. /// Translate from uncondensed index to condensed.
  505. size_t real2virtual(size_t ndx) const noexcept
  506. {
  507. return _impl::real2virtual(m_unresolved, ndx);
  508. }
  509. /// Rebuild the list of tombstones if there is a possibility that it has
  510. /// changed.
  511. ///
  512. /// If the accessor became detached, this clears the unresolved list.
  513. void update_unresolved(UpdateStatus status) const
  514. {
  515. switch (status) {
  516. case UpdateStatus::Detached: {
  517. clear_unresolved();
  518. break;
  519. }
  520. case UpdateStatus::Updated: {
  521. _impl::update_unresolved(m_unresolved, get_mutable_tree());
  522. break;
  523. }
  524. case UpdateStatus::NoChange:
  525. break;
  526. }
  527. }
  528. /// When a tombstone is removed from a list, call this to update internal
  529. /// flags that indicate the presence of tombstones.
  530. void check_for_last_unresolved()
  531. {
  532. _impl::check_for_last_unresolved(get_mutable_tree());
  533. }
  534. /// Clear the list of tombstones. It will be rebuilt the next time
  535. /// `update_if_needed()` is called.
  536. void clear_unresolved() const noexcept
  537. {
  538. m_unresolved.clear();
  539. }
  540. /// Return the number of tombstones.
  541. size_t num_unresolved() const noexcept
  542. {
  543. return m_unresolved.size();
  544. }
  545. private:
  546. // Sorted set of indices containing unresolved links.
  547. mutable std::vector<size_t> m_unresolved;
  548. TableRef proxy_get_target_table() const final
  549. {
  550. return Interface::get_target_table();
  551. }
  552. bool matches(const ObjList& other) const final
  553. {
  554. return get_owning_obj().get_key() == other.get_owning_obj().get_key() &&
  555. get_owning_col_key() == other.get_owning_col_key();
  556. }
  557. Obj get_owning_obj() const final
  558. {
  559. return get_obj();
  560. }
  561. ColKey get_owning_col_key() const final
  562. {
  563. return get_col_key();
  564. }
  565. };
  566. /// Random-access iterator over elements of a collection.
  567. ///
  568. /// Values are cached into a member variable in order to support `operator->`
  569. /// and `operator*` returning a pointer and a reference, respectively.
  570. template <class L>
  571. struct CollectionIterator {
  572. using iterator_category = std::random_access_iterator_tag;
  573. using value_type = typename L::value_type;
  574. using difference_type = ptrdiff_t;
  575. using pointer = const value_type*;
  576. using reference = const value_type&;
  577. CollectionIterator(const L* l, size_t ndx) noexcept
  578. : m_list(l)
  579. , m_ndx(ndx)
  580. {
  581. }
  582. pointer operator->() const
  583. {
  584. m_val = m_list->get(m_ndx);
  585. return &m_val;
  586. }
  587. reference operator*() const
  588. {
  589. return *operator->();
  590. }
  591. CollectionIterator& operator++() noexcept
  592. {
  593. ++m_ndx;
  594. return *this;
  595. }
  596. CollectionIterator operator++(int) noexcept
  597. {
  598. auto tmp = *this;
  599. operator++();
  600. return tmp;
  601. }
  602. CollectionIterator& operator--() noexcept
  603. {
  604. --m_ndx;
  605. return *this;
  606. }
  607. CollectionIterator operator--(int) noexcept
  608. {
  609. auto tmp = *this;
  610. operator--();
  611. return tmp;
  612. }
  613. CollectionIterator& operator+=(ptrdiff_t n) noexcept
  614. {
  615. m_ndx += n;
  616. return *this;
  617. }
  618. CollectionIterator& operator-=(ptrdiff_t n) noexcept
  619. {
  620. m_ndx -= n;
  621. return *this;
  622. }
  623. friend ptrdiff_t operator-(const CollectionIterator& lhs, const CollectionIterator& rhs) noexcept
  624. {
  625. return ptrdiff_t(lhs.m_ndx) - ptrdiff_t(rhs.m_ndx);
  626. }
  627. friend CollectionIterator operator+(CollectionIterator lhs, ptrdiff_t rhs) noexcept
  628. {
  629. lhs.m_ndx += rhs;
  630. return lhs;
  631. }
  632. friend CollectionIterator operator+(ptrdiff_t lhs, CollectionIterator rhs) noexcept
  633. {
  634. return rhs + lhs;
  635. }
  636. bool operator!=(const CollectionIterator& rhs) const noexcept
  637. {
  638. REALM_ASSERT_DEBUG(m_list == rhs.m_list);
  639. return m_ndx != rhs.m_ndx;
  640. }
  641. bool operator==(const CollectionIterator& rhs) const noexcept
  642. {
  643. REALM_ASSERT_DEBUG(m_list == rhs.m_list);
  644. return m_ndx == rhs.m_ndx;
  645. }
  646. size_t index() const noexcept
  647. {
  648. return m_ndx;
  649. }
  650. private:
  651. mutable value_type m_val;
  652. const L* m_list;
  653. size_t m_ndx = size_t(-1);
  654. };
  655. } // namespace realm
  656. #endif // REALM_COLLECTION_HPP