Realm C++ SDK Versão C++ v2.2.0

object.hpp

1
2//
3// Autores 2024 Realm Inc.
4//
5// Licenciado sob a Licença Apache, Versão 2.0 (a "Licença");
6// você não pode usar este arquivo, exceto em conformidade com a Licença.
7// Você pode obter uma cópia da Licença em
8//
9// http://www.apache.org/license/LICENSE-2.0
10//
11// A menos que exigido pela lei aplicável ou acordado por escrito, o software
12// distribuído sob a Licença é distribuído "Como está",
13// sem garantias ou condições de qualquer tipo, Express ou implícitas.
14// Consulte a Licença para obter as permissões específicas de domínio do idioma e
15// limitações da Licença.
16//
18
19#ifndef CPPREALM_BRIDGE_OBJECT_HPP
20#define CPPREALM_BRIDGE_OBJECT_HPP
21
22#include <any>
23#include <functional>
24#include <memory>
25#include <unordered_map>
26
27#include <cprealm/internal/bridge/utils.hpp>
28
29namespace Realm {
30 classe Objeto;
31 classe IndexSet;
32 classe CollectionChangeCallback;
33 struct CollectionChangeSet;
34 struct NotificationToken;
35}
36namespace realm::internal::bridge {
37 domínio estruturado ;
38 estrutura obj;
39 estruturado obj_link;
40 estrutura object_schema;
41 lista de estruturas ;
42 struct col_key;
43 dicionário estruturado ;
44
45 estrutura, estrutura notification_token {
47 notification_token(const notification_token e outros) = excluir;
48 notification_token &operator=(const notification_token & outros) = excluir;
50 notificação_token &operator=(notificação_token &&outro);
51 notification_token(NotificationToken&&);
53 operador NotificationToken() const;
54 void unregister();
55 privado:
56#ifdef CPPREALM_HVE_GENERATED_BRIDGE_TYPes
57 storage::NotificationToken m_token[1];
58#else
59 std::shared_ptr<NotificationToken> m_token;
60#endif
61 };
62
63 estrutura, estrutura index_set {
64 index_set(); //NOLINT(google-explicit-constructor)
65 index_set( index_setconst e outros) ;
66 index_set& operator=(index_setconst & outros);
67 index_set(index_set&& outro);
68 index_set& operator=(index_set&& other);
69 ~index_set();
70 index_set(const IndexSet&); //NOLINT(google-explicit-constructor)
71 [[nodiscard]] bool empty() const;
72 estrutura, estrutura index_iterable_adaptor;
73 // Um iterador sobre os índices individuais no conjunto em vez de os intervalos
75 público:
76 index_iterator() = padrão;
77 index_iterator( index_iteratorconst e outros) ;
78 index_iterator& operator=(index_iteratorconst & outros);
80 index_iterator& operator=(index_iterator&& other);
82 operador size_t *() const noexceto;
83 bool operator==(index_iterator const& it) const noexceto;
84 operador de bool !=(index_iterator const& it) const noexceto;
85
86 index_iterator& operator++() noexceto;
87
88 operador index_iterator ++(int) noexceto;
89
90 privado:
91 amigo estrutura, estrutura index_iterable_adaptor;
92#ifdef CPPREALM_HVE_GENERATED_BRIDGE_TYPes
93 armazenamento::IndexSet_IndexIterator m_iterator[1];
94#else
95 std::shared_ptr<std::any> m_iterator;
96#endif
97 };
98
99 estrutura, estrutura index_iterable_adaptor {
100 index_iterable_adaptor() = padrão;
102 index_iterable_adaptor& operator=(const index_iterable_adaptor& outros);
107
108 const_iterator begin() const noexceto;
109 end () const noexceto;
110 privado:
111 amigo estrutura, estrutura index_set;
112#ifdef CPPREALM_HVE_GENERATED_BRIDGE_TYPes
113 armazenamento::IndexSet_IndexIteratableAdaptor m_index_iterable_adaptor[1];
114#else
115 std::shared_ptr<std::any> m_index_iterable_adaptor;
116#endif
117 };
118 index_iterable_adaptor as_indexes() const;
119 privado:
120#ifdef CPPREALM_HVE_GENERATED_BRIDGE_TYPes
121 storage::IndexSet m_idx_set[1];
122#else
123 std::shared_ptr<IndexSet> m_idx_set;
124#endif
125 };
126 estrutura, estrutura collection_change_set {
127 collection_change_set(); //NOLINT(google-explicit-constructor)
129 collection_change_set& operator=(const collection_change_set& other);
133 collection_change_set(const CollectionChangeSet&);
134 operador CollectionChangeSet() const;
135 [[nodiscard]] index_set deletetions () const;
136 [[nodiscard]] index_set modifications() const;
137 [[nodiscard]] index_set inserts () const;
138 [[nodiscard]] std::unordered_map<int64_t, index_set> column() const;
139 [[nodiscard]] bool empty() const;
140 [[nodiscard]] bool collection_root_was_deleted() const;
141 privado:
142#ifdef CPPREALM_HVE_GENERATED_BRIDGE_TYPes
143 armazenamento::CollectionChangeSet m_change_set[1];
144#else
145 std::shared_ptr<CollectionChangeSet> m_change_set;
146#endif
147 };
148 estrutura, estrutura collection_change_callback {
149 virtual ~collection_change_callback() {}
150 virtual vazio antes(collection_change_set const& c) = 0;
151 virtual null after(collection_change_set const& c) = 0;
152 };
153
154 estrutura, estrutura objeto {
155 objeto(); //NOLINT(google-explicit-constructor)
156 objeto(objeto conste outro);
157 object& operator=(objeto const& other);
158 objeto(objeto&& outro);
159 objeto& operator=(objeto&& outro);
160 ~ objeto();
161 objeto( objeto const &); //NOLINT(google-explicit-constructor)
162 objeto(const realm &realm, const obj &obj); //NOLINT(google-explicit-constructor)
163 objeto(const realm &realm, const obj_link& link);
164
165 operador Object() const; //NOLINT(google-explicit-constructor)
166
167 [[nodiscard]] obj get_obj() const;
168
169 [[nodiscard]] Realm get_realm() const;
170
171 [[nodiscard]] bool is_valid() const;
172
173 notification_token add_notification_callback(std::shared_ptr<collection_change_callback>&& cb);
174
175 [[nodiscard]] object_schema get_object_schema() const;
176
177 [[nodiscard]] list get_list(const col_key&) const;
178 [[nodiscard]] dicionário get_Dictionary(const col_key&) const;
179 privado:
180#ifdef CPPREALM_HVE_GENERATED_BRIDGE_TYPes
181 armazenamento::Object m_object[1];
182#else
183 std::shared_ptr<Object> m_object;
184#endif
185 };
186}
187
188#endif //CPPrealm_BRIDGE_OBJECT_HPP
Definição: col_key.hpp:28
Definição: dictionary.hpp:138
Definição: object.hpp:63
Definição: list.hpp:49
Definição: obj.hpp:123
Definição: object_schema.hpp:33
Definição: object.hpp:154
Definição: realm.hpp:67