chunked_binary.hpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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_NOINST_CHUNKED_BINARY_HPP
  19. #define REALM_NOINST_CHUNKED_BINARY_HPP
  20. #include <realm/binary_data.hpp>
  21. #include <realm/column_binary.hpp>
  22. #include <realm/table.hpp>
  23. #include <realm/util/buffer_stream.hpp>
  24. #include <realm/impl/input_stream.hpp>
  25. namespace realm {
  26. /// ChunkedBinaryData manages a vector of BinaryData. It is used to facilitate
  27. /// extracting large binaries from binary columns and tables.
  28. class ChunkedBinaryData {
  29. public:
  30. ChunkedBinaryData() {}
  31. ChunkedBinaryData(const BinaryData& bd)
  32. : m_begin{bd}
  33. {
  34. }
  35. ChunkedBinaryData(const BinaryIterator& bd)
  36. : m_begin{bd}
  37. {
  38. }
  39. ChunkedBinaryData(const BinaryColumn& col, size_t index)
  40. : m_begin{&col, index}
  41. {
  42. }
  43. /// size() returns the number of bytes in the chunked binary.
  44. /// FIXME: This operation is O(n).
  45. size_t size() const noexcept;
  46. /// is_null returns true if the chunked binary has zero chunks or if
  47. /// the first chunk points to the nullptr.
  48. bool is_null() const;
  49. /// FIXME: O(n)
  50. char operator[](size_t index) const;
  51. std::string hex_dump(const char* separator = " ", int min_digits = -1) const;
  52. void write_to(util::ResettableExpandableBufferOutputStream& out) const;
  53. /// copy_to() copies the chunked binary data to \a buffer of size
  54. /// \a buffer_size starting at \a offset in the ChunkedBinary.
  55. /// copy_to() copies until the end of \a buffer or the end of
  56. /// the ChunkedBinary whichever comes first.
  57. /// copy_to() returns the number of copied bytes.
  58. size_t copy_to(char* buffer, size_t buffer_size, size_t offset) const;
  59. /// copy_to() allocates a buffer of size() in \a dest and
  60. /// copies the chunked binary data to \a dest.
  61. size_t copy_to(std::unique_ptr<char[]>& dest) const;
  62. /// get_first_chunk() is used in situations
  63. /// where it is known that there is exactly one
  64. /// chunk. This is the case if the ChunkedBinary
  65. /// has been constructed from BinaryData.
  66. BinaryData get_first_chunk() const;
  67. private:
  68. BinaryIterator m_begin;
  69. friend class ChunkedBinaryInputStream;
  70. };
  71. class ChunkedBinaryInputStream : public _impl::NoCopyInputStream {
  72. public:
  73. explicit ChunkedBinaryInputStream(const ChunkedBinaryData& chunks)
  74. : m_it(chunks.m_begin)
  75. {
  76. }
  77. bool next_block(const char*& begin, const char*& end) override
  78. {
  79. BinaryData block = m_it.get_next();
  80. begin = block.data();
  81. end = begin + block.size();
  82. return begin != end;
  83. }
  84. private:
  85. BinaryIterator m_it;
  86. };
  87. } // namespace realm
  88. #endif // REALM_NOINST_CHUNKED_BINARY_HPP