column_integer.hpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*************************************************************************
  2. *
  3. * Copyright 2018 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_COLUMN_INTEGER_HPP
  19. #define REALM_COLUMN_INTEGER_HPP
  20. #include <realm/bplustree.hpp>
  21. #include <realm/array_integer.hpp>
  22. #include <realm/array_key.hpp>
  23. namespace realm {
  24. class IntegerColumn;
  25. class IntegerColumnIterator {
  26. public:
  27. typedef std::random_access_iterator_tag iterator_category;
  28. typedef int64_t value_type;
  29. typedef ptrdiff_t difference_type;
  30. typedef const value_type* pointer;
  31. typedef const value_type& reference;
  32. IntegerColumnIterator(const IntegerColumn* tree, size_t pos)
  33. : m_tree(tree)
  34. , m_pos(pos)
  35. {
  36. }
  37. size_t get_position() const
  38. {
  39. return m_pos;
  40. }
  41. int64_t operator->() const;
  42. int64_t operator*() const;
  43. int64_t operator[](size_t ndx) const;
  44. IntegerColumnIterator& operator++()
  45. {
  46. m_pos++;
  47. return *this;
  48. }
  49. IntegerColumnIterator operator++(int)
  50. {
  51. IntegerColumnIterator tmp(*this);
  52. operator++();
  53. return tmp;
  54. }
  55. IntegerColumnIterator& operator--()
  56. {
  57. m_pos--;
  58. return *this;
  59. }
  60. IntegerColumnIterator& operator+=(ptrdiff_t adj)
  61. {
  62. m_pos += adj;
  63. return *this;
  64. }
  65. IntegerColumnIterator& operator-=(ptrdiff_t adj)
  66. {
  67. m_pos -= adj;
  68. return *this;
  69. }
  70. IntegerColumnIterator operator+(ptrdiff_t adj)
  71. {
  72. return {m_tree, m_pos + adj};
  73. }
  74. IntegerColumnIterator operator-(ptrdiff_t adj)
  75. {
  76. return {m_tree, m_pos - adj};
  77. }
  78. IntegerColumnIterator operator--(int)
  79. {
  80. IntegerColumnIterator tmp(*this);
  81. operator--();
  82. return tmp;
  83. }
  84. ptrdiff_t operator-(const IntegerColumnIterator& rhs)
  85. {
  86. return m_pos - rhs.m_pos;
  87. }
  88. bool operator!=(const IntegerColumnIterator& rhs) const
  89. {
  90. return m_pos != rhs.m_pos;
  91. }
  92. bool operator==(const IntegerColumnIterator& rhs) const
  93. {
  94. return m_pos == rhs.m_pos;
  95. }
  96. bool operator>(const IntegerColumnIterator& rhs) const
  97. {
  98. return m_pos > rhs.m_pos;
  99. }
  100. bool operator<(const IntegerColumnIterator& rhs) const
  101. {
  102. return m_pos < rhs.m_pos;
  103. }
  104. bool operator>=(const IntegerColumnIterator& rhs) const
  105. {
  106. return m_pos >= rhs.m_pos;
  107. }
  108. bool operator<=(const IntegerColumnIterator& rhs) const
  109. {
  110. return m_pos <= rhs.m_pos;
  111. }
  112. private:
  113. const IntegerColumn* m_tree;
  114. size_t m_pos;
  115. };
  116. class IntegerColumn : public BPlusTree<int64_t> {
  117. public:
  118. using const_iterator = IntegerColumnIterator;
  119. IntegerColumn(Allocator& alloc, ref_type ref = 0)
  120. : BPlusTree(alloc)
  121. {
  122. if (ref != 0)
  123. init_from_ref(ref);
  124. }
  125. int64_t back()
  126. {
  127. return get(size() - 1);
  128. }
  129. IntegerColumnIterator cbegin() const
  130. {
  131. return IntegerColumnIterator(this, 0);
  132. }
  133. IntegerColumnIterator cend() const
  134. {
  135. return IntegerColumnIterator(this, size());
  136. }
  137. };
  138. inline int64_t IntegerColumnIterator::operator->() const
  139. {
  140. return m_tree->get(m_pos);
  141. }
  142. inline int64_t IntegerColumnIterator::operator*() const
  143. {
  144. return m_tree->get(m_pos);
  145. }
  146. inline int64_t IntegerColumnIterator::operator[](size_t ndx) const
  147. {
  148. return m_tree->get(m_pos + ndx);
  149. }
  150. inline std::ostream& operator<<(std::ostream& out, const IntegerColumnIterator& it)
  151. {
  152. out << "IntegerColumnIterator at index: " << it.get_position();
  153. return out;
  154. }
  155. }
  156. #endif /* REALM_COLUMN_INTEGER_HPP */