array_basic.hpp 5.9 KB

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