chunked_binary.hpp 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.hpp>
  24. #include <realm/util/buffer_stream.hpp>
  25. #include <realm/util/input_stream.hpp>
  26. namespace realm {
  27. /// ChunkedBinaryData manages a vector of BinaryData. It is used to facilitate
  28. /// extracting large binaries from binary columns and tables.
  29. class ChunkedBinaryData {
  30. public:
  31. ChunkedBinaryData() {}
  32. ChunkedBinaryData(const BinaryData& bd)
  33. : m_begin{bd}
  34. {
  35. }
  36. ChunkedBinaryData(const BinaryColumn& col, size_t index)
  37. : m_begin{&col, index}
  38. {
  39. }
  40. /// size() returns the number of bytes in the chunked binary.
  41. /// FIXME: This operation is O(n).
  42. size_t size() const noexcept;
  43. /// is_null returns true if the chunked binary has zero chunks or if
  44. /// the first chunk points to the nullptr.
  45. bool is_null() const;
  46. /// FIXME: O(n)
  47. char operator[](size_t index) const;
  48. std::string hex_dump(const char* separator = " ", int min_digits = -1) const;
  49. void write_to(util::ResettableExpandableBufferOutputStream& out) const;
  50. /// copy_to() clears the target buffer and then copies the chunked binary
  51. /// data to it.
  52. void copy_to(util::AppendBuffer<char>& dest) const;
  53. /// get_first_chunk() is used in situations
  54. /// where it is known that there is exactly one
  55. /// chunk. This is the case if the ChunkedBinary
  56. /// has been constructed from BinaryData.
  57. BinaryData get_first_chunk() const;
  58. BinaryIterator iterator() const noexcept;
  59. private:
  60. BinaryIterator m_begin;
  61. };
  62. class ChunkedBinaryInputStream : public util::NoCopyInputStream {
  63. public:
  64. explicit ChunkedBinaryInputStream(const ChunkedBinaryData& chunks)
  65. : m_it(chunks.iterator())
  66. {
  67. }
  68. util::Span<const char> next_block() override
  69. {
  70. return m_it.get_next();
  71. }
  72. private:
  73. BinaryIterator m_it;
  74. };
  75. } // namespace realm
  76. #endif // REALM_NOINST_CHUNKED_BINARY_HPP