Blame view

Pods/Realm/include/core/realm/array_backlink.hpp 2.36 KB
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  /*************************************************************************
   *
   * Copyright 2016 Realm Inc.
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   * http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   **************************************************************************/
  
  #ifndef REALM_ARRAY_BACKLINK_HPP
  #define REALM_ARRAY_BACKLINK_HPP
  
  #include <realm/cluster.hpp>
  
  namespace realm {
  class ArrayBacklink : public ArrayPayload, private Array {
  public:
      using Array::Array;
      using Array::init_from_parent;
      using Array::copy_on_write;
      using Array::update_parent;
      using Array::get_ref;
      using Array::size;
  
      static int64_t default_value(bool)
      {
          return 0;
      }
  
      void init_from_ref(ref_type ref) noexcept override
      {
          Array::init_from_ref(ref);
      }
      void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
      {
          Array::set_parent(parent, ndx_in_parent);
      }
      void create()
      {
          Array::create(type_HasRefs);
      }
  
      void insert(size_t ndx, int64_t val)
      {
          Array::insert(ndx, val);
      }
  
      int64_t get(size_t ndx) const
      {
          return Array::get(ndx);
      }
      Mixed get_any(size_t ndx) const override
      {
          REALM_ASSERT(false);
          return Mixed(get(ndx));
      }
      void add(int64_t val)
      {
          Array::add(val);
      }
  
      // nullify forward links corresponding to any backward links at index 'ndx'
      void nullify_fwd_links(size_t ndx, CascadeState& state);
      void add(size_t ndx, ObjKey key);
      bool remove(size_t ndx, ObjKey key);
      void erase(size_t ndx);
      size_t get_backlink_count(size_t ndx) const;
      ObjKey get_backlink(size_t ndx, size_t index) const;
      void move(ArrayBacklink& dst, size_t ndx)
      {
          Array::move(dst, ndx);
      }
      void clear()
      {
          Array::truncate_and_destroy_children(0);
      }
      void verify() const;
  };
  }
  
  #endif /* SRC_REALM_ARRAY_KEY_HPP_ */