column_binary.hpp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_COLUMN_BINARY_HPP
  19. #define REALM_COLUMN_BINARY_HPP
  20. #include <realm/bplustree.hpp>
  21. #include <realm/array_binary.hpp>
  22. #include <realm/array_blobs_small.hpp>
  23. #include <realm/array_blobs_big.hpp>
  24. namespace realm {
  25. class BinaryColumn : public BPlusTree<BinaryData> {
  26. public:
  27. using BPlusTree::BPlusTree;
  28. BinaryData get_at(size_t ndx, size_t& pos) const noexcept;
  29. };
  30. class BinaryIterator {
  31. public:
  32. BinaryIterator()
  33. {
  34. }
  35. BinaryIterator(BinaryData binary)
  36. : m_binary(binary)
  37. {
  38. }
  39. BinaryIterator(const BinaryColumn* col, size_t ndx)
  40. : m_binary_col(col)
  41. , m_ndx(ndx)
  42. {
  43. REALM_ASSERT(col);
  44. }
  45. BinaryData get_next() noexcept
  46. {
  47. if (!m_end_of_data) {
  48. if (m_binary_col) {
  49. BinaryData ret = m_binary_col->get_at(m_ndx, m_pos);
  50. m_end_of_data = (m_pos == 0);
  51. return ret;
  52. }
  53. else if (!m_binary.is_null()) {
  54. m_end_of_data = true;
  55. return m_binary;
  56. }
  57. }
  58. return {};
  59. }
  60. BinaryData get_only() const noexcept
  61. {
  62. REALM_ASSERT(m_binary);
  63. return m_binary;
  64. }
  65. private:
  66. bool m_end_of_data = false;
  67. const BinaryColumn* m_binary_col = nullptr;
  68. size_t m_ndx = 0;
  69. size_t m_pos = 0;
  70. BinaryData m_binary;
  71. };
  72. } // namespace realm
  73. #endif // REALM_COLUMN_BINARY_HPP