table_ref.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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_REF_HPP
  19. #define REALM_TABLE_REF_HPP
  20. #include <cstddef>
  21. #include <ostream>
  22. namespace realm {
  23. class Table;
  24. class TableRef;
  25. class ConstTableRef {
  26. public:
  27. ConstTableRef() noexcept {}
  28. ConstTableRef(std::nullptr_t) noexcept {}
  29. ConstTableRef(const TableRef& other) noexcept;
  30. const Table* operator->() const;
  31. const Table& operator*() const;
  32. operator bool() const noexcept;
  33. const Table* unchecked_ptr() const
  34. {
  35. return m_table;
  36. }
  37. bool operator==(const ConstTableRef& other) const
  38. {
  39. return m_table == other.m_table && m_instance_version == other.m_instance_version;
  40. }
  41. bool operator!=(const ConstTableRef& other) const
  42. {
  43. return !(*this == other);
  44. }
  45. bool operator<(const ConstTableRef& other) const
  46. {
  47. if (m_table == other.m_table)
  48. return m_instance_version < other.m_instance_version;
  49. else
  50. return m_table < other.m_table;
  51. }
  52. bool operator>(const ConstTableRef& other) const
  53. {
  54. if (m_table == other.m_table)
  55. return m_instance_version > other.m_instance_version;
  56. else
  57. return m_table > other.m_table;
  58. }
  59. std::ostream& print(std::ostream& o) const
  60. {
  61. return o << "TableRef(" << m_table << ", " << m_instance_version << ")";
  62. }
  63. TableRef cast_away_const() const;
  64. static ConstTableRef unsafe_create(const Table* t_ptr);
  65. void check() const;
  66. protected:
  67. explicit ConstTableRef(const Table* t_ptr, uint64_t instance_version)
  68. : m_table(const_cast<Table*>(t_ptr))
  69. , m_instance_version(instance_version)
  70. {
  71. }
  72. friend class Group;
  73. friend class Table;
  74. friend class ClusterTree;
  75. Table* m_table = nullptr;
  76. uint64_t m_instance_version = 0;
  77. };
  78. class TableRef : public ConstTableRef {
  79. public:
  80. TableRef() noexcept
  81. : ConstTableRef()
  82. {
  83. }
  84. TableRef(std::nullptr_t) noexcept
  85. : ConstTableRef()
  86. {
  87. }
  88. Table* operator->() const;
  89. Table& operator*() const;
  90. Table* unchecked_ptr() const
  91. {
  92. return m_table;
  93. }
  94. static TableRef unsafe_create(Table* t_ptr);
  95. private:
  96. explicit TableRef(Table* t_ptr, uint64_t instance_version)
  97. : ConstTableRef(t_ptr, instance_version)
  98. {
  99. }
  100. friend class Group;
  101. friend class Table;
  102. friend class ClusterTree;
  103. friend class ConstTableRef;
  104. };
  105. inline ConstTableRef::ConstTableRef(const TableRef& other) noexcept
  106. : m_table(other.m_table)
  107. , m_instance_version(other.m_instance_version)
  108. {
  109. }
  110. inline TableRef ConstTableRef::cast_away_const() const
  111. {
  112. return TableRef(m_table, m_instance_version);
  113. }
  114. inline std::ostream& operator<<(std::ostream& o, const ConstTableRef& tr)
  115. {
  116. return tr.print(o);
  117. }
  118. } // namespace realm
  119. #endif // REALM_TABLE_REF_HPP