array_blob.hpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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_BLOB_HPP
  19. #define REALM_ARRAY_BLOB_HPP
  20. #include <realm/array.hpp>
  21. namespace realm {
  22. class ArrayBlob : public Array {
  23. public:
  24. static constexpr size_t max_binary_size = 0xFFFFF8 - Array::header_size;
  25. explicit ArrayBlob(Allocator&) noexcept;
  26. ~ArrayBlob() noexcept override
  27. {
  28. }
  29. // Disable copying, this is not allowed.
  30. ArrayBlob& operator=(const ArrayBlob&) = delete;
  31. ArrayBlob(const ArrayBlob&) = delete;
  32. const char* get(size_t index) const noexcept;
  33. BinaryData get_at(size_t& pos) const noexcept;
  34. bool is_null(size_t index) const noexcept;
  35. ref_type add(const char* data, size_t data_size, bool add_zero_term = false);
  36. void insert(size_t pos, const char* data, size_t data_size, bool add_zero_term = false);
  37. ref_type replace(size_t begin, size_t end, const char* data, size_t data_size, bool add_zero_term = false);
  38. void erase(size_t begin, size_t end);
  39. /// Get the specified element without the cost of constructing an
  40. /// array instance. If an array instance is already available, or
  41. /// you need to get multiple values, then this method will be
  42. /// slower.
  43. static const char* get(const char* header, size_t index) noexcept;
  44. /// Create a new empty blob (binary) array and attach this
  45. /// accessor to it. This does not modify the parent reference
  46. /// information of this accessor.
  47. ///
  48. /// Note that the caller assumes ownership of the allocated
  49. /// underlying node. It is not owned by the accessor.
  50. void create();
  51. /// Construct a blob of the specified size and return just the
  52. /// reference to the underlying memory. All bytes will be
  53. /// initialized to zero.
  54. static MemRef create_array(size_t init_size, Allocator&);
  55. void verify() const;
  56. private:
  57. size_t calc_byte_len(size_t for_size, size_t width) const override;
  58. size_t calc_item_count(size_t bytes, size_t width) const noexcept override;
  59. };
  60. // Implementation:
  61. // Creates new array (but invalid, call init_from_ref() to init)
  62. inline ArrayBlob::ArrayBlob(Allocator& allocator) noexcept
  63. : Array(allocator)
  64. {
  65. }
  66. inline bool ArrayBlob::is_null(size_t index) const noexcept
  67. {
  68. return (get(index) == nullptr);
  69. }
  70. inline const char* ArrayBlob::get(size_t index) const noexcept
  71. {
  72. return m_data + index;
  73. }
  74. inline ref_type ArrayBlob::add(const char* data, size_t data_size, bool add_zero_term)
  75. {
  76. return replace(m_size, m_size, data, data_size, add_zero_term);
  77. }
  78. inline void ArrayBlob::insert(size_t pos, const char* data, size_t data_size, bool add_zero_term)
  79. {
  80. replace(pos, pos, data, data_size, add_zero_term);
  81. }
  82. inline void ArrayBlob::erase(size_t begin, size_t end)
  83. {
  84. const char* data = nullptr;
  85. size_t data_size = 0;
  86. replace(begin, end, data, data_size);
  87. }
  88. inline const char* ArrayBlob::get(const char* header, size_t pos) noexcept
  89. {
  90. const char* data = get_data_from_header(header);
  91. return data + pos;
  92. }
  93. inline void ArrayBlob::create()
  94. {
  95. size_t init_size = 0;
  96. MemRef mem = create_array(init_size, get_alloc()); // Throws
  97. init_from_mem(mem);
  98. }
  99. inline MemRef ArrayBlob::create_array(size_t init_size, Allocator& allocator)
  100. {
  101. bool context_flag = false;
  102. int_fast64_t value = 0;
  103. return Array::create(type_Normal, context_flag, wtype_Ignore, init_size, value, allocator); // Throws
  104. }
  105. inline size_t ArrayBlob::calc_byte_len(size_t for_size, size_t) const
  106. {
  107. return header_size + for_size;
  108. }
  109. inline size_t ArrayBlob::calc_item_count(size_t bytes, size_t) const noexcept
  110. {
  111. return bytes - header_size;
  112. }
  113. } // namespace realm
  114. #endif // REALM_ARRAY_BLOB_HPP