array_backlink.hpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_BACKLINK_HPP
  19. #define REALM_ARRAY_BACKLINK_HPP
  20. #include <realm/cluster.hpp>
  21. namespace realm {
  22. class ArrayBacklink : public ArrayPayload, private Array {
  23. public:
  24. using Array::Array;
  25. using Array::init_from_parent;
  26. using Array::copy_on_write;
  27. using Array::update_parent;
  28. using Array::get_ref;
  29. using Array::size;
  30. static int64_t default_value(bool)
  31. {
  32. return 0;
  33. }
  34. void init_from_ref(ref_type ref) noexcept override
  35. {
  36. Array::init_from_ref(ref);
  37. }
  38. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  39. {
  40. Array::set_parent(parent, ndx_in_parent);
  41. }
  42. void create()
  43. {
  44. Array::create(type_HasRefs);
  45. }
  46. void insert(size_t ndx, int64_t val)
  47. {
  48. Array::insert(ndx, val);
  49. }
  50. int64_t get(size_t ndx) const
  51. {
  52. return Array::get(ndx);
  53. }
  54. Mixed get_any(size_t ndx) const override
  55. {
  56. REALM_ASSERT(false);
  57. return Mixed(get(ndx));
  58. }
  59. void add(int64_t val)
  60. {
  61. Array::add(val);
  62. }
  63. // nullify forward links corresponding to any backward links at index 'ndx'
  64. void nullify_fwd_links(size_t ndx, CascadeState& state);
  65. void add(size_t ndx, ObjKey key);
  66. bool remove(size_t ndx, ObjKey key);
  67. void erase(size_t ndx);
  68. size_t get_backlink_count(size_t ndx) const;
  69. ObjKey get_backlink(size_t ndx, size_t index) const;
  70. void move(ArrayBacklink& dst, size_t ndx)
  71. {
  72. Array::move(dst, ndx);
  73. }
  74. void clear()
  75. {
  76. Array::truncate_and_destroy_children(0);
  77. }
  78. void verify() const;
  79. };
  80. }
  81. #endif /* SRC_REALM_ARRAY_KEY_HPP_ */