array_blob.hpp 4.3 KB

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