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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
// Protocol Buffers - Google's data interchange format
// Copyright 2024 Google LLC. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
mod sys {
pub use super::super::super::*;
}
use core::ptr::NonNull;
use sys::base::string_view::StringView;
use sys::mem::arena::RawArena;
use sys::message::array::RawArray;
use sys::message::map::RawMap;
use sys::mini_table::extension_registry::upb_ExtensionRegistry;
use sys::mini_table::mini_table::{RawMiniTable, RawMiniTableField};
use sys::opaque_pointee::opaque_pointee;
opaque_pointee!(upb_Message);
pub type RawMessage = NonNull<upb_Message>;
unsafe extern "C" {
/// # Safety
/// - `mini_table` and `arena` must be valid to deref
pub fn upb_Message_New(mini_table: RawMiniTable, arena: RawArena) -> Option<RawMessage>;
/// # Safety
/// - `m` and `mini_table` must be valid to deref
/// - `mini_table` must be the MiniTable associated with `m`
pub fn upb_Message_Clear(m: RawMessage, mini_table: RawMiniTable);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a field associated with `f`
pub fn upb_Message_ClearBaseField(m: RawMessage, f: RawMiniTableField);
/// Copies the contents from `src` into `dst`.
///
/// Returns false if the copy failed due to an allocation failure. If this returns false, `dst`
/// is in an indeterminate state. Returning false should be extremely rare under normal
/// circumstances unless a fixed sized arena is used.
///
/// # Safety
/// - All four arguments must be valid to deref
/// - `mini_table` must be the MiniTable associated with both `dst` and
/// `src`
pub fn upb_Message_DeepCopy(
dst: RawMessage,
src: RawMessage,
mini_table: RawMiniTable,
arena: RawArena,
) -> bool;
/// # Safety
/// - All three arguments must be valid to deref
/// - `mini_table` must be the MiniTable associated with `m`
pub fn upb_Message_DeepClone(
m: RawMessage,
mini_table: RawMiniTable,
arena: RawArena,
) -> Option<RawMessage>;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a bool field associated with `m`
pub fn upb_Message_GetBool(m: RawMessage, f: RawMiniTableField, default_val: bool) -> bool;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an i32 field associated with `m`
pub fn upb_Message_GetInt32(m: RawMessage, f: RawMiniTableField, default_val: i32) -> i32;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an i64 field associated with `m`
pub fn upb_Message_GetInt64(m: RawMessage, f: RawMiniTableField, default_val: i64) -> i64;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a u32 field associated with `m`
pub fn upb_Message_GetUInt32(m: RawMessage, f: RawMiniTableField, default_val: u32) -> u32;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a u64 field associated with `m`
pub fn upb_Message_GetUInt64(m: RawMessage, f: RawMiniTableField, default_val: u64) -> u64;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a f32 field associated with `m`
pub fn upb_Message_GetFloat(m: RawMessage, f: RawMiniTableField, default_val: f32) -> f32;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a f64 field associated with `m`
pub fn upb_Message_GetDouble(m: RawMessage, f: RawMiniTableField, default_val: f64) -> f64;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a string or bytes field associated with `m`
pub fn upb_Message_GetString(
m: RawMessage,
f: RawMiniTableField,
default_val: StringView,
) -> StringView;
/// Gets the const upb_Message* that is assigned to the field.
///
/// This may return None which must be treated the same as if it returned
/// Some of a valid RawMessage that is was the default message instance.
///
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a message-typed field associated with `m`
pub fn upb_Message_GetMessage(m: RawMessage, f: RawMiniTableField) -> Option<RawMessage>;
/// Gets or creates a mutable upb_Message* assigned to the corresponding
/// field in the message.
///
/// This will only return None if the Arena allocation fails.
///
/// # Safety
/// - All arguments must be valid to deref
/// - `mini_table` must be the MiniTable associated with `m`
/// - `f` must be a message-typed field associated with `m`
pub fn upb_Message_GetOrCreateMutableMessage(
m: RawMessage,
f: RawMiniTableField,
arena: RawArena,
) -> Option<RawMessage>;
/// Gets the const upb_Array* that is assigned to the field.
///
/// This may return None which must be treated the same as if it returned
/// Some of a valid RawArray that is empty.
///
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a repeated field associated with `m`
pub fn upb_Message_GetArray(m: RawMessage, f: RawMiniTableField) -> Option<RawArray>;
/// Gets or creates a mutable upb_Array* assigned to the corresponding field
/// in the message.
///
/// This will only return None if the Arena allocation fails.
///
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a map field associated with `m`
pub fn upb_Message_GetOrCreateMutableArray(
m: RawMessage,
f: RawMiniTableField,
arena: RawArena,
) -> Option<RawArray>;
/// Gets the const upb_Map* that is assigned to the field.
///
/// This may return None which must be treated the same as if it returned
/// Some of a valid RawMap that is empty.
///
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a map associated with `m`
pub fn upb_Message_GetMap(m: RawMessage, f: RawMiniTableField) -> Option<RawMap>;
/// Gets or creates a mutable upb_Map* assigned to the corresponding field
/// in the message.
///
/// This will only return None if the Arena allocation fails.
///
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `map_entry_mini_table` must be the MiniTable associated with `f`
/// - `f` must be a map field associated with `m`
pub fn upb_Message_GetOrCreateMutableMap(
m: RawMessage,
map_entry_mini_table: RawMiniTable,
f: RawMiniTableField,
arena: RawArena,
) -> Option<RawMap>;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `mini_table` must be the MiniTable associated with `m`
pub fn upb_Message_HasBaseField(m: RawMessage, f: RawMiniTableField) -> bool;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a field associated with `m`
/// - `val` must be a pointer to legally readable memory of the correct type
/// for the field described by `f`
pub fn upb_Message_SetBaseField(
m: RawMessage,
f: RawMiniTableField,
val: *const core::ffi::c_void,
);
/// # Safety
/// - All four arguments must be valid to deref
/// - `mini_table` must be the MiniTable associated with both `m1` and `m2`
pub fn upb_Message_IsEqual(
m1: RawMessage,
m2: RawMessage,
mini_table: RawMiniTable,
options: i32,
) -> bool;
/// # Safety
/// - `dst`, `src`, `mini_table` and `arena` must be valid to deref
/// - `extreg` must be valid to deref or nullptr
/// - `mini_table` must be the MiniTable associated with both `dst` and
/// `src`
pub fn upb_Message_MergeFrom(
dst: RawMessage,
src: RawMessage,
mini_table: RawMiniTable,
extreg: *const upb_ExtensionRegistry,
arena: RawArena,
) -> bool;
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a bool field associated with `f`
pub fn upb_Message_SetBaseFieldBool(m: RawMessage, f: RawMiniTableField, val: bool);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an i32 field associated with `m`
pub fn upb_Message_SetBaseFieldInt32(m: RawMessage, f: RawMiniTableField, val: i32);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an i64 field associated with `m`
pub fn upb_Message_SetBaseFieldInt64(m: RawMessage, f: RawMiniTableField, val: i64);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a u32 field associated with `m`
pub fn upb_Message_SetBaseFieldUInt32(m: RawMessage, f: RawMiniTableField, val: u32);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a u64 field associated with `m`
pub fn upb_Message_SetBaseFieldUInt64(m: RawMessage, f: RawMiniTableField, val: u64);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an f32 field associated with `m`
pub fn upb_Message_SetBaseFieldFloat(m: RawMessage, f: RawMiniTableField, val: f32);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an f64 field associated with `m`
pub fn upb_Message_SetBaseFieldDouble(m: RawMessage, f: RawMiniTableField, val: f64);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be an string or bytes field associated with `m`
pub fn upb_Message_SetBaseFieldString(m: RawMessage, f: RawMiniTableField, val: StringView);
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a message-typed field associated with `m`
pub fn upb_Message_SetBaseFieldMessage(m: RawMessage, f: RawMiniTableField, val: RawMessage);
/// Returns the field number of which oneof field is set, or 0 if none are.
/// `f` is any arbitrary field contained within the oneof.
///
/// # Safety
/// - `m` and `f` must be valid to deref
/// - `f` must be a field within a oneof associated with `m`
pub fn upb_Message_WhichOneofFieldNumber(m: RawMessage, f: RawMiniTableField) -> u32;
}
#[cfg(test)]
mod tests {
use super::*;
use googletest::gtest;
#[gtest]
fn assert_message_linked() {
use crate::assert_linked;
assert_linked!(upb_Message_New);
assert_linked!(upb_Message_Clear);
assert_linked!(upb_Message_ClearBaseField);
assert_linked!(upb_Message_DeepCopy);
assert_linked!(upb_Message_DeepClone);
assert_linked!(upb_Message_GetBool);
assert_linked!(upb_Message_GetInt32);
assert_linked!(upb_Message_GetInt64);
assert_linked!(upb_Message_GetUInt32);
assert_linked!(upb_Message_GetUInt64);
assert_linked!(upb_Message_GetFloat);
assert_linked!(upb_Message_GetDouble);
assert_linked!(upb_Message_GetString);
assert_linked!(upb_Message_GetMessage);
assert_linked!(upb_Message_GetOrCreateMutableMessage);
assert_linked!(upb_Message_GetArray);
assert_linked!(upb_Message_GetOrCreateMutableArray);
assert_linked!(upb_Message_GetMap);
assert_linked!(upb_Message_GetOrCreateMutableMap);
assert_linked!(upb_Message_HasBaseField);
assert_linked!(upb_Message_SetBaseField);
assert_linked!(upb_Message_IsEqual);
assert_linked!(upb_Message_MergeFrom);
assert_linked!(upb_Message_SetBaseFieldBool);
assert_linked!(upb_Message_SetBaseFieldInt32);
assert_linked!(upb_Message_SetBaseFieldInt64);
assert_linked!(upb_Message_SetBaseFieldUInt32);
assert_linked!(upb_Message_SetBaseFieldUInt64);
assert_linked!(upb_Message_SetBaseFieldFloat);
assert_linked!(upb_Message_SetBaseFieldDouble);
assert_linked!(upb_Message_SetBaseFieldString);
assert_linked!(upb_Message_SetBaseFieldMessage);
assert_linked!(upb_Message_WhichOneofFieldNumber);
}
}