array_unsigned.hpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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_UNSIGNED_HPP
  19. #define REALM_ARRAY_UNSIGNED_HPP
  20. #include <realm/node.hpp>
  21. namespace realm {
  22. // Array holding unsigned values only
  23. class ArrayUnsigned : public Node {
  24. public:
  25. ArrayUnsigned(Allocator& allocator)
  26. : Node(allocator)
  27. {
  28. }
  29. // Will create an uninitialized array of size 'initial_size'
  30. // Has a width big enough to hold values smaller than 'ubound_value'
  31. void create(size_t initial_size, uint64_t ubound_value);
  32. void init_from_ref(ref_type ref) noexcept
  33. {
  34. REALM_ASSERT_DEBUG(ref);
  35. char* header = m_alloc.translate(ref);
  36. init_from_mem(MemRef(header, ref, m_alloc));
  37. }
  38. void update_from_parent() noexcept;
  39. size_t lower_bound(uint64_t value) const noexcept;
  40. size_t upper_bound(uint64_t value) const noexcept;
  41. void add(uint64_t value)
  42. {
  43. insert(m_size, value);
  44. }
  45. // insert value at index (moving successive elements 1 position forwards)
  46. void insert(size_t ndx, uint64_t value);
  47. // delete value at index
  48. void erase(size_t ndx);
  49. // return value at index
  50. uint64_t get(size_t index) const;
  51. // return tagged value at index
  52. // override value at index
  53. void set(size_t ndx, uint64_t value);
  54. void adjust(size_t begin, size_t end, int64_t diff)
  55. {
  56. if (diff != 0) {
  57. // FIXME: Should be optimized
  58. for (size_t i = begin; i < end; ++i)
  59. adjust(i, diff); // Throws
  60. }
  61. }
  62. void truncate(size_t ndx);
  63. /// The meaning of 'width' depends on the context in which this
  64. /// array is used.
  65. size_t get_width() const noexcept
  66. {
  67. return m_width;
  68. }
  69. private:
  70. uint_least8_t m_width = 0; // Size of an element (meaning depend on type of array).
  71. uint64_t m_ubound; // max number that can be stored with current m_width
  72. void init_from_mem(MemRef mem) noexcept
  73. {
  74. Node::init_from_mem(mem);
  75. set_width(get_width_from_header(get_header()));
  76. }
  77. void adjust(size_t ndx, int64_t diff)
  78. {
  79. if (diff != 0) {
  80. set(ndx, get(ndx) + diff); // Throws
  81. }
  82. }
  83. void alloc(size_t init_size, size_t new_width)
  84. {
  85. Node::alloc(init_size, new_width);
  86. set_width(uint8_t(new_width));
  87. }
  88. void set_width(uint8_t width);
  89. uint8_t bit_width(uint64_t value);
  90. void _set(size_t ndx, uint8_t width, uint64_t value);
  91. uint64_t _get(size_t ndx, uint8_t width) const;
  92. };
  93. } // namespace realm
  94. #endif /* REALM_ARRAY_UNSIGNED_HPP */