column_binary.hpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. // TODO: When WriteLogCollector is removed, there is no need for this
  36. BinaryIterator(BinaryData binary)
  37. : m_binary(binary)
  38. {
  39. }
  40. BinaryIterator(const BinaryColumn* col, size_t ndx)
  41. : m_binary_col(col)
  42. , m_ndx(ndx)
  43. {
  44. }
  45. BinaryData get_next() noexcept
  46. {
  47. if (!end_of_data) {
  48. if (m_binary_col) {
  49. BinaryData ret = m_binary_col->get_at(m_ndx, m_pos);
  50. end_of_data = (m_pos == 0);
  51. return ret;
  52. }
  53. else if (!m_binary.is_null()) {
  54. end_of_data = true;
  55. return m_binary;
  56. }
  57. }
  58. return {};
  59. }
  60. private:
  61. bool end_of_data = false;
  62. const BinaryColumn* m_binary_col = nullptr;
  63. size_t m_ndx = 0;
  64. size_t m_pos = 0;
  65. BinaryData m_binary;
  66. };
  67. } // namespace realm
  68. #endif // REALM_COLUMN_BINARY_HPP