array_key.hpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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_KEY_HPP
  19. #define REALM_ARRAY_KEY_HPP
  20. #include <realm/array.hpp>
  21. #include <realm/cluster.hpp>
  22. #include <realm/impl/destroy_guard.hpp>
  23. namespace realm {
  24. // If this class is used directly in a cluster leaf, the links are stored as the
  25. // link value +1 in order to represent the null_key (-1) as 0. If the class is used
  26. // in BPlusTree<ObjKey> class, the values should not be adjusted.
  27. template <int adj>
  28. class ArrayKeyBase : public ArrayPayload, private Array {
  29. public:
  30. using value_type = ObjKey;
  31. using Array::is_attached;
  32. using Array::init_from_mem;
  33. using Array::init_from_parent;
  34. using Array::update_parent;
  35. using Array::get_ref;
  36. using Array::size;
  37. using Array::erase;
  38. using Array::clear;
  39. using Array::destroy;
  40. ArrayKeyBase(Allocator& allocator)
  41. : Array(allocator)
  42. {
  43. }
  44. static ObjKey default_value(bool)
  45. {
  46. return {};
  47. }
  48. void init_from_ref(ref_type ref) noexcept override
  49. {
  50. Array::init_from_ref(ref);
  51. }
  52. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  53. {
  54. Array::set_parent(parent, ndx_in_parent);
  55. }
  56. void create()
  57. {
  58. Array::create(type_Normal);
  59. }
  60. void add(ObjKey value)
  61. {
  62. Array::add(value.value + adj);
  63. }
  64. void set(size_t ndx, ObjKey value)
  65. {
  66. Array::set(ndx, value.value + adj);
  67. }
  68. void set_null(size_t ndx)
  69. {
  70. Array::set(ndx, 0);
  71. }
  72. void insert(size_t ndx, ObjKey value)
  73. {
  74. Array::insert(ndx, value.value + adj);
  75. }
  76. ObjKey get(size_t ndx) const
  77. {
  78. return ObjKey{Array::get(ndx) - adj};
  79. }
  80. Mixed get_any(size_t ndx) const override
  81. {
  82. return Mixed(get(ndx));
  83. }
  84. bool is_null(size_t ndx) const
  85. {
  86. ObjKey key = get(ndx);
  87. return !key || key.is_unresolved();
  88. }
  89. void move(ArrayKeyBase& dst, size_t ndx)
  90. {
  91. Array::move(dst, ndx);
  92. }
  93. size_t find_first(ObjKey value, size_t begin, size_t end) const noexcept
  94. {
  95. return Array::find_first(value.value + adj, begin, end);
  96. }
  97. void nullify(ObjKey key)
  98. {
  99. size_t begin = find_first(key, 0, Array::size());
  100. // There must be one
  101. REALM_ASSERT(begin != realm::npos);
  102. Array::erase(begin);
  103. }
  104. void verify() const;
  105. using Array::get_as_ref;
  106. };
  107. class ArrayKey : public ArrayKeyBase<1> {
  108. public:
  109. using ArrayKeyBase::ArrayKeyBase;
  110. };
  111. class ArrayKeyNonNullable : public ArrayKeyBase<0> {
  112. public:
  113. using ArrayKeyBase::ArrayKeyBase;
  114. };
  115. }
  116. #endif /* SRC_REALM_ARRAY_KEY_HPP_ */