array_decimal128.hpp 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*************************************************************************
  2. *
  3. * Copyright 2019 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_DECIMAL128_HPP
  19. #define REALM_ARRAY_DECIMAL128_HPP
  20. #include <realm/array.hpp>
  21. #include <realm/decimal128.hpp>
  22. namespace realm {
  23. class ArrayDecimal128 : public ArrayPayload, private Array {
  24. public:
  25. using value_type = Decimal128;
  26. using Array::Array;
  27. using Array::destroy;
  28. using Array::get_ref;
  29. using Array::init_from_mem;
  30. using Array::init_from_parent;
  31. using Array::size;
  32. using Array::truncate;
  33. using Array::update_parent;
  34. using Array::verify;
  35. static Decimal128 default_value(bool nullable)
  36. {
  37. return nullable ? Decimal128(realm::null()) : Decimal128(0);
  38. }
  39. void create()
  40. {
  41. auto mem = Array::create(type_Normal, false, wtype_Multiply, 0, 0, m_alloc); // Throws
  42. Array::init_from_mem(mem);
  43. }
  44. void init_from_ref(ref_type ref) noexcept override
  45. {
  46. Array::init_from_ref(ref);
  47. }
  48. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  49. {
  50. Array::set_parent(parent, ndx_in_parent);
  51. }
  52. bool is_null(size_t ndx) const
  53. {
  54. return this->get_width() == 0 || get(ndx).is_null();
  55. }
  56. Decimal128 get(size_t ndx) const
  57. {
  58. REALM_ASSERT(ndx < m_size);
  59. auto values = reinterpret_cast<Decimal128*>(this->m_data);
  60. return values[ndx];
  61. }
  62. Mixed get_any(size_t ndx) const override;
  63. void add(Decimal128 value)
  64. {
  65. insert(size(), value);
  66. }
  67. void set(size_t ndx, Decimal128 value);
  68. void set_null(size_t ndx)
  69. {
  70. set(ndx, Decimal128(realm::null()));
  71. }
  72. void insert(size_t ndx, Decimal128 value);
  73. void erase(size_t ndx);
  74. void move(ArrayDecimal128& dst, size_t ndx);
  75. void clear()
  76. {
  77. truncate(0);
  78. }
  79. size_t find_first(Decimal128 value, size_t begin = 0, size_t end = npos) const noexcept;
  80. protected:
  81. size_t calc_byte_len(size_t num_items, size_t) const override
  82. {
  83. return num_items * sizeof(Decimal128) + header_size;
  84. }
  85. };
  86. } // namespace realm
  87. #endif /* REALM_ARRAY_DECIMAL128_HPP */