array_binary.hpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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_BINARY_HPP
  19. #define REALM_ARRAY_BINARY_HPP
  20. #include <realm/array_blobs_small.hpp>
  21. #include <realm/array_blobs_big.hpp>
  22. namespace realm {
  23. class ArrayBinary : public ArrayPayload {
  24. public:
  25. using value_type = BinaryData;
  26. explicit ArrayBinary(Allocator&);
  27. static BinaryData default_value(bool nullable)
  28. {
  29. return nullable ? BinaryData{} : BinaryData{"", 0};
  30. }
  31. void create();
  32. ref_type get_ref() const
  33. {
  34. return m_arr->get_ref();
  35. }
  36. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  37. {
  38. m_arr->set_parent(parent, ndx_in_parent);
  39. }
  40. void update_parent()
  41. {
  42. m_arr->update_parent();
  43. }
  44. void init_from_mem(MemRef mem) noexcept;
  45. void init_from_ref(ref_type ref) noexcept override
  46. {
  47. init_from_mem(MemRef(m_alloc.translate(ref), ref, m_alloc));
  48. }
  49. void init_from_parent();
  50. size_t size() const;
  51. void add(BinaryData value);
  52. void set(size_t ndx, BinaryData value);
  53. void set_null(size_t ndx)
  54. {
  55. set(ndx, BinaryData{});
  56. }
  57. void insert(size_t ndx, BinaryData value);
  58. BinaryData get(size_t ndx) const;
  59. BinaryData get_at(size_t ndx, size_t& pos) const;
  60. Mixed get_any(size_t ndx) const override;
  61. bool is_null(size_t ndx) const;
  62. void erase(size_t ndx);
  63. void move(ArrayBinary& dst, size_t ndx);
  64. void clear();
  65. size_t find_first(BinaryData value, size_t begin, size_t end) const noexcept;
  66. /// Get the specified element without the cost of constructing an
  67. /// array instance. If an array instance is already available, or
  68. /// you need to get multiple values, then this method will be
  69. /// slower.
  70. static BinaryData get(const char* header, size_t ndx, Allocator& alloc) noexcept;
  71. void verify() const;
  72. private:
  73. static constexpr size_t small_blob_max_size = 64;
  74. union Storage {
  75. std::aligned_storage<sizeof(ArraySmallBlobs), alignof(ArraySmallBlobs)>::type m_small_blobs;
  76. std::aligned_storage<sizeof(ArrayBigBlobs), alignof(ArrayBigBlobs)>::type m_big_blobs;
  77. };
  78. bool m_is_big = false;
  79. Allocator& m_alloc;
  80. Storage m_storage;
  81. Array* m_arr;
  82. bool upgrade_leaf(size_t value_size);
  83. };
  84. inline BinaryData ArrayBinary::get(const char* header, size_t ndx, Allocator& alloc) noexcept
  85. {
  86. bool is_big = Array::get_context_flag_from_header(header);
  87. if (!is_big) {
  88. return ArraySmallBlobs::get(header, ndx, alloc);
  89. }
  90. else {
  91. return ArrayBigBlobs::get(header, ndx, alloc);
  92. }
  93. }
  94. }
  95. #endif /* SRC_REALM_ARRAY_BINARY_HPP_ */