array_basic.hpp 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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_ARRAY_BASIC_HPP
  19. #define REALM_ARRAY_BASIC_HPP
  20. #include <realm/array.hpp>
  21. namespace realm {
  22. /// A BasicArray can currently only be used for simple unstructured
  23. /// types like float, double.
  24. template <class T>
  25. class BasicArray : public Array, public ArrayPayload {
  26. public:
  27. using value_type = T;
  28. explicit BasicArray(Allocator&) noexcept;
  29. ~BasicArray() noexcept override
  30. {
  31. }
  32. static T default_value(bool)
  33. {
  34. return T(0.0);
  35. }
  36. void init_from_ref(ref_type ref) noexcept override
  37. {
  38. Array::init_from_ref(ref);
  39. }
  40. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  41. {
  42. Array::set_parent(parent, ndx_in_parent);
  43. }
  44. // Disable copying, this is not allowed.
  45. BasicArray& operator=(const BasicArray&) = delete;
  46. BasicArray(const BasicArray&) = delete;
  47. T get(size_t ndx) const noexcept;
  48. bool is_null(size_t ndx) const noexcept
  49. {
  50. // FIXME: This assumes BasicArray will only ever be instantiated for float-like T.
  51. static_assert(realm::is_any<T, float, double>::value, "T can only be float or double");
  52. auto x = BasicArray<T>::get(ndx);
  53. return null::is_null_float(x);
  54. }
  55. void add(T value);
  56. void set(size_t ndx, T value);
  57. void insert(size_t ndx, T value);
  58. void erase(size_t ndx);
  59. void truncate(size_t size);
  60. void move(BasicArray& dst, size_t ndx)
  61. {
  62. for (size_t i = ndx; i < m_size; i++) {
  63. dst.add(get(i));
  64. }
  65. truncate(ndx);
  66. }
  67. void clear();
  68. size_t find_first(T value, size_t begin = 0, size_t end = npos) const;
  69. void find_all(IntegerColumn* result, T value, size_t add_offset = 0, size_t begin = 0, size_t end = npos) const;
  70. size_t count(T value, size_t begin = 0, size_t end = npos) const;
  71. bool maximum(T& result, size_t begin = 0, size_t end = npos) const;
  72. bool minimum(T& result, size_t begin = 0, size_t end = npos) const;
  73. /// Compare two arrays for equality.
  74. bool compare(const BasicArray<T>&) const;
  75. /// Get the specified element without the cost of constructing an
  76. /// array instance. If an array instance is already available, or
  77. /// you need to get multiple values, then this method will be
  78. /// slower.
  79. static T get(const char* header, size_t ndx) noexcept;
  80. Mixed get_any(size_t ndx) const override
  81. {
  82. return Mixed(get(ndx));
  83. }
  84. size_t lower_bound(T value) const noexcept;
  85. size_t upper_bound(T value) const noexcept;
  86. /// Construct a basic array of the specified size and return just
  87. /// the reference to the underlying memory. All elements will be
  88. /// initialized to `T()`.
  89. static MemRef create_array(size_t size, Allocator&);
  90. static MemRef create_array(Array::Type leaf_type, bool context_flag, size_t size, T value, Allocator&);
  91. /// Create a new empty array and attach this accessor to it. This
  92. /// does not modify the parent reference information of this
  93. /// accessor.
  94. ///
  95. /// Note that the caller assumes ownership of the allocated
  96. /// underlying node. It is not owned by the accessor.
  97. void create(Array::Type = type_Normal, bool context_flag = false);
  98. private:
  99. size_t find(T target, size_t begin, size_t end) const;
  100. size_t calc_byte_len(size_t count, size_t width) const override;
  101. virtual size_t calc_item_count(size_t bytes, size_t width) const noexcept override;
  102. template <bool find_max>
  103. bool minmax(T& result, size_t begin, size_t end) const;
  104. /// Calculate the total number of bytes needed for a basic array
  105. /// with the specified number of elements. This includes the size
  106. /// of the header. The result will be upwards aligned to the
  107. /// closest 8-byte boundary.
  108. static size_t calc_aligned_byte_size(size_t size);
  109. };
  110. template <class T>
  111. class BasicArrayNull : public BasicArray<T> {
  112. public:
  113. using BasicArray<T>::BasicArray;
  114. static util::Optional<T> default_value(bool nullable)
  115. {
  116. return nullable ? util::Optional<T>() : util::Optional<T>(0.0);
  117. }
  118. void set(size_t ndx, util::Optional<T> value)
  119. {
  120. if (value) {
  121. BasicArray<T>::set(ndx, *value);
  122. }
  123. else {
  124. BasicArray<T>::set(ndx, null::get_null_float<T>());
  125. }
  126. }
  127. void add(util::Optional<T> value)
  128. {
  129. if (value) {
  130. BasicArray<T>::add(*value);
  131. }
  132. else {
  133. BasicArray<T>::add(null::get_null_float<T>());
  134. }
  135. }
  136. void insert(size_t ndx, util::Optional<T> value)
  137. {
  138. if (value) {
  139. BasicArray<T>::insert(ndx, *value);
  140. }
  141. else {
  142. BasicArray<T>::insert(ndx, null::get_null_float<T>());
  143. }
  144. }
  145. void set_null(size_t ndx)
  146. {
  147. // FIXME: This assumes BasicArray will only ever be instantiated for float-like T.
  148. set(ndx, null::get_null_float<T>());
  149. }
  150. util::Optional<T> get(size_t ndx) const noexcept
  151. {
  152. T val = BasicArray<T>::get(ndx);
  153. return null::is_null_float(val) ? util::none : util::make_optional(val);
  154. }
  155. Mixed get_any(size_t ndx) const override
  156. {
  157. return Mixed(get(ndx));
  158. }
  159. size_t find_first(util::Optional<T> value, size_t begin = 0, size_t end = npos) const
  160. {
  161. if (value) {
  162. return BasicArray<T>::find_first(*value, begin, end);
  163. }
  164. else {
  165. return find_first_null(begin, end);
  166. }
  167. }
  168. void find_all(IntegerColumn* result, util::Optional<T> value, size_t add_offset = 0, size_t begin = 0,
  169. size_t end = npos) const
  170. {
  171. if (value) {
  172. return BasicArray<T>::find_all(result, *value, add_offset, begin, end);
  173. }
  174. else {
  175. return find_all_null(result, add_offset, begin, end);
  176. }
  177. }
  178. size_t find_first_null(size_t begin = 0, size_t end = npos) const;
  179. void find_all_null(IntegerColumn* result, size_t add_offset = 0, size_t begin = 0, size_t end = npos) const;
  180. };
  181. // Class typedefs for BasicArray's: ArrayFloat and ArrayDouble
  182. typedef BasicArray<float> ArrayFloat;
  183. typedef BasicArray<double> ArrayDouble;
  184. typedef BasicArrayNull<float> ArrayFloatNull;
  185. typedef BasicArrayNull<double> ArrayDoubleNull;
  186. } // namespace realm
  187. #include <realm/array_basic_tpl.hpp>
  188. #endif // REALM_ARRAY_BASIC_HPP