blob: e55fb775de74cf6b8cd41d0fed7ea32565ff7967 [file] [log] [blame]
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07001// Ruby is still using proto3 enum semantics for proto2
Protobuf Team Bot5e8d7e52024-03-15 22:28:30 +00002#define UPB_DISABLE_CLOSED_ENUM_CHECKING
Joshua Haberman9abf6e22021-01-13 12:16:25 -08003/* Amalgamated source file */
Joshua Habermandd69a482021-05-17 22:40:33 -07004
5/*
Eric Salo8809a112022-11-21 13:01:06 -08006 * This is where we define internal portability macros used across upb.
Joshua Habermandd69a482021-05-17 22:40:33 -07007 *
Eric Salo8809a112022-11-21 13:01:06 -08008 * All of these macros are undef'd in undef.inc to avoid leaking them to users.
Joshua Habermandd69a482021-05-17 22:40:33 -07009 *
10 * The correct usage is:
11 *
Protobuf Team Bot06310352023-09-26 21:54:58 +000012 * #include "upb/foobar.h"
13 * #include "upb/baz.h"
Joshua Habermandd69a482021-05-17 22:40:33 -070014 *
15 * // MUST be last included header.
Protobuf Team Bot06310352023-09-26 21:54:58 +000016 * #include "upb/port/def.inc"
Joshua Habermandd69a482021-05-17 22:40:33 -070017 *
18 * // Code for this file.
19 * // <...>
20 *
21 * // Can be omitted for .c files, required for .h.
Protobuf Team Bot06310352023-09-26 21:54:58 +000022 * #include "upb/port/undef.inc"
Joshua Habermandd69a482021-05-17 22:40:33 -070023 *
24 * This file is private and must not be included by users!
25 */
Joshua Haberman9abf6e22021-01-13 12:16:25 -080026
27#if !((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
Mike Kruskalfd0b1a52022-10-14 16:27:22 -070028 (defined(__cplusplus) && __cplusplus >= 201402L) || \
Joshua Haberman9abf6e22021-01-13 12:16:25 -080029 (defined(_MSC_VER) && _MSC_VER >= 1900))
Mike Kruskalfd0b1a52022-10-14 16:27:22 -070030#error upb requires C99 or C++14 or MSVC >= 2015.
Joshua Haberman9abf6e22021-01-13 12:16:25 -080031#endif
32
Joshua Habermand3995ec2022-09-30 16:54:39 -070033// Portable check for GCC minimum version:
34// https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
35#if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__)
36#define UPB_GNUC_MIN(x, y) \
37 (__GNUC__ > (x) || __GNUC__ == (x) && __GNUC_MINOR__ >= (y))
38#else
39#define UPB_GNUC_MIN(x, y) 0
40#endif
41
42#include <assert.h>
43#include <setjmp.h>
44#include <stdbool.h>
Joshua Habermand3995ec2022-09-30 16:54:39 -070045#include <stdint.h>
Eric Salo8809a112022-11-21 13:01:06 -080046#include <stdio.h>
Joshua Haberman9abf6e22021-01-13 12:16:25 -080047
Adam Cozzette7d5592e2023-08-23 12:15:26 -070048#ifndef UINTPTR_MAX
49Error, UINTPTR_MAX is undefined
50#endif
51
Joshua Haberman9abf6e22021-01-13 12:16:25 -080052#if UINTPTR_MAX == 0xffffffff
53#define UPB_SIZE(size32, size64) size32
54#else
55#define UPB_SIZE(size32, size64) size64
56#endif
57
58/* If we always read/write as a consistent type to each address, this shouldn't
59 * violate aliasing.
60 */
61#define UPB_PTR_AT(msg, ofs, type) ((type*)((char*)(msg) + (ofs)))
62
Joshua Haberman9abf6e22021-01-13 12:16:25 -080063#define UPB_MAPTYPE_STRING 0
64
Eric Salo3f36a912022-12-05 14:12:25 -080065// UPB_EXPORT: always generate a public symbol.
66#if defined(__GNUC__) || defined(__clang__)
67#define UPB_EXPORT __attribute__((visibility("default"))) __attribute__((used))
68#else
69#define UPB_EXPORT
70#endif
71
72// UPB_INLINE: inline if possible, emit standalone code if required.
Joshua Haberman9abf6e22021-01-13 12:16:25 -080073#ifdef __cplusplus
74#define UPB_INLINE inline
75#elif defined (__GNUC__) || defined(__clang__)
76#define UPB_INLINE static __inline__
77#else
78#define UPB_INLINE static
79#endif
80
Eric Salo3f36a912022-12-05 14:12:25 -080081#ifdef UPB_BUILD_API
82#define UPB_API UPB_EXPORT
83#define UPB_API_INLINE UPB_EXPORT
84#else
85#define UPB_API
86#define UPB_API_INLINE UPB_INLINE
87#endif
88
Joshua Habermand3995ec2022-09-30 16:54:39 -070089#define UPB_MALLOC_ALIGN 8
Joshua Haberman9abf6e22021-01-13 12:16:25 -080090#define UPB_ALIGN_UP(size, align) (((size) + (align) - 1) / (align) * (align))
91#define UPB_ALIGN_DOWN(size, align) ((size) / (align) * (align))
Joshua Habermand3995ec2022-09-30 16:54:39 -070092#define UPB_ALIGN_MALLOC(size) UPB_ALIGN_UP(size, UPB_MALLOC_ALIGN)
Mike Kruskal232ecf42023-01-14 00:09:40 -080093#ifdef __clang__
94#define UPB_ALIGN_OF(type) _Alignof(type)
95#else
Joshua Haberman9abf6e22021-01-13 12:16:25 -080096#define UPB_ALIGN_OF(type) offsetof (struct { char c; type member; }, member)
Mike Kruskal232ecf42023-01-14 00:09:40 -080097#endif
Joshua Haberman9abf6e22021-01-13 12:16:25 -080098
Protobuf Team Bote2785502023-12-21 21:28:36 +000099#ifdef _MSC_VER
100// Some versions of our Windows compiler don't support the C11 syntax.
101#define UPB_ALIGN_AS(x) __declspec(align(x))
102#else
103#define UPB_ALIGN_AS(x) _Alignas(x)
104#endif
105
Eric Salo8809a112022-11-21 13:01:06 -0800106// Hints to the compiler about likely/unlikely branches.
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800107#if defined (__GNUC__) || defined(__clang__)
Eric Salo8809a112022-11-21 13:01:06 -0800108#define UPB_LIKELY(x) __builtin_expect((bool)(x), 1)
109#define UPB_UNLIKELY(x) __builtin_expect((bool)(x), 0)
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800110#else
111#define UPB_LIKELY(x) (x)
112#define UPB_UNLIKELY(x) (x)
113#endif
114
Eric Salo8809a112022-11-21 13:01:06 -0800115// Macros for function attributes on compilers that support them.
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800116#ifdef __GNUC__
Protobuf Team Bot1d143b52024-01-25 20:29:43 +0000117#define UPB_FORCEINLINE __inline__ __attribute__((always_inline)) static
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800118#define UPB_NOINLINE __attribute__((noinline))
119#define UPB_NORETURN __attribute__((__noreturn__))
120#define UPB_PRINTF(str, first_vararg) __attribute__((format (printf, str, first_vararg)))
121#elif defined(_MSC_VER)
122#define UPB_NOINLINE
Protobuf Team Bot1d143b52024-01-25 20:29:43 +0000123#define UPB_FORCEINLINE static
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800124#define UPB_NORETURN __declspec(noreturn)
125#define UPB_PRINTF(str, first_vararg)
126#else /* !defined(__GNUC__) */
Protobuf Team Bot1d143b52024-01-25 20:29:43 +0000127#define UPB_FORCEINLINE static
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800128#define UPB_NOINLINE
129#define UPB_NORETURN
130#define UPB_PRINTF(str, first_vararg)
131#endif
132
133#define UPB_MAX(x, y) ((x) > (y) ? (x) : (y))
134#define UPB_MIN(x, y) ((x) < (y) ? (x) : (y))
135
136#define UPB_UNUSED(var) (void)var
137
Eric Salo8809a112022-11-21 13:01:06 -0800138// UPB_ASSUME(): in release mode, we tell the compiler to assume this is true.
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800139#ifdef NDEBUG
140#ifdef __GNUC__
141#define UPB_ASSUME(expr) if (!(expr)) __builtin_unreachable()
142#elif defined _MSC_VER
143#define UPB_ASSUME(expr) if (!(expr)) __assume(0)
144#else
145#define UPB_ASSUME(expr) do {} while (false && (expr))
146#endif
147#else
148#define UPB_ASSUME(expr) assert(expr)
149#endif
150
151/* UPB_ASSERT(): in release mode, we use the expression without letting it be
152 * evaluated. This prevents "unused variable" warnings. */
153#ifdef NDEBUG
154#define UPB_ASSERT(expr) do {} while (false && (expr))
155#else
156#define UPB_ASSERT(expr) assert(expr)
157#endif
158
159#if defined(__GNUC__) || defined(__clang__)
160#define UPB_UNREACHABLE() do { assert(0); __builtin_unreachable(); } while(0)
Eric Salo10505992022-12-12 12:16:36 -0800161#elif defined(_MSC_VER)
162#define UPB_UNREACHABLE() \
163 do { \
164 assert(0); \
165 __assume(0); \
166 } while (0)
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800167#else
168#define UPB_UNREACHABLE() do { assert(0); } while(0)
169#endif
170
171/* UPB_SETJMP() / UPB_LONGJMP(): avoid setting/restoring signal mask. */
172#ifdef __APPLE__
173#define UPB_SETJMP(buf) _setjmp(buf)
174#define UPB_LONGJMP(buf, val) _longjmp(buf, val)
175#else
176#define UPB_SETJMP(buf) setjmp(buf)
177#define UPB_LONGJMP(buf, val) longjmp(buf, val)
178#endif
179
Eric Salodfb71552023-03-22 12:35:09 -0700180#ifdef __GNUC__
181#define UPB_USE_C11_ATOMICS
Deanna Garciac7d979d2023-04-14 17:22:13 -0700182#define UPB_ATOMIC(T) _Atomic(T)
Eric Salodfb71552023-03-22 12:35:09 -0700183#else
Deanna Garciac7d979d2023-04-14 17:22:13 -0700184#define UPB_ATOMIC(T) T
Eric Salodfb71552023-03-22 12:35:09 -0700185#endif
186
Joshua Habermandd69a482021-05-17 22:40:33 -0700187/* UPB_PTRADD(ptr, ofs): add pointer while avoiding "NULL + 0" UB */
188#define UPB_PTRADD(ptr, ofs) ((ofs) ? (ptr) + (ofs) : (ptr))
189
Deanna Garciac7d979d2023-04-14 17:22:13 -0700190#define UPB_PRIVATE(x) x##_dont_copy_me__upb_internal_use_only
191
Protobuf Team Bot07194fc2023-11-30 05:43:03 +0000192#ifdef UPB_ALLOW_PRIVATE_ACCESS__FOR_BITS_ONLY
193#define UPB_ONLYBITS(x) x
194#else
195#define UPB_ONLYBITS(x) UPB_PRIVATE(x)
196#endif
197
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800198/* Configure whether fasttable is switched on or not. *************************/
199
Joshua Habermandd69a482021-05-17 22:40:33 -0700200#ifdef __has_attribute
201#define UPB_HAS_ATTRIBUTE(x) __has_attribute(x)
202#else
203#define UPB_HAS_ATTRIBUTE(x) 0
204#endif
205
206#if UPB_HAS_ATTRIBUTE(musttail)
207#define UPB_MUSTTAIL __attribute__((musttail))
208#else
209#define UPB_MUSTTAIL
210#endif
211
212#undef UPB_HAS_ATTRIBUTE
213
214/* This check is not fully robust: it does not require that we have "musttail"
215 * support available. We need tail calls to avoid consuming arbitrary amounts
216 * of stack space.
217 *
218 * GCC/Clang can mostly be trusted to generate tail calls as long as
219 * optimization is enabled, but, debug builds will not generate tail calls
220 * unless "musttail" is available.
221 *
222 * We should probably either:
223 * 1. require that the compiler supports musttail.
224 * 2. add some fallback code for when musttail isn't available (ie. return
225 * instead of tail calling). This is safe and portable, but this comes at
226 * a CPU cost.
227 */
228#if (defined(__x86_64__) || defined(__aarch64__)) && defined(__GNUC__)
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800229#define UPB_FASTTABLE_SUPPORTED 1
230#else
231#define UPB_FASTTABLE_SUPPORTED 0
232#endif
233
234/* define UPB_ENABLE_FASTTABLE to force fast table support.
235 * This is useful when we want to ensure we are really getting fasttable,
236 * for example for testing or benchmarking. */
237#if defined(UPB_ENABLE_FASTTABLE)
238#if !UPB_FASTTABLE_SUPPORTED
Joshua Habermandd69a482021-05-17 22:40:33 -0700239#error fasttable is x86-64/ARM64 only and requires GCC or Clang.
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800240#endif
241#define UPB_FASTTABLE 1
242/* Define UPB_TRY_ENABLE_FASTTABLE to use fasttable if possible.
243 * This is useful for releasing code that might be used on multiple platforms,
244 * for example the PHP or Ruby C extensions. */
245#elif defined(UPB_TRY_ENABLE_FASTTABLE)
246#define UPB_FASTTABLE UPB_FASTTABLE_SUPPORTED
247#else
248#define UPB_FASTTABLE 0
249#endif
250
251/* UPB_FASTTABLE_INIT() allows protos compiled for fasttable to gracefully
Mike Kruskal232ecf42023-01-14 00:09:40 -0800252 * degrade to non-fasttable if the runtime or platform do not support it. */
253#if !UPB_FASTTABLE
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800254#define UPB_FASTTABLE_INIT(...)
Mike Kruskal232ecf42023-01-14 00:09:40 -0800255#define UPB_FASTTABLE_MASK(mask) -1
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800256#else
257#define UPB_FASTTABLE_INIT(...) __VA_ARGS__
Mike Kruskal232ecf42023-01-14 00:09:40 -0800258#define UPB_FASTTABLE_MASK(mask) mask
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800259#endif
260
261#undef UPB_FASTTABLE_SUPPORTED
262
Joshua Habermand3995ec2022-09-30 16:54:39 -0700263/* ASAN poisoning (for arena).
264 * If using UPB from an interpreted language like Ruby, a build of the
Joshua Haberman488b8b92022-09-30 18:07:16 -0700265 * interpreter compiled with ASAN enabled must be used in order to get sane and
Joshua Habermand3995ec2022-09-30 16:54:39 -0700266 * expected behavior.
267 */
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800268
Sandy Zhange3b09432023-08-07 09:30:02 -0700269/* Due to preprocessor limitations, the conditional logic for setting
270 * UPN_CLANG_ASAN below cannot be consolidated into a portable one-liner.
271 * See https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005fattribute.html.
272 */
273#if defined(__has_feature)
274#if __has_feature(address_sanitizer)
275#define UPB_CLANG_ASAN 1
276#else
277#define UPB_CLANG_ASAN 0
278#endif
279#else
280#define UPB_CLANG_ASAN 0
281#endif
282
283#if defined(__SANITIZE_ADDRESS__) || UPB_CLANG_ASAN
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800284#define UPB_ASAN 1
Sandy Zhange3b09432023-08-07 09:30:02 -0700285#define UPB_ASAN_GUARD_SIZE 32
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800286#ifdef __cplusplus
Adam Cozzette7d5592e2023-08-23 12:15:26 -0700287 extern "C" {
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800288#endif
289void __asan_poison_memory_region(void const volatile *addr, size_t size);
290void __asan_unpoison_memory_region(void const volatile *addr, size_t size);
291#ifdef __cplusplus
292} /* extern "C" */
293#endif
294#define UPB_POISON_MEMORY_REGION(addr, size) \
295 __asan_poison_memory_region((addr), (size))
296#define UPB_UNPOISON_MEMORY_REGION(addr, size) \
297 __asan_unpoison_memory_region((addr), (size))
298#else
299#define UPB_ASAN 0
Sandy Zhange3b09432023-08-07 09:30:02 -0700300#define UPB_ASAN_GUARD_SIZE 0
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800301#define UPB_POISON_MEMORY_REGION(addr, size) \
302 ((void)(addr), (void)(size))
303#define UPB_UNPOISON_MEMORY_REGION(addr, size) \
304 ((void)(addr), (void)(size))
Joshua Habermandd69a482021-05-17 22:40:33 -0700305#endif
306
Joshua Haberman7ecf43f2022-03-14 13:11:29 -0700307/* Disable proto2 arena behavior (TEMPORARY) **********************************/
308
Protobuf Team Bot5e8d7e52024-03-15 22:28:30 +0000309#ifdef UPB_DISABLE_CLOSED_ENUM_CHECKING
310#define UPB_TREAT_CLOSED_ENUMS_LIKE_OPEN 1
Joshua Haberman7ecf43f2022-03-14 13:11:29 -0700311#else
Protobuf Team Bot5e8d7e52024-03-15 22:28:30 +0000312#define UPB_TREAT_CLOSED_ENUMS_LIKE_OPEN 0
Joshua Haberman7ecf43f2022-03-14 13:11:29 -0700313#endif
314
Joshua Habermand3995ec2022-09-30 16:54:39 -0700315#if defined(__cplusplus)
316#if defined(__clang__) || UPB_GNUC_MIN(6, 0)
317// https://gcc.gnu.org/gcc-6/changes.html
318#if __cplusplus >= 201402L
319#define UPB_DEPRECATED [[deprecated]]
320#else
321#define UPB_DEPRECATED __attribute__((deprecated))
322#endif
323#else
324#define UPB_DEPRECATED
325#endif
326#else
327#define UPB_DEPRECATED
328#endif
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800329
Mike Kruskal232ecf42023-01-14 00:09:40 -0800330// begin:google_only
331// #define UPB_IS_GOOGLE3
332// end:google_only
333
334#if defined(UPB_IS_GOOGLE3) && !defined(UPB_BOOTSTRAP_STAGE0)
335#define UPB_DESC(sym) proto2_##sym
Protobuf Team Botce9dcc22023-11-03 22:38:26 +0000336#define UPB_DESC_MINITABLE(sym) &proto2__##sym##_msg_init
337#elif defined(UPB_BOOTSTRAP_STAGE0)
338#define UPB_DESC(sym) google_protobuf_##sym
339#define UPB_DESC_MINITABLE(sym) google__protobuf__##sym##_msg_init()
Mike Kruskal232ecf42023-01-14 00:09:40 -0800340#else
341#define UPB_DESC(sym) google_protobuf_##sym
Protobuf Team Botce9dcc22023-11-03 22:38:26 +0000342#define UPB_DESC_MINITABLE(sym) &google__protobuf__##sym##_msg_init
Mike Kruskal232ecf42023-01-14 00:09:40 -0800343#endif
344
Protobuf Team Bot5d58cb82024-03-06 19:59:18 +0000345
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +0000346// Linker arrays combine elements from multiple translation units into a single
347// array that can be iterated over at runtime.
348//
349// It is an alternative to pre-main "registration" functions.
350//
351// Usage:
352//
353// // In N translation units.
354// UPB_LINKARR_APPEND(foo_array) static int elems[3] = {1, 2, 3};
355//
356// // At runtime:
357// UPB_LINKARR_DECLARE(foo_array, int);
358//
359// void f() {
360// const int* start = UPB_LINKARR_START(foo_array);
361// const int* stop = UPB_LINKARR_STOP(foo_array);
362// for (const int* p = start; p < stop; p++) {
363// // Windows can introduce zero padding, so we have to skip zeroes.
364// if (*p != 0) {
365// vec.push_back(*p);
366// }
367// }
368// }
369
370#if defined(__ELF__) || defined(__wasm__)
371
372#define UPB_LINKARR_APPEND(name) \
373 __attribute__((retain, used, section("linkarr_" #name)))
374#define UPB_LINKARR_DECLARE(name, type) \
375 extern type const __start_linkarr_##name; \
376 extern type const __stop_linkarr_##name; \
Protobuf Team Bot9f2893a2024-06-11 18:26:04 +0000377 UPB_LINKARR_APPEND(name) type UPB_linkarr_internal_empty_##name[1]
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +0000378#define UPB_LINKARR_START(name) (&__start_linkarr_##name)
379#define UPB_LINKARR_STOP(name) (&__stop_linkarr_##name)
380
381#elif defined(__MACH__)
382
383/* As described in: https://stackoverflow.com/a/22366882 */
384#define UPB_LINKARR_APPEND(name) \
Protobuf Team Botbbf52272024-06-11 23:07:36 +0000385 __attribute__((retain, used, section("__DATA,__la_" #name)))
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +0000386#define UPB_LINKARR_DECLARE(name, type) \
387 extern type const __start_linkarr_##name __asm( \
Protobuf Team Botbbf52272024-06-11 23:07:36 +0000388 "section$start$__DATA$__la_" #name); \
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +0000389 extern type const __stop_linkarr_##name __asm( \
390 "section$end$__DATA$" \
Protobuf Team Botbbf52272024-06-11 23:07:36 +0000391 "__la_" #name); \
Protobuf Team Bot9f2893a2024-06-11 18:26:04 +0000392 UPB_LINKARR_APPEND(name) type UPB_linkarr_internal_empty_##name[1]
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +0000393#define UPB_LINKARR_START(name) (&__start_linkarr_##name)
394#define UPB_LINKARR_STOP(name) (&__stop_linkarr_##name)
395
396#elif defined(_MSC_VER) && defined(__clang__)
397
398/* See:
399 * https://devblogs.microsoft.com/oldnewthing/20181107-00/?p=100155
400 * https://devblogs.microsoft.com/oldnewthing/20181108-00/?p=100165
401 * https://devblogs.microsoft.com/oldnewthing/20181109-00/?p=100175 */
402
403// Usage of __attribute__ here probably means this is Clang-specific, and would
404// not work on MSVC.
405#define UPB_LINKARR_APPEND(name) \
406 __declspec(allocate("la_" #name "$j")) __attribute__((retain, used))
407#define UPB_LINKARR_DECLARE(name, type) \
408 __declspec(allocate("la_" #name "$a")) type __start_linkarr_##name; \
409 __declspec(allocate("la_" #name "$z")) type __stop_linkarr_##name; \
410 UPB_LINKARR_APPEND(name) type UPB_linkarr_internal_empty_##name[1] = {0}
411#define UPB_LINKARR_START(name) (&__start_linkarr_##name)
412#define UPB_LINKARR_STOP(name) (&__stop_linkarr_##name)
413
414#else
415
416// Linker arrays are not supported on this platform. Make appends a no-op but
417// don't define the other macros.
418#define UPB_LINKARR_APPEND(name)
419
420#endif
421
Eric Salo8809a112022-11-21 13:01:06 -0800422#ifndef UPB_BASE_STATUS_H_
423#define UPB_BASE_STATUS_H_
424
425#include <stdarg.h>
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700426
427// Must be last.
428
Protobuf Team Botb931e792024-01-31 21:16:11 +0000429#define _kUpb_Status_MaxMessage 511
Eric Salo8809a112022-11-21 13:01:06 -0800430
431typedef struct {
432 bool ok;
433 char msg[_kUpb_Status_MaxMessage]; // Error message; NULL-terminated.
434} upb_Status;
435
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700436#ifdef __cplusplus
437extern "C" {
438#endif
439
Eric Salo3f36a912022-12-05 14:12:25 -0800440UPB_API const char* upb_Status_ErrorMessage(const upb_Status* status);
441UPB_API bool upb_Status_IsOk(const upb_Status* status);
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700442
Eric Salo8809a112022-11-21 13:01:06 -0800443// These are no-op if |status| is NULL.
Eric Salo3f36a912022-12-05 14:12:25 -0800444UPB_API void upb_Status_Clear(upb_Status* status);
Eric Salo8809a112022-11-21 13:01:06 -0800445void upb_Status_SetErrorMessage(upb_Status* status, const char* msg);
446void upb_Status_SetErrorFormat(upb_Status* status, const char* fmt, ...)
447 UPB_PRINTF(2, 3);
448void upb_Status_VSetErrorFormat(upb_Status* status, const char* fmt,
449 va_list args) UPB_PRINTF(2, 0);
450void upb_Status_VAppendErrorFormat(upb_Status* status, const char* fmt,
451 va_list args) UPB_PRINTF(2, 0);
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700452
453#ifdef __cplusplus
454} /* extern "C" */
455#endif
456
457
Eric Salo8809a112022-11-21 13:01:06 -0800458#endif /* UPB_BASE_STATUS_H_ */
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700459
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +0000460#ifndef UPB_GENERATED_CODE_SUPPORT_H_
461#define UPB_GENERATED_CODE_SUPPORT_H_
Joshua Habermand3995ec2022-09-30 16:54:39 -0700462
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +0000463// IWYU pragma: begin_exports
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800464
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +0000465#ifndef UPB_BASE_UPCAST_H_
466#define UPB_BASE_UPCAST_H_
467
468// Must be last.
469
470// This macro provides a way to upcast message pointers in a way that is
471// somewhat more bulletproof than blindly casting a pointer. Example:
472//
473// typedef struct {
474// upb_Message UPB_PRIVATE(base);
475// } pkg_FooMessage;
476//
477// void f(pkg_FooMessage* msg) {
478// upb_Decode(UPB_UPCAST(msg), ...);
479// }
480
481#define UPB_UPCAST(x) (&(x)->base##_dont_copy_me__upb_internal_use_only)
482
483
484#endif /* UPB_BASE_UPCAST_H_ */
485
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +0000486#ifndef UPB_MESSAGE_ACCESSORS_H_
487#define UPB_MESSAGE_ACCESSORS_H_
Protobuf Team Bot473d20d2023-09-15 22:27:16 +0000488
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000489#ifndef UPB_BASE_STRING_VIEW_H_
490#define UPB_BASE_STRING_VIEW_H_
Eric Salo8809a112022-11-21 13:01:06 -0800491
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000492#include <string.h>
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +0000493
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000494// Must be last.
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +0000495
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000496#define UPB_STRINGVIEW_INIT(ptr, len) \
497 { ptr, len }
498
499#define UPB_STRINGVIEW_FORMAT "%.*s"
500#define UPB_STRINGVIEW_ARGS(view) (int)(view).size, (view).data
501
502// LINT.IfChange(struct_definition)
503typedef struct {
504 const char* data;
505 size_t size;
506} upb_StringView;
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000507
508#ifdef __cplusplus
509extern "C" {
510#endif
511
512UPB_API_INLINE upb_StringView upb_StringView_FromDataAndSize(const char* data,
513 size_t size) {
514 upb_StringView ret;
515 ret.data = data;
516 ret.size = size;
517 return ret;
518}
519
520UPB_INLINE upb_StringView upb_StringView_FromString(const char* data) {
521 return upb_StringView_FromDataAndSize(data, strlen(data));
522}
523
524UPB_INLINE bool upb_StringView_IsEqual(upb_StringView a, upb_StringView b) {
Protobuf Team Botddc54062023-12-12 20:03:38 +0000525 return (a.size == b.size) && (!a.size || !memcmp(a.data, b.data, a.size));
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000526}
527
Protobuf Team Bot030ab8d2023-12-01 19:20:11 +0000528// LINT.ThenChange(
Protobuf Team Botfd82df72024-01-29 20:24:42 +0000529// GoogleInternalName1,
Protobuf Team Bot030ab8d2023-12-01 19:20:11 +0000530// //depot/google3/third_party/upb/bits/golang/accessor.go:map_go_string,
531// //depot/google3/third_party/upb/bits/typescript/string_view.ts
532// )
533
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000534#ifdef __cplusplus
535} /* extern "C" */
536#endif
537
538
539#endif /* UPB_BASE_STRING_VIEW_H_ */
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +0000540
Eric Salo8809a112022-11-21 13:01:06 -0800541/* upb_Arena is a specific allocator implementation that uses arena allocation.
542 * The user provides an allocator that will be used to allocate the underlying
543 * arena blocks. Arenas by nature do not require the individual allocations
544 * to be freed. However the Arena does allow users to register cleanup
545 * functions that will run when the arena is destroyed.
Joshua Habermandd69a482021-05-17 22:40:33 -0700546 *
Eric Salo8809a112022-11-21 13:01:06 -0800547 * A upb_Arena is *not* thread-safe.
548 *
549 * You could write a thread-safe arena allocator that satisfies the
550 * upb_alloc interface, but it would not be as efficient for the
551 * single-threaded case. */
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800552
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700553#ifndef UPB_MEM_ARENA_H_
554#define UPB_MEM_ARENA_H_
Joshua Habermandd69a482021-05-17 22:40:33 -0700555
Adam Cozzette7d5592e2023-08-23 12:15:26 -0700556#include <stddef.h>
557#include <stdint.h>
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800558
559
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700560#ifndef UPB_MEM_ALLOC_H_
561#define UPB_MEM_ALLOC_H_
Joshua Habermand3995ec2022-09-30 16:54:39 -0700562
563// Must be last.
564
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800565#ifdef __cplusplus
566extern "C" {
567#endif
568
Joshua Habermand3995ec2022-09-30 16:54:39 -0700569typedef struct upb_alloc upb_alloc;
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800570
Joshua Habermand3995ec2022-09-30 16:54:39 -0700571/* A combined `malloc()`/`free()` function.
572 * If `size` is 0 then the function acts like `free()`, otherwise it acts like
573 * `realloc()`. Only `oldsize` bytes from a previous allocation are
574 * preserved. */
575typedef void* upb_alloc_func(upb_alloc* alloc, void* ptr, size_t oldsize,
576 size_t size);
577
578/* A upb_alloc is a possibly-stateful allocator object.
579 *
580 * It could either be an arena allocator (which doesn't require individual
581 * `free()` calls) or a regular `malloc()` (which does). The client must
582 * therefore free memory unless it knows that the allocator is an arena
583 * allocator. */
584struct upb_alloc {
585 upb_alloc_func* func;
586};
587
588UPB_INLINE void* upb_malloc(upb_alloc* alloc, size_t size) {
589 UPB_ASSERT(alloc);
590 return alloc->func(alloc, NULL, 0, size);
591}
592
593UPB_INLINE void* upb_realloc(upb_alloc* alloc, void* ptr, size_t oldsize,
594 size_t size) {
595 UPB_ASSERT(alloc);
596 return alloc->func(alloc, ptr, oldsize, size);
597}
598
599UPB_INLINE void upb_free(upb_alloc* alloc, void* ptr) {
600 UPB_ASSERT(alloc);
601 alloc->func(alloc, ptr, 0, 0);
602}
603
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700604// The global allocator used by upb. Uses the standard malloc()/free().
Joshua Habermand3995ec2022-09-30 16:54:39 -0700605
606extern upb_alloc upb_alloc_global;
607
608/* Functions that hard-code the global malloc.
609 *
610 * We still get benefit because we can put custom logic into our global
611 * allocator, like injecting out-of-memory faults in debug/testing builds. */
612
613UPB_INLINE void* upb_gmalloc(size_t size) {
614 return upb_malloc(&upb_alloc_global, size);
615}
616
617UPB_INLINE void* upb_grealloc(void* ptr, size_t oldsize, size_t size) {
618 return upb_realloc(&upb_alloc_global, ptr, oldsize, size);
619}
620
621UPB_INLINE void upb_gfree(void* ptr) { upb_free(&upb_alloc_global, ptr); }
622
623#ifdef __cplusplus
624} /* extern "C" */
625#endif
626
627
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700628#endif /* UPB_MEM_ALLOC_H_ */
Joshua Habermand3995ec2022-09-30 16:54:39 -0700629
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000630#ifndef UPB_MEM_INTERNAL_ARENA_H_
631#define UPB_MEM_INTERNAL_ARENA_H_
632
633#include <stddef.h>
634#include <stdint.h>
635#include <string.h>
636
637// Must be last.
638
639// This is QUITE an ugly hack, which specifies the number of pointers needed
640// to equal (or exceed) the storage required for one upb_Arena.
641//
642// We need this because the decoder inlines a upb_Arena for performance but
643// the full struct is not visible outside of arena.c. Yes, I know, it's awful.
644#define UPB_ARENA_SIZE_HACK 7
645
Protobuf Team Bot6964e2c2023-12-21 15:42:16 +0000646// LINT.IfChange(upb_Arena)
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000647
648struct upb_Arena {
649 char* UPB_ONLYBITS(ptr);
650 char* UPB_ONLYBITS(end);
651};
652
Protobuf Team Bot6964e2c2023-12-21 15:42:16 +0000653// LINT.ThenChange(//depot/google3/third_party/upb/bits/typescript/arena.ts:upb_Arena)
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000654
655#ifdef __cplusplus
656extern "C" {
657#endif
658
659void UPB_PRIVATE(_upb_Arena_SwapIn)(struct upb_Arena* des,
660 const struct upb_Arena* src);
661void UPB_PRIVATE(_upb_Arena_SwapOut)(struct upb_Arena* des,
662 const struct upb_Arena* src);
663
Protobuf Team Bot56409302024-02-12 16:52:47 +0000664// Returns whether |ptr| was allocated directly by |a| (so care must be used
665// with fused arenas).
666UPB_API bool UPB_ONLYBITS(_upb_Arena_Contains)(const struct upb_Arena* a,
667 void* ptr);
668
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000669UPB_INLINE size_t UPB_PRIVATE(_upb_ArenaHas)(const struct upb_Arena* a) {
670 return (size_t)(a->UPB_ONLYBITS(end) - a->UPB_ONLYBITS(ptr));
671}
672
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000673UPB_API_INLINE void* upb_Arena_Malloc(struct upb_Arena* a, size_t size) {
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000674 void* UPB_PRIVATE(_upb_Arena_SlowMalloc)(struct upb_Arena * a, size_t size);
675
676 size = UPB_ALIGN_MALLOC(size);
677 const size_t span = size + UPB_ASAN_GUARD_SIZE;
678 if (UPB_UNLIKELY(UPB_PRIVATE(_upb_ArenaHas)(a) < span)) {
679 return UPB_PRIVATE(_upb_Arena_SlowMalloc)(a, span);
680 }
681
682 // We have enough space to do a fast malloc.
683 void* ret = a->UPB_ONLYBITS(ptr);
684 UPB_ASSERT(UPB_ALIGN_MALLOC((uintptr_t)ret) == (uintptr_t)ret);
685 UPB_ASSERT(UPB_ALIGN_MALLOC(size) == size);
686 UPB_UNPOISON_MEMORY_REGION(ret, size);
687
688 a->UPB_ONLYBITS(ptr) += span;
689
690 return ret;
691}
692
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000693UPB_API_INLINE void* upb_Arena_Realloc(struct upb_Arena* a, void* ptr,
694 size_t oldsize, size_t size) {
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000695 oldsize = UPB_ALIGN_MALLOC(oldsize);
696 size = UPB_ALIGN_MALLOC(size);
697 bool is_most_recent_alloc =
698 (uintptr_t)ptr + oldsize == (uintptr_t)a->UPB_ONLYBITS(ptr);
699
700 if (is_most_recent_alloc) {
701 ptrdiff_t diff = size - oldsize;
702 if ((ptrdiff_t)UPB_PRIVATE(_upb_ArenaHas)(a) >= diff) {
703 a->UPB_ONLYBITS(ptr) += diff;
704 return ptr;
705 }
706 } else if (size <= oldsize) {
707 return ptr;
708 }
709
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000710 void* ret = upb_Arena_Malloc(a, size);
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000711
712 if (ret && oldsize > 0) {
713 memcpy(ret, ptr, UPB_MIN(oldsize, size));
714 }
715
716 return ret;
717}
718
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000719UPB_API_INLINE void upb_Arena_ShrinkLast(struct upb_Arena* a, void* ptr,
720 size_t oldsize, size_t size) {
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000721 oldsize = UPB_ALIGN_MALLOC(oldsize);
722 size = UPB_ALIGN_MALLOC(size);
723 // Must be the last alloc.
724 UPB_ASSERT((char*)ptr + oldsize ==
725 a->UPB_ONLYBITS(ptr) - UPB_ASAN_GUARD_SIZE);
726 UPB_ASSERT(size <= oldsize);
727 a->UPB_ONLYBITS(ptr) = (char*)ptr + size;
728}
729
730#ifdef __cplusplus
731} /* extern "C" */
732#endif
733
734
735#endif /* UPB_MEM_INTERNAL_ARENA_H_ */
736
Joshua Habermand3995ec2022-09-30 16:54:39 -0700737// Must be last.
738
Joshua Habermand3995ec2022-09-30 16:54:39 -0700739typedef struct upb_Arena upb_Arena;
Joshua Haberman9abf6e22021-01-13 12:16:25 -0800740
Eric Salo8809a112022-11-21 13:01:06 -0800741#ifdef __cplusplus
742extern "C" {
743#endif
744
Mike Kruskal3bc50492022-12-01 13:34:12 -0800745// Creates an arena from the given initial block (if any -- n may be 0).
746// Additional blocks will be allocated from |alloc|. If |alloc| is NULL, this
747// is a fixed-size arena and cannot grow.
Eric Salo3f36a912022-12-05 14:12:25 -0800748UPB_API upb_Arena* upb_Arena_Init(void* mem, size_t n, upb_alloc* alloc);
Mike Kruskal3bc50492022-12-01 13:34:12 -0800749
Eric Salo3f36a912022-12-05 14:12:25 -0800750UPB_API void upb_Arena_Free(upb_Arena* a);
Eric Salo3f36a912022-12-05 14:12:25 -0800751UPB_API bool upb_Arena_Fuse(upb_Arena* a, upb_Arena* b);
752
Protobuf Team Bot3d597c22023-12-13 04:04:17 +0000753bool upb_Arena_IncRefFor(upb_Arena* a, const void* owner);
754void upb_Arena_DecRefFor(upb_Arena* a, const void* owner);
Protobuf Team Bot777d6a92023-10-06 23:52:49 +0000755
Protobuf Team Bota3c33a82024-02-13 21:14:13 +0000756size_t upb_Arena_SpaceAllocated(upb_Arena* a, size_t* fused_count);
Protobuf Team Bot3d597c22023-12-13 04:04:17 +0000757uint32_t upb_Arena_DebugRefCount(upb_Arena* a);
758
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000759UPB_API_INLINE upb_Arena* upb_Arena_New(void) {
760 return upb_Arena_Init(NULL, 0, &upb_alloc_global);
Joshua Habermand3995ec2022-09-30 16:54:39 -0700761}
762
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000763UPB_API_INLINE void* upb_Arena_Malloc(struct upb_Arena* a, size_t size);
Eric Salo8809a112022-11-21 13:01:06 -0800764
Protobuf Team Botf75fe9e2023-12-19 22:41:49 +0000765UPB_API_INLINE void* upb_Arena_Realloc(upb_Arena* a, void* ptr, size_t oldsize,
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000766 size_t size);
Joshua Habermand3995ec2022-09-30 16:54:39 -0700767
Protobuf Team Bota4f9ddd2024-06-28 21:55:50 +0000768// Sets the maximum block size for all arenas. This is a global configuration
769// setting that will affect all existing and future arenas. If
770// upb_Arena_Malloc() is called with a size larger than this, we will exceed
771// this size and allocate a larger block.
772//
773// This API is meant for experimentation only. It will likely be removed in
774// the future.
775void upb_Arena_SetMaxBlockSize(size_t max);
776
Joshua Habermand3995ec2022-09-30 16:54:39 -0700777// Shrinks the last alloc from arena.
778// REQUIRES: (ptr, oldsize) was the last malloc/realloc from this arena.
779// We could also add a upb_Arena_TryShrinkLast() which is simply a no-op if
780// this was not the last alloc.
Eric Salo3f36a912022-12-05 14:12:25 -0800781UPB_API_INLINE void upb_Arena_ShrinkLast(upb_Arena* a, void* ptr,
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000782 size_t oldsize, size_t size);
Joshua Habermand3995ec2022-09-30 16:54:39 -0700783
Protobuf Team Botfb08bca2024-03-14 15:21:13 +0000784#ifdef UPB_TRACING_ENABLED
785void upb_Arena_SetTraceHandler(void (*initArenaTraceHandler)(const upb_Arena*,
786 size_t size),
787 void (*fuseArenaTraceHandler)(const upb_Arena*,
788 const upb_Arena*),
789 void (*freeArenaTraceHandler)(const upb_Arena*));
790#endif
791
Joshua Habermand3995ec2022-09-30 16:54:39 -0700792#ifdef __cplusplus
793} /* extern "C" */
794#endif
795
796
Mike Kruskal9cf9db82022-11-04 21:22:31 -0700797#endif /* UPB_MEM_ARENA_H_ */
Joshua Habermand3995ec2022-09-30 16:54:39 -0700798
Protobuf Team Bot54573a42023-11-21 14:47:34 +0000799#ifndef UPB_MESSAGE_ARRAY_H_
800#define UPB_MESSAGE_ARRAY_H_
801
802#include <stddef.h>
803
804
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +0000805#ifndef UPB_BASE_DESCRIPTOR_CONSTANTS_H_
806#define UPB_BASE_DESCRIPTOR_CONSTANTS_H_
807
808// Must be last.
809
810// The types a field can have. Note that this list is not identical to the
811// types defined in descriptor.proto, which gives INT32 and SINT32 separate
812// types (we distinguish the two with the "integer encoding" enum below).
813// This enum is an internal convenience only and has no meaning outside of upb.
814typedef enum {
815 kUpb_CType_Bool = 1,
816 kUpb_CType_Float = 2,
817 kUpb_CType_Int32 = 3,
818 kUpb_CType_UInt32 = 4,
819 kUpb_CType_Enum = 5, // Enum values are int32. TODO: rename
820 kUpb_CType_Message = 6,
821 kUpb_CType_Double = 7,
822 kUpb_CType_Int64 = 8,
823 kUpb_CType_UInt64 = 9,
824 kUpb_CType_String = 10,
825 kUpb_CType_Bytes = 11
826} upb_CType;
827
828// The repeated-ness of each field; this matches descriptor.proto.
829typedef enum {
830 kUpb_Label_Optional = 1,
831 kUpb_Label_Required = 2,
832 kUpb_Label_Repeated = 3
833} upb_Label;
834
835// Descriptor types, as defined in descriptor.proto.
836typedef enum {
837 kUpb_FieldType_Double = 1,
838 kUpb_FieldType_Float = 2,
839 kUpb_FieldType_Int64 = 3,
840 kUpb_FieldType_UInt64 = 4,
841 kUpb_FieldType_Int32 = 5,
842 kUpb_FieldType_Fixed64 = 6,
843 kUpb_FieldType_Fixed32 = 7,
844 kUpb_FieldType_Bool = 8,
845 kUpb_FieldType_String = 9,
846 kUpb_FieldType_Group = 10,
847 kUpb_FieldType_Message = 11,
848 kUpb_FieldType_Bytes = 12,
849 kUpb_FieldType_UInt32 = 13,
850 kUpb_FieldType_Enum = 14,
851 kUpb_FieldType_SFixed32 = 15,
852 kUpb_FieldType_SFixed64 = 16,
853 kUpb_FieldType_SInt32 = 17,
854 kUpb_FieldType_SInt64 = 18,
855} upb_FieldType;
856
857#define kUpb_FieldType_SizeOf 19
858
859#ifdef __cplusplus
860extern "C" {
861#endif
862
863// Convert from upb_FieldType to upb_CType
864UPB_INLINE upb_CType upb_FieldType_CType(upb_FieldType field_type) {
865 static const upb_CType c_type[] = {
866 kUpb_CType_Double, // kUpb_FieldType_Double
867 kUpb_CType_Float, // kUpb_FieldType_Float
868 kUpb_CType_Int64, // kUpb_FieldType_Int64
869 kUpb_CType_UInt64, // kUpb_FieldType_UInt64
870 kUpb_CType_Int32, // kUpb_FieldType_Int32
871 kUpb_CType_UInt64, // kUpb_FieldType_Fixed64
872 kUpb_CType_UInt32, // kUpb_FieldType_Fixed32
873 kUpb_CType_Bool, // kUpb_FieldType_Bool
874 kUpb_CType_String, // kUpb_FieldType_String
875 kUpb_CType_Message, // kUpb_FieldType_Group
876 kUpb_CType_Message, // kUpb_FieldType_Message
877 kUpb_CType_Bytes, // kUpb_FieldType_Bytes
878 kUpb_CType_UInt32, // kUpb_FieldType_UInt32
879 kUpb_CType_Enum, // kUpb_FieldType_Enum
880 kUpb_CType_Int32, // kUpb_FieldType_SFixed32
881 kUpb_CType_Int64, // kUpb_FieldType_SFixed64
882 kUpb_CType_Int32, // kUpb_FieldType_SInt32
883 kUpb_CType_Int64, // kUpb_FieldType_SInt64
884 };
885
886 // -1 here because the enum is one-based but the table is zero-based.
887 return c_type[field_type - 1];
888}
889
890UPB_INLINE bool upb_FieldType_IsPackable(upb_FieldType field_type) {
891 // clang-format off
892 const unsigned kUnpackableTypes =
893 (1 << kUpb_FieldType_String) |
894 (1 << kUpb_FieldType_Bytes) |
895 (1 << kUpb_FieldType_Message) |
896 (1 << kUpb_FieldType_Group);
897 // clang-format on
898 return (1 << field_type) & ~kUnpackableTypes;
899}
900
901#ifdef __cplusplus
902} /* extern "C" */
903#endif
904
905
906#endif /* UPB_BASE_DESCRIPTOR_CONSTANTS_H_ */
907
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000908#ifndef UPB_MESSAGE_INTERNAL_ARRAY_H_
909#define UPB_MESSAGE_INTERNAL_ARRAY_H_
910
911#include <stdint.h>
912#include <string.h>
913
914
915// Must be last.
916
917#define _UPB_ARRAY_MASK_IMM 0x4 // Frozen/immutable bit.
918#define _UPB_ARRAY_MASK_LG2 0x3 // Encoded elem size.
919#define _UPB_ARRAY_MASK_ALL (_UPB_ARRAY_MASK_IMM | _UPB_ARRAY_MASK_LG2)
920
921#ifdef __cplusplus
922extern "C" {
923#endif
924
Protobuf Team Botfd82df72024-01-29 20:24:42 +0000925// LINT.IfChange(upb_Array)
926
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000927// Our internal representation for repeated fields.
928struct upb_Array {
929 // This is a tagged pointer. Bits #0 and #1 encode the elem size as follows:
930 // 0 maps to elem size 1
931 // 1 maps to elem size 4
932 // 2 maps to elem size 8
933 // 3 maps to elem size 16
934 //
Protobuf Team Bot886a0b12024-01-26 21:23:01 +0000935 // Bit #2 contains the frozen/immutable flag.
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000936 uintptr_t UPB_ONLYBITS(data);
937
938 size_t UPB_ONLYBITS(size); // The number of elements in the array.
939 size_t UPB_PRIVATE(capacity); // Allocated storage. Measured in elements.
940};
941
Protobuf Team Bot886a0b12024-01-26 21:23:01 +0000942UPB_INLINE void UPB_PRIVATE(_upb_Array_ShallowFreeze)(struct upb_Array* arr) {
943 arr->UPB_ONLYBITS(data) |= _UPB_ARRAY_MASK_IMM;
944}
945
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000946UPB_API_INLINE bool upb_Array_IsFrozen(const struct upb_Array* arr) {
Protobuf Team Bot886a0b12024-01-26 21:23:01 +0000947 return (arr->UPB_ONLYBITS(data) & _UPB_ARRAY_MASK_IMM) != 0;
948}
949
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000950UPB_INLINE void UPB_PRIVATE(_upb_Array_SetTaggedPtr)(struct upb_Array* array,
951 void* data, size_t lg2) {
952 UPB_ASSERT(lg2 != 1);
953 UPB_ASSERT(lg2 <= 4);
954 const size_t bits = lg2 - (lg2 != 0);
955 array->UPB_ONLYBITS(data) = (uintptr_t)data | bits;
956}
957
958UPB_INLINE size_t
959UPB_PRIVATE(_upb_Array_ElemSizeLg2)(const struct upb_Array* array) {
960 const size_t bits = array->UPB_ONLYBITS(data) & _UPB_ARRAY_MASK_LG2;
961 const size_t lg2 = bits + (bits != 0);
962 return lg2;
963}
964
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000965UPB_API_INLINE const void* upb_Array_DataPtr(const struct upb_Array* array) {
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000966 UPB_PRIVATE(_upb_Array_ElemSizeLg2)(array); // Check assertions.
967 return (void*)(array->UPB_ONLYBITS(data) & ~(uintptr_t)_UPB_ARRAY_MASK_ALL);
968}
969
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000970UPB_API_INLINE void* upb_Array_MutableDataPtr(struct upb_Array* array) {
971 return (void*)upb_Array_DataPtr(array);
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000972}
973
974UPB_INLINE struct upb_Array* UPB_PRIVATE(_upb_Array_New)(upb_Arena* arena,
975 size_t init_capacity,
976 int elem_size_lg2) {
977 UPB_ASSERT(elem_size_lg2 != 1);
978 UPB_ASSERT(elem_size_lg2 <= 4);
979 const size_t array_size =
980 UPB_ALIGN_UP(sizeof(struct upb_Array), UPB_MALLOC_ALIGN);
981 const size_t bytes = array_size + (init_capacity << elem_size_lg2);
982 struct upb_Array* array = (struct upb_Array*)upb_Arena_Malloc(arena, bytes);
983 if (!array) return NULL;
984 UPB_PRIVATE(_upb_Array_SetTaggedPtr)
985 (array, UPB_PTR_AT(array, array_size, void), elem_size_lg2);
986 array->UPB_ONLYBITS(size) = 0;
987 array->UPB_PRIVATE(capacity) = init_capacity;
988 return array;
989}
990
991// Resizes the capacity of the array to be at least min_size.
992bool UPB_PRIVATE(_upb_Array_Realloc)(struct upb_Array* array, size_t min_size,
993 upb_Arena* arena);
994
Protobuf Team Bot4b6de0f2024-03-29 19:09:40 +0000995UPB_API_INLINE bool upb_Array_Reserve(struct upb_Array* array, size_t size,
996 upb_Arena* arena) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +0000997 UPB_ASSERT(!upb_Array_IsFrozen(array));
Protobuf Team Bot81e54332024-01-11 21:04:07 +0000998 if (array->UPB_PRIVATE(capacity) < size)
999 return UPB_PRIVATE(_upb_Array_Realloc)(array, size, arena);
1000 return true;
1001}
1002
1003// Resize without initializing new elements.
1004UPB_INLINE bool UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
1005 struct upb_Array* array, size_t size, upb_Arena* arena) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001006 UPB_ASSERT(!upb_Array_IsFrozen(array));
Protobuf Team Bot81e54332024-01-11 21:04:07 +00001007 UPB_ASSERT(size <= array->UPB_ONLYBITS(size) ||
1008 arena); // Allow NULL arena when shrinking.
Protobuf Team Bot4b6de0f2024-03-29 19:09:40 +00001009 if (!upb_Array_Reserve(array, size, arena)) return false;
Protobuf Team Bot81e54332024-01-11 21:04:07 +00001010 array->UPB_ONLYBITS(size) = size;
1011 return true;
1012}
1013
1014// This function is intended for situations where elem_size is compile-time
1015// constant or a known expression of the form (1 << lg2), so that the expression
1016// i*elem_size does not result in an actual multiplication.
1017UPB_INLINE void UPB_PRIVATE(_upb_Array_Set)(struct upb_Array* array, size_t i,
1018 const void* data,
1019 size_t elem_size) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001020 UPB_ASSERT(!upb_Array_IsFrozen(array));
Protobuf Team Bot81e54332024-01-11 21:04:07 +00001021 UPB_ASSERT(i < array->UPB_ONLYBITS(size));
1022 UPB_ASSERT(elem_size == 1U << UPB_PRIVATE(_upb_Array_ElemSizeLg2)(array));
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001023 char* arr_data = (char*)upb_Array_MutableDataPtr(array);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00001024 memcpy(arr_data + (i * elem_size), data, elem_size);
1025}
1026
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001027UPB_API_INLINE size_t upb_Array_Size(const struct upb_Array* arr) {
Protobuf Team Bot81e54332024-01-11 21:04:07 +00001028 return arr->UPB_ONLYBITS(size);
1029}
1030
Protobuf Team Botfd82df72024-01-29 20:24:42 +00001031// LINT.ThenChange(GoogleInternalName0)
Protobuf Team Bot81e54332024-01-11 21:04:07 +00001032
1033#ifdef __cplusplus
1034} /* extern "C" */
1035#endif
1036
1037#undef _UPB_ARRAY_MASK_IMM
1038#undef _UPB_ARRAY_MASK_LG2
1039#undef _UPB_ARRAY_MASK_ALL
1040
1041
1042#endif /* UPB_MESSAGE_INTERNAL_ARRAY_H_ */
1043
Protobuf Team Bot473d20d2023-09-15 22:27:16 +00001044// Users should include array.h or map.h instead.
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00001045// IWYU pragma: private, include "upb/message/array.h"
Protobuf Team Bot473d20d2023-09-15 22:27:16 +00001046
1047#ifndef UPB_MESSAGE_VALUE_H_
1048#define UPB_MESSAGE_VALUE_H_
1049
1050#include <stdint.h>
1051
Protobuf Team Bot473d20d2023-09-15 22:27:16 +00001052
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001053typedef union {
1054 bool bool_val;
1055 float float_val;
1056 double double_val;
1057 int32_t int32_val;
1058 int64_t int64_val;
1059 uint32_t uint32_val;
1060 uint64_t uint64_val;
1061 const struct upb_Array* array_val;
1062 const struct upb_Map* map_val;
1063 const struct upb_Message* msg_val;
1064 upb_StringView str_val;
Protobuf Team Bot473d20d2023-09-15 22:27:16 +00001065
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001066 // EXPERIMENTAL: A tagged upb_Message*. Users must use this instead of
1067 // msg_val if unlinked sub-messages may possibly be in use. See the
1068 // documentation in kUpb_DecodeOption_ExperimentalAllowUnlinked for more
1069 // information.
1070 uintptr_t tagged_msg_val; // upb_TaggedMessagePtr
1071} upb_MessageValue;
Protobuf Team Bot7c687212023-11-14 03:01:42 +00001072
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001073typedef union {
1074 struct upb_Array* array;
1075 struct upb_Map* map;
1076 struct upb_Message* msg;
1077} upb_MutableMessageValue;
1078
1079#endif /* UPB_MESSAGE_VALUE_H_ */
Protobuf Team Botdcc1f612023-09-05 21:56:25 +00001080
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001081#ifndef UPB_MINI_TABLE_FIELD_H_
1082#define UPB_MINI_TABLE_FIELD_H_
1083
1084#include <stdint.h>
1085
1086
1087#ifndef UPB_MINI_TABLE_INTERNAL_FIELD_H_
1088#define UPB_MINI_TABLE_INTERNAL_FIELD_H_
1089
1090#include <stddef.h>
1091#include <stdint.h>
1092
1093
1094#ifndef UPB_MINI_TABLE_INTERNAL_SIZE_LOG2_H_
1095#define UPB_MINI_TABLE_INTERNAL_SIZE_LOG2_H_
1096
1097#include <stddef.h>
1098#include <stdint.h>
1099
1100
1101// Must be last.
1102
1103#ifdef __cplusplus
1104extern "C" {
1105#endif
1106
1107// Return the log2 of the storage size in bytes for a upb_CType
1108UPB_INLINE int UPB_PRIVATE(_upb_CType_SizeLg2)(upb_CType c_type) {
1109 static const int8_t size[] = {
1110 0, // kUpb_CType_Bool
1111 2, // kUpb_CType_Float
1112 2, // kUpb_CType_Int32
1113 2, // kUpb_CType_UInt32
1114 2, // kUpb_CType_Enum
1115 UPB_SIZE(2, 3), // kUpb_CType_Message
1116 3, // kUpb_CType_Double
1117 3, // kUpb_CType_Int64
1118 3, // kUpb_CType_UInt64
1119 UPB_SIZE(3, 4), // kUpb_CType_String
1120 UPB_SIZE(3, 4), // kUpb_CType_Bytes
1121 };
1122
1123 // -1 here because the enum is one-based but the table is zero-based.
1124 return size[c_type - 1];
1125}
1126
1127// Return the log2 of the storage size in bytes for a upb_FieldType
1128UPB_INLINE int UPB_PRIVATE(_upb_FieldType_SizeLg2)(upb_FieldType field_type) {
1129 static const int8_t size[] = {
1130 3, // kUpb_FieldType_Double
1131 2, // kUpb_FieldType_Float
1132 3, // kUpb_FieldType_Int64
1133 3, // kUpb_FieldType_UInt64
1134 2, // kUpb_FieldType_Int32
1135 3, // kUpb_FieldType_Fixed64
1136 2, // kUpb_FieldType_Fixed32
1137 0, // kUpb_FieldType_Bool
1138 UPB_SIZE(3, 4), // kUpb_FieldType_String
1139 UPB_SIZE(2, 3), // kUpb_FieldType_Group
1140 UPB_SIZE(2, 3), // kUpb_FieldType_Message
1141 UPB_SIZE(3, 4), // kUpb_FieldType_Bytes
1142 2, // kUpb_FieldType_UInt32
1143 2, // kUpb_FieldType_Enum
1144 2, // kUpb_FieldType_SFixed32
1145 3, // kUpb_FieldType_SFixed64
1146 2, // kUpb_FieldType_SInt32
1147 3, // kUpb_FieldType_SInt64
1148 };
1149
1150 // -1 here because the enum is one-based but the table is zero-based.
1151 return size[field_type - 1];
1152}
1153
1154#ifdef __cplusplus
1155} /* extern "C" */
1156#endif
1157
1158
1159#endif /* UPB_MINI_TABLE_INTERNAL_SIZE_LOG2_H_ */
1160
1161// Must be last.
1162
1163// LINT.IfChange(struct_definition)
1164struct upb_MiniTableField {
1165 uint32_t UPB_ONLYBITS(number);
1166 uint16_t UPB_ONLYBITS(offset);
1167 int16_t presence; // If >0, hasbit_index. If <0, ~oneof_index
1168
1169 // Indexes into `upb_MiniTable.subs`
1170 // Will be set to `kUpb_NoSub` if `descriptortype` != MESSAGE/GROUP/ENUM
1171 uint16_t UPB_PRIVATE(submsg_index);
1172
1173 uint8_t UPB_PRIVATE(descriptortype);
1174
1175 // upb_FieldMode | upb_LabelFlags | (upb_FieldRep << kUpb_FieldRep_Shift)
1176 uint8_t UPB_ONLYBITS(mode);
1177};
1178
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001179#define kUpb_NoSub ((uint16_t) - 1)
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001180
1181typedef enum {
1182 kUpb_FieldMode_Map = 0,
1183 kUpb_FieldMode_Array = 1,
1184 kUpb_FieldMode_Scalar = 2,
1185} upb_FieldMode;
1186
1187// Mask to isolate the upb_FieldMode from field.mode.
1188#define kUpb_FieldMode_Mask 3
1189
1190// Extra flags on the mode field.
1191typedef enum {
1192 kUpb_LabelFlags_IsPacked = 4,
1193 kUpb_LabelFlags_IsExtension = 8,
1194 // Indicates that this descriptor type is an "alternate type":
1195 // - for Int32, this indicates that the actual type is Enum (but was
1196 // rewritten to Int32 because it is an open enum that requires no check).
1197 // - for Bytes, this indicates that the actual type is String (but does
1198 // not require any UTF-8 check).
1199 kUpb_LabelFlags_IsAlternate = 16,
1200} upb_LabelFlags;
1201
1202// Note: we sort by this number when calculating layout order.
1203typedef enum {
1204 kUpb_FieldRep_1Byte = 0,
1205 kUpb_FieldRep_4Byte = 1,
1206 kUpb_FieldRep_StringView = 2,
1207 kUpb_FieldRep_8Byte = 3,
1208
1209 kUpb_FieldRep_NativePointer =
1210 UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte),
1211 kUpb_FieldRep_Max = kUpb_FieldRep_8Byte,
1212} upb_FieldRep;
1213
1214#define kUpb_FieldRep_Shift 6
1215
1216#ifdef __cplusplus
1217extern "C" {
1218#endif
1219
1220UPB_INLINE upb_FieldMode
1221UPB_PRIVATE(_upb_MiniTableField_Mode)(const struct upb_MiniTableField* f) {
1222 return (upb_FieldMode)(f->UPB_ONLYBITS(mode) & kUpb_FieldMode_Mask);
1223}
1224
1225UPB_INLINE upb_FieldRep
1226UPB_PRIVATE(_upb_MiniTableField_GetRep)(const struct upb_MiniTableField* f) {
1227 return (upb_FieldRep)(f->UPB_ONLYBITS(mode) >> kUpb_FieldRep_Shift);
1228}
1229
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001230UPB_API_INLINE bool upb_MiniTableField_IsArray(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001231 const struct upb_MiniTableField* f) {
1232 return UPB_PRIVATE(_upb_MiniTableField_Mode)(f) == kUpb_FieldMode_Array;
1233}
1234
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001235UPB_API_INLINE bool upb_MiniTableField_IsMap(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001236 const struct upb_MiniTableField* f) {
1237 return UPB_PRIVATE(_upb_MiniTableField_Mode)(f) == kUpb_FieldMode_Map;
1238}
1239
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001240UPB_API_INLINE bool upb_MiniTableField_IsScalar(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001241 const struct upb_MiniTableField* f) {
1242 return UPB_PRIVATE(_upb_MiniTableField_Mode)(f) == kUpb_FieldMode_Scalar;
1243}
1244
1245UPB_INLINE bool UPB_PRIVATE(_upb_MiniTableField_IsAlternate)(
1246 const struct upb_MiniTableField* f) {
1247 return (f->UPB_ONLYBITS(mode) & kUpb_LabelFlags_IsAlternate) != 0;
1248}
1249
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001250UPB_API_INLINE bool upb_MiniTableField_IsExtension(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001251 const struct upb_MiniTableField* f) {
1252 return (f->UPB_ONLYBITS(mode) & kUpb_LabelFlags_IsExtension) != 0;
1253}
1254
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001255UPB_API_INLINE bool upb_MiniTableField_IsPacked(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001256 const struct upb_MiniTableField* f) {
1257 return (f->UPB_ONLYBITS(mode) & kUpb_LabelFlags_IsPacked) != 0;
1258}
1259
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001260UPB_API_INLINE upb_FieldType
1261upb_MiniTableField_Type(const struct upb_MiniTableField* f) {
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001262 const upb_FieldType type = (upb_FieldType)f->UPB_PRIVATE(descriptortype);
1263 if (UPB_PRIVATE(_upb_MiniTableField_IsAlternate)(f)) {
1264 if (type == kUpb_FieldType_Int32) return kUpb_FieldType_Enum;
1265 if (type == kUpb_FieldType_Bytes) return kUpb_FieldType_String;
1266 UPB_ASSERT(false);
1267 }
1268 return type;
1269}
1270
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001271UPB_API_INLINE
1272upb_CType upb_MiniTableField_CType(const struct upb_MiniTableField* f) {
1273 return upb_FieldType_CType(upb_MiniTableField_Type(f));
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001274}
1275
1276UPB_INLINE bool UPB_PRIVATE(_upb_MiniTableField_HasHasbit)(
1277 const struct upb_MiniTableField* f) {
1278 return f->presence > 0;
1279}
1280
1281UPB_INLINE char UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(
1282 const struct upb_MiniTableField* f) {
1283 UPB_ASSERT(UPB_PRIVATE(_upb_MiniTableField_HasHasbit)(f));
1284 const size_t index = f->presence;
1285 return 1 << (index % 8);
1286}
1287
1288UPB_INLINE size_t UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(
1289 const struct upb_MiniTableField* f) {
1290 UPB_ASSERT(UPB_PRIVATE(_upb_MiniTableField_HasHasbit)(f));
1291 const size_t index = f->presence;
1292 return index / 8;
1293}
1294
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001295UPB_API_INLINE bool upb_MiniTableField_IsClosedEnum(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001296 const struct upb_MiniTableField* f) {
1297 return f->UPB_PRIVATE(descriptortype) == kUpb_FieldType_Enum;
1298}
1299
Protobuf Team Bot89587682024-02-29 17:19:51 +00001300UPB_API_INLINE bool upb_MiniTableField_IsInOneof(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001301 const struct upb_MiniTableField* f) {
1302 return f->presence < 0;
1303}
1304
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001305UPB_API_INLINE bool upb_MiniTableField_IsSubMessage(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001306 const struct upb_MiniTableField* f) {
1307 return f->UPB_PRIVATE(descriptortype) == kUpb_FieldType_Message ||
1308 f->UPB_PRIVATE(descriptortype) == kUpb_FieldType_Group;
1309}
1310
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001311UPB_API_INLINE bool upb_MiniTableField_HasPresence(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001312 const struct upb_MiniTableField* f) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001313 if (upb_MiniTableField_IsExtension(f)) {
1314 return upb_MiniTableField_IsScalar(f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001315 } else {
1316 return f->presence != 0;
1317 }
1318}
1319
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001320UPB_API_INLINE uint32_t
1321upb_MiniTableField_Number(const struct upb_MiniTableField* f) {
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001322 return f->UPB_ONLYBITS(number);
1323}
1324
1325UPB_INLINE uint16_t
1326UPB_PRIVATE(_upb_MiniTableField_Offset)(const struct upb_MiniTableField* f) {
1327 return f->UPB_ONLYBITS(offset);
1328}
1329
1330UPB_INLINE size_t UPB_PRIVATE(_upb_MiniTableField_OneofOffset)(
1331 const struct upb_MiniTableField* f) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001332 UPB_ASSERT(upb_MiniTableField_IsInOneof(f));
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001333 return ~(ptrdiff_t)f->presence;
1334}
1335
1336UPB_INLINE void UPB_PRIVATE(_upb_MiniTableField_CheckIsArray)(
1337 const struct upb_MiniTableField* f) {
1338 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) ==
1339 kUpb_FieldRep_NativePointer);
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001340 UPB_ASSUME(upb_MiniTableField_IsArray(f));
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001341 UPB_ASSUME(f->presence == 0);
1342}
1343
1344UPB_INLINE void UPB_PRIVATE(_upb_MiniTableField_CheckIsMap)(
1345 const struct upb_MiniTableField* f) {
1346 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) ==
1347 kUpb_FieldRep_NativePointer);
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001348 UPB_ASSUME(upb_MiniTableField_IsMap(f));
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001349 UPB_ASSUME(f->presence == 0);
1350}
1351
1352UPB_INLINE size_t UPB_PRIVATE(_upb_MiniTableField_ElemSizeLg2)(
1353 const struct upb_MiniTableField* f) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001354 const upb_FieldType field_type = upb_MiniTableField_Type(f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001355 return UPB_PRIVATE(_upb_FieldType_SizeLg2)(field_type);
1356}
1357
1358// LINT.ThenChange(//depot/google3/third_party/upb/bits/typescript/mini_table_field.ts)
1359
1360#ifdef __cplusplus
1361} /* extern "C" */
1362#endif
1363
1364
1365#endif /* UPB_MINI_TABLE_INTERNAL_FIELD_H_ */
1366
1367// Must be last.
1368
1369typedef struct upb_MiniTableField upb_MiniTableField;
1370
1371#ifdef __cplusplus
1372extern "C" {
1373#endif
1374
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001375UPB_API_INLINE upb_CType upb_MiniTableField_CType(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001376
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001377UPB_API_INLINE bool upb_MiniTableField_HasPresence(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001378
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001379UPB_API_INLINE bool upb_MiniTableField_IsArray(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001380
1381UPB_API_INLINE bool upb_MiniTableField_IsClosedEnum(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001382 const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001383
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001384UPB_API_INLINE bool upb_MiniTableField_IsExtension(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001385
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001386UPB_API_INLINE bool upb_MiniTableField_IsInOneof(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001387
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001388UPB_API_INLINE bool upb_MiniTableField_IsMap(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001389
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001390UPB_API_INLINE bool upb_MiniTableField_IsPacked(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001391
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001392UPB_API_INLINE bool upb_MiniTableField_IsScalar(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001393
1394UPB_API_INLINE bool upb_MiniTableField_IsSubMessage(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001395 const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001396
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001397UPB_API_INLINE uint32_t upb_MiniTableField_Number(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001398
1399UPB_API_INLINE upb_FieldType
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001400upb_MiniTableField_Type(const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001401
1402#ifdef __cplusplus
1403} /* extern "C" */
1404#endif
1405
1406
1407#endif /* UPB_MINI_TABLE_FIELD_H_ */
1408
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001409#ifndef UPB_MINI_TABLE_MESSAGE_H_
1410#define UPB_MINI_TABLE_MESSAGE_H_
1411
1412
1413#ifndef UPB_MINI_TABLE_ENUM_H_
1414#define UPB_MINI_TABLE_ENUM_H_
1415
1416#include <stdint.h>
1417
1418
1419#ifndef UPB_MINI_TABLE_INTERNAL_ENUM_H_
1420#define UPB_MINI_TABLE_INTERNAL_ENUM_H_
1421
1422#include <stdint.h>
1423
1424// Must be last.
1425
1426struct upb_MiniTableEnum {
1427 uint32_t UPB_PRIVATE(mask_limit); // Highest that can be tested with mask.
1428 uint32_t UPB_PRIVATE(value_count); // Number of values after the bitfield.
1429 uint32_t UPB_PRIVATE(data)[]; // Bitmask + enumerated values follow.
1430};
1431
1432#ifdef __cplusplus
1433extern "C" {
1434#endif
1435
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001436UPB_API_INLINE bool upb_MiniTableEnum_CheckValue(
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001437 const struct upb_MiniTableEnum* e, uint32_t val) {
1438 if (UPB_LIKELY(val < 64)) {
1439 const uint64_t mask =
1440 e->UPB_PRIVATE(data)[0] | ((uint64_t)e->UPB_PRIVATE(data)[1] << 32);
1441 const uint64_t bit = 1ULL << val;
1442 return (mask & bit) != 0;
1443 }
1444 if (UPB_LIKELY(val < e->UPB_PRIVATE(mask_limit))) {
1445 const uint32_t mask = e->UPB_PRIVATE(data)[val / 32];
1446 const uint32_t bit = 1ULL << (val % 32);
1447 return (mask & bit) != 0;
1448 }
1449
1450 // OPT: binary search long lists?
1451 const uint32_t* start =
1452 &e->UPB_PRIVATE(data)[e->UPB_PRIVATE(mask_limit) / 32];
1453 const uint32_t* limit = &e->UPB_PRIVATE(
1454 data)[e->UPB_PRIVATE(mask_limit) / 32 + e->UPB_PRIVATE(value_count)];
1455 for (const uint32_t* p = start; p < limit; p++) {
1456 if (*p == val) return true;
1457 }
1458 return false;
1459}
1460
1461#ifdef __cplusplus
1462} /* extern "C" */
1463#endif
1464
1465
1466#endif /* UPB_MINI_TABLE_INTERNAL_ENUM_H_ */
1467
1468// Must be last
1469
1470typedef struct upb_MiniTableEnum upb_MiniTableEnum;
1471
1472#ifdef __cplusplus
1473extern "C" {
1474#endif
1475
1476// Validates enum value against range defined by enum mini table.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001477UPB_API_INLINE bool upb_MiniTableEnum_CheckValue(const upb_MiniTableEnum* e,
1478 uint32_t val);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001479
1480#ifdef __cplusplus
1481} /* extern "C" */
1482#endif
1483
1484
1485#endif /* UPB_MINI_TABLE_ENUM_H_ */
1486
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001487#ifndef UPB_MINI_TABLE_INTERNAL_MESSAGE_H_
1488#define UPB_MINI_TABLE_INTERNAL_MESSAGE_H_
1489
Protobuf Team Botd1cf09a2024-04-19 22:43:34 +00001490#include <stddef.h>
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001491#include <stdint.h>
1492
1493
1494#ifndef UPB_MINI_TABLE_INTERNAL_SUB_H_
1495#define UPB_MINI_TABLE_INTERNAL_SUB_H_
1496
1497// Must be last.
1498
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00001499typedef union {
1500 const struct upb_MiniTable* const* UPB_PRIVATE(submsg);
1501 const struct upb_MiniTableEnum* UPB_PRIVATE(subenum);
1502} upb_MiniTableSubInternal;
1503
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001504union upb_MiniTableSub {
1505 const struct upb_MiniTable* UPB_PRIVATE(submsg);
1506 const struct upb_MiniTableEnum* UPB_PRIVATE(subenum);
1507};
1508
1509#ifdef __cplusplus
1510extern "C" {
1511#endif
1512
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001513UPB_API_INLINE union upb_MiniTableSub upb_MiniTableSub_FromEnum(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001514 const struct upb_MiniTableEnum* subenum) {
1515 union upb_MiniTableSub out;
1516 out.UPB_PRIVATE(subenum) = subenum;
1517 return out;
1518}
1519
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001520UPB_API_INLINE union upb_MiniTableSub upb_MiniTableSub_FromMessage(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001521 const struct upb_MiniTable* submsg) {
1522 union upb_MiniTableSub out;
1523 out.UPB_PRIVATE(submsg) = submsg;
1524 return out;
1525}
1526
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001527UPB_API_INLINE const struct upb_MiniTableEnum* upb_MiniTableSub_Enum(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001528 const union upb_MiniTableSub sub) {
1529 return sub.UPB_PRIVATE(subenum);
1530}
1531
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001532UPB_API_INLINE const struct upb_MiniTable* upb_MiniTableSub_Message(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001533 const union upb_MiniTableSub sub) {
1534 return sub.UPB_PRIVATE(submsg);
1535}
1536
1537#ifdef __cplusplus
1538} /* extern "C" */
1539#endif
1540
1541
1542#endif /* UPB_MINI_TABLE_INTERNAL_SUB_H_ */
1543
1544// Must be last.
1545
1546struct upb_Decoder;
Protobuf Team Botc12c96e2024-01-16 07:41:08 +00001547struct upb_Message;
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001548typedef const char* _upb_FieldParser(struct upb_Decoder* d, const char* ptr,
1549 struct upb_Message* msg, intptr_t table,
1550 uint64_t hasbits, uint64_t data);
1551typedef struct {
1552 uint64_t field_data;
1553 _upb_FieldParser* field_parser;
1554} _upb_FastTable_Entry;
1555
1556typedef enum {
1557 kUpb_ExtMode_NonExtendable = 0, // Non-extendable message.
1558 kUpb_ExtMode_Extendable = 1, // Normal extendable message.
1559 kUpb_ExtMode_IsMessageSet = 2, // MessageSet message.
1560 kUpb_ExtMode_IsMessageSet_ITEM =
1561 3, // MessageSet item (temporary only, see decode.c)
1562
1563 // During table building we steal a bit to indicate that the message is a map
1564 // entry. *Only* used during table building!
1565 kUpb_ExtMode_IsMapEntry = 4,
1566} upb_ExtMode;
1567
1568// upb_MiniTable represents the memory layout of a given upb_MessageDef.
1569// The members are public so generated code can initialize them,
1570// but users MUST NOT directly read or write any of its members.
1571
1572// LINT.IfChange(minitable_struct_definition)
1573struct upb_MiniTable {
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00001574 const upb_MiniTableSubInternal* UPB_PRIVATE(subs);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001575 const struct upb_MiniTableField* UPB_ONLYBITS(fields);
1576
1577 // Must be aligned to sizeof(void*). Doesn't include internal members like
1578 // unknown fields, extension dict, pointer to msglayout, etc.
1579 uint16_t UPB_PRIVATE(size);
1580
1581 uint16_t UPB_ONLYBITS(field_count);
1582
1583 uint8_t UPB_PRIVATE(ext); // upb_ExtMode, uint8_t here so sizeof(ext) == 1
1584 uint8_t UPB_PRIVATE(dense_below);
1585 uint8_t UPB_PRIVATE(table_mask);
1586 uint8_t UPB_PRIVATE(required_count); // Required fields have the low hasbits.
Protobuf Team Botccfab6a2024-03-07 20:32:42 +00001587
Protobuf Team Bot5d58cb82024-03-06 19:59:18 +00001588#ifdef UPB_TRACING_ENABLED
1589 const char* UPB_PRIVATE(full_name);
1590#endif
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001591
Protobuf Team Bot5d58cb82024-03-06 19:59:18 +00001592#ifdef UPB_FASTTABLE_ENABLED
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001593 // To statically initialize the tables of variable length, we need a flexible
1594 // array member, and we need to compile in gnu99 mode (constant initialization
1595 // of flexible array members is a GNU extension, not in C99 unfortunately.
1596 _upb_FastTable_Entry UPB_PRIVATE(fasttable)[];
Protobuf Team Bot5d58cb82024-03-06 19:59:18 +00001597#endif
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001598};
1599// LINT.ThenChange(//depot/google3/third_party/upb/bits/typescript/mini_table.ts)
1600
1601#ifdef __cplusplus
1602extern "C" {
1603#endif
1604
Protobuf Team Bota9387b52024-06-12 15:17:52 +00001605UPB_INLINE const struct upb_MiniTable* UPB_PRIVATE(
1606 _upb_MiniTable_StrongReference)(const struct upb_MiniTable* mt) {
1607#if defined(__GNUC__)
1608 __asm__("" : : "r"(mt));
1609#else
1610 const struct upb_MiniTable* volatile unused = mt;
1611 (void)&unused; // Use address to avoid an extra load of "unused".
1612#endif
1613 return mt;
1614}
1615
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001616UPB_INLINE const struct upb_MiniTable* UPB_PRIVATE(_upb_MiniTable_Empty)(void) {
1617 extern const struct upb_MiniTable UPB_PRIVATE(_kUpb_MiniTable_Empty);
1618
1619 return &UPB_PRIVATE(_kUpb_MiniTable_Empty);
1620}
1621
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001622UPB_API_INLINE int upb_MiniTable_FieldCount(const struct upb_MiniTable* m) {
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001623 return m->UPB_ONLYBITS(field_count);
1624}
1625
1626UPB_INLINE bool UPB_PRIVATE(_upb_MiniTable_IsEmpty)(
1627 const struct upb_MiniTable* m) {
1628 extern const struct upb_MiniTable UPB_PRIVATE(_kUpb_MiniTable_Empty);
1629
1630 return m == &UPB_PRIVATE(_kUpb_MiniTable_Empty);
1631}
1632
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001633UPB_API_INLINE const struct upb_MiniTableField* upb_MiniTable_GetFieldByIndex(
1634 const struct upb_MiniTable* m, uint32_t i) {
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001635 return &m->UPB_ONLYBITS(fields)[i];
1636}
1637
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00001638UPB_INLINE const struct upb_MiniTable* UPB_PRIVATE(
1639 _upb_MiniTable_GetSubTableByIndex)(const struct upb_MiniTable* m,
1640 uint32_t i) {
1641 return *m->UPB_PRIVATE(subs)[i].UPB_PRIVATE(submsg);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001642}
1643
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001644UPB_API_INLINE const struct upb_MiniTable* upb_MiniTable_SubMessage(
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001645 const struct upb_MiniTable* m, const struct upb_MiniTableField* f) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001646 if (upb_MiniTableField_CType(f) != kUpb_CType_Message) {
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001647 return NULL;
1648 }
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00001649 return UPB_PRIVATE(_upb_MiniTable_GetSubTableByIndex)(
1650 m, f->UPB_PRIVATE(submsg_index));
Protobuf Team Botd1cf09a2024-04-19 22:43:34 +00001651}
1652
1653UPB_API_INLINE const struct upb_MiniTable* upb_MiniTable_GetSubMessageTable(
1654 const struct upb_MiniTable* m, const struct upb_MiniTableField* f) {
1655 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Message);
1656 const struct upb_MiniTable* ret = upb_MiniTable_SubMessage(m, f);
1657 UPB_ASSUME(ret);
1658 return UPB_PRIVATE(_upb_MiniTable_IsEmpty)(ret) ? NULL : ret;
1659}
1660
1661UPB_API_INLINE bool upb_MiniTable_FieldIsLinked(
1662 const struct upb_MiniTable* m, const struct upb_MiniTableField* f) {
1663 return upb_MiniTable_GetSubMessageTable(m, f) != NULL;
1664}
1665
1666UPB_API_INLINE const struct upb_MiniTable* upb_MiniTable_MapEntrySubMessage(
1667 const struct upb_MiniTable* m, const struct upb_MiniTableField* f) {
1668 UPB_ASSERT(upb_MiniTable_FieldIsLinked(m, f)); // Map entries must be linked.
1669 UPB_ASSERT(upb_MiniTableField_IsMap(f)); // Function precondition.
1670 return upb_MiniTable_SubMessage(m, f);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001671}
1672
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001673UPB_API_INLINE const struct upb_MiniTableEnum* upb_MiniTable_GetSubEnumTable(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001674 const struct upb_MiniTable* m, const struct upb_MiniTableField* f) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001675 UPB_ASSERT(upb_MiniTableField_CType(f) == kUpb_CType_Enum);
Protobuf Team Botd1cf09a2024-04-19 22:43:34 +00001676 return m->UPB_PRIVATE(subs)[f->UPB_PRIVATE(submsg_index)].UPB_PRIVATE(
1677 subenum);
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001678}
1679
1680UPB_API_INLINE const struct upb_MiniTableField* upb_MiniTable_MapKey(
1681 const struct upb_MiniTable* m) {
1682 UPB_ASSERT(upb_MiniTable_FieldCount(m) == 2);
1683 const struct upb_MiniTableField* f = upb_MiniTable_GetFieldByIndex(m, 0);
1684 UPB_ASSERT(upb_MiniTableField_Number(f) == 1);
1685 return f;
1686}
1687
1688UPB_API_INLINE const struct upb_MiniTableField* upb_MiniTable_MapValue(
1689 const struct upb_MiniTable* m) {
1690 UPB_ASSERT(upb_MiniTable_FieldCount(m) == 2);
1691 const struct upb_MiniTableField* f = upb_MiniTable_GetFieldByIndex(m, 1);
1692 UPB_ASSERT(upb_MiniTableField_Number(f) == 2);
1693 return f;
1694}
1695
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00001696// Computes a bitmask in which the |m->required_count| lowest bits are set.
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001697//
1698// Sample output:
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00001699// RequiredMask(1) => 0b1 (0x1)
1700// RequiredMask(5) => 0b11111 (0x1f)
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001701UPB_INLINE uint64_t
1702UPB_PRIVATE(_upb_MiniTable_RequiredMask)(const struct upb_MiniTable* m) {
1703 int n = m->UPB_PRIVATE(required_count);
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00001704 UPB_ASSERT(0 < n && n <= 64);
1705 return (1ULL << n) - 1;
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001706}
1707
Protobuf Team Bot5d58cb82024-03-06 19:59:18 +00001708#ifdef UPB_TRACING_ENABLED
1709UPB_INLINE const char* upb_MiniTable_FullName(
1710 const struct upb_MiniTable* mini_table) {
1711 return mini_table->UPB_PRIVATE(full_name);
1712}
Protobuf Team Botccfab6a2024-03-07 20:32:42 +00001713// Initializes tracing proto name from language runtimes that construct
1714// mini tables dynamically at runtime. The runtime is responsible for passing
1715// controlling lifetime of name such as storing in same arena as mini_table.
Protobuf Team Bot3ee01202024-03-07 23:27:46 +00001716UPB_INLINE void upb_MiniTable_SetFullName(struct upb_MiniTable* mini_table,
1717 const char* full_name) {
Protobuf Team Botccfab6a2024-03-07 20:32:42 +00001718 mini_table->UPB_PRIVATE(full_name) = full_name;
1719}
Protobuf Team Bot5d58cb82024-03-06 19:59:18 +00001720#endif
1721
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001722#ifdef __cplusplus
1723} /* extern "C" */
1724#endif
1725
1726
1727#endif /* UPB_MINI_TABLE_INTERNAL_MESSAGE_H_ */
1728
1729// Must be last.
1730
1731typedef struct upb_MiniTable upb_MiniTable;
1732
1733#ifdef __cplusplus
1734extern "C" {
1735#endif
1736
1737UPB_API const upb_MiniTableField* upb_MiniTable_FindFieldByNumber(
1738 const upb_MiniTable* m, uint32_t number);
1739
1740UPB_API_INLINE const upb_MiniTableField* upb_MiniTable_GetFieldByIndex(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001741 const upb_MiniTable* m, uint32_t index);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001742
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001743UPB_API_INLINE int upb_MiniTable_FieldCount(const upb_MiniTable* m);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001744
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001745// DEPRECATED: use upb_MiniTable_SubMessage() instead
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001746// Returns the MiniTable for a message field, NULL if the field is unlinked.
1747UPB_API_INLINE const upb_MiniTable* upb_MiniTable_GetSubMessageTable(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001748 const upb_MiniTable* m, const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001749
Protobuf Team Botd1cf09a2024-04-19 22:43:34 +00001750// Returns the MiniTable for a message field if it is a submessage, otherwise
1751// returns NULL.
1752//
1753// WARNING: if dynamic tree shaking is in use, the return value may be the
1754// "empty", zero-field placeholder message instead of the real message type.
1755// If the message is later linked, this function will begin returning the real
1756// message type.
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001757UPB_API_INLINE const upb_MiniTable* upb_MiniTable_SubMessage(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001758 const upb_MiniTable* m, const upb_MiniTableField* f);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001759
Protobuf Team Botd1cf09a2024-04-19 22:43:34 +00001760// Returns the MiniTable for a map field. The given field must refer to a map.
1761UPB_API_INLINE const upb_MiniTable* upb_MiniTable_MapEntrySubMessage(
1762 const upb_MiniTable* m, const upb_MiniTableField* f);
1763
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001764// Returns the MiniTableEnum for a message field, NULL if the field is unlinked.
1765UPB_API_INLINE const upb_MiniTableEnum* upb_MiniTable_GetSubEnumTable(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001766 const upb_MiniTable* m, const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001767
1768// Returns the MiniTableField for the key of a map.
1769UPB_API_INLINE const upb_MiniTableField* upb_MiniTable_MapKey(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001770 const upb_MiniTable* m);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001771
1772// Returns the MiniTableField for the value of a map.
1773UPB_API_INLINE const upb_MiniTableField* upb_MiniTable_MapValue(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001774 const upb_MiniTable* m);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001775
1776// Returns true if this MiniTable field is linked to a MiniTable for the
1777// sub-message.
Protobuf Team Bot54f512b2024-04-08 18:30:15 +00001778UPB_API_INLINE bool upb_MiniTable_FieldIsLinked(const upb_MiniTable* m,
1779 const upb_MiniTableField* f);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001780
1781// If this field is in a oneof, returns the first field in the oneof.
1782//
1783// Otherwise returns NULL.
1784//
1785// Usage:
1786// const upb_MiniTableField* field = upb_MiniTable_GetOneof(m, f);
1787// do {
1788// ..
1789// } while (upb_MiniTable_NextOneofField(m, &field);
1790//
1791const upb_MiniTableField* upb_MiniTable_GetOneof(const upb_MiniTable* m,
1792 const upb_MiniTableField* f);
1793
1794// Iterates to the next field in the oneof. If this is the last field in the
1795// oneof, returns false. The ordering of fields in the oneof is not
1796// guaranteed.
1797// REQUIRES: |f| is the field initialized by upb_MiniTable_GetOneof and updated
1798// by prior upb_MiniTable_NextOneofField calls.
1799bool upb_MiniTable_NextOneofField(const upb_MiniTable* m,
1800 const upb_MiniTableField** f);
1801
1802#ifdef __cplusplus
1803} /* extern "C" */
1804#endif
1805
1806
1807#endif /* UPB_MINI_TABLE_MESSAGE_H_ */
1808
1809// Must be last.
1810
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001811typedef struct upb_Array upb_Array;
1812
1813#ifdef __cplusplus
1814extern "C" {
1815#endif
1816
1817// Creates a new array on the given arena that holds elements of this type.
1818UPB_API upb_Array* upb_Array_New(upb_Arena* a, upb_CType type);
1819
1820// Returns the number of elements in the array.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001821UPB_API_INLINE size_t upb_Array_Size(const upb_Array* arr);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001822
1823// Returns the given element, which must be within the array's current size.
1824UPB_API upb_MessageValue upb_Array_Get(const upb_Array* arr, size_t i);
1825
1826// Returns a mutating pointer to the given element, which must be within the
1827// array's current size.
1828UPB_API upb_MutableMessageValue upb_Array_GetMutable(upb_Array* arr, size_t i);
1829
1830// Sets the given element, which must be within the array's current size.
1831UPB_API void upb_Array_Set(upb_Array* arr, size_t i, upb_MessageValue val);
1832
1833// Appends an element to the array. Returns false on allocation failure.
1834UPB_API bool upb_Array_Append(upb_Array* array, upb_MessageValue val,
1835 upb_Arena* arena);
1836
1837// Moves elements within the array using memmove().
1838// Like memmove(), the source and destination elements may be overlapping.
1839UPB_API void upb_Array_Move(upb_Array* array, size_t dst_idx, size_t src_idx,
1840 size_t count);
1841
1842// Inserts one or more empty elements into the array.
1843// Existing elements are shifted right.
1844// The new elements have undefined state and must be set with `upb_Array_Set()`.
1845// REQUIRES: `i <= upb_Array_Size(arr)`
1846UPB_API bool upb_Array_Insert(upb_Array* array, size_t i, size_t count,
1847 upb_Arena* arena);
1848
1849// Deletes one or more elements from the array.
1850// Existing elements are shifted left.
1851// REQUIRES: `i + count <= upb_Array_Size(arr)`
1852UPB_API void upb_Array_Delete(upb_Array* array, size_t i, size_t count);
1853
Protobuf Team Bot4b6de0f2024-03-29 19:09:40 +00001854// Reserves |size| elements of storage for the array.
1855UPB_API_INLINE bool upb_Array_Reserve(struct upb_Array* array, size_t size,
1856 upb_Arena* arena);
1857
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001858// Changes the size of a vector. New elements are initialized to NULL/0.
1859// Returns false on allocation failure.
1860UPB_API bool upb_Array_Resize(upb_Array* array, size_t size, upb_Arena* arena);
1861
1862// Returns pointer to array data.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001863UPB_API_INLINE const void* upb_Array_DataPtr(const upb_Array* arr);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001864
1865// Returns mutable pointer to array data.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001866UPB_API_INLINE void* upb_Array_MutableDataPtr(upb_Array* arr);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001867
1868// Mark an array and all of its descendents as frozen/immutable.
1869// If the array elements are messages then |m| must point to the minitable for
1870// those messages. Otherwise |m| must be NULL.
1871UPB_API void upb_Array_Freeze(upb_Array* arr, const upb_MiniTable* m);
1872
1873// Returns whether an array has been frozen.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001874UPB_API_INLINE bool upb_Array_IsFrozen(const upb_Array* arr);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001875
1876#ifdef __cplusplus
1877} /* extern "C" */
1878#endif
1879
1880
1881#endif /* UPB_MESSAGE_ARRAY_H_ */
1882
1883#ifndef UPB_MESSAGE_INTERNAL_ACCESSORS_H_
1884#define UPB_MESSAGE_INTERNAL_ACCESSORS_H_
1885
1886#include <stddef.h>
1887#include <stdint.h>
1888#include <string.h>
1889
1890
1891#ifndef UPB_BASE_INTERNAL_ENDIAN_H_
1892#define UPB_BASE_INTERNAL_ENDIAN_H_
1893
1894#include <stdint.h>
1895
1896// Must be last.
1897
1898#ifdef __cplusplus
1899extern "C" {
1900#endif
1901
1902UPB_INLINE bool upb_IsLittleEndian(void) {
1903 const int x = 1;
1904 return *(char*)&x == 1;
1905}
1906
1907UPB_INLINE uint32_t upb_BigEndian32(uint32_t val) {
1908 if (upb_IsLittleEndian()) return val;
1909
1910 return ((val & 0xff) << 24) | ((val & 0xff00) << 8) |
1911 ((val & 0xff0000) >> 8) | ((val & 0xff000000) >> 24);
1912}
1913
1914UPB_INLINE uint64_t upb_BigEndian64(uint64_t val) {
1915 if (upb_IsLittleEndian()) return val;
1916
1917 const uint64_t hi = ((uint64_t)upb_BigEndian32((uint32_t)val)) << 32;
1918 const uint64_t lo = upb_BigEndian32((uint32_t)(val >> 32));
1919 return hi | lo;
1920}
1921
1922#ifdef __cplusplus
1923} /* extern "C" */
1924#endif
1925
1926
1927#endif /* UPB_BASE_INTERNAL_ENDIAN_H_ */
1928
1929#ifndef UPB_MESSAGE_INTERNAL_EXTENSION_H_
1930#define UPB_MESSAGE_INTERNAL_EXTENSION_H_
1931
Protobuf Team Bot4df6e042024-01-30 19:27:52 +00001932#include <stddef.h>
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00001933
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001934
1935#ifndef UPB_MINI_TABLE_EXTENSION_H_
1936#define UPB_MINI_TABLE_EXTENSION_H_
1937
1938#include <stdint.h>
1939
1940
1941#ifndef UPB_MINI_TABLE_INTERNAL_EXTENSION_H_
1942#define UPB_MINI_TABLE_INTERNAL_EXTENSION_H_
1943
Protobuf Team Boteb31de32024-05-09 22:09:21 +00001944#include <stddef.h>
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001945#include <stdint.h>
1946
1947
1948// Must be last.
1949
1950struct upb_MiniTableExtension {
1951 // Do not move this field. We need to be able to alias pointers.
1952 struct upb_MiniTableField UPB_PRIVATE(field);
1953
1954 const struct upb_MiniTable* UPB_PRIVATE(extendee);
1955 union upb_MiniTableSub UPB_PRIVATE(sub); // NULL unless submsg or proto2 enum
1956};
1957
1958#ifdef __cplusplus
1959extern "C" {
1960#endif
1961
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001962UPB_API_INLINE upb_CType
1963upb_MiniTableExtension_CType(const struct upb_MiniTableExtension* e) {
1964 return upb_MiniTableField_CType(&e->UPB_PRIVATE(field));
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001965}
1966
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001967UPB_API_INLINE uint32_t
1968upb_MiniTableExtension_Number(const struct upb_MiniTableExtension* e) {
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001969 return e->UPB_PRIVATE(field).UPB_ONLYBITS(number);
1970}
1971
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001972UPB_API_INLINE const struct upb_MiniTable* upb_MiniTableExtension_GetSubMessage(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001973 const struct upb_MiniTableExtension* e) {
Protobuf Team Boteb31de32024-05-09 22:09:21 +00001974 if (upb_MiniTableExtension_CType(e) != kUpb_CType_Message) {
1975 return NULL;
1976 }
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001977 return upb_MiniTableSub_Message(e->UPB_PRIVATE(sub));
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001978}
1979
Protobuf Team Botb3878b52024-02-08 21:50:53 +00001980UPB_API_INLINE void upb_MiniTableExtension_SetSubMessage(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001981 struct upb_MiniTableExtension* e, const struct upb_MiniTable* m) {
1982 e->UPB_PRIVATE(sub).UPB_PRIVATE(submsg) = m;
1983}
1984
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00001985UPB_INLINE upb_FieldRep UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(
1986 const struct upb_MiniTableExtension* e) {
1987 return UPB_PRIVATE(_upb_MiniTableField_GetRep)(&e->UPB_PRIVATE(field));
1988}
1989
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00001990#ifdef __cplusplus
1991} /* extern "C" */
1992#endif
1993
1994
1995#endif /* UPB_MINI_TABLE_INTERNAL_EXTENSION_H_ */
1996
1997// Must be last.
1998
1999typedef struct upb_MiniTableExtension upb_MiniTableExtension;
2000
2001#ifdef __cplusplus
2002extern "C" {
2003#endif
2004
Protobuf Team Botfe6a6012024-01-18 00:05:28 +00002005UPB_API_INLINE upb_CType
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002006upb_MiniTableExtension_CType(const upb_MiniTableExtension* e);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002007
2008UPB_API_INLINE uint32_t
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002009upb_MiniTableExtension_Number(const upb_MiniTableExtension* e);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002010
2011UPB_API_INLINE const upb_MiniTable* upb_MiniTableExtension_GetSubMessage(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002012 const upb_MiniTableExtension* e);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002013
2014UPB_API_INLINE void upb_MiniTableExtension_SetSubMessage(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002015 upb_MiniTableExtension* e, const upb_MiniTable* m);
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002016
2017#ifdef __cplusplus
2018} /* extern "C" */
2019#endif
2020
2021
2022#endif /* UPB_MINI_TABLE_EXTENSION_H_ */
2023
2024// Must be last.
2025
2026// The internal representation of an extension is self-describing: it contains
2027// enough information that we can serialize it to binary format without needing
2028// to look it up in a upb_ExtensionRegistry.
2029//
2030// This representation allocates 16 bytes to data on 64-bit platforms.
2031// This is rather wasteful for scalars (in the extreme case of bool,
2032// it wastes 15 bytes). We accept this because we expect messages to be
2033// the most common extension type.
Protobuf Team Botc13512a2024-01-25 18:53:49 +00002034typedef struct {
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002035 const upb_MiniTableExtension* ext;
Protobuf Team Bot4df6e042024-01-30 19:27:52 +00002036 upb_MessageValue data;
Protobuf Team Botc13512a2024-01-25 18:53:49 +00002037} upb_Extension;
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002038
2039#ifdef __cplusplus
2040extern "C" {
2041#endif
2042
2043// Adds the given extension data to the given message.
2044// |ext| is copied into the message instance.
2045// This logically replaces any previously-added extension with this number.
Protobuf Team Botc13512a2024-01-25 18:53:49 +00002046upb_Extension* UPB_PRIVATE(_upb_Message_GetOrCreateExtension)(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002047 struct upb_Message* msg, const upb_MiniTableExtension* ext,
2048 upb_Arena* arena);
2049
2050// Returns an array of extensions for this message.
2051// Note: the array is ordered in reverse relative to the order of creation.
Protobuf Team Botc13512a2024-01-25 18:53:49 +00002052const upb_Extension* UPB_PRIVATE(_upb_Message_Getexts)(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002053 const struct upb_Message* msg, size_t* count);
2054
2055// Returns an extension for a message with a given mini table,
2056// or NULL if no extension exists with this mini table.
Protobuf Team Botc13512a2024-01-25 18:53:49 +00002057const upb_Extension* UPB_PRIVATE(_upb_Message_Getext)(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002058 const struct upb_Message* msg, const upb_MiniTableExtension* ext);
2059
2060#ifdef __cplusplus
2061} /* extern "C" */
2062#endif
2063
2064
2065#endif /* UPB_MESSAGE_INTERNAL_EXTENSION_H_ */
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002066
2067#ifndef UPB_MESSAGE_INTERNAL_MAP_H_
2068#define UPB_MESSAGE_INTERNAL_MAP_H_
2069
2070#include <stddef.h>
2071#include <string.h>
2072
2073
2074#ifndef UPB_HASH_STR_TABLE_H_
2075#define UPB_HASH_STR_TABLE_H_
2076
2077
2078/*
2079 * upb_table
2080 *
2081 * This header is INTERNAL-ONLY! Its interfaces are not public or stable!
2082 * This file defines very fast int->upb_value (inttable) and string->upb_value
2083 * (strtable) hash tables.
2084 *
2085 * The table uses chained scatter with Brent's variation (inspired by the Lua
2086 * implementation of hash tables). The hash function for strings is Austin
2087 * Appleby's "MurmurHash."
2088 *
2089 * The inttable uses uintptr_t as its key, which guarantees it can be used to
2090 * store pointers or integers of at least 32 bits (upb isn't really useful on
2091 * systems where sizeof(void*) < 4).
2092 *
2093 * The table must be homogeneous (all values of the same type). In debug
2094 * mode, we check this on insert and lookup.
2095 */
2096
2097#ifndef UPB_HASH_COMMON_H_
2098#define UPB_HASH_COMMON_H_
2099
2100#include <string.h>
2101
2102
2103// Must be last.
2104
2105#ifdef __cplusplus
2106extern "C" {
2107#endif
2108
2109/* upb_value ******************************************************************/
2110
2111typedef struct {
2112 uint64_t val;
2113} upb_value;
2114
2115UPB_INLINE void _upb_value_setval(upb_value* v, uint64_t val) { v->val = val; }
2116
2117/* For each value ctype, define the following set of functions:
2118 *
2119 * // Get/set an int32 from a upb_value.
2120 * int32_t upb_value_getint32(upb_value val);
2121 * void upb_value_setint32(upb_value *val, int32_t cval);
2122 *
2123 * // Construct a new upb_value from an int32.
2124 * upb_value upb_value_int32(int32_t val); */
2125#define FUNCS(name, membername, type_t, converter) \
2126 UPB_INLINE void upb_value_set##name(upb_value* val, type_t cval) { \
2127 val->val = (converter)cval; \
2128 } \
2129 UPB_INLINE upb_value upb_value_##name(type_t val) { \
2130 upb_value ret; \
2131 upb_value_set##name(&ret, val); \
2132 return ret; \
2133 } \
2134 UPB_INLINE type_t upb_value_get##name(upb_value val) { \
2135 return (type_t)(converter)val.val; \
2136 }
2137
2138FUNCS(int32, int32, int32_t, int32_t)
2139FUNCS(int64, int64, int64_t, int64_t)
2140FUNCS(uint32, uint32, uint32_t, uint32_t)
2141FUNCS(uint64, uint64, uint64_t, uint64_t)
2142FUNCS(bool, _bool, bool, bool)
2143FUNCS(cstr, cstr, char*, uintptr_t)
2144FUNCS(uintptr, uptr, uintptr_t, uintptr_t)
2145FUNCS(ptr, ptr, void*, uintptr_t)
2146FUNCS(constptr, constptr, const void*, uintptr_t)
2147
2148#undef FUNCS
2149
2150UPB_INLINE void upb_value_setfloat(upb_value* val, float cval) {
2151 memcpy(&val->val, &cval, sizeof(cval));
2152}
2153
2154UPB_INLINE void upb_value_setdouble(upb_value* val, double cval) {
2155 memcpy(&val->val, &cval, sizeof(cval));
2156}
2157
2158UPB_INLINE upb_value upb_value_float(float cval) {
2159 upb_value ret;
2160 upb_value_setfloat(&ret, cval);
2161 return ret;
2162}
2163
2164UPB_INLINE upb_value upb_value_double(double cval) {
2165 upb_value ret;
2166 upb_value_setdouble(&ret, cval);
2167 return ret;
2168}
2169
2170/* upb_tabkey *****************************************************************/
2171
2172/* Either:
2173 * 1. an actual integer key, or
2174 * 2. a pointer to a string prefixed by its uint32_t length, owned by us.
2175 *
2176 * ...depending on whether this is a string table or an int table. We would
2177 * make this a union of those two types, but C89 doesn't support statically
2178 * initializing a non-first union member. */
2179typedef uintptr_t upb_tabkey;
2180
2181UPB_INLINE char* upb_tabstr(upb_tabkey key, uint32_t* len) {
2182 char* mem = (char*)key;
2183 if (len) memcpy(len, mem, sizeof(*len));
2184 return mem + sizeof(*len);
2185}
2186
2187UPB_INLINE upb_StringView upb_tabstrview(upb_tabkey key) {
2188 upb_StringView ret;
2189 uint32_t len;
2190 ret.data = upb_tabstr(key, &len);
2191 ret.size = len;
2192 return ret;
2193}
2194
2195/* upb_tabval *****************************************************************/
2196
2197typedef struct upb_tabval {
2198 uint64_t val;
2199} upb_tabval;
2200
2201#define UPB_TABVALUE_EMPTY_INIT \
2202 { -1 }
2203
2204/* upb_table ******************************************************************/
2205
2206typedef struct _upb_tabent {
2207 upb_tabkey key;
2208 upb_tabval val;
2209
2210 /* Internal chaining. This is const so we can create static initializers for
2211 * tables. We cast away const sometimes, but *only* when the containing
2212 * upb_table is known to be non-const. This requires a bit of care, but
2213 * the subtlety is confined to table.c. */
2214 const struct _upb_tabent* next;
2215} upb_tabent;
2216
2217typedef struct {
2218 size_t count; /* Number of entries in the hash part. */
2219 uint32_t mask; /* Mask to turn hash value -> bucket. */
2220 uint32_t max_count; /* Max count before we hit our load limit. */
2221 uint8_t size_lg2; /* Size of the hashtable part is 2^size_lg2 entries. */
2222 upb_tabent* entries;
2223} upb_table;
2224
2225UPB_INLINE size_t upb_table_size(const upb_table* t) {
2226 return t->size_lg2 ? 1 << t->size_lg2 : 0;
2227}
2228
2229// Internal-only functions, in .h file only out of necessity.
2230
2231UPB_INLINE bool upb_tabent_isempty(const upb_tabent* e) { return e->key == 0; }
2232
2233uint32_t _upb_Hash(const void* p, size_t n, uint64_t seed);
2234
2235#ifdef __cplusplus
2236} /* extern "C" */
2237#endif
2238
2239
2240#endif /* UPB_HASH_COMMON_H_ */
2241
2242// Must be last.
2243
2244typedef struct {
2245 upb_table t;
2246} upb_strtable;
2247
2248#ifdef __cplusplus
2249extern "C" {
2250#endif
2251
2252// Initialize a table. If memory allocation failed, false is returned and
2253// the table is uninitialized.
2254bool upb_strtable_init(upb_strtable* table, size_t expected_size, upb_Arena* a);
2255
2256// Returns the number of values in the table.
2257UPB_INLINE size_t upb_strtable_count(const upb_strtable* t) {
2258 return t->t.count;
2259}
2260
2261void upb_strtable_clear(upb_strtable* t);
2262
2263// Inserts the given key into the hashtable with the given value.
2264// The key must not already exist in the hash table. The key is not required
2265// to be NULL-terminated, and the table will make an internal copy of the key.
2266//
2267// If a table resize was required but memory allocation failed, false is
2268// returned and the table is unchanged. */
2269bool upb_strtable_insert(upb_strtable* t, const char* key, size_t len,
2270 upb_value val, upb_Arena* a);
2271
2272// Looks up key in this table, returning "true" if the key was found.
2273// If v is non-NULL, copies the value for this key into *v.
2274bool upb_strtable_lookup2(const upb_strtable* t, const char* key, size_t len,
2275 upb_value* v);
2276
2277// For NULL-terminated strings.
2278UPB_INLINE bool upb_strtable_lookup(const upb_strtable* t, const char* key,
2279 upb_value* v) {
2280 return upb_strtable_lookup2(t, key, strlen(key), v);
2281}
2282
2283// Removes an item from the table. Returns true if the remove was successful,
2284// and stores the removed item in *val if non-NULL.
2285bool upb_strtable_remove2(upb_strtable* t, const char* key, size_t len,
2286 upb_value* val);
2287
2288UPB_INLINE bool upb_strtable_remove(upb_strtable* t, const char* key,
2289 upb_value* v) {
2290 return upb_strtable_remove2(t, key, strlen(key), v);
2291}
2292
2293// Exposed for testing only.
2294bool upb_strtable_resize(upb_strtable* t, size_t size_lg2, upb_Arena* a);
2295
2296/* Iteration over strtable:
2297 *
2298 * intptr_t iter = UPB_STRTABLE_BEGIN;
2299 * upb_StringView key;
2300 * upb_value val;
2301 * while (upb_strtable_next2(t, &key, &val, &iter)) {
2302 * // ...
2303 * }
2304 */
2305
2306#define UPB_STRTABLE_BEGIN -1
2307
2308bool upb_strtable_next2(const upb_strtable* t, upb_StringView* key,
2309 upb_value* val, intptr_t* iter);
2310void upb_strtable_removeiter(upb_strtable* t, intptr_t* iter);
2311void upb_strtable_setentryvalue(upb_strtable* t, intptr_t iter, upb_value v);
2312
2313/* DEPRECATED iterators, slated for removal.
2314 *
2315 * Iterators for string tables. We are subject to some kind of unusual
2316 * design constraints:
2317 *
2318 * For high-level languages:
2319 * - we must be able to guarantee that we don't crash or corrupt memory even if
2320 * the program accesses an invalidated iterator.
2321 *
2322 * For C++11 range-based for:
2323 * - iterators must be copyable
2324 * - iterators must be comparable
2325 * - it must be possible to construct an "end" value.
2326 *
2327 * Iteration order is undefined.
2328 *
2329 * Modifying the table invalidates iterators. upb_{str,int}table_done() is
2330 * guaranteed to work even on an invalidated iterator, as long as the table it
2331 * is iterating over has not been freed. Calling next() or accessing data from
2332 * an invalidated iterator yields unspecified elements from the table, but it is
2333 * guaranteed not to crash and to return real table elements (except when done()
2334 * is true). */
2335/* upb_strtable_iter **********************************************************/
2336
2337/* upb_strtable_iter i;
2338 * upb_strtable_begin(&i, t);
2339 * for(; !upb_strtable_done(&i); upb_strtable_next(&i)) {
2340 * const char *key = upb_strtable_iter_key(&i);
2341 * const upb_value val = upb_strtable_iter_value(&i);
2342 * // ...
2343 * }
2344 */
2345
2346typedef struct {
2347 const upb_strtable* t;
2348 size_t index;
2349} upb_strtable_iter;
2350
2351UPB_INLINE const upb_tabent* str_tabent(const upb_strtable_iter* i) {
2352 return &i->t->t.entries[i->index];
2353}
2354
2355void upb_strtable_begin(upb_strtable_iter* i, const upb_strtable* t);
2356void upb_strtable_next(upb_strtable_iter* i);
2357bool upb_strtable_done(const upb_strtable_iter* i);
2358upb_StringView upb_strtable_iter_key(const upb_strtable_iter* i);
2359upb_value upb_strtable_iter_value(const upb_strtable_iter* i);
2360void upb_strtable_iter_setdone(upb_strtable_iter* i);
2361bool upb_strtable_iter_isequal(const upb_strtable_iter* i1,
2362 const upb_strtable_iter* i2);
2363
2364#ifdef __cplusplus
2365} /* extern "C" */
2366#endif
2367
2368
2369#endif /* UPB_HASH_STR_TABLE_H_ */
2370
2371// Must be last.
2372
2373typedef enum {
2374 kUpb_MapInsertStatus_Inserted = 0,
2375 kUpb_MapInsertStatus_Replaced = 1,
2376 kUpb_MapInsertStatus_OutOfMemory = 2,
2377} upb_MapInsertStatus;
2378
2379// EVERYTHING BELOW THIS LINE IS INTERNAL - DO NOT USE /////////////////////////
2380
2381struct upb_Map {
2382 // Size of key and val, based on the map type.
2383 // Strings are represented as '0' because they must be handled specially.
2384 char key_size;
2385 char val_size;
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002386 bool UPB_PRIVATE(is_frozen);
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002387
2388 upb_strtable table;
2389};
2390
2391#ifdef __cplusplus
2392extern "C" {
2393#endif
2394
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002395UPB_INLINE void UPB_PRIVATE(_upb_Map_ShallowFreeze)(struct upb_Map* map) {
2396 map->UPB_PRIVATE(is_frozen) = true;
2397}
2398
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002399UPB_API_INLINE bool upb_Map_IsFrozen(const struct upb_Map* map) {
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002400 return map->UPB_PRIVATE(is_frozen);
2401}
2402
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002403// Converting between internal table representation and user values.
2404//
2405// _upb_map_tokey() and _upb_map_fromkey() are inverses.
2406// _upb_map_tovalue() and _upb_map_fromvalue() are inverses.
2407//
2408// These functions account for the fact that strings are treated differently
2409// from other types when stored in a map.
2410
2411UPB_INLINE upb_StringView _upb_map_tokey(const void* key, size_t size) {
2412 if (size == UPB_MAPTYPE_STRING) {
2413 return *(upb_StringView*)key;
2414 } else {
2415 return upb_StringView_FromDataAndSize((const char*)key, size);
2416 }
2417}
2418
2419UPB_INLINE void _upb_map_fromkey(upb_StringView key, void* out, size_t size) {
2420 if (size == UPB_MAPTYPE_STRING) {
2421 memcpy(out, &key, sizeof(key));
2422 } else {
2423 memcpy(out, key.data, size);
2424 }
2425}
2426
2427UPB_INLINE bool _upb_map_tovalue(const void* val, size_t size,
2428 upb_value* msgval, upb_Arena* a) {
2429 if (size == UPB_MAPTYPE_STRING) {
2430 upb_StringView* strp = (upb_StringView*)upb_Arena_Malloc(a, sizeof(*strp));
2431 if (!strp) return false;
2432 *strp = *(upb_StringView*)val;
2433 *msgval = upb_value_ptr(strp);
2434 } else {
2435 memcpy(msgval, val, size);
2436 }
2437 return true;
2438}
2439
2440UPB_INLINE void _upb_map_fromvalue(upb_value val, void* out, size_t size) {
2441 if (size == UPB_MAPTYPE_STRING) {
2442 const upb_StringView* strp = (const upb_StringView*)upb_value_getptr(val);
2443 memcpy(out, strp, sizeof(upb_StringView));
2444 } else {
2445 memcpy(out, &val, size);
2446 }
2447}
2448
2449UPB_INLINE void* _upb_map_next(const struct upb_Map* map, size_t* iter) {
2450 upb_strtable_iter it;
2451 it.t = &map->table;
2452 it.index = *iter;
2453 upb_strtable_next(&it);
2454 *iter = it.index;
2455 if (upb_strtable_done(&it)) return NULL;
2456 return (void*)str_tabent(&it);
2457}
2458
2459UPB_INLINE void _upb_Map_Clear(struct upb_Map* map) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002460 UPB_ASSERT(!upb_Map_IsFrozen(map));
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002461
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002462 upb_strtable_clear(&map->table);
2463}
2464
2465UPB_INLINE bool _upb_Map_Delete(struct upb_Map* map, const void* key,
2466 size_t key_size, upb_value* val) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002467 UPB_ASSERT(!upb_Map_IsFrozen(map));
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002468
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002469 upb_StringView k = _upb_map_tokey(key, key_size);
2470 return upb_strtable_remove2(&map->table, k.data, k.size, val);
2471}
2472
2473UPB_INLINE bool _upb_Map_Get(const struct upb_Map* map, const void* key,
2474 size_t key_size, void* val, size_t val_size) {
2475 upb_value tabval;
2476 upb_StringView k = _upb_map_tokey(key, key_size);
2477 bool ret = upb_strtable_lookup2(&map->table, k.data, k.size, &tabval);
2478 if (ret && val) {
2479 _upb_map_fromvalue(tabval, val, val_size);
2480 }
2481 return ret;
2482}
2483
2484UPB_INLINE upb_MapInsertStatus _upb_Map_Insert(struct upb_Map* map,
2485 const void* key, size_t key_size,
2486 void* val, size_t val_size,
2487 upb_Arena* a) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002488 UPB_ASSERT(!upb_Map_IsFrozen(map));
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002489
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002490 upb_StringView strkey = _upb_map_tokey(key, key_size);
2491 upb_value tabval = {0};
2492 if (!_upb_map_tovalue(val, val_size, &tabval, a)) {
2493 return kUpb_MapInsertStatus_OutOfMemory;
2494 }
2495
2496 // TODO: add overwrite operation to minimize number of lookups.
2497 bool removed =
2498 upb_strtable_remove2(&map->table, strkey.data, strkey.size, NULL);
2499 if (!upb_strtable_insert(&map->table, strkey.data, strkey.size, tabval, a)) {
2500 return kUpb_MapInsertStatus_OutOfMemory;
2501 }
2502 return removed ? kUpb_MapInsertStatus_Replaced
2503 : kUpb_MapInsertStatus_Inserted;
2504}
2505
2506UPB_INLINE size_t _upb_Map_Size(const struct upb_Map* map) {
2507 return map->table.t.count;
2508}
2509
2510// Strings/bytes are special-cased in maps.
2511extern char _upb_Map_CTypeSizeTable[12];
2512
2513UPB_INLINE size_t _upb_Map_CTypeSize(upb_CType ctype) {
2514 return _upb_Map_CTypeSizeTable[ctype];
2515}
2516
2517// Creates a new map on the given arena with this key/value type.
2518struct upb_Map* _upb_Map_New(upb_Arena* a, size_t key_size, size_t value_size);
2519
2520#ifdef __cplusplus
2521} /* extern "C" */
2522#endif
2523
2524
2525#endif /* UPB_MESSAGE_INTERNAL_MAP_H_ */
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00002526
Protobuf Team Bot4df6e042024-01-30 19:27:52 +00002527/*
2528** Our memory representation for parsing tables and messages themselves.
2529** Functions in this file are used by generated code and possibly reflection.
2530**
2531** The definitions in this file are internal to upb.
2532**/
2533
2534#ifndef UPB_MESSAGE_INTERNAL_MESSAGE_H_
2535#define UPB_MESSAGE_INTERNAL_MESSAGE_H_
2536
2537#include <stdlib.h>
2538#include <string.h>
2539
2540
2541// Must be last.
2542
2543#ifdef __cplusplus
2544extern "C" {
2545#endif
2546
2547extern const float kUpb_FltInfinity;
2548extern const double kUpb_Infinity;
2549extern const double kUpb_NaN;
2550
2551// Internal members of a upb_Message that track unknown fields and/or
2552// extensions. We can change this without breaking binary compatibility.
2553
2554typedef struct upb_Message_Internal {
2555 // Total size of this structure, including the data that follows.
2556 // Must be aligned to 8, which is alignof(upb_Extension)
2557 uint32_t size;
2558
2559 /* Offsets relative to the beginning of this structure.
2560 *
2561 * Unknown data grows forward from the beginning to unknown_end.
2562 * Extension data grows backward from size to ext_begin.
2563 * When the two meet, we're out of data and have to realloc.
2564 *
2565 * If we imagine that the final member of this struct is:
2566 * char data[size - overhead]; // overhead = sizeof(upb_Message_Internal)
2567 *
2568 * Then we have:
2569 * unknown data: data[0 .. (unknown_end - overhead)]
2570 * extensions data: data[(ext_begin - overhead) .. (size - overhead)] */
2571 uint32_t unknown_end;
2572 uint32_t ext_begin;
2573 // Data follows, as if there were an array:
2574 // char data[size - sizeof(upb_Message_Internal)];
2575} upb_Message_Internal;
2576
Protobuf Team Botccfab6a2024-03-07 20:32:42 +00002577#ifdef UPB_TRACING_ENABLED
Protobuf Team Bot51cba7c2024-05-06 13:34:40 +00002578UPB_API void upb_Message_LogNewMessage(const upb_MiniTable* m,
2579 const upb_Arena* arena);
2580UPB_API void upb_Message_SetNewMessageTraceHandler(
2581 void (*handler)(const upb_MiniTable*, const upb_Arena*));
2582#endif // UPB_TRACING_ENABLED
Protobuf Team Botccfab6a2024-03-07 20:32:42 +00002583
Protobuf Team Bot4df6e042024-01-30 19:27:52 +00002584// Inline version upb_Message_New(), for internal use.
2585UPB_INLINE struct upb_Message* _upb_Message_New(const upb_MiniTable* m,
2586 upb_Arena* a) {
Protobuf Team Botccfab6a2024-03-07 20:32:42 +00002587#ifdef UPB_TRACING_ENABLED
Protobuf Team Bot51cba7c2024-05-06 13:34:40 +00002588 upb_Message_LogNewMessage(m, a);
2589#endif // UPB_TRACING_ENABLED
2590
Protobuf Team Bot4df6e042024-01-30 19:27:52 +00002591 const int size = m->UPB_PRIVATE(size);
2592 struct upb_Message* msg = (struct upb_Message*)upb_Arena_Malloc(a, size);
2593 if (UPB_UNLIKELY(!msg)) return NULL;
2594 memset(msg, 0, size);
2595 return msg;
2596}
2597
2598// Discards the unknown fields for this message only.
2599void _upb_Message_DiscardUnknown_shallow(struct upb_Message* msg);
2600
2601// Adds unknown data (serialized protobuf data) to the given message.
2602// The data is copied into the message instance.
2603bool UPB_PRIVATE(_upb_Message_AddUnknown)(struct upb_Message* msg,
2604 const char* data, size_t len,
2605 upb_Arena* arena);
2606
2607bool UPB_PRIVATE(_upb_Message_Realloc)(struct upb_Message* msg, size_t need,
2608 upb_Arena* arena);
2609
2610#ifdef __cplusplus
2611} /* extern "C" */
2612#endif
2613
2614
2615#endif /* UPB_MESSAGE_INTERNAL_MESSAGE_H_ */
2616
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002617#ifndef UPB_MINI_TABLE_INTERNAL_TAGGED_PTR_H_
2618#define UPB_MINI_TABLE_INTERNAL_TAGGED_PTR_H_
2619
2620#include <stdint.h>
2621
2622
2623// Must be last.
2624
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002625#ifdef __cplusplus
2626extern "C" {
2627#endif
2628
2629// Internal-only because empty messages cannot be created by the user.
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002630UPB_INLINE uintptr_t
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002631UPB_PRIVATE(_upb_TaggedMessagePtr_Pack)(struct upb_Message* ptr, bool empty) {
2632 UPB_ASSERT(((uintptr_t)ptr & 1) == 0);
2633 return (uintptr_t)ptr | (empty ? 1 : 0);
2634}
2635
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002636UPB_API_INLINE bool upb_TaggedMessagePtr_IsEmpty(uintptr_t ptr) {
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002637 return ptr & 1;
2638}
2639
2640UPB_INLINE struct upb_Message* UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002641 uintptr_t ptr) {
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002642 return (struct upb_Message*)(ptr & ~(uintptr_t)1);
2643}
2644
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002645UPB_API_INLINE struct upb_Message* upb_TaggedMessagePtr_GetNonEmptyMessage(
2646 uintptr_t ptr) {
2647 UPB_ASSERT(!upb_TaggedMessagePtr_IsEmpty(ptr));
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002648 return UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)(ptr);
2649}
2650
2651UPB_INLINE struct upb_Message* UPB_PRIVATE(
Protobuf Team Bote1253cd2024-01-08 23:09:09 +00002652 _upb_TaggedMessagePtr_GetEmptyMessage)(uintptr_t ptr) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002653 UPB_ASSERT(upb_TaggedMessagePtr_IsEmpty(ptr));
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002654 return UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)(ptr);
2655}
2656
2657#ifdef __cplusplus
2658} /* extern "C" */
2659#endif
2660
2661
2662#endif /* UPB_MINI_TABLE_INTERNAL_TAGGED_PTR_H_ */
2663
Protobuf Team Botc12c96e2024-01-16 07:41:08 +00002664#ifndef UPB_MESSAGE_INTERNAL_TYPES_H_
2665#define UPB_MESSAGE_INTERNAL_TYPES_H_
2666
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002667#include <stdint.h>
2668
2669// Must be last.
2670
2671#define UPB_OPAQUE(x) x##_opaque
2672
Protobuf Team Botc12c96e2024-01-16 07:41:08 +00002673struct upb_Message {
2674 union {
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002675 uintptr_t UPB_OPAQUE(internal); // tagged pointer, low bit == frozen
Protobuf Team Botc12c96e2024-01-16 07:41:08 +00002676 double d; // Forces same size for 32-bit/64-bit builds
2677 };
2678};
2679
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002680#ifdef __cplusplus
2681extern "C" {
2682#endif
2683
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002684UPB_INLINE void UPB_PRIVATE(_upb_Message_ShallowFreeze)(
2685 struct upb_Message* msg) {
2686 msg->UPB_OPAQUE(internal) |= 1ULL;
2687}
2688
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002689UPB_API_INLINE bool upb_Message_IsFrozen(const struct upb_Message* msg) {
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002690 return (msg->UPB_OPAQUE(internal) & 1ULL) != 0;
2691}
2692
2693UPB_INLINE struct upb_Message_Internal* UPB_PRIVATE(_upb_Message_GetInternal)(
2694 const struct upb_Message* msg) {
2695 const uintptr_t tmp = msg->UPB_OPAQUE(internal) & ~1ULL;
2696 return (struct upb_Message_Internal*)tmp;
2697}
2698
2699UPB_INLINE void UPB_PRIVATE(_upb_Message_SetInternal)(
2700 struct upb_Message* msg, struct upb_Message_Internal* internal) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002701 UPB_ASSERT(!upb_Message_IsFrozen(msg));
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002702 msg->UPB_OPAQUE(internal) = (uintptr_t)internal;
2703}
2704
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002705#ifdef __cplusplus
2706} /* extern "C" */
2707#endif
2708
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00002709#undef UPB_OPAQUE
2710
2711
Protobuf Team Botc12c96e2024-01-16 07:41:08 +00002712#endif /* UPB_MESSAGE_INTERNAL_TYPES_H_ */
2713
Eric Salo8809a112022-11-21 13:01:06 -08002714// Must be last.
2715
Eric Salob7d54ac2022-12-29 11:59:42 -08002716#if defined(__GNUC__) && !defined(__clang__)
2717// GCC raises incorrect warnings in these functions. It thinks that we are
2718// overrunning buffers, but we carefully write the functions in this file to
2719// guarantee that this is impossible. GCC gets this wrong due it its failure
2720// to perform constant propagation as we expect:
2721// - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108217
2722// - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108226
2723//
2724// Unfortunately this also indicates that GCC is not optimizing away the
2725// switch() in cases where it should be, compromising the performance.
2726#pragma GCC diagnostic push
2727#pragma GCC diagnostic ignored "-Warray-bounds"
2728#pragma GCC diagnostic ignored "-Wstringop-overflow"
Mike Kruskal232ecf42023-01-14 00:09:40 -08002729#if __GNUC__ >= 11
Eric Salob7d54ac2022-12-29 11:59:42 -08002730#pragma GCC diagnostic ignored "-Wstringop-overread"
2731#endif
Mike Kruskal232ecf42023-01-14 00:09:40 -08002732#endif
Eric Salob7d54ac2022-12-29 11:59:42 -08002733
Eric Salo8809a112022-11-21 13:01:06 -08002734#ifdef __cplusplus
2735extern "C" {
2736#endif
2737
Mike Kruskal9d435022023-07-11 12:45:07 -07002738// LINT.IfChange(presence_logic)
2739
2740// Hasbit access ///////////////////////////////////////////////////////////////
2741
Protobuf Team Bot7713df52023-12-05 20:16:11 +00002742UPB_INLINE bool UPB_PRIVATE(_upb_Message_GetHasbit)(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002743 const struct upb_Message* msg, const upb_MiniTableField* f) {
Protobuf Team Bota0e81952023-12-21 14:54:29 +00002744 const size_t offset = UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(f);
2745 const char mask = UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(f);
2746
Protobuf Team Botb8c1a272023-11-15 17:49:10 +00002747 return (*UPB_PTR_AT(msg, offset, const char) & mask) != 0;
Mike Kruskal9d435022023-07-11 12:45:07 -07002748}
2749
Protobuf Team Bot7713df52023-12-05 20:16:11 +00002750UPB_INLINE void UPB_PRIVATE(_upb_Message_SetHasbit)(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002751 const struct upb_Message* msg, const upb_MiniTableField* f) {
Protobuf Team Bota0e81952023-12-21 14:54:29 +00002752 const size_t offset = UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(f);
2753 const char mask = UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(f);
2754
Protobuf Team Botb8c1a272023-11-15 17:49:10 +00002755 (*UPB_PTR_AT(msg, offset, char)) |= mask;
2756}
2757
Protobuf Team Bot7713df52023-12-05 20:16:11 +00002758UPB_INLINE void UPB_PRIVATE(_upb_Message_ClearHasbit)(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002759 const struct upb_Message* msg, const upb_MiniTableField* f) {
Protobuf Team Bota0e81952023-12-21 14:54:29 +00002760 const size_t offset = UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(f);
2761 const char mask = UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(f);
2762
Protobuf Team Botb8c1a272023-11-15 17:49:10 +00002763 (*UPB_PTR_AT(msg, offset, char)) &= ~mask;
2764}
2765
Mike Kruskal9d435022023-07-11 12:45:07 -07002766// Oneof case access ///////////////////////////////////////////////////////////
2767
Protobuf Team Bot7d4ead22023-12-05 21:25:30 +00002768UPB_INLINE uint32_t* UPB_PRIVATE(_upb_Message_OneofCasePtr)(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002769 struct upb_Message* msg, const upb_MiniTableField* f) {
Protobuf Team Bota0e81952023-12-21 14:54:29 +00002770 return UPB_PTR_AT(msg, UPB_PRIVATE(_upb_MiniTableField_OneofOffset)(f),
2771 uint32_t);
Mike Kruskal9d435022023-07-11 12:45:07 -07002772}
2773
Protobuf Team Bot7d4ead22023-12-05 21:25:30 +00002774UPB_INLINE uint32_t UPB_PRIVATE(_upb_Message_GetOneofCase)(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002775 const struct upb_Message* msg, const upb_MiniTableField* f) {
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002776 const uint32_t* ptr =
2777 UPB_PRIVATE(_upb_Message_OneofCasePtr)((struct upb_Message*)msg, f);
2778
2779 return *ptr;
Mike Kruskal9d435022023-07-11 12:45:07 -07002780}
2781
Protobuf Team Bot7d4ead22023-12-05 21:25:30 +00002782UPB_INLINE void UPB_PRIVATE(_upb_Message_SetOneofCase)(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002783 struct upb_Message* msg, const upb_MiniTableField* f) {
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002784 uint32_t* ptr = UPB_PRIVATE(_upb_Message_OneofCasePtr)(msg, f);
2785
2786 *ptr = upb_MiniTableField_Number(f);
Protobuf Team Botb8c1a272023-11-15 17:49:10 +00002787}
2788
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002789// Returns true if the given field is the current oneof case.
2790// Does nothing if it is not the current oneof case.
2791UPB_INLINE bool UPB_PRIVATE(_upb_Message_ClearOneofCase)(
2792 struct upb_Message* msg, const upb_MiniTableField* f) {
2793 uint32_t* ptr = UPB_PRIVATE(_upb_Message_OneofCasePtr)(msg, f);
2794
2795 if (*ptr != upb_MiniTableField_Number(f)) return false;
2796 *ptr = 0;
2797 return true;
2798}
Protobuf Team Botb8c1a272023-11-15 17:49:10 +00002799
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00002800UPB_API_INLINE uint32_t upb_Message_WhichOneofFieldNumber(
2801 const struct upb_Message* message, const upb_MiniTableField* oneof_field) {
2802 UPB_ASSUME(upb_MiniTableField_IsInOneof(oneof_field));
2803 return UPB_PRIVATE(_upb_Message_GetOneofCase)(message, oneof_field);
2804}
2805
Protobuf Team Bot6cce6222024-05-28 17:15:46 +00002806UPB_API_INLINE const upb_MiniTableField* upb_Message_WhichOneof(
2807 const struct upb_Message* msg, const upb_MiniTable* m,
2808 const upb_MiniTableField* f) {
2809 uint32_t field_number = upb_Message_WhichOneofFieldNumber(msg, f);
2810 if (field_number == 0) {
2811 // No field in the oneof is set.
2812 return NULL;
2813 }
2814 return upb_MiniTable_FindFieldByNumber(m, field_number);
2815}
2816
Mike Kruskal9d435022023-07-11 12:45:07 -07002817// LINT.ThenChange(GoogleInternalName2)
Mike Kruskal9d435022023-07-11 12:45:07 -07002818
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00002819// Returns false if the message is missing any of its required fields.
2820UPB_INLINE bool UPB_PRIVATE(_upb_Message_IsInitializedShallow)(
2821 const struct upb_Message* msg, const upb_MiniTable* m) {
2822 uint64_t bits;
2823 memcpy(&bits, msg + 1, sizeof(bits));
2824 bits = upb_BigEndian64(bits);
2825 return (UPB_PRIVATE(_upb_MiniTable_RequiredMask)(m) & ~bits) == 0;
2826}
2827
Protobuf Team Bot9bee7472024-01-10 18:09:23 +00002828UPB_INLINE void* UPB_PRIVATE(_upb_Message_MutableDataPtr)(
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002829 struct upb_Message* msg, const upb_MiniTableField* f) {
2830 return (char*)msg + f->UPB_ONLYBITS(offset);
Eric Salo8809a112022-11-21 13:01:06 -08002831}
2832
Protobuf Team Bot9bee7472024-01-10 18:09:23 +00002833UPB_INLINE const void* UPB_PRIVATE(_upb_Message_DataPtr)(
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002834 const struct upb_Message* msg, const upb_MiniTableField* f) {
2835 return (const char*)msg + f->UPB_ONLYBITS(offset);
Eric Salo8809a112022-11-21 13:01:06 -08002836}
2837
Protobuf Team Bot7d4ead22023-12-05 21:25:30 +00002838UPB_INLINE void UPB_PRIVATE(_upb_Message_SetPresence)(
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002839 struct upb_Message* msg, const upb_MiniTableField* f) {
2840 if (UPB_PRIVATE(_upb_MiniTableField_HasHasbit)(f)) {
2841 UPB_PRIVATE(_upb_Message_SetHasbit)(msg, f);
2842 } else if (upb_MiniTableField_IsInOneof(f)) {
2843 UPB_PRIVATE(_upb_Message_SetOneofCase)(msg, f);
Eric Salo8809a112022-11-21 13:01:06 -08002844 }
2845}
2846
Protobuf Team Botddc54062023-12-12 20:03:38 +00002847UPB_INLINE void UPB_PRIVATE(_upb_MiniTableField_DataCopy)(
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002848 const upb_MiniTableField* f, void* to, const void* from) {
2849 switch (UPB_PRIVATE(_upb_MiniTableField_GetRep)(f)) {
Eric Salo8809a112022-11-21 13:01:06 -08002850 case kUpb_FieldRep_1Byte:
2851 memcpy(to, from, 1);
2852 return;
2853 case kUpb_FieldRep_4Byte:
2854 memcpy(to, from, 4);
2855 return;
2856 case kUpb_FieldRep_8Byte:
2857 memcpy(to, from, 8);
2858 return;
2859 case kUpb_FieldRep_StringView: {
2860 memcpy(to, from, sizeof(upb_StringView));
2861 return;
2862 }
2863 }
2864 UPB_UNREACHABLE();
2865}
2866
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002867UPB_INLINE bool UPB_PRIVATE(_upb_MiniTableField_DataEquals)(
2868 const upb_MiniTableField* f, const void* a, const void* b) {
2869 switch (UPB_PRIVATE(_upb_MiniTableField_GetRep)(f)) {
2870 case kUpb_FieldRep_1Byte:
2871 return memcmp(a, b, 1) == 0;
2872 case kUpb_FieldRep_4Byte:
2873 return memcmp(a, b, 4) == 0;
2874 case kUpb_FieldRep_8Byte:
2875 return memcmp(a, b, 8) == 0;
2876 case kUpb_FieldRep_StringView: {
2877 const upb_StringView sa = *(const upb_StringView*)a;
2878 const upb_StringView sb = *(const upb_StringView*)b;
2879 return upb_StringView_IsEqual(sa, sb);
2880 }
2881 }
2882 UPB_UNREACHABLE();
2883}
2884
2885UPB_INLINE void UPB_PRIVATE(_upb_MiniTableField_DataClear)(
2886 const upb_MiniTableField* f, void* val) {
2887 const char zero[16] = {0};
Protobuf Team Bot8203e2f2024-05-20 19:23:30 +00002888 UPB_PRIVATE(_upb_MiniTableField_DataCopy)(f, val, zero);
Protobuf Team Bot18d4a762024-01-02 05:41:47 +00002889}
2890
2891UPB_INLINE bool UPB_PRIVATE(_upb_MiniTableField_DataIsZero)(
2892 const upb_MiniTableField* f, const void* val) {
2893 const char zero[16] = {0};
2894 return UPB_PRIVATE(_upb_MiniTableField_DataEquals)(f, val, zero);
2895}
2896
Eric Salo8809a112022-11-21 13:01:06 -08002897// Here we define universal getter/setter functions for message fields.
2898// These look very branchy and inefficient, but as long as the MiniTableField
2899// values are known at compile time, all the branches are optimized away and
2900// we are left with ideal code. This can happen either through through
2901// literals or UPB_ASSUME():
2902//
Eric Salob598b2d2022-12-22 23:14:27 -08002903// // Via struct literals.
Eric Salo8809a112022-11-21 13:01:06 -08002904// bool FooMessage_set_bool_field(const upb_Message* msg, bool val) {
2905// const upb_MiniTableField field = {1, 0, 0, /* etc... */};
2906// // All value in "field" are compile-time known.
Protobuf Team Botac32c972024-04-10 03:30:05 +00002907// upb_Message_SetBaseField(msg, &field, &value);
Eric Salo8809a112022-11-21 13:01:06 -08002908// }
2909//
2910// // Via UPB_ASSUME().
Eric Salo10505992022-12-12 12:16:36 -08002911// UPB_INLINE bool upb_Message_SetBool(upb_Message* msg,
2912// const upb_MiniTableField* field,
2913// bool value, upb_Arena* a) {
Deanna Garciabd6a0cf2023-04-20 10:30:44 -07002914// UPB_ASSUME(field->UPB_PRIVATE(descriptortype) == kUpb_FieldType_Bool);
Protobuf Team Bot42169722023-11-29 03:54:33 +00002915// UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(field) ==
2916// kUpb_FieldRep_1Byte);
Protobuf Team Bot54573a42023-11-21 14:47:34 +00002917// upb_Message_SetField(msg, field, &value, a);
Eric Salo8809a112022-11-21 13:01:06 -08002918// }
2919//
2920// As a result, we can use these universal getters/setters for *all* message
2921// accessors: generated code, MiniTable accessors, and reflection. The only
2922// exception is the binary encoder/decoder, which need to be a bit more clever
Eric Salob598b2d2022-12-22 23:14:27 -08002923// about how they read/write the message data, for efficiency.
Eric Salo10505992022-12-12 12:16:36 -08002924//
2925// These functions work on both extensions and non-extensions. If the field
2926// of a setter is known to be a non-extension, the arena may be NULL and the
2927// returned bool value may be ignored since it will always succeed.
Eric Salo8809a112022-11-21 13:01:06 -08002928
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002929UPB_API_INLINE bool upb_Message_HasBaseField(const struct upb_Message* msg,
2930 const upb_MiniTableField* field) {
Eric Salo10505992022-12-12 12:16:36 -08002931 UPB_ASSERT(upb_MiniTableField_HasPresence(field));
2932 UPB_ASSUME(!upb_MiniTableField_IsExtension(field));
Protobuf Team Bote81cda12023-11-21 18:23:13 +00002933 if (upb_MiniTableField_IsInOneof(field)) {
Protobuf Team Bot7d4ead22023-12-05 21:25:30 +00002934 return UPB_PRIVATE(_upb_Message_GetOneofCase)(msg, field) ==
Protobuf Team Bot7bdd38e2023-12-01 23:06:45 +00002935 upb_MiniTableField_Number(field);
Eric Salo10505992022-12-12 12:16:36 -08002936 } else {
Protobuf Team Bot7713df52023-12-05 20:16:11 +00002937 return UPB_PRIVATE(_upb_Message_GetHasbit)(msg, field);
Eric Salo10505992022-12-12 12:16:36 -08002938 }
2939}
2940
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002941UPB_API_INLINE bool upb_Message_HasExtension(const struct upb_Message* msg,
2942 const upb_MiniTableExtension* e) {
2943 UPB_ASSERT(upb_MiniTableField_HasPresence(&e->UPB_PRIVATE(field)));
2944 return UPB_PRIVATE(_upb_Message_Getext)(msg, e) != NULL;
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00002945}
2946
Protobuf Team Bot1d143b52024-01-25 20:29:43 +00002947UPB_FORCEINLINE void _upb_Message_GetNonExtensionField(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002948 const struct upb_Message* msg, const upb_MiniTableField* field,
Eric Salo8809a112022-11-21 13:01:06 -08002949 const void* default_val, void* val) {
2950 UPB_ASSUME(!upb_MiniTableField_IsExtension(field));
Protobuf Team Bote81cda12023-11-21 18:23:13 +00002951 if ((upb_MiniTableField_IsInOneof(field) ||
Protobuf Team Botddc54062023-12-12 20:03:38 +00002952 !UPB_PRIVATE(_upb_MiniTableField_DataIsZero)(field, default_val)) &&
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002953 !upb_Message_HasBaseField(msg, field)) {
Protobuf Team Botddc54062023-12-12 20:03:38 +00002954 UPB_PRIVATE(_upb_MiniTableField_DataCopy)(field, val, default_val);
Eric Salo8809a112022-11-21 13:01:06 -08002955 return;
2956 }
Protobuf Team Botddc54062023-12-12 20:03:38 +00002957 UPB_PRIVATE(_upb_MiniTableField_DataCopy)
Protobuf Team Bot9bee7472024-01-10 18:09:23 +00002958 (field, val, UPB_PRIVATE(_upb_Message_DataPtr)(msg, field));
Eric Salo8809a112022-11-21 13:01:06 -08002959}
2960
Eric Salo10505992022-12-12 12:16:36 -08002961UPB_INLINE void _upb_Message_GetExtensionField(
Protobuf Team Bot499c7482023-12-30 01:42:17 +00002962 const struct upb_Message* msg, const upb_MiniTableExtension* mt_ext,
Eric Salo8809a112022-11-21 13:01:06 -08002963 const void* default_val, void* val) {
Protobuf Team Botc13512a2024-01-25 18:53:49 +00002964 const upb_Extension* ext = UPB_PRIVATE(_upb_Message_Getext)(msg, mt_ext);
Protobuf Team Botddc54062023-12-12 20:03:38 +00002965 const upb_MiniTableField* f = &mt_ext->UPB_PRIVATE(field);
2966 UPB_ASSUME(upb_MiniTableField_IsExtension(f));
2967
Eric Salo8809a112022-11-21 13:01:06 -08002968 if (ext) {
Protobuf Team Botddc54062023-12-12 20:03:38 +00002969 UPB_PRIVATE(_upb_MiniTableField_DataCopy)(f, val, &ext->data);
Eric Salo8809a112022-11-21 13:01:06 -08002970 } else {
Protobuf Team Botddc54062023-12-12 20:03:38 +00002971 UPB_PRIVATE(_upb_MiniTableField_DataCopy)(f, val, default_val);
Eric Salo8809a112022-11-21 13:01:06 -08002972 }
2973}
2974
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00002975// NOTE: The default_val is only used for fields that support presence.
2976// For repeated/map fields, the resulting upb_Array*/upb_Map* can be NULL if a
2977// upb_Array/upb_Map has not been allocated yet. Array/map fields do not have
2978// presence, so this is semantically identical to a pointer to an empty
2979// array/map, and must be treated the same for all semantic purposes.
2980UPB_API_INLINE upb_MessageValue upb_Message_GetField(
2981 const struct upb_Message* msg, const upb_MiniTableField* field,
2982 upb_MessageValue default_val) {
2983 upb_MessageValue ret;
2984 if (upb_MiniTableField_IsExtension(field)) {
2985 _upb_Message_GetExtensionField(msg, (upb_MiniTableExtension*)field,
2986 &default_val, &ret);
2987 } else {
2988 _upb_Message_GetNonExtensionField(msg, field, &default_val, &ret);
2989 }
2990 return ret;
2991}
2992
Protobuf Team Botac32c972024-04-10 03:30:05 +00002993UPB_API_INLINE void upb_Message_SetBaseField(struct upb_Message* msg,
2994 const upb_MiniTableField* f,
2995 const void* val) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00002996 UPB_ASSERT(!upb_Message_IsFrozen(msg));
Protobuf Team Botac32c972024-04-10 03:30:05 +00002997 UPB_ASSUME(!upb_MiniTableField_IsExtension(f));
2998 UPB_PRIVATE(_upb_Message_SetPresence)(msg, f);
Protobuf Team Botddc54062023-12-12 20:03:38 +00002999 UPB_PRIVATE(_upb_MiniTableField_DataCopy)
Protobuf Team Botac32c972024-04-10 03:30:05 +00003000 (f, UPB_PRIVATE(_upb_Message_MutableDataPtr)(msg, f), val);
Eric Salo8809a112022-11-21 13:01:06 -08003001}
3002
Protobuf Team Botac32c972024-04-10 03:30:05 +00003003UPB_API_INLINE bool upb_Message_SetExtension(struct upb_Message* msg,
3004 const upb_MiniTableExtension* e,
3005 const void* val, upb_Arena* a) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003006 UPB_ASSERT(!upb_Message_IsFrozen(msg));
Eric Salo10505992022-12-12 12:16:36 -08003007 UPB_ASSERT(a);
Protobuf Team Botc13512a2024-01-25 18:53:49 +00003008 upb_Extension* ext =
Protobuf Team Botac32c972024-04-10 03:30:05 +00003009 UPB_PRIVATE(_upb_Message_GetOrCreateExtension)(msg, e, a);
Eric Salo8809a112022-11-21 13:01:06 -08003010 if (!ext) return false;
Protobuf Team Botddc54062023-12-12 20:03:38 +00003011 UPB_PRIVATE(_upb_MiniTableField_DataCopy)
Protobuf Team Botac32c972024-04-10 03:30:05 +00003012 (&e->UPB_PRIVATE(field), &ext->data, val);
Eric Salo8809a112022-11-21 13:01:06 -08003013 return true;
3014}
3015
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003016// Sets the value of the given field in the given msg. The return value is true
3017// if the operation completed successfully, or false if memory allocation
3018// failed.
3019UPB_INLINE bool UPB_PRIVATE(_upb_Message_SetField)(struct upb_Message* msg,
3020 const upb_MiniTableField* f,
3021 upb_MessageValue val,
3022 upb_Arena* a) {
3023 if (upb_MiniTableField_IsExtension(f)) {
3024 const upb_MiniTableExtension* ext = (const upb_MiniTableExtension*)f;
3025 return upb_Message_SetExtension(msg, ext, &val, a);
3026 } else {
3027 upb_Message_SetBaseField(msg, f, &val);
3028 return true;
3029 }
3030}
3031
3032UPB_API_INLINE const upb_Array* upb_Message_GetArray(
3033 const struct upb_Message* msg, const upb_MiniTableField* f) {
3034 UPB_PRIVATE(_upb_MiniTableField_CheckIsArray)(f);
3035 upb_Array* ret;
3036 const upb_Array* default_val = NULL;
3037 _upb_Message_GetNonExtensionField(msg, f, &default_val, &ret);
3038 return ret;
3039}
3040
3041UPB_API_INLINE bool upb_Message_GetBool(const struct upb_Message* msg,
3042 const upb_MiniTableField* f,
3043 bool default_val) {
3044 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Bool);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003045 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003046 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_1Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003047 upb_MessageValue def;
3048 def.bool_val = default_val;
3049 return upb_Message_GetField(msg, f, def).bool_val;
3050}
3051
3052UPB_API_INLINE double upb_Message_GetDouble(const struct upb_Message* msg,
3053 const upb_MiniTableField* f,
3054 double default_val) {
3055 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Double);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003056 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003057 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003058
3059 upb_MessageValue def;
3060 def.double_val = default_val;
3061 return upb_Message_GetField(msg, f, def).double_val;
3062}
3063
3064UPB_API_INLINE float upb_Message_GetFloat(const struct upb_Message* msg,
3065 const upb_MiniTableField* f,
3066 float default_val) {
3067 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Float);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003068 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003069 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003070
3071 upb_MessageValue def;
3072 def.float_val = default_val;
3073 return upb_Message_GetField(msg, f, def).float_val;
3074}
3075
3076UPB_API_INLINE int32_t upb_Message_GetInt32(const struct upb_Message* msg,
3077 const upb_MiniTableField* f,
3078 int32_t default_val) {
3079 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Int32 ||
3080 upb_MiniTableField_CType(f) == kUpb_CType_Enum);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003081 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003082 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003083
3084 upb_MessageValue def;
3085 def.int32_val = default_val;
3086 return upb_Message_GetField(msg, f, def).int32_val;
3087}
3088
3089UPB_API_INLINE int64_t upb_Message_GetInt64(const struct upb_Message* msg,
3090 const upb_MiniTableField* f,
3091 int64_t default_val) {
3092 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Int64);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003093 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003094 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003095
3096 upb_MessageValue def;
3097 def.int64_val = default_val;
3098 return upb_Message_GetField(msg, f, def).int64_val;
3099}
3100
3101UPB_INLINE void UPB_PRIVATE(_upb_Message_AssertMapIsUntagged)(
3102 const struct upb_Message* msg, const upb_MiniTableField* field) {
3103 UPB_UNUSED(msg);
3104 UPB_PRIVATE(_upb_MiniTableField_CheckIsMap)(field);
3105#ifndef NDEBUG
3106 uintptr_t default_val = 0;
3107 uintptr_t tagged;
3108 _upb_Message_GetNonExtensionField(msg, field, &default_val, &tagged);
3109 UPB_ASSERT(!upb_TaggedMessagePtr_IsEmpty(tagged));
3110#endif
3111}
3112
3113UPB_API_INLINE const struct upb_Map* upb_Message_GetMap(
3114 const struct upb_Message* msg, const upb_MiniTableField* f) {
3115 UPB_PRIVATE(_upb_MiniTableField_CheckIsMap)(f);
3116 UPB_PRIVATE(_upb_Message_AssertMapIsUntagged)(msg, f);
3117 struct upb_Map* ret;
3118 const struct upb_Map* default_val = NULL;
3119 _upb_Message_GetNonExtensionField(msg, f, &default_val, &ret);
3120 return ret;
3121}
3122
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003123UPB_API_INLINE uintptr_t upb_Message_GetTaggedMessagePtr(
3124 const struct upb_Message* msg, const upb_MiniTableField* f,
3125 struct upb_Message* default_val) {
3126 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Message);
3127 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) ==
3128 UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte));
3129 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3130 uintptr_t tagged;
3131 _upb_Message_GetNonExtensionField(msg, f, &default_val, &tagged);
3132 return tagged;
3133}
3134
3135// For internal use only; users cannot set tagged messages because only the
3136// parser and the message copier are allowed to directly create an empty
3137// message.
3138UPB_INLINE void UPB_PRIVATE(_upb_Message_SetTaggedMessagePtr)(
3139 struct upb_Message* msg, const upb_MiniTableField* f,
3140 uintptr_t sub_message) {
3141 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Message);
3142 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) ==
3143 UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte));
3144 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3145 upb_Message_SetBaseField(msg, f, &sub_message);
3146}
3147
3148UPB_API_INLINE const struct upb_Message* upb_Message_GetMessage(
3149 const struct upb_Message* msg, const upb_MiniTableField* f) {
3150 uintptr_t tagged = upb_Message_GetTaggedMessagePtr(msg, f, NULL);
3151 return upb_TaggedMessagePtr_GetNonEmptyMessage(tagged);
3152}
3153
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003154UPB_API_INLINE upb_Array* upb_Message_GetMutableArray(
3155 struct upb_Message* msg, const upb_MiniTableField* f) {
3156 UPB_PRIVATE(_upb_MiniTableField_CheckIsArray)(f);
3157 return (upb_Array*)upb_Message_GetArray(msg, f);
3158}
3159
3160UPB_API_INLINE struct upb_Map* upb_Message_GetMutableMap(
3161 struct upb_Message* msg, const upb_MiniTableField* f) {
3162 return (struct upb_Map*)upb_Message_GetMap(msg, f);
3163}
3164
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003165UPB_API_INLINE struct upb_Message* upb_Message_GetMutableMessage(
3166 struct upb_Message* msg, const upb_MiniTableField* f) {
3167 return (struct upb_Message*)upb_Message_GetMessage(msg, f);
3168}
3169
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003170UPB_API_INLINE upb_Array* upb_Message_GetOrCreateMutableArray(
3171 struct upb_Message* msg, const upb_MiniTableField* f, upb_Arena* arena) {
3172 UPB_ASSERT(arena);
3173 UPB_PRIVATE(_upb_MiniTableField_CheckIsArray)(f);
3174 upb_Array* array = upb_Message_GetMutableArray(msg, f);
3175 if (!array) {
3176 array = UPB_PRIVATE(_upb_Array_New)(
3177 arena, 4, UPB_PRIVATE(_upb_MiniTableField_ElemSizeLg2)(f));
3178 // Check again due to: https://godbolt.org/z/7WfaoKG1r
3179 UPB_PRIVATE(_upb_MiniTableField_CheckIsArray)(f);
3180 upb_MessageValue val;
3181 val.array_val = array;
3182 UPB_PRIVATE(_upb_Message_SetField)(msg, f, val, arena);
3183 }
3184 return array;
3185}
3186
3187UPB_INLINE struct upb_Map* _upb_Message_GetOrCreateMutableMap(
3188 struct upb_Message* msg, const upb_MiniTableField* field, size_t key_size,
3189 size_t val_size, upb_Arena* arena) {
3190 UPB_PRIVATE(_upb_MiniTableField_CheckIsMap)(field);
3191 UPB_PRIVATE(_upb_Message_AssertMapIsUntagged)(msg, field);
3192 struct upb_Map* map = NULL;
3193 struct upb_Map* default_map_value = NULL;
3194 _upb_Message_GetNonExtensionField(msg, field, &default_map_value, &map);
3195 if (!map) {
3196 map = _upb_Map_New(arena, key_size, val_size);
3197 // Check again due to: https://godbolt.org/z/7WfaoKG1r
3198 UPB_PRIVATE(_upb_MiniTableField_CheckIsMap)(field);
3199 upb_Message_SetBaseField(msg, field, &map);
3200 }
3201 return map;
3202}
3203
3204UPB_API_INLINE struct upb_Map* upb_Message_GetOrCreateMutableMap(
3205 struct upb_Message* msg, const upb_MiniTable* map_entry_mini_table,
3206 const upb_MiniTableField* f, upb_Arena* arena) {
3207 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Message);
3208 const upb_MiniTableField* map_entry_key_field =
3209 &map_entry_mini_table->UPB_ONLYBITS(fields)[0];
3210 const upb_MiniTableField* map_entry_value_field =
3211 &map_entry_mini_table->UPB_ONLYBITS(fields)[1];
3212 return _upb_Message_GetOrCreateMutableMap(
3213 msg, f, _upb_Map_CTypeSize(upb_MiniTableField_CType(map_entry_key_field)),
3214 _upb_Map_CTypeSize(upb_MiniTableField_CType(map_entry_value_field)),
3215 arena);
3216}
3217
3218UPB_API_INLINE struct upb_Message* upb_Message_GetOrCreateMutableMessage(
3219 struct upb_Message* msg, const upb_MiniTable* mini_table,
3220 const upb_MiniTableField* f, upb_Arena* arena) {
3221 UPB_ASSERT(arena);
3222 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Message);
3223 UPB_ASSUME(!upb_MiniTableField_IsExtension(f));
3224 struct upb_Message* sub_message =
3225 *UPB_PTR_AT(msg, f->UPB_ONLYBITS(offset), struct upb_Message*);
3226 if (!sub_message) {
3227 const upb_MiniTable* sub_mini_table =
3228 upb_MiniTable_SubMessage(mini_table, f);
3229 UPB_ASSERT(sub_mini_table);
3230 sub_message = _upb_Message_New(sub_mini_table, arena);
3231 *UPB_PTR_AT(msg, f->UPB_ONLYBITS(offset), struct upb_Message*) =
3232 sub_message;
3233 UPB_PRIVATE(_upb_Message_SetPresence)(msg, f);
3234 }
3235 return sub_message;
3236}
3237
3238UPB_API_INLINE upb_StringView
3239upb_Message_GetString(const struct upb_Message* msg,
3240 const upb_MiniTableField* f, upb_StringView default_val) {
3241 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_String ||
3242 upb_MiniTableField_CType(f) == kUpb_CType_Bytes);
3243 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) ==
3244 kUpb_FieldRep_StringView);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003245
3246 upb_MessageValue def;
3247 def.str_val = default_val;
3248 return upb_Message_GetField(msg, f, def).str_val;
3249}
3250
3251UPB_API_INLINE uint32_t upb_Message_GetUInt32(const struct upb_Message* msg,
3252 const upb_MiniTableField* f,
3253 uint32_t default_val) {
3254 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_UInt32);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003255 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003256 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003257
3258 upb_MessageValue def;
3259 def.uint32_val = default_val;
3260 return upb_Message_GetField(msg, f, def).uint32_val;
3261}
3262
3263UPB_API_INLINE uint64_t upb_Message_GetUInt64(const struct upb_Message* msg,
3264 const upb_MiniTableField* f,
3265 uint64_t default_val) {
3266 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_UInt64);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003267 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003268 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003269
3270 upb_MessageValue def;
3271 def.uint64_val = default_val;
3272 return upb_Message_GetField(msg, f, def).uint64_val;
3273}
3274
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003275// BaseField Setters ///////////////////////////////////////////////////////////
3276
3277UPB_API_INLINE void upb_Message_SetBaseFieldBool(struct upb_Message* msg,
3278 const upb_MiniTableField* f,
3279 bool value) {
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003280 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Bool);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003281 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003282 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_1Byte);
3283 upb_Message_SetBaseField(msg, f, &value);
3284}
3285
3286UPB_API_INLINE void upb_Message_SetBaseFieldDouble(struct upb_Message* msg,
3287 const upb_MiniTableField* f,
3288 double value) {
3289 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Double);
3290 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3291 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte);
3292 upb_Message_SetBaseField(msg, f, &value);
3293}
3294
3295UPB_API_INLINE void upb_Message_SetBaseFieldFloat(struct upb_Message* msg,
3296 const upb_MiniTableField* f,
3297 float value) {
3298 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Float);
3299 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3300 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
3301 upb_Message_SetBaseField(msg, f, &value);
3302}
3303
3304UPB_API_INLINE void upb_Message_SetBaseFieldInt32(struct upb_Message* msg,
3305 const upb_MiniTableField* f,
3306 int32_t value) {
3307 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Int32 ||
3308 upb_MiniTableField_CType(f) == kUpb_CType_Enum);
3309 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3310 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
3311 upb_Message_SetBaseField(msg, f, &value);
3312}
3313
3314UPB_API_INLINE void upb_Message_SetBaseFieldInt64(struct upb_Message* msg,
3315 const upb_MiniTableField* f,
3316 int64_t value) {
3317 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Int64);
3318 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3319 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte);
3320 upb_Message_SetBaseField(msg, f, &value);
3321}
3322
3323UPB_API_INLINE void upb_Message_SetBaseFieldString(struct upb_Message* msg,
3324 const upb_MiniTableField* f,
3325 upb_StringView value) {
3326 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_String ||
3327 upb_MiniTableField_CType(f) == kUpb_CType_Bytes);
3328 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3329 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) ==
3330 kUpb_FieldRep_StringView);
3331 upb_Message_SetBaseField(msg, f, &value);
3332}
3333
3334UPB_API_INLINE void upb_Message_SetBaseFieldUInt32(struct upb_Message* msg,
3335 const upb_MiniTableField* f,
3336 uint32_t value) {
3337 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_UInt32);
3338 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3339 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
3340 upb_Message_SetBaseField(msg, f, &value);
3341}
3342
3343UPB_API_INLINE void upb_Message_SetBaseFieldUInt64(struct upb_Message* msg,
3344 const upb_MiniTableField* f,
3345 uint64_t value) {
3346 UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_UInt64);
3347 UPB_ASSUME(upb_MiniTableField_IsScalar(f));
3348 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte);
3349 upb_Message_SetBaseField(msg, f, &value);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003350}
3351
Protobuf Team Botddc70b02024-05-11 02:21:06 +00003352UPB_API_INLINE void upb_Message_SetClosedEnum(struct upb_Message* msg,
3353 const upb_MiniTable* m,
3354 const upb_MiniTableField* f,
3355 int32_t value) {
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003356 UPB_ASSERT(upb_MiniTableField_IsClosedEnum(f));
3357 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte);
Protobuf Team Botddc70b02024-05-11 02:21:06 +00003358 UPB_ASSERT(
3359 upb_MiniTableEnum_CheckValue(upb_MiniTable_GetSubEnumTable(m, f), value));
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003360 upb_Message_SetBaseField(msg, f, &value);
3361}
3362
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003363// Extension Setters ///////////////////////////////////////////////////////////
3364
3365UPB_API_INLINE bool upb_Message_SetExtensionBool(
3366 struct upb_Message* msg, const upb_MiniTableExtension* e, bool value,
3367 upb_Arena* a) {
3368 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_Bool);
3369 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3370 kUpb_FieldRep_1Byte);
3371 return upb_Message_SetExtension(msg, e, &value, a);
3372}
3373
3374UPB_API_INLINE bool upb_Message_SetExtensionDouble(
3375 struct upb_Message* msg, const upb_MiniTableExtension* e, double value,
3376 upb_Arena* a) {
3377 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_Double);
3378 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3379 kUpb_FieldRep_8Byte);
3380 return upb_Message_SetExtension(msg, e, &value, a);
3381}
3382
3383UPB_API_INLINE bool upb_Message_SetExtensionFloat(
3384 struct upb_Message* msg, const upb_MiniTableExtension* e, float value,
3385 upb_Arena* a) {
3386 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_Float);
3387 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3388 kUpb_FieldRep_4Byte);
3389 return upb_Message_SetExtension(msg, e, &value, a);
3390}
3391
3392UPB_API_INLINE bool upb_Message_SetExtensionInt32(
3393 struct upb_Message* msg, const upb_MiniTableExtension* e, int32_t value,
3394 upb_Arena* a) {
3395 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_Int32 ||
3396 upb_MiniTableExtension_CType(e) == kUpb_CType_Enum);
3397 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3398 kUpb_FieldRep_4Byte);
3399 return upb_Message_SetExtension(msg, e, &value, a);
3400}
3401
3402UPB_API_INLINE bool upb_Message_SetExtensionInt64(
3403 struct upb_Message* msg, const upb_MiniTableExtension* e, int64_t value,
3404 upb_Arena* a) {
3405 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_Int64);
3406 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3407 kUpb_FieldRep_8Byte);
3408 return upb_Message_SetExtension(msg, e, &value, a);
3409}
3410
3411UPB_API_INLINE bool upb_Message_SetExtensionString(
3412 struct upb_Message* msg, const upb_MiniTableExtension* e,
3413 upb_StringView value, upb_Arena* a) {
3414 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_String ||
3415 upb_MiniTableExtension_CType(e) == kUpb_CType_Bytes);
3416 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3417 kUpb_FieldRep_StringView);
3418 return upb_Message_SetExtension(msg, e, &value, a);
3419}
3420
3421UPB_API_INLINE bool upb_Message_SetExtensionUInt32(
3422 struct upb_Message* msg, const upb_MiniTableExtension* e, uint32_t value,
3423 upb_Arena* a) {
3424 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_UInt32);
3425 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3426 kUpb_FieldRep_4Byte);
3427 return upb_Message_SetExtension(msg, e, &value, a);
3428}
3429
3430UPB_API_INLINE bool upb_Message_SetExtensionUInt64(
3431 struct upb_Message* msg, const upb_MiniTableExtension* e, uint64_t value,
3432 upb_Arena* a) {
3433 UPB_ASSUME(upb_MiniTableExtension_CType(e) == kUpb_CType_UInt64);
3434 UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableExtension_GetRep)(e) ==
3435 kUpb_FieldRep_8Byte);
3436 return upb_Message_SetExtension(msg, e, &value, a);
3437}
3438
3439// Universal Setters ///////////////////////////////////////////////////////////
3440
3441UPB_API_INLINE bool upb_Message_SetBool(struct upb_Message* msg,
3442 const upb_MiniTableField* f, bool value,
3443 upb_Arena* a) {
3444 return upb_MiniTableField_IsExtension(f)
3445 ? upb_Message_SetExtensionBool(
3446 msg, (const upb_MiniTableExtension*)f, value, a)
3447 : (upb_Message_SetBaseFieldBool(msg, f, value), true);
3448}
3449
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003450UPB_API_INLINE bool upb_Message_SetDouble(struct upb_Message* msg,
3451 const upb_MiniTableField* f,
3452 double value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003453 return upb_MiniTableField_IsExtension(f)
3454 ? upb_Message_SetExtensionDouble(
3455 msg, (const upb_MiniTableExtension*)f, value, a)
3456 : (upb_Message_SetBaseFieldDouble(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003457}
3458
3459UPB_API_INLINE bool upb_Message_SetFloat(struct upb_Message* msg,
3460 const upb_MiniTableField* f,
3461 float value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003462 return upb_MiniTableField_IsExtension(f)
3463 ? upb_Message_SetExtensionFloat(
3464 msg, (const upb_MiniTableExtension*)f, value, a)
3465 : (upb_Message_SetBaseFieldFloat(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003466}
3467
3468UPB_API_INLINE bool upb_Message_SetInt32(struct upb_Message* msg,
3469 const upb_MiniTableField* f,
3470 int32_t value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003471 return upb_MiniTableField_IsExtension(f)
3472 ? upb_Message_SetExtensionInt32(
3473 msg, (const upb_MiniTableExtension*)f, value, a)
3474 : (upb_Message_SetBaseFieldInt32(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003475}
3476
3477UPB_API_INLINE bool upb_Message_SetInt64(struct upb_Message* msg,
3478 const upb_MiniTableField* f,
3479 int64_t value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003480 return upb_MiniTableField_IsExtension(f)
3481 ? upb_Message_SetExtensionInt64(
3482 msg, (const upb_MiniTableExtension*)f, value, a)
3483 : (upb_Message_SetBaseFieldInt64(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003484}
3485
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003486// Sets the value of a message-typed field. The mini_tables of `msg` and
Protobuf Team Botb51dc1b2024-05-09 21:34:06 +00003487// `value` must have been linked for this to work correctly.
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003488UPB_API_INLINE void upb_Message_SetMessage(struct upb_Message* msg,
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003489 const upb_MiniTableField* f,
Protobuf Team Botb51dc1b2024-05-09 21:34:06 +00003490 struct upb_Message* value) {
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003491 UPB_PRIVATE(_upb_Message_SetTaggedMessagePtr)
Protobuf Team Botb51dc1b2024-05-09 21:34:06 +00003492 (msg, f, UPB_PRIVATE(_upb_TaggedMessagePtr_Pack)(value, false));
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003493}
3494
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003495// Sets the value of a `string` or `bytes` field. The bytes of the value are not
3496// copied, so it is the caller's responsibility to ensure that they remain valid
3497// for the lifetime of `msg`. That might be done by copying them into the given
3498// arena, or by fusing that arena with the arena the bytes live in, for example.
3499UPB_API_INLINE bool upb_Message_SetString(struct upb_Message* msg,
3500 const upb_MiniTableField* f,
3501 upb_StringView value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003502 return upb_MiniTableField_IsExtension(f)
3503 ? upb_Message_SetExtensionString(
3504 msg, (const upb_MiniTableExtension*)f, value, a)
3505 : (upb_Message_SetBaseFieldString(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003506}
3507
3508UPB_API_INLINE bool upb_Message_SetUInt32(struct upb_Message* msg,
3509 const upb_MiniTableField* f,
3510 uint32_t value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003511 return upb_MiniTableField_IsExtension(f)
3512 ? upb_Message_SetExtensionUInt32(
3513 msg, (const upb_MiniTableExtension*)f, value, a)
3514 : (upb_Message_SetBaseFieldUInt32(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003515}
3516
3517UPB_API_INLINE bool upb_Message_SetUInt64(struct upb_Message* msg,
3518 const upb_MiniTableField* f,
3519 uint64_t value, upb_Arena* a) {
Protobuf Team Bot6afb1302024-05-08 02:19:22 +00003520 return upb_MiniTableField_IsExtension(f)
3521 ? upb_Message_SetExtensionUInt64(
3522 msg, (const upb_MiniTableExtension*)f, value, a)
3523 : (upb_Message_SetBaseFieldUInt64(msg, f, value), true);
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003524}
3525
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003526UPB_API_INLINE void upb_Message_Clear(struct upb_Message* msg,
3527 const upb_MiniTable* m) {
3528 UPB_ASSERT(!upb_Message_IsFrozen(msg));
Protobuf Team Botd813cc02024-04-08 19:12:29 +00003529 upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg);
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00003530 memset(msg, 0, m->UPB_PRIVATE(size));
Protobuf Team Botd813cc02024-04-08 19:12:29 +00003531 if (in) {
3532 // Reset the internal buffer to empty.
3533 in->unknown_end = sizeof(upb_Message_Internal);
3534 in->ext_begin = in->size;
3535 UPB_PRIVATE(_upb_Message_SetInternal)(msg, in);
3536 }
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00003537}
3538
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003539UPB_API_INLINE void upb_Message_ClearBaseField(struct upb_Message* msg,
3540 const upb_MiniTableField* f) {
3541 UPB_ASSERT(!upb_Message_IsFrozen(msg));
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00003542 if (UPB_PRIVATE(_upb_MiniTableField_HasHasbit)(f)) {
3543 UPB_PRIVATE(_upb_Message_ClearHasbit)(msg, f);
3544 } else if (upb_MiniTableField_IsInOneof(f)) {
3545 uint32_t* ptr = UPB_PRIVATE(_upb_Message_OneofCasePtr)(msg, f);
3546 if (*ptr != upb_MiniTableField_Number(f)) return;
3547 *ptr = 0;
3548 }
3549 const char zeros[16] = {0};
3550 UPB_PRIVATE(_upb_MiniTableField_DataCopy)
Protobuf Team Bot9bee7472024-01-10 18:09:23 +00003551 (f, UPB_PRIVATE(_upb_Message_MutableDataPtr)(msg, f), zeros);
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00003552}
3553
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003554UPB_API_INLINE void upb_Message_ClearExtension(
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00003555 struct upb_Message* msg, const upb_MiniTableExtension* e) {
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003556 UPB_ASSERT(!upb_Message_IsFrozen(msg));
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00003557 upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg);
Protobuf Team Bot2b797382023-12-30 23:16:16 +00003558 if (!in) return;
Protobuf Team Botc13512a2024-01-25 18:53:49 +00003559 const upb_Extension* base = UPB_PTR_AT(in, in->ext_begin, upb_Extension);
3560 upb_Extension* ext = (upb_Extension*)UPB_PRIVATE(_upb_Message_Getext)(msg, e);
Eric Salo10505992022-12-12 12:16:36 -08003561 if (ext) {
3562 *ext = *base;
Protobuf Team Botc13512a2024-01-25 18:53:49 +00003563 in->ext_begin += sizeof(upb_Extension);
Mike Kruskal3bc50492022-12-01 13:34:12 -08003564 }
3565}
3566
Protobuf Team Botae17e812024-05-07 16:59:23 +00003567UPB_API_INLINE void upb_Message_ClearOneof(struct upb_Message* msg,
3568 const upb_MiniTable* m,
3569 const upb_MiniTableField* f) {
3570 UPB_ASSERT(!upb_Message_IsFrozen(msg));
3571 uint32_t field_number = upb_Message_WhichOneofFieldNumber(msg, f);
3572 if (field_number == 0) {
3573 // No field in the oneof is set.
3574 return;
3575 }
3576
3577 const upb_MiniTableField* field =
3578 upb_MiniTable_FindFieldByNumber(m, field_number);
3579 upb_Message_ClearBaseField(msg, field);
3580}
3581
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003582UPB_API_INLINE void* upb_Message_ResizeArrayUninitialized(
3583 struct upb_Message* msg, const upb_MiniTableField* f, size_t size,
3584 upb_Arena* arena) {
3585 UPB_PRIVATE(_upb_MiniTableField_CheckIsArray)(f);
3586 upb_Array* arr = upb_Message_GetOrCreateMutableArray(msg, f, arena);
3587 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(arr, size, arena)) {
3588 return NULL;
Eric Salob7d54ac2022-12-29 11:59:42 -08003589 }
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003590 return upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08003591}
3592
Deanna Garciabd6a0cf2023-04-20 10:30:44 -07003593#ifdef __cplusplus
3594} /* extern "C" */
3595#endif
3596
3597#if defined(__GNUC__) && !defined(__clang__)
3598#pragma GCC diagnostic pop
3599#endif
3600
3601
Sandy Zhange3b09432023-08-07 09:30:02 -07003602#endif // UPB_MESSAGE_INTERNAL_ACCESSORS_H_
Deanna Garciabd6a0cf2023-04-20 10:30:44 -07003603
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003604#ifndef UPB_MESSAGE_MAP_H_
3605#define UPB_MESSAGE_MAP_H_
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003606
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003607#include <stddef.h>
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003608
3609
3610// Must be last.
3611
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003612typedef struct upb_Map upb_Map;
Protobuf Team Botc9a8b462023-11-18 01:30:26 +00003613
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003614#ifdef __cplusplus
3615extern "C" {
3616#endif
3617
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003618// Creates a new map on the given arena with the given key/value size.
3619UPB_API upb_Map* upb_Map_New(upb_Arena* a, upb_CType key_type,
3620 upb_CType value_type);
Protobuf Team Botc9a8b462023-11-18 01:30:26 +00003621
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003622// Returns the number of entries in the map.
3623UPB_API size_t upb_Map_Size(const upb_Map* map);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003624
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003625// Stores a value for the given key into |*val| (or the zero value if the key is
3626// not present). Returns whether the key was present. The |val| pointer may be
3627// NULL, in which case the function tests whether the given key is present.
3628UPB_API bool upb_Map_Get(const upb_Map* map, upb_MessageValue key,
3629 upb_MessageValue* val);
3630
3631// Removes all entries in the map.
3632UPB_API void upb_Map_Clear(upb_Map* map);
3633
3634// Sets the given key to the given value, returning whether the key was inserted
3635// or replaced. If the key was inserted, then any existing iterators will be
3636// invalidated.
3637UPB_API upb_MapInsertStatus upb_Map_Insert(upb_Map* map, upb_MessageValue key,
3638 upb_MessageValue val,
3639 upb_Arena* arena);
3640
3641// Sets the given key to the given value. Returns false if memory allocation
3642// failed. If the key is newly inserted, then any existing iterators will be
3643// invalidated.
3644UPB_API_INLINE bool upb_Map_Set(upb_Map* map, upb_MessageValue key,
3645 upb_MessageValue val, upb_Arena* arena) {
3646 return upb_Map_Insert(map, key, val, arena) !=
3647 kUpb_MapInsertStatus_OutOfMemory;
Protobuf Team Botc9a8b462023-11-18 01:30:26 +00003648}
3649
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003650// Deletes this key from the table. Returns true if the key was present.
3651// If present and |val| is non-NULL, stores the deleted value.
3652UPB_API bool upb_Map_Delete(upb_Map* map, upb_MessageValue key,
3653 upb_MessageValue* val);
3654
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003655// Map iteration:
3656//
3657// size_t iter = kUpb_Map_Begin;
3658// upb_MessageValue key, val;
3659// while (upb_Map_Next(map, &key, &val, &iter)) {
3660// ...
3661// }
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003662
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003663#define kUpb_Map_Begin ((size_t) - 1)
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003664
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003665// Advances to the next entry. Returns false if no more entries are present.
3666// Otherwise returns true and populates both *key and *value.
3667UPB_API bool upb_Map_Next(const upb_Map* map, upb_MessageValue* key,
3668 upb_MessageValue* val, size_t* iter);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003669
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003670// Sets the value for the entry pointed to by iter.
3671// WARNING: this does not currently work for string values!
3672UPB_API void upb_Map_SetEntryValue(upb_Map* map, size_t iter,
3673 upb_MessageValue val);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003674
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003675// DEPRECATED iterator, slated for removal.
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003676
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003677/* Map iteration:
3678 *
3679 * size_t iter = kUpb_Map_Begin;
3680 * while (upb_MapIterator_Next(map, &iter)) {
3681 * upb_MessageValue key = upb_MapIterator_Key(map, iter);
3682 * upb_MessageValue val = upb_MapIterator_Value(map, iter);
3683 * }
3684 */
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003685
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003686// Advances to the next entry. Returns false if no more entries are present.
3687UPB_API bool upb_MapIterator_Next(const upb_Map* map, size_t* iter);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003688
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003689// Returns true if the iterator still points to a valid entry, or false if the
3690// iterator is past the last element. It is an error to call this function with
3691// kUpb_Map_Begin (you must call next() at least once first).
3692UPB_API bool upb_MapIterator_Done(const upb_Map* map, size_t iter);
3693
3694// Returns the key and value for this entry of the map.
3695UPB_API upb_MessageValue upb_MapIterator_Key(const upb_Map* map, size_t iter);
3696UPB_API upb_MessageValue upb_MapIterator_Value(const upb_Map* map, size_t iter);
Protobuf Team Bot030ab8d2023-12-01 19:20:11 +00003697
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00003698// Mark a map and all of its descendents as frozen/immutable.
3699// If the map values are messages then |m| must point to the minitable for
3700// those messages. Otherwise |m| must be NULL.
3701UPB_API void upb_Map_Freeze(upb_Map* map, const upb_MiniTable* m);
3702
3703// Returns whether a map has been frozen.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003704UPB_API_INLINE bool upb_Map_IsFrozen(const upb_Map* map);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00003705
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003706#ifdef __cplusplus
3707} /* extern "C" */
3708#endif
3709
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003710
3711#endif /* UPB_MESSAGE_MAP_H_ */
3712
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003713// Public APIs for message operations that do not depend on the schema.
3714//
3715// MiniTable-based accessors live in accessors.h.
3716
3717#ifndef UPB_MESSAGE_MESSAGE_H_
3718#define UPB_MESSAGE_MESSAGE_H_
3719
3720#include <stddef.h>
3721
3722
3723// Must be last.
3724
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003725typedef struct upb_Message upb_Message;
3726
3727#ifdef __cplusplus
3728extern "C" {
3729#endif
3730
3731// Creates a new message with the given mini_table on the given arena.
3732UPB_API upb_Message* upb_Message_New(const upb_MiniTable* m, upb_Arena* arena);
3733
3734// Returns a reference to the message's unknown data.
3735const char* upb_Message_GetUnknown(const upb_Message* msg, size_t* len);
3736
3737// Removes partial unknown data from message.
3738void upb_Message_DeleteUnknown(upb_Message* msg, const char* data, size_t len);
3739
3740// Returns the number of extensions present in this message.
3741size_t upb_Message_ExtensionCount(const upb_Message* msg);
3742
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00003743// Mark a message and all of its descendents as frozen/immutable.
3744UPB_API void upb_Message_Freeze(upb_Message* msg, const upb_MiniTable* m);
3745
3746// Returns whether a message has been frozen.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003747UPB_API_INLINE bool upb_Message_IsFrozen(const upb_Message* msg);
Protobuf Team Bot886a0b12024-01-26 21:23:01 +00003748
Protobuf Team Botfb08bca2024-03-14 15:21:13 +00003749#ifdef UPB_TRACING_ENABLED
Protobuf Team Bot51cba7c2024-05-06 13:34:40 +00003750UPB_API void upb_Message_LogNewMessage(const upb_MiniTable* m,
3751 const upb_Arena* arena);
3752
3753UPB_API void upb_Message_SetNewMessageTraceHandler(
3754 void (*handler)(const upb_MiniTable* m, const upb_Arena* arena));
3755#endif // UPB_TRACING_ENABLED
Protobuf Team Botfb08bca2024-03-14 15:21:13 +00003756
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003757#ifdef __cplusplus
3758} /* extern "C" */
3759#endif
3760
3761
3762#endif /* UPB_MESSAGE_MESSAGE_H_ */
3763
Protobuf Team Botd1cf09a2024-04-19 22:43:34 +00003764#ifndef UPB_MINI_TABLE_TAGGED_PTR_H_
3765#define UPB_MINI_TABLE_TAGGED_PTR_H_
3766
3767#include <stdint.h>
3768
3769
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003770// Must be last.
3771
3772// When a upb_Message* is stored in a message, array, or map, it is stored in a
3773// tagged form. If the tag bit is set, the referenced upb_Message is of type
3774// _kUpb_MiniTable_Empty (a sentinel message type with no fields) instead of
3775// that field's true message type. This forms the basis of what we call
3776// "dynamic tree shaking."
3777//
3778// See the documentation for kUpb_DecodeOption_ExperimentalAllowUnlinked for
3779// more information.
3780
3781typedef uintptr_t upb_TaggedMessagePtr;
3782
3783#ifdef __cplusplus
3784extern "C" {
3785#endif
3786
3787// Users who enable unlinked sub-messages must use this to test whether a
3788// message is empty before accessing it. If a message is empty, it must be
3789// first promoted using the interfaces in message/promote.h.
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003790UPB_API_INLINE bool upb_TaggedMessagePtr_IsEmpty(upb_TaggedMessagePtr ptr);
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003791
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003792UPB_API_INLINE upb_Message* upb_TaggedMessagePtr_GetNonEmptyMessage(
3793 upb_TaggedMessagePtr ptr);
Protobuf Team Bot499c7482023-12-30 01:42:17 +00003794
3795#ifdef __cplusplus
3796} /* extern "C" */
3797#endif
3798
3799
3800#endif /* UPB_MINI_TABLE_TAGGED_PTR_H_ */
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00003801
Deanna Garciabd6a0cf2023-04-20 10:30:44 -07003802// Must be last.
3803
3804#ifdef __cplusplus
3805extern "C" {
3806#endif
Eric Salo10505992022-12-12 12:16:36 -08003807
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00003808// Functions ending in BaseField() take a (upb_MiniTableField*) argument
3809// and work only on non-extension fields.
3810//
3811// Functions ending in Extension() take a (upb_MiniTableExtension*) argument
3812// and work only on extensions.
Mike Kruskal3bc50492022-12-01 13:34:12 -08003813
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003814UPB_API_INLINE void upb_Message_Clear(upb_Message* msg, const upb_MiniTable* m);
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00003815
3816UPB_API_INLINE void upb_Message_ClearBaseField(upb_Message* msg,
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003817 const upb_MiniTableField* f);
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00003818
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003819UPB_API_INLINE void upb_Message_ClearExtension(upb_Message* msg,
3820 const upb_MiniTableExtension* e);
Jie Luof36a5c62023-05-23 17:56:18 -07003821
Protobuf Team Botae17e812024-05-07 16:59:23 +00003822UPB_API_INLINE void upb_Message_ClearOneof(upb_Message* msg,
3823 const upb_MiniTable* m,
3824 const upb_MiniTableField* f);
3825
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00003826UPB_API_INLINE bool upb_Message_HasBaseField(const upb_Message* msg,
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003827 const upb_MiniTableField* f);
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00003828
3829UPB_API_INLINE bool upb_Message_HasExtension(const upb_Message* msg,
Protobuf Team Botb3878b52024-02-08 21:50:53 +00003830 const upb_MiniTableExtension* e);
Eric Salo8809a112022-11-21 13:01:06 -08003831
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003832UPB_API_INLINE upb_MessageValue
3833upb_Message_GetField(const upb_Message* msg, const upb_MiniTableField* f,
3834 upb_MessageValue default_val);
Eric Salob598b2d2022-12-22 23:14:27 -08003835
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003836UPB_API_INLINE upb_TaggedMessagePtr upb_Message_GetTaggedMessagePtr(
3837 const upb_Message* msg, const upb_MiniTableField* field,
3838 upb_Message* default_val);
3839
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003840UPB_API_INLINE const upb_Array* upb_Message_GetArray(
3841 const upb_Message* msg, const upb_MiniTableField* f);
Protobuf Team Bot54573a42023-11-21 14:47:34 +00003842
Eric Salo10505992022-12-12 12:16:36 -08003843UPB_API_INLINE bool upb_Message_GetBool(const upb_Message* msg,
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003844 const upb_MiniTableField* f,
3845 bool default_val);
Eric Salo8809a112022-11-21 13:01:06 -08003846
Eric Salo10505992022-12-12 12:16:36 -08003847UPB_API_INLINE double upb_Message_GetDouble(const upb_Message* msg,
3848 const upb_MiniTableField* field,
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003849 double default_val);
Protobuf Team Bot54573a42023-11-21 14:47:34 +00003850
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003851UPB_API_INLINE float upb_Message_GetFloat(const upb_Message* msg,
3852 const upb_MiniTableField* f,
3853 float default_val);
Eric Salo8809a112022-11-21 13:01:06 -08003854
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003855UPB_API_INLINE int32_t upb_Message_GetInt32(const upb_Message* msg,
3856 const upb_MiniTableField* f,
3857 int32_t default_val);
3858
3859UPB_API_INLINE int64_t upb_Message_GetInt64(const upb_Message* msg,
3860 const upb_MiniTableField* f,
3861 int64_t default_val);
3862
3863UPB_API_INLINE const upb_Map* upb_Message_GetMap(const upb_Message* msg,
3864 const upb_MiniTableField* f);
3865
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003866UPB_API_INLINE const upb_Message* upb_Message_GetMessage(
3867 const upb_Message* msg, const upb_MiniTableField* f);
3868
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003869UPB_API_INLINE upb_Array* upb_Message_GetMutableArray(
3870 upb_Message* msg, const upb_MiniTableField* f);
3871
3872UPB_API_INLINE upb_Map* upb_Message_GetMutableMap(upb_Message* msg,
3873 const upb_MiniTableField* f);
3874
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00003875UPB_API_INLINE upb_Message* upb_Message_GetMutableMessage(
3876 upb_Message* msg, const upb_MiniTableField* f);
3877
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003878UPB_API_INLINE upb_Array* upb_Message_GetOrCreateMutableArray(
3879 upb_Message* msg, const upb_MiniTableField* f, upb_Arena* arena);
3880
3881UPB_API_INLINE upb_Map* upb_Message_GetOrCreateMutableMap(
3882 upb_Message* msg, const upb_MiniTable* map_entry_mini_table,
3883 const upb_MiniTableField* f, upb_Arena* arena);
3884
3885UPB_API_INLINE upb_Message* upb_Message_GetOrCreateMutableMessage(
3886 upb_Message* msg, const upb_MiniTable* mini_table,
3887 const upb_MiniTableField* f, upb_Arena* arena);
Eric Salo8809a112022-11-21 13:01:06 -08003888
Eric Salo3f36a912022-12-05 14:12:25 -08003889UPB_API_INLINE upb_StringView
Eric Salo10505992022-12-12 12:16:36 -08003890upb_Message_GetString(const upb_Message* msg, const upb_MiniTableField* field,
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003891 upb_StringView default_val);
Protobuf Team Bot54573a42023-11-21 14:47:34 +00003892
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003893UPB_API_INLINE uint32_t upb_Message_GetUInt32(const upb_Message* msg,
3894 const upb_MiniTableField* f,
3895 uint32_t default_val);
Eric Salo8809a112022-11-21 13:01:06 -08003896
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003897UPB_API_INLINE uint64_t upb_Message_GetUInt64(const upb_Message* msg,
3898 const upb_MiniTableField* f,
3899 uint64_t default_val);
3900
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003901UPB_API_INLINE void upb_Message_SetClosedEnum(
3902 upb_Message* msg, const upb_MiniTable* msg_mini_table,
3903 const upb_MiniTableField* f, int32_t value);
3904
Protobuf Team Botddc70b02024-05-11 02:21:06 +00003905// BaseField Setters ///////////////////////////////////////////////////////////
3906
3907UPB_API_INLINE void upb_Message_SetBaseField(upb_Message* msg,
3908 const upb_MiniTableField* f,
3909 const void* val);
3910
3911UPB_API_INLINE void upb_Message_SetBaseFieldBool(struct upb_Message* msg,
3912 const upb_MiniTableField* f,
3913 bool value);
3914
3915UPB_API_INLINE void upb_Message_SetBaseFieldDouble(struct upb_Message* msg,
3916 const upb_MiniTableField* f,
3917 double value);
3918
3919UPB_API_INLINE void upb_Message_SetBaseFieldFloat(struct upb_Message* msg,
3920 const upb_MiniTableField* f,
3921 float value);
3922
3923UPB_API_INLINE void upb_Message_SetBaseFieldInt32(struct upb_Message* msg,
3924 const upb_MiniTableField* f,
3925 int32_t value);
3926
3927UPB_API_INLINE void upb_Message_SetBaseFieldInt64(struct upb_Message* msg,
3928 const upb_MiniTableField* f,
3929 int64_t value);
3930
3931UPB_API_INLINE void upb_Message_SetBaseFieldString(struct upb_Message* msg,
3932 const upb_MiniTableField* f,
3933 upb_StringView value);
3934
3935UPB_API_INLINE void upb_Message_SetBaseFieldUInt32(struct upb_Message* msg,
3936 const upb_MiniTableField* f,
3937 uint32_t value);
3938
3939UPB_API_INLINE void upb_Message_SetBaseFieldUInt64(struct upb_Message* msg,
3940 const upb_MiniTableField* f,
3941 uint64_t value);
3942
3943// Extension Setters ///////////////////////////////////////////////////////////
3944
3945UPB_API_INLINE bool upb_Message_SetExtension(upb_Message* msg,
3946 const upb_MiniTableExtension* e,
3947 const void* value, upb_Arena* a);
3948
3949UPB_API_INLINE bool upb_Message_SetExtensionBool(
3950 struct upb_Message* msg, const upb_MiniTableExtension* e, bool value,
3951 upb_Arena* a);
3952
3953UPB_API_INLINE bool upb_Message_SetExtensionDouble(
3954 struct upb_Message* msg, const upb_MiniTableExtension* e, double value,
3955 upb_Arena* a);
3956
3957UPB_API_INLINE bool upb_Message_SetExtensionFloat(
3958 struct upb_Message* msg, const upb_MiniTableExtension* e, float value,
3959 upb_Arena* a);
3960
3961UPB_API_INLINE bool upb_Message_SetExtensionInt32(
3962 struct upb_Message* msg, const upb_MiniTableExtension* e, int32_t value,
3963 upb_Arena* a);
3964
3965UPB_API_INLINE bool upb_Message_SetExtensionInt64(
3966 struct upb_Message* msg, const upb_MiniTableExtension* e, int64_t value,
3967 upb_Arena* a);
3968
3969UPB_API_INLINE bool upb_Message_SetExtensionString(
3970 struct upb_Message* msg, const upb_MiniTableExtension* e,
3971 upb_StringView value, upb_Arena* a);
3972
3973UPB_API_INLINE bool upb_Message_SetExtensionUInt32(
3974 struct upb_Message* msg, const upb_MiniTableExtension* e, uint32_t value,
3975 upb_Arena* a);
3976
3977UPB_API_INLINE bool upb_Message_SetExtensionUInt64(
3978 struct upb_Message* msg, const upb_MiniTableExtension* e, uint64_t value,
3979 upb_Arena* a);
3980
3981// Universal Setters ///////////////////////////////////////////////////////////
3982
3983UPB_API_INLINE bool upb_Message_SetBool(upb_Message* msg,
3984 const upb_MiniTableField* f, bool value,
3985 upb_Arena* a);
3986
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00003987UPB_API_INLINE bool upb_Message_SetDouble(upb_Message* msg,
3988 const upb_MiniTableField* f,
3989 double value, upb_Arena* a);
3990
3991UPB_API_INLINE bool upb_Message_SetFloat(upb_Message* msg,
3992 const upb_MiniTableField* f,
3993 float value, upb_Arena* a);
3994
3995UPB_API_INLINE bool upb_Message_SetInt32(upb_Message* msg,
3996 const upb_MiniTableField* f,
3997 int32_t value, upb_Arena* a);
3998
3999UPB_API_INLINE bool upb_Message_SetInt64(upb_Message* msg,
4000 const upb_MiniTableField* f,
4001 int64_t value, upb_Arena* a);
4002
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00004003UPB_API_INLINE void upb_Message_SetMessage(upb_Message* msg,
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00004004 const upb_MiniTableField* f,
Protobuf Team Botb51dc1b2024-05-09 21:34:06 +00004005 upb_Message* value);
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00004006
Eric Salo10505992022-12-12 12:16:36 -08004007UPB_API_INLINE bool upb_Message_SetString(upb_Message* msg,
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00004008 const upb_MiniTableField* f,
4009 upb_StringView value, upb_Arena* a);
4010
4011UPB_API_INLINE bool upb_Message_SetUInt32(upb_Message* msg,
4012 const upb_MiniTableField* f,
4013 uint32_t value, upb_Arena* a);
4014
4015UPB_API_INLINE bool upb_Message_SetUInt64(upb_Message* msg,
4016 const upb_MiniTableField* f,
4017 uint64_t value, upb_Arena* a);
Eric Salo8809a112022-11-21 13:01:06 -08004018
Protobuf Team Botddc70b02024-05-11 02:21:06 +00004019////////////////////////////////////////////////////////////////////////////////
4020
Jie Luof36a5c62023-05-23 17:56:18 -07004021UPB_API_INLINE void* upb_Message_ResizeArrayUninitialized(
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00004022 upb_Message* msg, const upb_MiniTableField* f, size_t size,
4023 upb_Arena* arena);
Eric Salo10505992022-12-12 12:16:36 -08004024
Protobuf Team Bot7646fbf2024-05-03 19:47:53 +00004025UPB_API_INLINE uint32_t upb_Message_WhichOneofFieldNumber(
4026 const upb_Message* message, const upb_MiniTableField* oneof_field);
Eric Salob598b2d2022-12-22 23:14:27 -08004027
Protobuf Team Bot6cce6222024-05-28 17:15:46 +00004028// For a field `f` which is in a oneof, return the field of that
4029// oneof that is actually set (or NULL if none).
4030UPB_API_INLINE const upb_MiniTableField* upb_Message_WhichOneof(
4031 const upb_Message* msg, const upb_MiniTable* m,
4032 const upb_MiniTableField* f);
4033
Eric Salob598b2d2022-12-22 23:14:27 -08004034// Updates a map entry given an entry message.
Protobuf Team Bot5b343372023-12-19 06:18:53 +00004035bool upb_Message_SetMapEntry(upb_Map* map, const upb_MiniTable* mini_table,
4036 const upb_MiniTableField* field,
4037 upb_Message* map_entry_message, upb_Arena* arena);
Eric Salob598b2d2022-12-22 23:14:27 -08004038
Eric Salo8809a112022-11-21 13:01:06 -08004039#ifdef __cplusplus
4040} /* extern "C" */
4041#endif
4042
4043
4044#endif // UPB_MESSAGE_ACCESSORS_H_
4045
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +00004046// These functions are only used by generated code.
4047
4048#ifndef UPB_MESSAGE_MAP_GENCODE_UTIL_H_
4049#define UPB_MESSAGE_MAP_GENCODE_UTIL_H_
4050
4051
4052// Must be last.
4053
4054#ifdef __cplusplus
4055extern "C" {
4056#endif
4057
4058// Message map operations, these get the map from the message first.
4059
4060UPB_INLINE void _upb_msg_map_key(const void* msg, void* key, size_t size) {
4061 const upb_tabent* ent = (const upb_tabent*)msg;
4062 uint32_t u32len;
4063 upb_StringView k;
4064 k.data = upb_tabstr(ent->key, &u32len);
4065 k.size = u32len;
4066 _upb_map_fromkey(k, key, size);
4067}
4068
4069UPB_INLINE void _upb_msg_map_value(const void* msg, void* val, size_t size) {
4070 const upb_tabent* ent = (const upb_tabent*)msg;
4071 upb_value v = {ent->val.val};
4072 _upb_map_fromvalue(v, val, size);
4073}
4074
4075UPB_INLINE void _upb_msg_map_set_value(void* msg, const void* val,
4076 size_t size) {
4077 upb_tabent* ent = (upb_tabent*)msg;
4078 // This is like _upb_map_tovalue() except the entry already exists
4079 // so we can reuse the allocated upb_StringView for string fields.
4080 if (size == UPB_MAPTYPE_STRING) {
4081 upb_StringView* strp = (upb_StringView*)(uintptr_t)ent->val.val;
4082 memcpy(strp, val, sizeof(*strp));
4083 } else {
4084 memcpy(&ent->val.val, val, size);
4085 }
4086}
4087
4088#ifdef __cplusplus
4089} /* extern "C" */
4090#endif
4091
4092
4093#endif /* UPB_MESSAGE_MAP_GENCODE_UTIL_H_ */
4094
Mike Kruskal9d435022023-07-11 12:45:07 -07004095#ifndef UPB_MINI_TABLE_DECODE_H_
4096#define UPB_MINI_TABLE_DECODE_H_
4097
4098
Protobuf Team Bot4d3a98c2024-05-08 01:37:14 +00004099#ifndef UPB_MINI_TABLE_SUB_H_
4100#define UPB_MINI_TABLE_SUB_H_
4101
4102
4103// Must be last.
4104
4105typedef union upb_MiniTableSub upb_MiniTableSub;
4106
4107#ifdef __cplusplus
4108extern "C" {
4109#endif
4110
4111// Constructors
4112
4113UPB_API_INLINE upb_MiniTableSub
4114upb_MiniTableSub_FromEnum(const upb_MiniTableEnum* subenum);
4115
4116UPB_API_INLINE upb_MiniTableSub
4117upb_MiniTableSub_FromMessage(const upb_MiniTable* submsg);
4118
4119// Getters
4120
4121UPB_API_INLINE const upb_MiniTableEnum* upb_MiniTableSub_Enum(
4122 upb_MiniTableSub sub);
4123
4124UPB_API_INLINE const upb_MiniTable* upb_MiniTableSub_Message(
4125 upb_MiniTableSub sub);
4126
4127#ifdef __cplusplus
4128} /* extern "C" */
4129#endif
4130
4131
4132#endif /* UPB_MINI_TABLE_SUB_H_ */
4133
Mike Kruskal9d435022023-07-11 12:45:07 -07004134// Export the newer headers, for legacy users. New users should include the
4135// more specific headers directly.
4136// IWYU pragma: begin_exports
Protobuf Team Bot59b938b2024-04-08 17:18:48 +00004137
Mike Kruskal9d435022023-07-11 12:45:07 -07004138#ifndef UPB_MINI_DESCRIPTOR_BUILD_ENUM_H_
4139#define UPB_MINI_DESCRIPTOR_BUILD_ENUM_H_
4140
4141
4142// Must be last.
4143
4144#ifdef __cplusplus
4145extern "C" {
4146#endif
4147
Protobuf Team Bot59b938b2024-04-08 17:18:48 +00004148// Builds a upb_MiniTableEnum from an enum mini descriptor.
4149// The mini descriptor must be for an enum, not a message.
4150UPB_API upb_MiniTableEnum* upb_MiniTableEnum_Build(const char* data, size_t len,
4151 upb_Arena* arena,
4152 upb_Status* status);
Mike Kruskal9d435022023-07-11 12:45:07 -07004153
4154#ifdef __cplusplus
4155} /* extern "C" */
4156#endif
4157
4158
4159#endif // UPB_MINI_DESCRIPTOR_BUILD_ENUM_H_
4160
4161// Functions for linking MiniTables together once they are built from a
4162// MiniDescriptor.
4163//
4164// These functions have names like upb_MiniTable_Link() because they operate on
4165// MiniTables. We put them here, rather than in the mini_table/ directory,
4166// because they are only needed when building MiniTables from MiniDescriptors.
4167// The interfaces in mini_table/ assume that MiniTables are immutable.
4168
4169#ifndef UPB_MINI_DESCRIPTOR_LINK_H_
4170#define UPB_MINI_DESCRIPTOR_LINK_H_
4171
4172
4173// Must be last.
4174
4175#ifdef __cplusplus
4176extern "C" {
4177#endif
4178
4179// Links a sub-message field to a MiniTable for that sub-message. If a
4180// sub-message field is not linked, it will be treated as an unknown field
4181// during parsing, and setting the field will not be allowed. It is possible
4182// to link the message field later, at which point it will no longer be treated
4183// as unknown. However there is no synchronization for this operation, which
4184// means parallel mutation requires external synchronization.
4185// Returns success/failure.
4186UPB_API bool upb_MiniTable_SetSubMessage(upb_MiniTable* table,
4187 upb_MiniTableField* field,
4188 const upb_MiniTable* sub);
4189
4190// Links an enum field to a MiniTable for that enum.
4191// All enum fields must be linked prior to parsing.
4192// Returns success/failure.
4193UPB_API bool upb_MiniTable_SetSubEnum(upb_MiniTable* table,
4194 upb_MiniTableField* field,
4195 const upb_MiniTableEnum* sub);
4196
4197// Returns a list of fields that require linking at runtime, to connect the
4198// MiniTable to its sub-messages and sub-enums. The list of fields will be
4199// written to the `subs` array, which must have been allocated by the caller
4200// and must be large enough to hold a list of all fields in the message.
4201//
4202// The order of the fields returned by this function is significant: it matches
4203// the order expected by upb_MiniTable_Link() below.
4204//
4205// The return value packs the sub-message count and sub-enum count into a single
4206// integer like so:
4207// return (msg_count << 16) | enum_count;
4208UPB_API uint32_t upb_MiniTable_GetSubList(const upb_MiniTable* mt,
4209 const upb_MiniTableField** subs);
4210
4211// Links a message to its sub-messages and sub-enums. The caller must pass
4212// arrays of sub-tables and sub-enums, in the same length and order as is
4213// returned by upb_MiniTable_GetSubList() above. However, individual elements
4214// of the sub_tables may be NULL if those sub-messages were tree shaken.
4215//
4216// Returns false if either array is too short, or if any of the tables fails
4217// to link.
4218UPB_API bool upb_MiniTable_Link(upb_MiniTable* mt,
4219 const upb_MiniTable** sub_tables,
4220 size_t sub_table_count,
4221 const upb_MiniTableEnum** sub_enums,
4222 size_t sub_enum_count);
4223
4224#ifdef __cplusplus
4225} /* extern "C" */
4226#endif
4227
4228
4229#endif // UPB_MINI_DESCRIPTOR_LINK_H_
4230// IWYU pragma: end_exports
4231
4232// Must be last.
4233
4234typedef enum {
4235 kUpb_MiniTablePlatform_32Bit,
4236 kUpb_MiniTablePlatform_64Bit,
4237 kUpb_MiniTablePlatform_Native =
4238 UPB_SIZE(kUpb_MiniTablePlatform_32Bit, kUpb_MiniTablePlatform_64Bit),
4239} upb_MiniTablePlatform;
4240
4241#ifdef __cplusplus
4242extern "C" {
4243#endif
4244
4245// Builds a mini table from the data encoded in the buffer [data, len]. If any
4246// errors occur, returns NULL and sets a status message. In the success case,
4247// the caller must call upb_MiniTable_SetSub*() for all message or proto2 enum
4248// fields to link the table to the appropriate sub-tables.
4249upb_MiniTable* _upb_MiniTable_Build(const char* data, size_t len,
4250 upb_MiniTablePlatform platform,
4251 upb_Arena* arena, upb_Status* status);
4252
4253UPB_API_INLINE upb_MiniTable* upb_MiniTable_Build(const char* data, size_t len,
4254 upb_Arena* arena,
4255 upb_Status* status) {
4256 return _upb_MiniTable_Build(data, len, kUpb_MiniTablePlatform_Native, arena,
4257 status);
4258}
4259
4260// Initializes a MiniTableExtension buffer that has already been allocated.
4261// This is needed by upb_FileDef and upb_MessageDef, which allocate all of the
4262// extensions together in a single contiguous array.
4263const char* _upb_MiniTableExtension_Init(const char* data, size_t len,
4264 upb_MiniTableExtension* ext,
4265 const upb_MiniTable* extendee,
4266 upb_MiniTableSub sub,
4267 upb_MiniTablePlatform platform,
4268 upb_Status* status);
4269
4270UPB_API_INLINE const char* upb_MiniTableExtension_Init(
4271 const char* data, size_t len, upb_MiniTableExtension* ext,
4272 const upb_MiniTable* extendee, upb_MiniTableSub sub, upb_Status* status) {
4273 return _upb_MiniTableExtension_Init(data, len, ext, extendee, sub,
4274 kUpb_MiniTablePlatform_Native, status);
4275}
4276
4277UPB_API upb_MiniTableExtension* _upb_MiniTableExtension_Build(
4278 const char* data, size_t len, const upb_MiniTable* extendee,
4279 upb_MiniTableSub sub, upb_MiniTablePlatform platform, upb_Arena* arena,
4280 upb_Status* status);
4281
4282UPB_API_INLINE upb_MiniTableExtension* upb_MiniTableExtension_Build(
4283 const char* data, size_t len, const upb_MiniTable* extendee,
4284 upb_Arena* arena, upb_Status* status) {
Protobuf Team Bot842f56b2023-11-29 05:02:57 +00004285 upb_MiniTableSub sub = upb_MiniTableSub_FromMessage(NULL);
Mike Kruskal9d435022023-07-11 12:45:07 -07004286 return _upb_MiniTableExtension_Build(
4287 data, len, extendee, sub, kUpb_MiniTablePlatform_Native, arena, status);
4288}
4289
4290UPB_API_INLINE upb_MiniTableExtension* upb_MiniTableExtension_BuildMessage(
4291 const char* data, size_t len, const upb_MiniTable* extendee,
4292 upb_MiniTable* submsg, upb_Arena* arena, upb_Status* status) {
Protobuf Team Bot842f56b2023-11-29 05:02:57 +00004293 upb_MiniTableSub sub = upb_MiniTableSub_FromMessage(submsg);
Mike Kruskal9d435022023-07-11 12:45:07 -07004294 return _upb_MiniTableExtension_Build(
4295 data, len, extendee, sub, kUpb_MiniTablePlatform_Native, arena, status);
4296}
4297
4298UPB_API_INLINE upb_MiniTableExtension* upb_MiniTableExtension_BuildEnum(
4299 const char* data, size_t len, const upb_MiniTable* extendee,
4300 upb_MiniTableEnum* subenum, upb_Arena* arena, upb_Status* status) {
Protobuf Team Bot842f56b2023-11-29 05:02:57 +00004301 upb_MiniTableSub sub = upb_MiniTableSub_FromEnum(subenum);
Mike Kruskal9d435022023-07-11 12:45:07 -07004302 return _upb_MiniTableExtension_Build(
4303 data, len, extendee, sub, kUpb_MiniTablePlatform_Native, arena, status);
4304}
4305
4306// Like upb_MiniTable_Build(), but the user provides a buffer of layout data so
4307// it can be reused from call to call, avoiding repeated realloc()/free().
4308//
4309// The caller owns `*buf` both before and after the call, and must free() it
4310// when it is no longer in use. The function will realloc() `*buf` as
4311// necessary, updating `*size` accordingly.
4312upb_MiniTable* upb_MiniTable_BuildWithBuf(const char* data, size_t len,
4313 upb_MiniTablePlatform platform,
4314 upb_Arena* arena, void** buf,
4315 size_t* buf_size, upb_Status* status);
4316
4317#ifdef __cplusplus
4318} /* extern "C" */
4319#endif
4320
4321
4322#endif /* UPB_MINI_TABLE_DECODE_H_ */
4323
Protobuf Team Bot4eeaa222023-12-04 05:00:05 +00004324#ifndef UPB_MINI_TABLE_EXTENSION_REGISTRY_H_
4325#define UPB_MINI_TABLE_EXTENSION_REGISTRY_H_
4326
4327
4328// Must be last.
4329
4330#ifdef __cplusplus
4331extern "C" {
4332#endif
4333
4334/* Extension registry: a dynamic data structure that stores a map of:
4335 * (upb_MiniTable, number) -> extension info
4336 *
4337 * upb_decode() uses upb_ExtensionRegistry to look up extensions while parsing
4338 * binary format.
4339 *
4340 * upb_ExtensionRegistry is part of the mini-table (msglayout) family of
4341 * objects. Like all mini-table objects, it is suitable for reflection-less
4342 * builds that do not want to expose names into the binary.
4343 *
4344 * Unlike most mini-table types, upb_ExtensionRegistry requires dynamic memory
4345 * allocation and dynamic initialization:
4346 * * If reflection is being used, then upb_DefPool will construct an appropriate
4347 * upb_ExtensionRegistry automatically.
4348 * * For a mini-table only build, the user must manually construct the
4349 * upb_ExtensionRegistry and populate it with all of the extensions the user
4350 * cares about.
4351 * * A third alternative is to manually unpack relevant extensions after the
4352 * main parse is complete, similar to how Any works. This is perhaps the
4353 * nicest solution from the perspective of reducing dependencies, avoiding
4354 * dynamic memory allocation, and avoiding the need to parse uninteresting
4355 * extensions. The downsides are:
4356 * (1) parse errors are not caught during the main parse
4357 * (2) the CPU hit of parsing comes during access, which could cause an
4358 * undesirable stutter in application performance.
4359 *
4360 * Users cannot directly get or put into this map. Users can only add the
4361 * extensions from a generated module and pass the extension registry to the
4362 * binary decoder.
4363 *
4364 * A upb_DefPool provides a upb_ExtensionRegistry, so any users who use
4365 * reflection do not need to populate a upb_ExtensionRegistry directly.
4366 */
4367
4368typedef struct upb_ExtensionRegistry upb_ExtensionRegistry;
4369
4370// Creates a upb_ExtensionRegistry in the given arena.
4371// The arena must outlive any use of the extreg.
4372UPB_API upb_ExtensionRegistry* upb_ExtensionRegistry_New(upb_Arena* arena);
4373
4374UPB_API bool upb_ExtensionRegistry_Add(upb_ExtensionRegistry* r,
4375 const upb_MiniTableExtension* e);
4376
4377// Adds the given extension info for the array |e| of size |count| into the
4378// registry. If there are any errors, the entire array is backed out.
4379// The extensions must outlive the registry.
4380// Possible errors include OOM or an extension number that already exists.
4381// TODO: There is currently no way to know the exact reason for failure.
4382bool upb_ExtensionRegistry_AddArray(upb_ExtensionRegistry* r,
4383 const upb_MiniTableExtension** e,
4384 size_t count);
4385
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +00004386#ifdef UPB_LINKARR_DECLARE
4387
4388// Adds all extensions linked into the binary into the registry. The set of
4389// linked extensions is assembled by the linker using linker arrays. This
4390// will likely not work properly if the extensions are split across multiple
4391// shared libraries.
4392//
4393// Returns true if all extensions were added successfully, false on out of
4394// memory or if any extensions were already present.
4395//
4396// This API is currently not available on MSVC (though it *is* available on
4397// Windows using clang-cl).
4398UPB_API bool upb_ExtensionRegistry_AddAllLinkedExtensions(
4399 upb_ExtensionRegistry* r);
4400
4401#endif // UPB_LINKARR_DECLARE
4402
Protobuf Team Bot4eeaa222023-12-04 05:00:05 +00004403// Looks up the extension (if any) defined for message type |t| and field
4404// number |num|. Returns the extension if found, otherwise NULL.
4405UPB_API const upb_MiniTableExtension* upb_ExtensionRegistry_Lookup(
4406 const upb_ExtensionRegistry* r, const upb_MiniTable* t, uint32_t num);
4407
4408#ifdef __cplusplus
4409} /* extern "C" */
4410#endif
4411
4412
4413#endif /* UPB_MINI_TABLE_EXTENSION_REGISTRY_H_ */
4414
Mike Kruskal9d435022023-07-11 12:45:07 -07004415#ifndef UPB_MINI_TABLE_FILE_H_
4416#define UPB_MINI_TABLE_FILE_H_
4417
4418
4419#ifndef UPB_MINI_TABLE_INTERNAL_FILE_H_
4420#define UPB_MINI_TABLE_INTERNAL_FILE_H_
4421
Mike Kruskal9d435022023-07-11 12:45:07 -07004422// Must be last.
4423
4424struct upb_MiniTableFile {
Protobuf Team Bot4c743452023-12-26 22:55:49 +00004425 const struct upb_MiniTable** UPB_PRIVATE(msgs);
4426 const struct upb_MiniTableEnum** UPB_PRIVATE(enums);
4427 const struct upb_MiniTableExtension** UPB_PRIVATE(exts);
Protobuf Team Botff422002023-11-28 17:31:45 +00004428 int UPB_PRIVATE(msg_count);
4429 int UPB_PRIVATE(enum_count);
4430 int UPB_PRIVATE(ext_count);
Mike Kruskal9d435022023-07-11 12:45:07 -07004431};
4432
Protobuf Team Botff422002023-11-28 17:31:45 +00004433#ifdef __cplusplus
4434extern "C" {
4435#endif
4436
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004437UPB_API_INLINE int upb_MiniTableFile_EnumCount(
Protobuf Team Bot4c743452023-12-26 22:55:49 +00004438 const struct upb_MiniTableFile* f) {
Protobuf Team Botff422002023-11-28 17:31:45 +00004439 return f->UPB_PRIVATE(enum_count);
4440}
4441
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004442UPB_API_INLINE int upb_MiniTableFile_ExtensionCount(
Protobuf Team Bot4c743452023-12-26 22:55:49 +00004443 const struct upb_MiniTableFile* f) {
Protobuf Team Botff422002023-11-28 17:31:45 +00004444 return f->UPB_PRIVATE(ext_count);
4445}
4446
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004447UPB_API_INLINE int upb_MiniTableFile_MessageCount(
Protobuf Team Bot4c743452023-12-26 22:55:49 +00004448 const struct upb_MiniTableFile* f) {
Protobuf Team Botff422002023-11-28 17:31:45 +00004449 return f->UPB_PRIVATE(msg_count);
4450}
4451
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004452UPB_API_INLINE const struct upb_MiniTableEnum* upb_MiniTableFile_Enum(
Protobuf Team Bot4c743452023-12-26 22:55:49 +00004453 const struct upb_MiniTableFile* f, int i) {
Protobuf Team Botff422002023-11-28 17:31:45 +00004454 UPB_ASSERT(i < f->UPB_PRIVATE(enum_count));
4455 return f->UPB_PRIVATE(enums)[i];
4456}
4457
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004458UPB_API_INLINE const struct upb_MiniTableExtension* upb_MiniTableFile_Extension(
4459 const struct upb_MiniTableFile* f, int i) {
Protobuf Team Botff422002023-11-28 17:31:45 +00004460 UPB_ASSERT(i < f->UPB_PRIVATE(ext_count));
4461 return f->UPB_PRIVATE(exts)[i];
4462}
4463
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004464UPB_API_INLINE const struct upb_MiniTable* upb_MiniTableFile_Message(
Protobuf Team Bot4c743452023-12-26 22:55:49 +00004465 const struct upb_MiniTableFile* f, int i) {
Protobuf Team Botff422002023-11-28 17:31:45 +00004466 UPB_ASSERT(i < f->UPB_PRIVATE(msg_count));
4467 return f->UPB_PRIVATE(msgs)[i];
4468}
4469
4470#ifdef __cplusplus
4471} /* extern "C" */
4472#endif
4473
Mike Kruskal9d435022023-07-11 12:45:07 -07004474
4475#endif /* UPB_MINI_TABLE_INTERNAL_FILE_H_ */
4476
Protobuf Team Botff422002023-11-28 17:31:45 +00004477// Must be last.
4478
Protobuf Team Bot9b4aff22023-12-27 21:35:01 +00004479typedef struct upb_MiniTableFile upb_MiniTableFile;
4480
Protobuf Team Botff422002023-11-28 17:31:45 +00004481#ifdef __cplusplus
4482extern "C" {
4483#endif
4484
Protobuf Team Bot1db94652023-12-20 02:08:18 +00004485UPB_API_INLINE const upb_MiniTableEnum* upb_MiniTableFile_Enum(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004486 const upb_MiniTableFile* f, int i);
Protobuf Team Botff422002023-11-28 17:31:45 +00004487
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004488UPB_API_INLINE int upb_MiniTableFile_EnumCount(const upb_MiniTableFile* f);
Protobuf Team Botff422002023-11-28 17:31:45 +00004489
Protobuf Team Bot1db94652023-12-20 02:08:18 +00004490UPB_API_INLINE const upb_MiniTableExtension* upb_MiniTableFile_Extension(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004491 const upb_MiniTableFile* f, int i);
Protobuf Team Botff422002023-11-28 17:31:45 +00004492
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004493UPB_API_INLINE int upb_MiniTableFile_ExtensionCount(const upb_MiniTableFile* f);
Protobuf Team Botff422002023-11-28 17:31:45 +00004494
Protobuf Team Bot1db94652023-12-20 02:08:18 +00004495UPB_API_INLINE const upb_MiniTable* upb_MiniTableFile_Message(
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004496 const upb_MiniTableFile* f, int i);
Protobuf Team Botff422002023-11-28 17:31:45 +00004497
Protobuf Team Botb3878b52024-02-08 21:50:53 +00004498UPB_API_INLINE int upb_MiniTableFile_MessageCount(const upb_MiniTableFile* f);
Protobuf Team Botff422002023-11-28 17:31:45 +00004499
4500#ifdef __cplusplus
4501} /* extern "C" */
4502#endif
4503
4504
Mike Kruskal9d435022023-07-11 12:45:07 -07004505#endif /* UPB_MINI_TABLE_FILE_H_ */
4506
Mike Kruskal9cf9db82022-11-04 21:22:31 -07004507// upb_decode: parsing into a upb_Message using a upb_MiniTable.
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004508
Mike Kruskal9cf9db82022-11-04 21:22:31 -07004509#ifndef UPB_WIRE_DECODE_H_
4510#define UPB_WIRE_DECODE_H_
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004511
Protobuf Team Bot743bf922023-09-14 01:12:11 +00004512#include <stddef.h>
4513#include <stdint.h>
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004514
Adam Cozzette7d5592e2023-08-23 12:15:26 -07004515
Joshua Habermand3995ec2022-09-30 16:54:39 -07004516// Must be last.
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004517
4518#ifdef __cplusplus
4519extern "C" {
4520#endif
4521
4522enum {
Joshua Habermand3995ec2022-09-30 16:54:39 -07004523 /* If set, strings will alias the input buffer instead of copying into the
4524 * arena. */
4525 kUpb_DecodeOption_AliasString = 1,
4526
4527 /* If set, the parse will return failure if any message is missing any
4528 * required fields when the message data ends. The parse will still continue,
4529 * and the failure will only be reported at the end.
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004530 *
Joshua Habermand3995ec2022-09-30 16:54:39 -07004531 * IMPORTANT CAVEATS:
4532 *
4533 * 1. This can throw a false positive failure if an incomplete message is seen
4534 * on the wire but is later completed when the sub-message occurs again.
4535 * For this reason, a second pass is required to verify a failure, to be
4536 * truly robust.
4537 *
4538 * 2. This can return a false success if you are decoding into a message that
4539 * already has some sub-message fields present. If the sub-message does
4540 * not occur in the binary payload, we will never visit it and discover the
4541 * incomplete sub-message. For this reason, this check is only useful for
4542 * implemting ParseFromString() semantics. For MergeFromString(), a
4543 * post-parse validation step will always be necessary. */
4544 kUpb_DecodeOption_CheckRequired = 2,
Jie Luo3560e232023-06-12 00:33:50 -07004545
4546 /* EXPERIMENTAL:
4547 *
4548 * If set, the parser will allow parsing of sub-message fields that were not
4549 * previously linked using upb_MiniTable_SetSubMessage(). The data will be
4550 * parsed into an internal "empty" message type that cannot be accessed
4551 * directly, but can be later promoted into the true message type if the
4552 * sub-message fields are linked at a later time.
4553 *
4554 * Users should set this option if they intend to perform dynamic tree shaking
4555 * and promoting using the interfaces in message/promote.h. If this option is
4556 * enabled, it is important that the resulting messages are only accessed by
4557 * code that is aware of promotion rules:
4558 *
4559 * 1. Message pointers in upb_Message, upb_Array, and upb_Map are represented
4560 * by a tagged pointer upb_TaggedMessagePointer. The tag indicates whether
4561 * the message uses the internal "empty" type.
4562 *
4563 * 2. Any code *reading* these message pointers must test whether the "empty"
4564 * tag bit is set, using the interfaces in mini_table/types.h. However
4565 * writing of message pointers should always use plain upb_Message*, since
4566 * users are not allowed to create "empty" messages.
4567 *
4568 * 3. It is always safe to test whether a field is present or test the array
4569 * length; these interfaces will reflect that empty messages are present,
4570 * even though their data cannot be accessed without promoting first.
4571 *
4572 * 4. If a message pointer is indeed tagged as empty, the message may not be
4573 * accessed directly, only promoted through the interfaces in
4574 * message/promote.h.
4575 *
4576 * 5. Tagged/empty messages may never be created by the user. They may only
4577 * be created by the parser or the message-copying logic in message/copy.h.
4578 */
4579 kUpb_DecodeOption_ExperimentalAllowUnlinked = 4,
Protobuf Team Bot1610bf12024-01-10 21:45:42 +00004580
4581 /* EXPERIMENTAL:
4582 *
4583 * If set, decoding will enforce UTF-8 validation for string fields, even for
4584 * proto2 or fields with `features.utf8_validation = NONE`. Normally, only
4585 * proto3 string fields will be validated for UTF-8. Decoding will return
4586 * kUpb_DecodeStatus_BadUtf8 for non-UTF-8 strings, which is the same behavior
4587 * as non-UTF-8 proto3 string fields.
4588 */
4589 kUpb_DecodeOption_AlwaysValidateUtf8 = 8,
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004590};
4591
Deanna Garciac7d979d2023-04-14 17:22:13 -07004592UPB_INLINE uint32_t upb_DecodeOptions_MaxDepth(uint16_t depth) {
4593 return (uint32_t)depth << 16;
4594}
4595
4596UPB_INLINE uint16_t upb_DecodeOptions_GetMaxDepth(uint32_t options) {
4597 return options >> 16;
4598}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004599
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -07004600// Enforce an upper bound on recursion depth.
4601UPB_INLINE int upb_Decode_LimitDepth(uint32_t decode_options, uint32_t limit) {
Deanna Garciac7d979d2023-04-14 17:22:13 -07004602 uint32_t max_depth = upb_DecodeOptions_GetMaxDepth(decode_options);
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -07004603 if (max_depth > limit) max_depth = limit;
Deanna Garciac7d979d2023-04-14 17:22:13 -07004604 return upb_DecodeOptions_MaxDepth(max_depth) | (decode_options & 0xffff);
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -07004605}
4606
Protobuf Team Bot762233d2024-04-10 13:38:37 +00004607// LINT.IfChange
Joshua Habermand3995ec2022-09-30 16:54:39 -07004608typedef enum {
4609 kUpb_DecodeStatus_Ok = 0,
Deanna Garciabd6a0cf2023-04-20 10:30:44 -07004610 kUpb_DecodeStatus_Malformed = 1, // Wire format was corrupt
4611 kUpb_DecodeStatus_OutOfMemory = 2, // Arena alloc failed
4612 kUpb_DecodeStatus_BadUtf8 = 3, // String field had bad UTF-8
4613 kUpb_DecodeStatus_MaxDepthExceeded =
4614 4, // Exceeded upb_DecodeOptions_MaxDepth
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004615
Joshua Habermand3995ec2022-09-30 16:54:39 -07004616 // kUpb_DecodeOption_CheckRequired failed (see above), but the parse otherwise
4617 // succeeded.
4618 kUpb_DecodeStatus_MissingRequired = 5,
Jie Luo3560e232023-06-12 00:33:50 -07004619
4620 // Unlinked sub-message field was present, but
4621 // kUpb_DecodeOptions_ExperimentalAllowUnlinked was not specified in the list
4622 // of options.
4623 kUpb_DecodeStatus_UnlinkedSubMessage = 6,
Joshua Habermand3995ec2022-09-30 16:54:39 -07004624} upb_DecodeStatus;
Protobuf Team Bot762233d2024-04-10 13:38:37 +00004625// LINT.ThenChange(//depot/google3/third_party/protobuf/rust/upb.rs:decode_status)
Joshua Habermand3995ec2022-09-30 16:54:39 -07004626
Eric Salo10505992022-12-12 12:16:36 -08004627UPB_API upb_DecodeStatus upb_Decode(const char* buf, size_t size,
Protobuf Team Botd86fe392024-04-03 14:19:48 +00004628 upb_Message* msg, const upb_MiniTable* mt,
Eric Salo10505992022-12-12 12:16:36 -08004629 const upb_ExtensionRegistry* extreg,
4630 int options, upb_Arena* arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004631
Protobuf Team Botd86fe392024-04-03 14:19:48 +00004632// Same as upb_Decode but with a varint-encoded length prepended.
4633// On success 'num_bytes_read' will be set to the how many bytes were read,
4634// on failure the contents of num_bytes_read is undefined.
Protobuf Team Botb9bde6a2024-04-03 19:25:27 +00004635UPB_API upb_DecodeStatus upb_DecodeLengthPrefixed(
Protobuf Team Botd86fe392024-04-03 14:19:48 +00004636 const char* buf, size_t size, upb_Message* msg, size_t* num_bytes_read,
4637 const upb_MiniTable* mt, const upb_ExtensionRegistry* extreg, int options,
4638 upb_Arena* arena);
4639
Protobuf Team Bot5dfdd852024-05-17 15:56:35 +00004640// Utility function for wrapper languages to get an error string from a
4641// upb_DecodeStatus.
4642UPB_API const char* upb_DecodeStatus_String(upb_DecodeStatus status);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004643#ifdef __cplusplus
Joshua Habermanf41049a2022-01-21 14:41:25 -08004644} /* extern "C" */
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004645#endif
4646
Joshua Habermandd69a482021-05-17 22:40:33 -07004647
Mike Kruskal9cf9db82022-11-04 21:22:31 -07004648#endif /* UPB_WIRE_DECODE_H_ */
Joshua Habermand3995ec2022-09-30 16:54:39 -07004649
Protobuf Team Botda56def2023-12-26 19:08:52 +00004650// upb_Encode: parsing from a upb_Message using a upb_MiniTable.
4651
4652#ifndef UPB_WIRE_ENCODE_H_
4653#define UPB_WIRE_ENCODE_H_
4654
4655#include <stddef.h>
4656#include <stdint.h>
4657
4658
4659// Must be last.
4660
4661#ifdef __cplusplus
4662extern "C" {
4663#endif
4664
4665enum {
4666 /* If set, the results of serializing will be deterministic across all
4667 * instances of this binary. There are no guarantees across different
4668 * binary builds.
4669 *
4670 * If your proto contains maps, the encoder will need to malloc()/free()
4671 * memory during encode. */
4672 kUpb_EncodeOption_Deterministic = 1,
4673
Protobuf Team Bote22539b2024-04-08 23:26:12 +00004674 // When set, unknown fields are not encoded.
Protobuf Team Botda56def2023-12-26 19:08:52 +00004675 kUpb_EncodeOption_SkipUnknown = 2,
4676
4677 // When set, the encode will fail if any required fields are missing.
4678 kUpb_EncodeOption_CheckRequired = 4,
4679};
4680
Protobuf Team Bot762233d2024-04-10 13:38:37 +00004681// LINT.IfChange
Protobuf Team Botda56def2023-12-26 19:08:52 +00004682typedef enum {
4683 kUpb_EncodeStatus_Ok = 0,
4684 kUpb_EncodeStatus_OutOfMemory = 1, // Arena alloc failed
4685 kUpb_EncodeStatus_MaxDepthExceeded = 2,
4686
4687 // kUpb_EncodeOption_CheckRequired failed but the parse otherwise succeeded.
4688 kUpb_EncodeStatus_MissingRequired = 3,
4689} upb_EncodeStatus;
Protobuf Team Bot762233d2024-04-10 13:38:37 +00004690// LINT.ThenChange(//depot/google3/third_party/protobuf/rust/upb.rs:encode_status)
Protobuf Team Botda56def2023-12-26 19:08:52 +00004691
4692UPB_INLINE uint32_t upb_EncodeOptions_MaxDepth(uint16_t depth) {
4693 return (uint32_t)depth << 16;
4694}
4695
4696UPB_INLINE uint16_t upb_EncodeOptions_GetMaxDepth(uint32_t options) {
4697 return options >> 16;
4698}
4699
4700// Enforce an upper bound on recursion depth.
4701UPB_INLINE int upb_Encode_LimitDepth(uint32_t encode_options, uint32_t limit) {
4702 uint32_t max_depth = upb_EncodeOptions_GetMaxDepth(encode_options);
4703 if (max_depth > limit) max_depth = limit;
4704 return upb_EncodeOptions_MaxDepth(max_depth) | (encode_options & 0xffff);
4705}
4706
4707UPB_API upb_EncodeStatus upb_Encode(const upb_Message* msg,
4708 const upb_MiniTable* l, int options,
4709 upb_Arena* arena, char** buf, size_t* size);
4710
Protobuf Team Botd86fe392024-04-03 14:19:48 +00004711// Encodes the message prepended by a varint of the serialized length.
Protobuf Team Botb9bde6a2024-04-03 19:25:27 +00004712UPB_API upb_EncodeStatus upb_EncodeLengthPrefixed(const upb_Message* msg,
4713 const upb_MiniTable* l,
4714 int options, upb_Arena* arena,
4715 char** buf, size_t* size);
Protobuf Team Bot5dfdd852024-05-17 15:56:35 +00004716// Utility function for wrapper languages to get an error string from a
4717// upb_EncodeStatus.
4718UPB_API const char* upb_EncodeStatus_String(upb_EncodeStatus status);
Protobuf Team Botd86fe392024-04-03 14:19:48 +00004719
Protobuf Team Botda56def2023-12-26 19:08:52 +00004720#ifdef __cplusplus
4721} /* extern "C" */
4722#endif
4723
4724
4725#endif /* UPB_WIRE_ENCODE_H_ */
4726
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004727// These are the specialized field parser functions for the fast parser.
4728// Generated tables will refer to these by name.
4729//
4730// The function names are encoded with names like:
4731//
4732// // 123 4
4733// upb_pss_1bt(); // Parse singular string, 1 byte tag.
4734//
4735// In position 1:
4736// - 'p' for parse, most function use this
4737// - 'c' for copy, for when we are copying strings instead of aliasing
4738//
4739// In position 2 (cardinality):
4740// - 's' for singular, with or without hasbit
4741// - 'o' for oneof
4742// - 'r' for non-packed repeated
4743// - 'p' for packed repeated
4744//
4745// In position 3 (type):
4746// - 'b1' for bool
4747// - 'v4' for 4-byte varint
4748// - 'v8' for 8-byte varint
4749// - 'z4' for zig-zag-encoded 4-byte varint
4750// - 'z8' for zig-zag-encoded 8-byte varint
4751// - 'f4' for 4-byte fixed
4752// - 'f8' for 8-byte fixed
4753// - 'm' for sub-message
4754// - 's' for string (validate UTF-8)
4755// - 'b' for bytes
4756//
4757// In position 4 (tag length):
4758// - '1' for one-byte tags (field numbers 1-15)
4759// - '2' for two-byte tags (field numbers 16-2048)
4760
Protobuf Team Botde5ea1e2024-01-02 04:02:53 +00004761#ifndef UPB_WIRE_INTERNAL_DECODE_FAST_H_
4762#define UPB_WIRE_INTERNAL_DECODE_FAST_H_
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004763
4764
Joshua Habermand3995ec2022-09-30 16:54:39 -07004765// Must be last.
4766
4767#ifdef __cplusplus
4768extern "C" {
4769#endif
4770
Joshua Habermanf41049a2022-01-21 14:41:25 -08004771struct upb_Decoder;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004772
4773// The fallback, generic parsing function that can handle any field type.
4774// This just uses the regular (non-fast) parser to parse a single field.
Joshua Habermand3995ec2022-09-30 16:54:39 -07004775const char* _upb_FastDecoder_DecodeGeneric(struct upb_Decoder* d,
4776 const char* ptr, upb_Message* msg,
4777 intptr_t table, uint64_t hasbits,
4778 uint64_t data);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004779
Joshua Habermanf41049a2022-01-21 14:41:25 -08004780#define UPB_PARSE_PARAMS \
4781 struct upb_Decoder *d, const char *ptr, upb_Message *msg, intptr_t table, \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004782 uint64_t hasbits, uint64_t data
4783
4784/* primitive fields ***********************************************************/
4785
4786#define F(card, type, valbytes, tagbytes) \
Joshua Habermanf41049a2022-01-21 14:41:25 -08004787 const char* upb_p##card##type##valbytes##_##tagbytes##bt(UPB_PARSE_PARAMS);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004788
4789#define TYPES(card, tagbytes) \
4790 F(card, b, 1, tagbytes) \
4791 F(card, v, 4, tagbytes) \
4792 F(card, v, 8, tagbytes) \
4793 F(card, z, 4, tagbytes) \
4794 F(card, z, 8, tagbytes) \
4795 F(card, f, 4, tagbytes) \
4796 F(card, f, 8, tagbytes)
4797
4798#define TAGBYTES(card) \
4799 TYPES(card, 1) \
4800 TYPES(card, 2)
4801
4802TAGBYTES(s)
4803TAGBYTES(o)
4804TAGBYTES(r)
4805TAGBYTES(p)
4806
4807#undef F
4808#undef TYPES
4809#undef TAGBYTES
4810
4811/* string fields **************************************************************/
4812
4813#define F(card, tagbytes, type) \
Joshua Habermanf41049a2022-01-21 14:41:25 -08004814 const char* upb_p##card##type##_##tagbytes##bt(UPB_PARSE_PARAMS); \
4815 const char* upb_c##card##type##_##tagbytes##bt(UPB_PARSE_PARAMS);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004816
4817#define UTF8(card, tagbytes) \
4818 F(card, tagbytes, s) \
4819 F(card, tagbytes, b)
4820
4821#define TAGBYTES(card) \
4822 UTF8(card, 1) \
4823 UTF8(card, 2)
4824
4825TAGBYTES(s)
4826TAGBYTES(o)
4827TAGBYTES(r)
4828
4829#undef F
Protobuf Team Botde5ea1e2024-01-02 04:02:53 +00004830#undef UTF8
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004831#undef TAGBYTES
4832
4833/* sub-message fields *********************************************************/
4834
4835#define F(card, tagbytes, size_ceil, ceil_arg) \
Joshua Habermanf41049a2022-01-21 14:41:25 -08004836 const char* upb_p##card##m_##tagbytes##bt_max##size_ceil##b(UPB_PARSE_PARAMS);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004837
4838#define SIZES(card, tagbytes) \
Joshua Habermanf41049a2022-01-21 14:41:25 -08004839 F(card, tagbytes, 64, 64) \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004840 F(card, tagbytes, 128, 128) \
4841 F(card, tagbytes, 192, 192) \
4842 F(card, tagbytes, 256, 256) \
4843 F(card, tagbytes, max, -1)
4844
4845#define TAGBYTES(card) \
Joshua Habermanf41049a2022-01-21 14:41:25 -08004846 SIZES(card, 1) \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004847 SIZES(card, 2)
4848
4849TAGBYTES(s)
4850TAGBYTES(o)
4851TAGBYTES(r)
4852
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004853#undef F
Protobuf Team Botde5ea1e2024-01-02 04:02:53 +00004854#undef SIZES
4855#undef TAGBYTES
Joshua Haberman9abf6e22021-01-13 12:16:25 -08004856
4857#undef UPB_PARSE_PARAMS
4858
Joshua Habermand3995ec2022-09-30 16:54:39 -07004859#ifdef __cplusplus
4860} /* extern "C" */
4861#endif
4862
4863
Protobuf Team Botde5ea1e2024-01-02 04:02:53 +00004864#endif /* UPB_WIRE_INTERNAL_DECODE_FAST_H_ */
Mike Kruskal9d435022023-07-11 12:45:07 -07004865// IWYU pragma: end_exports
4866
4867#endif // UPB_GENERATED_CODE_SUPPORT_H_
Protobuf Team Bot0cb912c2023-09-28 20:14:04 +00004868/* This file was generated by upb_generator from the input file:
Mike Kruskal9d435022023-07-11 12:45:07 -07004869 *
4870 * google/protobuf/descriptor.proto
4871 *
4872 * Do not edit -- your changes will be discarded when the file is
Protobuf Team Botd3b2fc52024-05-02 17:02:37 +00004873 * regenerated.
4874 * NO CHECKED-IN PROTOBUF GENCODE */
Mike Kruskal9d435022023-07-11 12:45:07 -07004875
Protobuf Team Botd11eb712023-09-15 00:25:33 +00004876#ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_MINITABLE_H_
4877#define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_MINITABLE_H_
4878
4879
4880// Must be last.
4881
4882#ifdef __cplusplus
4883extern "C" {
4884#endif
4885
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004886extern const upb_MiniTable google__protobuf__FileDescriptorSet_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004887extern const upb_MiniTable* google__protobuf__FileDescriptorSet_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004888extern const upb_MiniTable google__protobuf__FileDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004889extern const upb_MiniTable* google__protobuf__FileDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004890extern const upb_MiniTable google__protobuf__DescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004891extern const upb_MiniTable* google__protobuf__DescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004892extern const upb_MiniTable google__protobuf__DescriptorProto__ExtensionRange_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004893extern const upb_MiniTable* google__protobuf__DescriptorProto__ExtensionRange_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004894extern const upb_MiniTable google__protobuf__DescriptorProto__ReservedRange_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004895extern const upb_MiniTable* google__protobuf__DescriptorProto__ReservedRange_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004896extern const upb_MiniTable google__protobuf__ExtensionRangeOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004897extern const upb_MiniTable* google__protobuf__ExtensionRangeOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004898extern const upb_MiniTable google__protobuf__ExtensionRangeOptions__Declaration_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004899extern const upb_MiniTable* google__protobuf__ExtensionRangeOptions__Declaration_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004900extern const upb_MiniTable google__protobuf__FieldDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004901extern const upb_MiniTable* google__protobuf__FieldDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004902extern const upb_MiniTable google__protobuf__OneofDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004903extern const upb_MiniTable* google__protobuf__OneofDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004904extern const upb_MiniTable google__protobuf__EnumDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004905extern const upb_MiniTable* google__protobuf__EnumDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004906extern const upb_MiniTable google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004907extern const upb_MiniTable* google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004908extern const upb_MiniTable google__protobuf__EnumValueDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004909extern const upb_MiniTable* google__protobuf__EnumValueDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004910extern const upb_MiniTable google__protobuf__ServiceDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004911extern const upb_MiniTable* google__protobuf__ServiceDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004912extern const upb_MiniTable google__protobuf__MethodDescriptorProto_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004913extern const upb_MiniTable* google__protobuf__MethodDescriptorProto_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004914extern const upb_MiniTable google__protobuf__FileOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004915extern const upb_MiniTable* google__protobuf__FileOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004916extern const upb_MiniTable google__protobuf__MessageOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004917extern const upb_MiniTable* google__protobuf__MessageOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004918extern const upb_MiniTable google__protobuf__FieldOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004919extern const upb_MiniTable* google__protobuf__FieldOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004920extern const upb_MiniTable google__protobuf__FieldOptions__EditionDefault_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004921extern const upb_MiniTable* google__protobuf__FieldOptions__EditionDefault_msg_init_ptr;
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00004922extern const upb_MiniTable google__protobuf__FieldOptions__FeatureSupport_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004923extern const upb_MiniTable* google__protobuf__FieldOptions__FeatureSupport_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004924extern const upb_MiniTable google__protobuf__OneofOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004925extern const upb_MiniTable* google__protobuf__OneofOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004926extern const upb_MiniTable google__protobuf__EnumOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004927extern const upb_MiniTable* google__protobuf__EnumOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004928extern const upb_MiniTable google__protobuf__EnumValueOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004929extern const upb_MiniTable* google__protobuf__EnumValueOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004930extern const upb_MiniTable google__protobuf__ServiceOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004931extern const upb_MiniTable* google__protobuf__ServiceOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004932extern const upb_MiniTable google__protobuf__MethodOptions_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004933extern const upb_MiniTable* google__protobuf__MethodOptions_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004934extern const upb_MiniTable google__protobuf__UninterpretedOption_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004935extern const upb_MiniTable* google__protobuf__UninterpretedOption_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004936extern const upb_MiniTable google__protobuf__UninterpretedOption__NamePart_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004937extern const upb_MiniTable* google__protobuf__UninterpretedOption__NamePart_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004938extern const upb_MiniTable google__protobuf__FeatureSet_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004939extern const upb_MiniTable* google__protobuf__FeatureSet_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004940extern const upb_MiniTable google__protobuf__FeatureSetDefaults_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004941extern const upb_MiniTable* google__protobuf__FeatureSetDefaults_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004942extern const upb_MiniTable google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004943extern const upb_MiniTable* google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004944extern const upb_MiniTable google__protobuf__SourceCodeInfo_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004945extern const upb_MiniTable* google__protobuf__SourceCodeInfo_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004946extern const upb_MiniTable google__protobuf__SourceCodeInfo__Location_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004947extern const upb_MiniTable* google__protobuf__SourceCodeInfo__Location_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004948extern const upb_MiniTable google__protobuf__GeneratedCodeInfo_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004949extern const upb_MiniTable* google__protobuf__GeneratedCodeInfo_msg_init_ptr;
Protobuf Team Botd14a3362023-10-07 23:51:34 +00004950extern const upb_MiniTable google__protobuf__GeneratedCodeInfo__Annotation_msg_init;
Protobuf Team Bot532f0c22024-06-05 03:21:24 +00004951extern const upb_MiniTable* google__protobuf__GeneratedCodeInfo__Annotation_msg_init_ptr;
Protobuf Team Botd11eb712023-09-15 00:25:33 +00004952
4953extern const upb_MiniTableEnum google_protobuf_Edition_enum_init;
4954extern const upb_MiniTableEnum google_protobuf_ExtensionRangeOptions_VerificationState_enum_init;
4955extern const upb_MiniTableEnum google_protobuf_FeatureSet_EnumType_enum_init;
4956extern const upb_MiniTableEnum google_protobuf_FeatureSet_FieldPresence_enum_init;
4957extern const upb_MiniTableEnum google_protobuf_FeatureSet_JsonFormat_enum_init;
4958extern const upb_MiniTableEnum google_protobuf_FeatureSet_MessageEncoding_enum_init;
4959extern const upb_MiniTableEnum google_protobuf_FeatureSet_RepeatedFieldEncoding_enum_init;
Protobuf Team Bot61127952023-09-26 20:07:33 +00004960extern const upb_MiniTableEnum google_protobuf_FeatureSet_Utf8Validation_enum_init;
Protobuf Team Botd11eb712023-09-15 00:25:33 +00004961extern const upb_MiniTableEnum google_protobuf_FieldDescriptorProto_Label_enum_init;
4962extern const upb_MiniTableEnum google_protobuf_FieldDescriptorProto_Type_enum_init;
4963extern const upb_MiniTableEnum google_protobuf_FieldOptions_CType_enum_init;
4964extern const upb_MiniTableEnum google_protobuf_FieldOptions_JSType_enum_init;
4965extern const upb_MiniTableEnum google_protobuf_FieldOptions_OptionRetention_enum_init;
4966extern const upb_MiniTableEnum google_protobuf_FieldOptions_OptionTargetType_enum_init;
4967extern const upb_MiniTableEnum google_protobuf_FileOptions_OptimizeMode_enum_init;
4968extern const upb_MiniTableEnum google_protobuf_GeneratedCodeInfo_Annotation_Semantic_enum_init;
4969extern const upb_MiniTableEnum google_protobuf_MethodOptions_IdempotencyLevel_enum_init;
4970extern const upb_MiniTableFile google_protobuf_descriptor_proto_upb_file_layout;
4971
4972#ifdef __cplusplus
4973} /* extern "C" */
4974#endif
4975
4976
4977#endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_MINITABLE_H_ */
4978
4979#ifndef UPB_WIRE_EPS_COPY_INPUT_STREAM_H_
4980#define UPB_WIRE_EPS_COPY_INPUT_STREAM_H_
4981
4982#include <string.h>
4983
4984
4985// Must be last.
4986
4987#ifdef __cplusplus
4988extern "C" {
4989#endif
4990
4991// The maximum number of bytes a single protobuf field can take up in the
4992// wire format. We only want to do one bounds check per field, so the input
4993// stream guarantees that after upb_EpsCopyInputStream_IsDone() is called,
4994// the decoder can read this many bytes without performing another bounds
4995// check. The stream will copy into a patch buffer as necessary to guarantee
4996// this invariant.
4997#define kUpb_EpsCopyInputStream_SlopBytes 16
4998
4999enum {
5000 kUpb_EpsCopyInputStream_NoAliasing = 0,
5001 kUpb_EpsCopyInputStream_OnPatch = 1,
5002 kUpb_EpsCopyInputStream_NoDelta = 2
5003};
5004
5005typedef struct {
5006 const char* end; // Can read up to SlopBytes bytes beyond this.
5007 const char* limit_ptr; // For bounds checks, = end + UPB_MIN(limit, 0)
5008 uintptr_t aliasing;
Protobuf Team Bot1d143b52024-01-25 20:29:43 +00005009 int limit; // Submessage limit relative to end
5010 bool error; // To distinguish between EOF and error.
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005011 char patch[kUpb_EpsCopyInputStream_SlopBytes * 2];
5012} upb_EpsCopyInputStream;
5013
5014// Returns true if the stream is in the error state. A stream enters the error
5015// state when the user reads past a limit (caught in IsDone()) or the
5016// ZeroCopyInputStream returns an error.
5017UPB_INLINE bool upb_EpsCopyInputStream_IsError(upb_EpsCopyInputStream* e) {
5018 return e->error;
5019}
5020
5021typedef const char* upb_EpsCopyInputStream_BufferFlipCallback(
5022 upb_EpsCopyInputStream* e, const char* old_end, const char* new_start);
5023
5024typedef const char* upb_EpsCopyInputStream_IsDoneFallbackFunc(
5025 upb_EpsCopyInputStream* e, const char* ptr, int overrun);
5026
5027// Initializes a upb_EpsCopyInputStream using the contents of the buffer
5028// [*ptr, size]. Updates `*ptr` as necessary to guarantee that at least
5029// kUpb_EpsCopyInputStream_SlopBytes are available to read.
5030UPB_INLINE void upb_EpsCopyInputStream_Init(upb_EpsCopyInputStream* e,
5031 const char** ptr, size_t size,
5032 bool enable_aliasing) {
5033 if (size <= kUpb_EpsCopyInputStream_SlopBytes) {
5034 memset(&e->patch, 0, 32);
5035 if (size) memcpy(&e->patch, *ptr, size);
5036 e->aliasing = enable_aliasing ? (uintptr_t)*ptr - (uintptr_t)e->patch
5037 : kUpb_EpsCopyInputStream_NoAliasing;
5038 *ptr = e->patch;
5039 e->end = *ptr + size;
5040 e->limit = 0;
5041 } else {
5042 e->end = *ptr + size - kUpb_EpsCopyInputStream_SlopBytes;
5043 e->limit = kUpb_EpsCopyInputStream_SlopBytes;
5044 e->aliasing = enable_aliasing ? kUpb_EpsCopyInputStream_NoDelta
5045 : kUpb_EpsCopyInputStream_NoAliasing;
5046 }
5047 e->limit_ptr = e->end;
5048 e->error = false;
5049}
5050
5051typedef enum {
5052 // The current stream position is at a limit.
5053 kUpb_IsDoneStatus_Done,
5054
5055 // The current stream position is not at a limit.
5056 kUpb_IsDoneStatus_NotDone,
5057
5058 // The current stream position is not at a limit, and the stream needs to
5059 // be flipped to a new buffer before more data can be read.
5060 kUpb_IsDoneStatus_NeedFallback,
5061} upb_IsDoneStatus;
5062
5063// Returns the status of the current stream position. This is a low-level
5064// function, it is simpler to call upb_EpsCopyInputStream_IsDone() if possible.
5065UPB_INLINE upb_IsDoneStatus upb_EpsCopyInputStream_IsDoneStatus(
5066 upb_EpsCopyInputStream* e, const char* ptr, int* overrun) {
5067 *overrun = ptr - e->end;
5068 if (UPB_LIKELY(ptr < e->limit_ptr)) {
5069 return kUpb_IsDoneStatus_NotDone;
5070 } else if (UPB_LIKELY(*overrun == e->limit)) {
5071 return kUpb_IsDoneStatus_Done;
5072 } else {
5073 return kUpb_IsDoneStatus_NeedFallback;
5074 }
5075}
5076
5077// Returns true if the stream has hit a limit, either the current delimited
5078// limit or the overall end-of-stream. As a side effect, this function may flip
5079// the pointer to a new buffer if there are less than
5080// kUpb_EpsCopyInputStream_SlopBytes of data to be read in the current buffer.
5081//
5082// Postcondition: if the function returns false, there are at least
5083// kUpb_EpsCopyInputStream_SlopBytes of data available to read at *ptr.
5084UPB_INLINE bool upb_EpsCopyInputStream_IsDoneWithCallback(
5085 upb_EpsCopyInputStream* e, const char** ptr,
5086 upb_EpsCopyInputStream_IsDoneFallbackFunc* func) {
5087 int overrun;
5088 switch (upb_EpsCopyInputStream_IsDoneStatus(e, *ptr, &overrun)) {
5089 case kUpb_IsDoneStatus_Done:
5090 return true;
5091 case kUpb_IsDoneStatus_NotDone:
5092 return false;
5093 case kUpb_IsDoneStatus_NeedFallback:
5094 *ptr = func(e, *ptr, overrun);
5095 return *ptr == NULL;
5096 }
5097 UPB_UNREACHABLE();
5098}
5099
5100const char* _upb_EpsCopyInputStream_IsDoneFallbackNoCallback(
5101 upb_EpsCopyInputStream* e, const char* ptr, int overrun);
5102
5103// A simpler version of IsDoneWithCallback() that does not support a buffer flip
5104// callback. Useful in cases where we do not need to insert custom logic at
5105// every buffer flip.
5106//
5107// If this returns true, the user must call upb_EpsCopyInputStream_IsError()
5108// to distinguish between EOF and error.
5109UPB_INLINE bool upb_EpsCopyInputStream_IsDone(upb_EpsCopyInputStream* e,
5110 const char** ptr) {
5111 return upb_EpsCopyInputStream_IsDoneWithCallback(
5112 e, ptr, _upb_EpsCopyInputStream_IsDoneFallbackNoCallback);
5113}
5114
5115// Returns the total number of bytes that are safe to read from the current
5116// buffer without reading uninitialized or unallocated memory.
5117//
5118// Note that this check does not respect any semantic limits on the stream,
5119// either limits from PushLimit() or the overall stream end, so some of these
5120// bytes may have unpredictable, nonsense values in them. The guarantee is only
5121// that the bytes are valid to read from the perspective of the C language
5122// (ie. you can read without triggering UBSAN or ASAN).
5123UPB_INLINE size_t upb_EpsCopyInputStream_BytesAvailable(
5124 upb_EpsCopyInputStream* e, const char* ptr) {
5125 return (e->end - ptr) + kUpb_EpsCopyInputStream_SlopBytes;
5126}
5127
5128// Returns true if the given delimited field size is valid (it does not extend
5129// beyond any previously-pushed limits). `ptr` should point to the beginning
5130// of the field data, after the delimited size.
5131//
5132// Note that this does *not* guarantee that all of the data for this field is in
5133// the current buffer.
5134UPB_INLINE bool upb_EpsCopyInputStream_CheckSize(
5135 const upb_EpsCopyInputStream* e, const char* ptr, int size) {
5136 UPB_ASSERT(size >= 0);
5137 return ptr - e->end + size <= e->limit;
5138}
5139
5140UPB_INLINE bool _upb_EpsCopyInputStream_CheckSizeAvailable(
5141 upb_EpsCopyInputStream* e, const char* ptr, int size, bool submessage) {
5142 // This is one extra branch compared to the more normal:
5143 // return (size_t)(end - ptr) < size;
5144 // However it is one less computation if we are just about to use "ptr + len":
5145 // https://godbolt.org/z/35YGPz
5146 // In microbenchmarks this shows a small improvement.
5147 uintptr_t uptr = (uintptr_t)ptr;
5148 uintptr_t uend = (uintptr_t)e->limit_ptr;
5149 uintptr_t res = uptr + (size_t)size;
5150 if (!submessage) uend += kUpb_EpsCopyInputStream_SlopBytes;
5151 // NOTE: this check depends on having a linear address space. This is not
5152 // technically guaranteed by uintptr_t.
5153 bool ret = res >= uptr && res <= uend;
5154 if (size < 0) UPB_ASSERT(!ret);
5155 return ret;
5156}
5157
5158// Returns true if the given delimited field size is valid (it does not extend
5159// beyond any previously-pushed limited) *and* all of the data for this field is
5160// available to be read in the current buffer.
5161//
5162// If the size is negative, this function will always return false. This
5163// property can be useful in some cases.
5164UPB_INLINE bool upb_EpsCopyInputStream_CheckDataSizeAvailable(
5165 upb_EpsCopyInputStream* e, const char* ptr, int size) {
5166 return _upb_EpsCopyInputStream_CheckSizeAvailable(e, ptr, size, false);
5167}
5168
5169// Returns true if the given sub-message size is valid (it does not extend
5170// beyond any previously-pushed limited) *and* all of the data for this
5171// sub-message is available to be parsed in the current buffer.
5172//
5173// This implies that all fields from the sub-message can be parsed from the
5174// current buffer while maintaining the invariant that we always have at least
5175// kUpb_EpsCopyInputStream_SlopBytes of data available past the beginning of
5176// any individual field start.
5177//
5178// If the size is negative, this function will always return false. This
5179// property can be useful in some cases.
5180UPB_INLINE bool upb_EpsCopyInputStream_CheckSubMessageSizeAvailable(
5181 upb_EpsCopyInputStream* e, const char* ptr, int size) {
5182 return _upb_EpsCopyInputStream_CheckSizeAvailable(e, ptr, size, true);
5183}
5184
5185// Returns true if aliasing_enabled=true was passed to
5186// upb_EpsCopyInputStream_Init() when this stream was initialized.
5187UPB_INLINE bool upb_EpsCopyInputStream_AliasingEnabled(
5188 upb_EpsCopyInputStream* e) {
5189 return e->aliasing != kUpb_EpsCopyInputStream_NoAliasing;
5190}
5191
5192// Returns true if aliasing_enabled=true was passed to
5193// upb_EpsCopyInputStream_Init() when this stream was initialized *and* we can
5194// alias into the region [ptr, size] in an input buffer.
5195UPB_INLINE bool upb_EpsCopyInputStream_AliasingAvailable(
5196 upb_EpsCopyInputStream* e, const char* ptr, size_t size) {
5197 // When EpsCopyInputStream supports streaming, this will need to become a
5198 // runtime check.
5199 return upb_EpsCopyInputStream_CheckDataSizeAvailable(e, ptr, size) &&
5200 e->aliasing >= kUpb_EpsCopyInputStream_NoDelta;
5201}
5202
5203// Returns a pointer into an input buffer that corresponds to the parsing
5204// pointer `ptr`. The returned pointer may be the same as `ptr`, but also may
5205// be different if we are currently parsing out of the patch buffer.
5206//
5207// REQUIRES: Aliasing must be available for the given pointer. If the input is a
5208// flat buffer and aliasing is enabled, then aliasing will always be available.
5209UPB_INLINE const char* upb_EpsCopyInputStream_GetAliasedPtr(
5210 upb_EpsCopyInputStream* e, const char* ptr) {
5211 UPB_ASSUME(upb_EpsCopyInputStream_AliasingAvailable(e, ptr, 0));
5212 uintptr_t delta =
5213 e->aliasing == kUpb_EpsCopyInputStream_NoDelta ? 0 : e->aliasing;
5214 return (const char*)((uintptr_t)ptr + delta);
5215}
5216
5217// Reads string data from the input, aliasing into the input buffer instead of
5218// copying. The parsing pointer is passed in `*ptr`, and will be updated if
5219// necessary to point to the actual input buffer. Returns the new parsing
5220// pointer, which will be advanced past the string data.
5221//
5222// REQUIRES: Aliasing must be available for this data region (test with
5223// upb_EpsCopyInputStream_AliasingAvailable().
5224UPB_INLINE const char* upb_EpsCopyInputStream_ReadStringAliased(
5225 upb_EpsCopyInputStream* e, const char** ptr, size_t size) {
5226 UPB_ASSUME(upb_EpsCopyInputStream_AliasingAvailable(e, *ptr, size));
5227 const char* ret = *ptr + size;
5228 *ptr = upb_EpsCopyInputStream_GetAliasedPtr(e, *ptr);
5229 UPB_ASSUME(ret != NULL);
5230 return ret;
5231}
5232
5233// Skips `size` bytes of data from the input and returns a pointer past the end.
5234// Returns NULL on end of stream or error.
5235UPB_INLINE const char* upb_EpsCopyInputStream_Skip(upb_EpsCopyInputStream* e,
5236 const char* ptr, int size) {
5237 if (!upb_EpsCopyInputStream_CheckDataSizeAvailable(e, ptr, size)) return NULL;
5238 return ptr + size;
5239}
5240
5241// Copies `size` bytes of data from the input `ptr` into the buffer `to`, and
5242// returns a pointer past the end. Returns NULL on end of stream or error.
5243UPB_INLINE const char* upb_EpsCopyInputStream_Copy(upb_EpsCopyInputStream* e,
5244 const char* ptr, void* to,
5245 int size) {
5246 if (!upb_EpsCopyInputStream_CheckDataSizeAvailable(e, ptr, size)) return NULL;
5247 memcpy(to, ptr, size);
5248 return ptr + size;
5249}
5250
5251// Reads string data from the stream and advances the pointer accordingly.
5252// If aliasing was enabled when the stream was initialized, then the returned
5253// pointer will point into the input buffer if possible, otherwise new data
5254// will be allocated from arena and copied into. We may be forced to copy even
5255// if aliasing was enabled if the input data spans input buffers.
5256//
5257// Returns NULL if memory allocation failed, or we reached a premature EOF.
5258UPB_INLINE const char* upb_EpsCopyInputStream_ReadString(
5259 upb_EpsCopyInputStream* e, const char** ptr, size_t size,
5260 upb_Arena* arena) {
5261 if (upb_EpsCopyInputStream_AliasingAvailable(e, *ptr, size)) {
5262 return upb_EpsCopyInputStream_ReadStringAliased(e, ptr, size);
5263 } else {
5264 // We need to allocate and copy.
5265 if (!upb_EpsCopyInputStream_CheckDataSizeAvailable(e, *ptr, size)) {
5266 return NULL;
5267 }
5268 UPB_ASSERT(arena);
5269 char* data = (char*)upb_Arena_Malloc(arena, size);
5270 if (!data) return NULL;
5271 const char* ret = upb_EpsCopyInputStream_Copy(e, *ptr, data, size);
5272 *ptr = data;
5273 return ret;
5274 }
5275}
5276
5277UPB_INLINE void _upb_EpsCopyInputStream_CheckLimit(upb_EpsCopyInputStream* e) {
5278 UPB_ASSERT(e->limit_ptr == e->end + UPB_MIN(0, e->limit));
5279}
5280
5281// Pushes a limit onto the stack of limits for the current stream. The limit
5282// will extend for `size` bytes beyond the position in `ptr`. Future calls to
5283// upb_EpsCopyInputStream_IsDone() will return `true` when the stream position
5284// reaches this limit.
5285//
5286// Returns a delta that the caller must store and supply to PopLimit() below.
5287UPB_INLINE int upb_EpsCopyInputStream_PushLimit(upb_EpsCopyInputStream* e,
5288 const char* ptr, int size) {
5289 int limit = size + (int)(ptr - e->end);
5290 int delta = e->limit - limit;
5291 _upb_EpsCopyInputStream_CheckLimit(e);
5292 UPB_ASSERT(limit <= e->limit);
5293 e->limit = limit;
5294 e->limit_ptr = e->end + UPB_MIN(0, limit);
5295 _upb_EpsCopyInputStream_CheckLimit(e);
5296 return delta;
5297}
5298
5299// Pops the last limit that was pushed on this stream. This may only be called
5300// once IsDone() returns true. The user must pass the delta that was returned
5301// from PushLimit().
5302UPB_INLINE void upb_EpsCopyInputStream_PopLimit(upb_EpsCopyInputStream* e,
5303 const char* ptr,
5304 int saved_delta) {
5305 UPB_ASSERT(ptr - e->end == e->limit);
5306 _upb_EpsCopyInputStream_CheckLimit(e);
5307 e->limit += saved_delta;
5308 e->limit_ptr = e->end + UPB_MIN(0, e->limit);
5309 _upb_EpsCopyInputStream_CheckLimit(e);
5310}
5311
5312UPB_INLINE const char* _upb_EpsCopyInputStream_IsDoneFallbackInline(
5313 upb_EpsCopyInputStream* e, const char* ptr, int overrun,
5314 upb_EpsCopyInputStream_BufferFlipCallback* callback) {
5315 if (overrun < e->limit) {
5316 // Need to copy remaining data into patch buffer.
5317 UPB_ASSERT(overrun < kUpb_EpsCopyInputStream_SlopBytes);
5318 const char* old_end = ptr;
5319 const char* new_start = &e->patch[0] + overrun;
5320 memset(e->patch + kUpb_EpsCopyInputStream_SlopBytes, 0,
5321 kUpb_EpsCopyInputStream_SlopBytes);
5322 memcpy(e->patch, e->end, kUpb_EpsCopyInputStream_SlopBytes);
5323 ptr = new_start;
5324 e->end = &e->patch[kUpb_EpsCopyInputStream_SlopBytes];
5325 e->limit -= kUpb_EpsCopyInputStream_SlopBytes;
5326 e->limit_ptr = e->end + e->limit;
5327 UPB_ASSERT(ptr < e->limit_ptr);
5328 if (e->aliasing != kUpb_EpsCopyInputStream_NoAliasing) {
5329 e->aliasing = (uintptr_t)old_end - (uintptr_t)new_start;
5330 }
5331 return callback(e, old_end, new_start);
5332 } else {
5333 UPB_ASSERT(overrun > e->limit);
5334 e->error = true;
5335 return callback(e, NULL, NULL);
5336 }
5337}
5338
5339typedef const char* upb_EpsCopyInputStream_ParseDelimitedFunc(
5340 upb_EpsCopyInputStream* e, const char* ptr, void* ctx);
5341
5342// Tries to perform a fast-path handling of the given delimited message data.
5343// If the sub-message beginning at `*ptr` and extending for `len` is short and
5344// fits within this buffer, calls `func` with `ctx` as a parameter, where the
5345// pushing and popping of limits is handled automatically and with lower cost
5346// than the normal PushLimit()/PopLimit() sequence.
Protobuf Team Bot1d143b52024-01-25 20:29:43 +00005347UPB_FORCEINLINE bool upb_EpsCopyInputStream_TryParseDelimitedFast(
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005348 upb_EpsCopyInputStream* e, const char** ptr, int len,
5349 upb_EpsCopyInputStream_ParseDelimitedFunc* func, void* ctx) {
5350 if (!upb_EpsCopyInputStream_CheckSubMessageSizeAvailable(e, *ptr, len)) {
5351 return false;
5352 }
5353
5354 // Fast case: Sub-message is <128 bytes and fits in the current buffer.
5355 // This means we can preserve limit/limit_ptr verbatim.
5356 const char* saved_limit_ptr = e->limit_ptr;
5357 int saved_limit = e->limit;
5358 e->limit_ptr = *ptr + len;
5359 e->limit = e->limit_ptr - e->end;
5360 UPB_ASSERT(e->limit_ptr == e->end + UPB_MIN(0, e->limit));
5361 *ptr = func(e, *ptr, ctx);
5362 e->limit_ptr = saved_limit_ptr;
5363 e->limit = saved_limit;
5364 UPB_ASSERT(e->limit_ptr == e->end + UPB_MIN(0, e->limit));
5365 return true;
5366}
5367
5368#ifdef __cplusplus
5369} /* extern "C" */
5370#endif
5371
5372
5373#endif // UPB_WIRE_EPS_COPY_INPUT_STREAM_H_
5374
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005375#ifndef UPB_JSON_DECODE_H_
5376#define UPB_JSON_DECODE_H_
5377
5378
5379#ifndef UPB_REFLECTION_DEF_H_
5380#define UPB_REFLECTION_DEF_H_
5381
5382// IWYU pragma: begin_exports
5383
Protobuf Team Bot06310352023-09-26 21:54:58 +00005384// IWYU pragma: private, include "upb/reflection/def.h"
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005385
5386#ifndef UPB_REFLECTION_DEF_POOL_H_
5387#define UPB_REFLECTION_DEF_POOL_H_
5388
5389
Protobuf Team Bot06310352023-09-26 21:54:58 +00005390// IWYU pragma: private, include "upb/reflection/def.h"
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005391
5392// Declarations common to all public def types.
5393
5394#ifndef UPB_REFLECTION_COMMON_H_
5395#define UPB_REFLECTION_COMMON_H_
5396
5397// begin:google_only
5398// #ifndef UPB_BOOTSTRAP_STAGE0
5399// #include "net/proto2/proto/descriptor.upb.h"
5400// #else
5401// #include "google/protobuf/descriptor.upb.h"
5402// #endif
5403// end:google_only
5404
5405// begin:github_only
Protobuf Team Bot0cb912c2023-09-28 20:14:04 +00005406/* This file was generated by upb_generator from the input file:
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005407 *
5408 * google/protobuf/descriptor.proto
5409 *
5410 * Do not edit -- your changes will be discarded when the file is
Protobuf Team Botd3b2fc52024-05-02 17:02:37 +00005411 * regenerated.
5412 * NO CHECKED-IN PROTOBUF GENCODE */
Protobuf Team Botd11eb712023-09-15 00:25:33 +00005413
Mike Kruskal9d435022023-07-11 12:45:07 -07005414#ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
5415#define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
Joshua Habermand3995ec2022-09-30 16:54:39 -07005416
Protobuf Team Bot111d6552023-09-15 21:07:08 +00005417
5418
5419// Must be last.
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005420
5421#ifdef __cplusplus
5422extern "C" {
5423#endif
5424
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005425typedef struct google_protobuf_FileDescriptorSet { upb_Message UPB_PRIVATE(base); } google_protobuf_FileDescriptorSet;
5426typedef struct google_protobuf_FileDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_FileDescriptorProto;
5427typedef struct google_protobuf_DescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_DescriptorProto;
5428typedef struct google_protobuf_DescriptorProto_ExtensionRange { upb_Message UPB_PRIVATE(base); } google_protobuf_DescriptorProto_ExtensionRange;
5429typedef struct google_protobuf_DescriptorProto_ReservedRange { upb_Message UPB_PRIVATE(base); } google_protobuf_DescriptorProto_ReservedRange;
5430typedef struct google_protobuf_ExtensionRangeOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_ExtensionRangeOptions;
5431typedef struct google_protobuf_ExtensionRangeOptions_Declaration { upb_Message UPB_PRIVATE(base); } google_protobuf_ExtensionRangeOptions_Declaration;
5432typedef struct google_protobuf_FieldDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldDescriptorProto;
5433typedef struct google_protobuf_OneofDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_OneofDescriptorProto;
5434typedef struct google_protobuf_EnumDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumDescriptorProto;
5435typedef struct google_protobuf_EnumDescriptorProto_EnumReservedRange { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumDescriptorProto_EnumReservedRange;
5436typedef struct google_protobuf_EnumValueDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumValueDescriptorProto;
5437typedef struct google_protobuf_ServiceDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_ServiceDescriptorProto;
5438typedef struct google_protobuf_MethodDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_MethodDescriptorProto;
5439typedef struct google_protobuf_FileOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_FileOptions;
5440typedef struct google_protobuf_MessageOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_MessageOptions;
5441typedef struct google_protobuf_FieldOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions;
5442typedef struct google_protobuf_FieldOptions_EditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_EditionDefault;
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00005443typedef struct google_protobuf_FieldOptions_FeatureSupport { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_FeatureSupport;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005444typedef struct google_protobuf_OneofOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_OneofOptions;
5445typedef struct google_protobuf_EnumOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumOptions;
5446typedef struct google_protobuf_EnumValueOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumValueOptions;
5447typedef struct google_protobuf_ServiceOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_ServiceOptions;
5448typedef struct google_protobuf_MethodOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_MethodOptions;
5449typedef struct google_protobuf_UninterpretedOption { upb_Message UPB_PRIVATE(base); } google_protobuf_UninterpretedOption;
5450typedef struct google_protobuf_UninterpretedOption_NamePart { upb_Message UPB_PRIVATE(base); } google_protobuf_UninterpretedOption_NamePart;
5451typedef struct google_protobuf_FeatureSet { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSet;
5452typedef struct google_protobuf_FeatureSetDefaults { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSetDefaults;
5453typedef struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault;
5454typedef struct google_protobuf_SourceCodeInfo { upb_Message UPB_PRIVATE(base); } google_protobuf_SourceCodeInfo;
5455typedef struct google_protobuf_SourceCodeInfo_Location { upb_Message UPB_PRIVATE(base); } google_protobuf_SourceCodeInfo_Location;
5456typedef struct google_protobuf_GeneratedCodeInfo { upb_Message UPB_PRIVATE(base); } google_protobuf_GeneratedCodeInfo;
5457typedef struct google_protobuf_GeneratedCodeInfo_Annotation { upb_Message UPB_PRIVATE(base); } google_protobuf_GeneratedCodeInfo_Annotation;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005458
5459typedef enum {
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00005460 google_protobuf_EDITION_UNKNOWN = 0,
5461 google_protobuf_EDITION_1_TEST_ONLY = 1,
5462 google_protobuf_EDITION_2_TEST_ONLY = 2,
Protobuf Team Bot2322a872024-04-10 17:23:17 +00005463 google_protobuf_EDITION_LEGACY = 900,
Protobuf Team Bot67038022023-10-04 04:14:37 +00005464 google_protobuf_EDITION_PROTO2 = 998,
5465 google_protobuf_EDITION_PROTO3 = 999,
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00005466 google_protobuf_EDITION_2023 = 1000,
Protobuf Team Bot41c8f2a2024-01-11 00:10:17 +00005467 google_protobuf_EDITION_2024 = 1001,
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00005468 google_protobuf_EDITION_99997_TEST_ONLY = 99997,
5469 google_protobuf_EDITION_99998_TEST_ONLY = 99998,
Protobuf Team Botde57b672023-11-30 22:16:47 +00005470 google_protobuf_EDITION_99999_TEST_ONLY = 99999,
5471 google_protobuf_EDITION_MAX = 2147483647
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00005472} google_protobuf_Edition;
5473
5474typedef enum {
Protobuf Team Bot469f0272023-04-21 18:12:45 -07005475 google_protobuf_ExtensionRangeOptions_DECLARATION = 0,
5476 google_protobuf_ExtensionRangeOptions_UNVERIFIED = 1
5477} google_protobuf_ExtensionRangeOptions_VerificationState;
5478
5479typedef enum {
Mike Kruskal4f9e4172023-06-30 20:14:50 -07005480 google_protobuf_FeatureSet_ENUM_TYPE_UNKNOWN = 0,
5481 google_protobuf_FeatureSet_OPEN = 1,
5482 google_protobuf_FeatureSet_CLOSED = 2
5483} google_protobuf_FeatureSet_EnumType;
5484
5485typedef enum {
5486 google_protobuf_FeatureSet_FIELD_PRESENCE_UNKNOWN = 0,
5487 google_protobuf_FeatureSet_EXPLICIT = 1,
5488 google_protobuf_FeatureSet_IMPLICIT = 2,
5489 google_protobuf_FeatureSet_LEGACY_REQUIRED = 3
5490} google_protobuf_FeatureSet_FieldPresence;
5491
5492typedef enum {
5493 google_protobuf_FeatureSet_JSON_FORMAT_UNKNOWN = 0,
5494 google_protobuf_FeatureSet_ALLOW = 1,
5495 google_protobuf_FeatureSet_LEGACY_BEST_EFFORT = 2
5496} google_protobuf_FeatureSet_JsonFormat;
5497
5498typedef enum {
5499 google_protobuf_FeatureSet_MESSAGE_ENCODING_UNKNOWN = 0,
5500 google_protobuf_FeatureSet_LENGTH_PREFIXED = 1,
5501 google_protobuf_FeatureSet_DELIMITED = 2
5502} google_protobuf_FeatureSet_MessageEncoding;
5503
5504typedef enum {
5505 google_protobuf_FeatureSet_REPEATED_FIELD_ENCODING_UNKNOWN = 0,
5506 google_protobuf_FeatureSet_PACKED = 1,
5507 google_protobuf_FeatureSet_EXPANDED = 2
5508} google_protobuf_FeatureSet_RepeatedFieldEncoding;
5509
5510typedef enum {
Protobuf Team Bot61127952023-09-26 20:07:33 +00005511 google_protobuf_FeatureSet_UTF8_VALIDATION_UNKNOWN = 0,
Protobuf Team Bot5b8b87f2023-11-30 05:12:08 +00005512 google_protobuf_FeatureSet_VERIFY = 2,
5513 google_protobuf_FeatureSet_NONE = 3
Protobuf Team Bot61127952023-09-26 20:07:33 +00005514} google_protobuf_FeatureSet_Utf8Validation;
5515
5516typedef enum {
Mike Kruskalccbdaa72023-02-02 20:42:14 -08005517 google_protobuf_FieldDescriptorProto_LABEL_OPTIONAL = 1,
5518 google_protobuf_FieldDescriptorProto_LABEL_REQUIRED = 2,
5519 google_protobuf_FieldDescriptorProto_LABEL_REPEATED = 3
5520} google_protobuf_FieldDescriptorProto_Label;
5521
5522typedef enum {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005523 google_protobuf_FieldDescriptorProto_TYPE_DOUBLE = 1,
5524 google_protobuf_FieldDescriptorProto_TYPE_FLOAT = 2,
5525 google_protobuf_FieldDescriptorProto_TYPE_INT64 = 3,
5526 google_protobuf_FieldDescriptorProto_TYPE_UINT64 = 4,
5527 google_protobuf_FieldDescriptorProto_TYPE_INT32 = 5,
5528 google_protobuf_FieldDescriptorProto_TYPE_FIXED64 = 6,
5529 google_protobuf_FieldDescriptorProto_TYPE_FIXED32 = 7,
5530 google_protobuf_FieldDescriptorProto_TYPE_BOOL = 8,
5531 google_protobuf_FieldDescriptorProto_TYPE_STRING = 9,
5532 google_protobuf_FieldDescriptorProto_TYPE_GROUP = 10,
5533 google_protobuf_FieldDescriptorProto_TYPE_MESSAGE = 11,
5534 google_protobuf_FieldDescriptorProto_TYPE_BYTES = 12,
5535 google_protobuf_FieldDescriptorProto_TYPE_UINT32 = 13,
5536 google_protobuf_FieldDescriptorProto_TYPE_ENUM = 14,
5537 google_protobuf_FieldDescriptorProto_TYPE_SFIXED32 = 15,
5538 google_protobuf_FieldDescriptorProto_TYPE_SFIXED64 = 16,
5539 google_protobuf_FieldDescriptorProto_TYPE_SINT32 = 17,
5540 google_protobuf_FieldDescriptorProto_TYPE_SINT64 = 18
5541} google_protobuf_FieldDescriptorProto_Type;
5542
5543typedef enum {
5544 google_protobuf_FieldOptions_STRING = 0,
5545 google_protobuf_FieldOptions_CORD = 1,
5546 google_protobuf_FieldOptions_STRING_PIECE = 2
5547} google_protobuf_FieldOptions_CType;
5548
5549typedef enum {
5550 google_protobuf_FieldOptions_JS_NORMAL = 0,
5551 google_protobuf_FieldOptions_JS_STRING = 1,
5552 google_protobuf_FieldOptions_JS_NUMBER = 2
5553} google_protobuf_FieldOptions_JSType;
5554
5555typedef enum {
Adam Cozzette90ff32c2023-01-21 15:04:56 -08005556 google_protobuf_FieldOptions_RETENTION_UNKNOWN = 0,
5557 google_protobuf_FieldOptions_RETENTION_RUNTIME = 1,
5558 google_protobuf_FieldOptions_RETENTION_SOURCE = 2
5559} google_protobuf_FieldOptions_OptionRetention;
5560
5561typedef enum {
5562 google_protobuf_FieldOptions_TARGET_TYPE_UNKNOWN = 0,
5563 google_protobuf_FieldOptions_TARGET_TYPE_FILE = 1,
5564 google_protobuf_FieldOptions_TARGET_TYPE_EXTENSION_RANGE = 2,
5565 google_protobuf_FieldOptions_TARGET_TYPE_MESSAGE = 3,
5566 google_protobuf_FieldOptions_TARGET_TYPE_FIELD = 4,
5567 google_protobuf_FieldOptions_TARGET_TYPE_ONEOF = 5,
5568 google_protobuf_FieldOptions_TARGET_TYPE_ENUM = 6,
5569 google_protobuf_FieldOptions_TARGET_TYPE_ENUM_ENTRY = 7,
5570 google_protobuf_FieldOptions_TARGET_TYPE_SERVICE = 8,
5571 google_protobuf_FieldOptions_TARGET_TYPE_METHOD = 9
5572} google_protobuf_FieldOptions_OptionTargetType;
5573
5574typedef enum {
Mike Kruskalccbdaa72023-02-02 20:42:14 -08005575 google_protobuf_FileOptions_SPEED = 1,
5576 google_protobuf_FileOptions_CODE_SIZE = 2,
5577 google_protobuf_FileOptions_LITE_RUNTIME = 3
5578} google_protobuf_FileOptions_OptimizeMode;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005579
5580typedef enum {
Joshua Habermand3995ec2022-09-30 16:54:39 -07005581 google_protobuf_GeneratedCodeInfo_Annotation_NONE = 0,
5582 google_protobuf_GeneratedCodeInfo_Annotation_SET = 1,
5583 google_protobuf_GeneratedCodeInfo_Annotation_ALIAS = 2
5584} google_protobuf_GeneratedCodeInfo_Annotation_Semantic;
5585
Mike Kruskalccbdaa72023-02-02 20:42:14 -08005586typedef enum {
5587 google_protobuf_MethodOptions_IDEMPOTENCY_UNKNOWN = 0,
5588 google_protobuf_MethodOptions_NO_SIDE_EFFECTS = 1,
5589 google_protobuf_MethodOptions_IDEMPOTENT = 2
5590} google_protobuf_MethodOptions_IdempotencyLevel;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005591
Mike Kruskalccbdaa72023-02-02 20:42:14 -08005592
Joshua Habermanf41049a2022-01-21 14:41:25 -08005593
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005594/* google.protobuf.FileDescriptorSet */
5595
Joshua Habermanf41049a2022-01-21 14:41:25 -08005596UPB_INLINE google_protobuf_FileDescriptorSet* google_protobuf_FileDescriptorSet_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00005597 return (google_protobuf_FileDescriptorSet*)_upb_Message_New(&google__protobuf__FileDescriptorSet_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005598}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005599UPB_INLINE google_protobuf_FileDescriptorSet* google_protobuf_FileDescriptorSet_parse(const char* buf, size_t size, upb_Arena* arena) {
5600 google_protobuf_FileDescriptorSet* ret = google_protobuf_FileDescriptorSet_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07005601 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005602 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorSet_msg_init, NULL, 0, arena) !=
5603 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07005604 return NULL;
5605 }
5606 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005607}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005608UPB_INLINE google_protobuf_FileDescriptorSet* google_protobuf_FileDescriptorSet_parse_ex(const char* buf, size_t size,
5609 const upb_ExtensionRegistry* extreg,
5610 int options, upb_Arena* arena) {
5611 google_protobuf_FileDescriptorSet* ret = google_protobuf_FileDescriptorSet_new(arena);
5612 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005613 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorSet_msg_init, extreg, options,
5614 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08005615 return NULL;
5616 }
5617 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005618}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005619UPB_INLINE char* google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07005620 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005621 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorSet_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005622 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005623}
5624UPB_INLINE char* google_protobuf_FileDescriptorSet_serialize_ex(const google_protobuf_FileDescriptorSet* msg, int options,
5625 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07005626 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005627 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorSet_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005628 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005629}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005630UPB_INLINE void google_protobuf_FileDescriptorSet_clear_file(google_protobuf_FileDescriptorSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005631 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005632 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005633}
Eric Salob7d54ac2022-12-29 11:59:42 -08005634UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005635 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005636 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005637 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005638 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005639 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005640 return (const google_protobuf_FileDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005641 } else {
5642 if (size) *size = 0;
5643 return NULL;
5644 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005645}
Deanna Garciab26afb52023-04-25 13:37:18 -07005646UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005647 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005648 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005649 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005650 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005651 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005652 }
5653 return arr;
5654}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005655UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(google_protobuf_FileDescriptorSet* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005656 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005657 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005658 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5659 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07005660 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005661 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005662 }
5663 return arr;
5664}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005665
Eric Salob7d54ac2022-12-29 11:59:42 -08005666UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005667 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005668 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005669 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005670 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005671 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005672 return (google_protobuf_FileDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005673 } else {
5674 if (size) *size = 0;
5675 return NULL;
5676 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005677}
Eric Salob7d54ac2022-12-29 11:59:42 -08005678UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005679 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005680 return (google_protobuf_FileDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
5681 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005682}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005683UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005684 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005685 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005686 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5687 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005688 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005689 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08005690 return NULL;
5691 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00005692 struct google_protobuf_FileDescriptorProto* sub = (struct google_protobuf_FileDescriptorProto*)_upb_Message_New(&google__protobuf__FileDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08005693 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005694 UPB_PRIVATE(_upb_Array_Set)
5695 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005696 return sub;
5697}
5698
5699/* google.protobuf.FileDescriptorProto */
5700
Joshua Habermanf41049a2022-01-21 14:41:25 -08005701UPB_INLINE google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00005702 return (google_protobuf_FileDescriptorProto*)_upb_Message_New(&google__protobuf__FileDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005703}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005704UPB_INLINE google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
5705 google_protobuf_FileDescriptorProto* ret = google_protobuf_FileDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07005706 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005707 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorProto_msg_init, NULL, 0, arena) !=
5708 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07005709 return NULL;
5710 }
5711 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005712}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005713UPB_INLINE google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorProto_parse_ex(const char* buf, size_t size,
5714 const upb_ExtensionRegistry* extreg,
5715 int options, upb_Arena* arena) {
5716 google_protobuf_FileDescriptorProto* ret = google_protobuf_FileDescriptorProto_new(arena);
5717 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005718 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorProto_msg_init, extreg, options,
5719 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08005720 return NULL;
5721 }
5722 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08005723}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005724UPB_INLINE char* google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07005725 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005726 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005727 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005728}
5729UPB_INLINE char* google_protobuf_FileDescriptorProto_serialize_ex(const google_protobuf_FileDescriptorProto* msg, int options,
5730 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07005731 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005732 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005733 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005734}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005735UPB_INLINE void google_protobuf_FileDescriptorProto_clear_name(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005736 const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005737 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005738}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005739UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08005740 upb_StringView default_val = upb_StringView_FromString("");
5741 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005742 const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005743 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5744 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08005745 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005746}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005747UPB_INLINE bool google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005748 const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00005749 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005750}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005751UPB_INLINE void google_protobuf_FileDescriptorProto_clear_package(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005752 const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005753 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005754}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005755UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08005756 upb_StringView default_val = upb_StringView_FromString("");
5757 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005758 const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005759 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5760 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08005761 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005762}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005763UPB_INLINE bool google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005764 const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00005765 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08005766}
5767UPB_INLINE void google_protobuf_FileDescriptorProto_clear_dependency(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005768 const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005769 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005770}
Eric Salob7d54ac2022-12-29 11:59:42 -08005771UPB_INLINE upb_StringView const* google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005772 const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005773 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005774 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005775 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005776 return (upb_StringView const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005777 } else {
5778 if (size) *size = 0;
5779 return NULL;
5780 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005781}
Deanna Garciab26afb52023-04-25 13:37:18 -07005782UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005783 const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005784 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005785 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005786 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005787 }
5788 return arr;
5789}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005790UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005791 const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005792 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5793 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07005794 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005795 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005796 }
5797 return arr;
5798}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005799UPB_INLINE void google_protobuf_FileDescriptorProto_clear_message_type(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005800 const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005801 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005802}
Eric Salob7d54ac2022-12-29 11:59:42 -08005803UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005804 const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005805 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005806 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005807 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005808 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005809 return (const google_protobuf_DescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005810 } else {
5811 if (size) *size = 0;
5812 return NULL;
5813 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005814}
Deanna Garciab26afb52023-04-25 13:37:18 -07005815UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005816 const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005817 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005818 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005819 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005820 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005821 }
5822 return arr;
5823}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005824UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005825 const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005826 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005827 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5828 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07005829 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005830 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005831 }
5832 return arr;
5833}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005834UPB_INLINE void google_protobuf_FileDescriptorProto_clear_enum_type(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005835 const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005836 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005837}
Eric Salob7d54ac2022-12-29 11:59:42 -08005838UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005839 const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005840 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005841 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005842 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005843 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005844 return (const google_protobuf_EnumDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005845 } else {
5846 if (size) *size = 0;
5847 return NULL;
5848 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005849}
Deanna Garciab26afb52023-04-25 13:37:18 -07005850UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005851 const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005852 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005853 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005854 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005855 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005856 }
5857 return arr;
5858}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005859UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005860 const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005861 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005862 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5863 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07005864 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005865 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005866 }
5867 return arr;
5868}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005869UPB_INLINE void google_protobuf_FileDescriptorProto_clear_service(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005870 const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005871 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005872}
Eric Salob7d54ac2022-12-29 11:59:42 -08005873UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005874 const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005875 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005876 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005877 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005878 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005879 return (const google_protobuf_ServiceDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005880 } else {
5881 if (size) *size = 0;
5882 return NULL;
5883 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005884}
Deanna Garciab26afb52023-04-25 13:37:18 -07005885UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005886 const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005887 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005888 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005889 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005890 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005891 }
5892 return arr;
5893}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005894UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005895 const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005896 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005897 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5898 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07005899 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005900 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005901 }
5902 return arr;
5903}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005904UPB_INLINE void google_protobuf_FileDescriptorProto_clear_extension(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005905 const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005906 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005907}
Eric Salob7d54ac2022-12-29 11:59:42 -08005908UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005909 const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005910 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005911 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005912 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005913 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005914 return (const google_protobuf_FieldDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005915 } else {
5916 if (size) *size = 0;
5917 return NULL;
5918 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005919}
Deanna Garciab26afb52023-04-25 13:37:18 -07005920UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005921 const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005922 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005923 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005924 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005925 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005926 }
5927 return arr;
5928}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005929UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005930 const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005931 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005932 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5933 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07005934 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005935 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005936 }
5937 return arr;
5938}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005939UPB_INLINE void google_protobuf_FileDescriptorProto_clear_options(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005940 const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005941 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005942}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005943UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08005944 const google_protobuf_FileOptions* default_val = NULL;
5945 const google_protobuf_FileOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005946 const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005947 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005948 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5949 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08005950 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08005951}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005952UPB_INLINE bool google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005953 const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00005954 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07005955}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005956UPB_INLINE void google_protobuf_FileDescriptorProto_clear_source_code_info(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005957 const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005958 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07005959}
Joshua Habermanf41049a2022-01-21 14:41:25 -08005960UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08005961 const google_protobuf_SourceCodeInfo* default_val = NULL;
5962 const google_protobuf_SourceCodeInfo* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005963 const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00005964 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005965 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5966 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08005967 return ret;
Joshua Habermand3995ec2022-09-30 16:54:39 -07005968}
Mike Kruskal3bc50492022-12-01 13:34:12 -08005969UPB_INLINE bool google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005970 const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00005971 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08005972}
5973UPB_INLINE void google_protobuf_FileDescriptorProto_clear_public_dependency(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005974 const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00005975 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermanf41049a2022-01-21 14:41:25 -08005976}
Eric Salob7d54ac2022-12-29 11:59:42 -08005977UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005978 const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005979 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08005980 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005981 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00005982 return (int32_t const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08005983 } else {
5984 if (size) *size = 0;
5985 return NULL;
5986 }
Joshua Habermand3995ec2022-09-30 16:54:39 -07005987}
Deanna Garciab26afb52023-04-25 13:37:18 -07005988UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005989 const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005990 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07005991 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00005992 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07005993 }
5994 return arr;
5995}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005996UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00005997 const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00005998 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5999 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006000 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006001 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006002 }
6003 return arr;
6004}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006005UPB_INLINE void google_protobuf_FileDescriptorProto_clear_weak_dependency(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006006 const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006007 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006008}
Eric Salob7d54ac2022-12-29 11:59:42 -08006009UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006010 const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006011 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006012 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006013 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006014 return (int32_t const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006015 } else {
6016 if (size) *size = 0;
6017 return NULL;
6018 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006019}
Deanna Garciab26afb52023-04-25 13:37:18 -07006020UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006021 const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006022 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006023 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006024 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006025 }
6026 return arr;
6027}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006028UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006029 const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006030 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6031 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006032 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006033 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006034 }
6035 return arr;
6036}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006037UPB_INLINE void google_protobuf_FileDescriptorProto_clear_syntax(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006038 const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006039 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006040}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006041UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08006042 upb_StringView default_val = upb_StringView_FromString("");
6043 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006044 const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006045 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6046 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08006047 return ret;
Joshua Habermand3995ec2022-09-30 16:54:39 -07006048}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006049UPB_INLINE bool google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006050 const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00006051 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006052}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006053UPB_INLINE void google_protobuf_FileDescriptorProto_clear_edition(google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006054 const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006055 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006056}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +00006057UPB_INLINE int32_t google_protobuf_FileDescriptorProto_edition(const google_protobuf_FileDescriptorProto* msg) {
6058 int32_t default_val = 0;
6059 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006060 const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006061 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6062 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08006063 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006064}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006065UPB_INLINE bool google_protobuf_FileDescriptorProto_has_edition(const google_protobuf_FileDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006066 const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00006067 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08006068}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006069
Joshua Habermanf41049a2022-01-21 14:41:25 -08006070UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006071 const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00006072 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006073}
6074UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006075 const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00006076 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006077}
6078UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006079 upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006080 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006081 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006082 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006083 return (upb_StringView*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006084 } else {
6085 if (size) *size = 0;
6086 return NULL;
6087 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006088}
Eric Salob7d54ac2022-12-29 11:59:42 -08006089UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006090 upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006091 return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6092 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006093}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006094UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto* msg, upb_StringView val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006095 upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006096 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6097 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006098 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006099 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006100 return false;
6101 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006102 UPB_PRIVATE(_upb_Array_Set)
6103 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -08006104 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006105}
Eric Salob7d54ac2022-12-29 11:59:42 -08006106UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006107 upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006108 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006109 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006110 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006111 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006112 return (google_protobuf_DescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006113 } else {
6114 if (size) *size = 0;
6115 return NULL;
6116 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006117}
Eric Salob7d54ac2022-12-29 11:59:42 -08006118UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006119 upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006120 return (google_protobuf_DescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6121 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006122}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006123UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006124 upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006125 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006126 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6127 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006128 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006129 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006130 return NULL;
6131 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006132 struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)_upb_Message_New(&google__protobuf__DescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006133 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006134 UPB_PRIVATE(_upb_Array_Set)
6135 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006136 return sub;
6137}
Eric Salob7d54ac2022-12-29 11:59:42 -08006138UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006139 upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006140 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006141 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006142 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006143 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006144 return (google_protobuf_EnumDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006145 } else {
6146 if (size) *size = 0;
6147 return NULL;
6148 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006149}
Eric Salob7d54ac2022-12-29 11:59:42 -08006150UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006151 upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006152 return (google_protobuf_EnumDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6153 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006154}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006155UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006156 upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006157 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006158 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6159 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006160 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006161 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006162 return NULL;
6163 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006164 struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)_upb_Message_New(&google__protobuf__EnumDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006165 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006166 UPB_PRIVATE(_upb_Array_Set)
6167 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006168 return sub;
6169}
Eric Salob7d54ac2022-12-29 11:59:42 -08006170UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006171 upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006172 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006173 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006174 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006175 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006176 return (google_protobuf_ServiceDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006177 } else {
6178 if (size) *size = 0;
6179 return NULL;
6180 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006181}
Eric Salob7d54ac2022-12-29 11:59:42 -08006182UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006183 upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006184 return (google_protobuf_ServiceDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6185 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006186}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006187UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006188 upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006189 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006190 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6191 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006192 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006193 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006194 return NULL;
6195 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006196 struct google_protobuf_ServiceDescriptorProto* sub = (struct google_protobuf_ServiceDescriptorProto*)_upb_Message_New(&google__protobuf__ServiceDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006197 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006198 UPB_PRIVATE(_upb_Array_Set)
6199 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006200 return sub;
6201}
Eric Salob7d54ac2022-12-29 11:59:42 -08006202UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006203 upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006204 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006205 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006206 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006207 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006208 return (google_protobuf_FieldDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006209 } else {
6210 if (size) *size = 0;
6211 return NULL;
6212 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006213}
Eric Salob7d54ac2022-12-29 11:59:42 -08006214UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006215 upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006216 return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6217 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006218}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006219UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006220 upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006221 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006222 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6223 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006224 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006225 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006226 return NULL;
6227 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006228 struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006229 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006230 UPB_PRIVATE(_upb_Array_Set)
6231 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006232 return sub;
6233}
6234UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006235 const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006236 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00006237 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006238}
6239UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006240 struct google_protobuf_FileOptions* sub = (struct google_protobuf_FileOptions*)google_protobuf_FileDescriptorProto_options(msg);
6241 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006242 sub = (struct google_protobuf_FileOptions*)_upb_Message_New(&google__protobuf__FileOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08006243 if (sub) google_protobuf_FileDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006244 }
6245 return sub;
6246}
6247UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006248 const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006249 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00006250 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006251}
6252UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006253 struct google_protobuf_SourceCodeInfo* sub = (struct google_protobuf_SourceCodeInfo*)google_protobuf_FileDescriptorProto_source_code_info(msg);
6254 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006255 sub = (struct google_protobuf_SourceCodeInfo*)_upb_Message_New(&google__protobuf__SourceCodeInfo_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08006256 if (sub) google_protobuf_FileDescriptorProto_set_source_code_info(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006257 }
6258 return sub;
6259}
Eric Salob7d54ac2022-12-29 11:59:42 -08006260UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_public_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006261 upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006262 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006263 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006264 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006265 return (int32_t*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006266 } else {
6267 if (size) *size = 0;
6268 return NULL;
6269 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006270}
Eric Salob7d54ac2022-12-29 11:59:42 -08006271UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006272 upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006273 return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6274 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006275}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006276UPB_INLINE bool google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto* msg, int32_t val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006277 upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006278 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6279 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006280 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006281 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006282 return false;
6283 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006284 UPB_PRIVATE(_upb_Array_Set)
6285 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -08006286 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006287}
Eric Salob7d54ac2022-12-29 11:59:42 -08006288UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006289 upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006290 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006291 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006292 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006293 return (int32_t*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006294 } else {
6295 if (size) *size = 0;
6296 return NULL;
6297 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006298}
Eric Salob7d54ac2022-12-29 11:59:42 -08006299UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006300 upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006301 return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6302 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006303}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006304UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto* msg, int32_t val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006305 upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006306 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6307 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006308 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006309 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006310 return false;
6311 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006312 UPB_PRIVATE(_upb_Array_Set)
6313 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -08006314 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006315}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006316UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006317 const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00006318 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006319}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +00006320UPB_INLINE void google_protobuf_FileDescriptorProto_set_edition(google_protobuf_FileDescriptorProto *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006321 const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00006322 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006323}
Mike Kruskal232ecf42023-01-14 00:09:40 -08006324
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006325/* google.protobuf.DescriptorProto */
6326
Joshua Habermanf41049a2022-01-21 14:41:25 -08006327UPB_INLINE google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006328 return (google_protobuf_DescriptorProto*)_upb_Message_New(&google__protobuf__DescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006329}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006330UPB_INLINE google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
6331 google_protobuf_DescriptorProto* ret = google_protobuf_DescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07006332 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006333 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto_msg_init, NULL, 0, arena) !=
6334 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07006335 return NULL;
6336 }
6337 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006338}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006339UPB_INLINE google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_parse_ex(const char* buf, size_t size,
6340 const upb_ExtensionRegistry* extreg,
6341 int options, upb_Arena* arena) {
6342 google_protobuf_DescriptorProto* ret = google_protobuf_DescriptorProto_new(arena);
6343 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006344 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto_msg_init, extreg, options,
6345 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08006346 return NULL;
6347 }
6348 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006349}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006350UPB_INLINE char* google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07006351 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006352 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006353 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006354}
6355UPB_INLINE char* google_protobuf_DescriptorProto_serialize_ex(const google_protobuf_DescriptorProto* msg, int options,
6356 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07006357 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006358 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006359 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006360}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006361UPB_INLINE void google_protobuf_DescriptorProto_clear_name(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006362 const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006363 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006364}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006365UPB_INLINE upb_StringView google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08006366 upb_StringView default_val = upb_StringView_FromString("");
6367 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006368 const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006369 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6370 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08006371 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006372}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006373UPB_INLINE bool google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006374 const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00006375 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006376}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006377UPB_INLINE void google_protobuf_DescriptorProto_clear_field(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006378 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006379 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006380}
Eric Salob7d54ac2022-12-29 11:59:42 -08006381UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006382 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006383 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006384 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006385 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006386 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006387 return (const google_protobuf_FieldDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006388 } else {
6389 if (size) *size = 0;
6390 return NULL;
6391 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006392}
Deanna Garciab26afb52023-04-25 13:37:18 -07006393UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006394 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006395 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006396 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006397 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006398 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006399 }
6400 return arr;
6401}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006402UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_field_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006403 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006404 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006405 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6406 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006407 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006408 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006409 }
6410 return arr;
6411}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006412UPB_INLINE void google_protobuf_DescriptorProto_clear_nested_type(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006413 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006414 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006415}
Eric Salob7d54ac2022-12-29 11:59:42 -08006416UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006417 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006418 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006419 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006420 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006421 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006422 return (const google_protobuf_DescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006423 } else {
6424 if (size) *size = 0;
6425 return NULL;
6426 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006427}
Deanna Garciab26afb52023-04-25 13:37:18 -07006428UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006429 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006430 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006431 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006432 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006433 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006434 }
6435 return arr;
6436}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006437UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_nested_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006438 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006439 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006440 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6441 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006442 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006443 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006444 }
6445 return arr;
6446}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006447UPB_INLINE void google_protobuf_DescriptorProto_clear_enum_type(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006448 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006449 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006450}
Eric Salob7d54ac2022-12-29 11:59:42 -08006451UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006452 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006453 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006454 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006455 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006456 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006457 return (const google_protobuf_EnumDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006458 } else {
6459 if (size) *size = 0;
6460 return NULL;
6461 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006462}
Deanna Garciab26afb52023-04-25 13:37:18 -07006463UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006464 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006465 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006466 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006467 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006468 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006469 }
6470 return arr;
6471}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006472UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_enum_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006473 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006474 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006475 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6476 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006477 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006478 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006479 }
6480 return arr;
6481}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006482UPB_INLINE void google_protobuf_DescriptorProto_clear_extension_range(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006483 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006484 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006485}
Eric Salob7d54ac2022-12-29 11:59:42 -08006486UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006487 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006488 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006489 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006490 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006491 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006492 return (const google_protobuf_DescriptorProto_ExtensionRange* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006493 } else {
6494 if (size) *size = 0;
6495 return NULL;
6496 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006497}
Deanna Garciab26afb52023-04-25 13:37:18 -07006498UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006499 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006500 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006501 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006502 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006503 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006504 }
6505 return arr;
6506}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006507UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006508 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006509 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006510 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6511 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006512 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006513 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006514 }
6515 return arr;
6516}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006517UPB_INLINE void google_protobuf_DescriptorProto_clear_extension(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006518 const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006519 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006520}
Eric Salob7d54ac2022-12-29 11:59:42 -08006521UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006522 const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006523 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006524 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006525 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006526 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006527 return (const google_protobuf_FieldDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006528 } else {
6529 if (size) *size = 0;
6530 return NULL;
6531 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006532}
Deanna Garciab26afb52023-04-25 13:37:18 -07006533UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006534 const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006535 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006536 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006537 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006538 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006539 }
6540 return arr;
6541}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006542UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006543 const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006544 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006545 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6546 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006547 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006548 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006549 }
6550 return arr;
6551}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006552UPB_INLINE void google_protobuf_DescriptorProto_clear_options(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006553 const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006554 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006555}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006556UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08006557 const google_protobuf_MessageOptions* default_val = NULL;
6558 const google_protobuf_MessageOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006559 const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006560 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006561 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6562 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08006563 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006564}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006565UPB_INLINE bool google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006566 const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00006567 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006568}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006569UPB_INLINE void google_protobuf_DescriptorProto_clear_oneof_decl(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006570 const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006571 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006572}
Eric Salob7d54ac2022-12-29 11:59:42 -08006573UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006574 const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006575 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006576 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006577 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006578 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006579 return (const google_protobuf_OneofDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006580 } else {
6581 if (size) *size = 0;
6582 return NULL;
6583 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006584}
Deanna Garciab26afb52023-04-25 13:37:18 -07006585UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006586 const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006587 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006588 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006589 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006590 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006591 }
6592 return arr;
6593}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006594UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_oneof_decl_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006595 const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006596 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006597 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6598 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006599 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006600 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006601 }
6602 return arr;
6603}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006604UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_range(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006605 const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006606 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006607}
Eric Salob7d54ac2022-12-29 11:59:42 -08006608UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006609 const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006610 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006611 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006612 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006613 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006614 return (const google_protobuf_DescriptorProto_ReservedRange* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006615 } else {
6616 if (size) *size = 0;
6617 return NULL;
6618 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006619}
Deanna Garciab26afb52023-04-25 13:37:18 -07006620UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006621 const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006622 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006623 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006624 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006625 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006626 }
6627 return arr;
6628}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006629UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006630 const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006631 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006632 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6633 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006634 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006635 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006636 }
6637 return arr;
6638}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006639UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_name(google_protobuf_DescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006640 const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006641 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006642}
Eric Salob7d54ac2022-12-29 11:59:42 -08006643UPB_INLINE upb_StringView const* google_protobuf_DescriptorProto_reserved_name(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006644 const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006645 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006646 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006647 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006648 return (upb_StringView const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006649 } else {
6650 if (size) *size = 0;
6651 return NULL;
6652 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006653}
Deanna Garciab26afb52023-04-25 13:37:18 -07006654UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_name_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006655 const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006656 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07006657 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006658 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006659 }
6660 return arr;
6661}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006662UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_name_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006663 const upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006664 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6665 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07006666 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006667 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07006668 }
6669 return arr;
6670}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006671
Joshua Habermanf41049a2022-01-21 14:41:25 -08006672UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006673 const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00006674 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006675}
6676UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006677 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006678 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006679 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006680 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006681 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006682 return (google_protobuf_FieldDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006683 } else {
6684 if (size) *size = 0;
6685 return NULL;
6686 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006687}
Eric Salob7d54ac2022-12-29 11:59:42 -08006688UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006689 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006690 return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6691 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006692}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006693UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006694 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006695 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006696 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6697 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006698 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006699 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006700 return NULL;
6701 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006702 struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006703 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006704 UPB_PRIVATE(_upb_Array_Set)
6705 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006706 return sub;
6707}
Eric Salob7d54ac2022-12-29 11:59:42 -08006708UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006709 upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006710 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006711 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006712 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006713 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006714 return (google_protobuf_DescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006715 } else {
6716 if (size) *size = 0;
6717 return NULL;
6718 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006719}
Eric Salob7d54ac2022-12-29 11:59:42 -08006720UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006721 upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006722 return (google_protobuf_DescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6723 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006724}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006725UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006726 upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006727 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006728 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6729 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006730 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006731 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006732 return NULL;
6733 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006734 struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)_upb_Message_New(&google__protobuf__DescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006735 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006736 UPB_PRIVATE(_upb_Array_Set)
6737 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006738 return sub;
6739}
Eric Salob7d54ac2022-12-29 11:59:42 -08006740UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006741 upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006742 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006743 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006744 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006745 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006746 return (google_protobuf_EnumDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006747 } else {
6748 if (size) *size = 0;
6749 return NULL;
6750 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006751}
Eric Salob7d54ac2022-12-29 11:59:42 -08006752UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006753 upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006754 return (google_protobuf_EnumDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6755 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006756}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006757UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006758 upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006759 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006760 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6761 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006762 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006763 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006764 return NULL;
6765 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006766 struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)_upb_Message_New(&google__protobuf__EnumDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006767 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006768 UPB_PRIVATE(_upb_Array_Set)
6769 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006770 return sub;
6771}
Eric Salob7d54ac2022-12-29 11:59:42 -08006772UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006773 upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006774 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006775 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006776 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006777 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006778 return (google_protobuf_DescriptorProto_ExtensionRange**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006779 } else {
6780 if (size) *size = 0;
6781 return NULL;
6782 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006783}
Eric Salob7d54ac2022-12-29 11:59:42 -08006784UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006785 upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006786 return (google_protobuf_DescriptorProto_ExtensionRange**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6787 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006788}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006789UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006790 upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006791 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006792 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6793 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006794 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006795 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006796 return NULL;
6797 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006798 struct google_protobuf_DescriptorProto_ExtensionRange* sub = (struct google_protobuf_DescriptorProto_ExtensionRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ExtensionRange_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006799 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006800 UPB_PRIVATE(_upb_Array_Set)
6801 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006802 return sub;
6803}
Eric Salob7d54ac2022-12-29 11:59:42 -08006804UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006805 upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006806 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006807 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006808 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006809 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006810 return (google_protobuf_FieldDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006811 } else {
6812 if (size) *size = 0;
6813 return NULL;
6814 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006815}
Eric Salob7d54ac2022-12-29 11:59:42 -08006816UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006817 upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006818 return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6819 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006820}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006821UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006822 upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006823 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006824 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6825 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006826 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006827 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006828 return NULL;
6829 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006830 struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006831 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006832 UPB_PRIVATE(_upb_Array_Set)
6833 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006834 return sub;
6835}
6836UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006837 const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006838 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00006839 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08006840}
6841UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006842 struct google_protobuf_MessageOptions* sub = (struct google_protobuf_MessageOptions*)google_protobuf_DescriptorProto_options(msg);
6843 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006844 sub = (struct google_protobuf_MessageOptions*)_upb_Message_New(&google__protobuf__MessageOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08006845 if (sub) google_protobuf_DescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006846 }
6847 return sub;
6848}
Eric Salob7d54ac2022-12-29 11:59:42 -08006849UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006850 upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006851 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006852 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006853 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006854 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006855 return (google_protobuf_OneofDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006856 } else {
6857 if (size) *size = 0;
6858 return NULL;
6859 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006860}
Eric Salob7d54ac2022-12-29 11:59:42 -08006861UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006862 upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006863 return (google_protobuf_OneofDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6864 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006865}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006866UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006867 upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006868 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006869 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6870 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006871 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006872 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006873 return NULL;
6874 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006875 struct google_protobuf_OneofDescriptorProto* sub = (struct google_protobuf_OneofDescriptorProto*)_upb_Message_New(&google__protobuf__OneofDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006876 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006877 UPB_PRIVATE(_upb_Array_Set)
6878 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006879 return sub;
6880}
Eric Salob7d54ac2022-12-29 11:59:42 -08006881UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006882 upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006883 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006884 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006885 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006886 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006887 return (google_protobuf_DescriptorProto_ReservedRange**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006888 } else {
6889 if (size) *size = 0;
6890 return NULL;
6891 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006892}
Eric Salob7d54ac2022-12-29 11:59:42 -08006893UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006894 upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006895 return (google_protobuf_DescriptorProto_ReservedRange**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6896 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006897}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006898UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006899 upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00006900 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006901 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6902 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006903 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006904 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006905 return NULL;
6906 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006907 struct google_protobuf_DescriptorProto_ReservedRange* sub = (struct google_protobuf_DescriptorProto_ReservedRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ReservedRange_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08006908 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006909 UPB_PRIVATE(_upb_Array_Set)
6910 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006911 return sub;
6912}
Eric Salob7d54ac2022-12-29 11:59:42 -08006913UPB_INLINE upb_StringView* google_protobuf_DescriptorProto_mutable_reserved_name(google_protobuf_DescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006914 upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006915 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08006916 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006917 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006918 return (upb_StringView*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08006919 } else {
6920 if (size) *size = 0;
6921 return NULL;
6922 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006923}
Eric Salob7d54ac2022-12-29 11:59:42 -08006924UPB_INLINE upb_StringView* google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006925 upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006926 return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6927 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006928}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006929UPB_INLINE bool google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto* msg, upb_StringView val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006930 upb_MiniTableField field = {10, UPB_SIZE(44, 96), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006931 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6932 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00006933 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006934 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08006935 return false;
6936 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +00006937 UPB_PRIVATE(_upb_Array_Set)
6938 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -08006939 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006940}
6941
6942/* google.protobuf.DescriptorProto.ExtensionRange */
6943
Joshua Habermanf41049a2022-01-21 14:41:25 -08006944UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_ExtensionRange_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00006945 return (google_protobuf_DescriptorProto_ExtensionRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ExtensionRange_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006946}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006947UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_ExtensionRange_parse(const char* buf, size_t size, upb_Arena* arena) {
6948 google_protobuf_DescriptorProto_ExtensionRange* ret = google_protobuf_DescriptorProto_ExtensionRange_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07006949 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006950 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, NULL, 0, arena) !=
6951 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07006952 return NULL;
6953 }
6954 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006955}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006956UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_ExtensionRange_parse_ex(const char* buf, size_t size,
6957 const upb_ExtensionRegistry* extreg,
6958 int options, upb_Arena* arena) {
6959 google_protobuf_DescriptorProto_ExtensionRange* ret = google_protobuf_DescriptorProto_ExtensionRange_new(arena);
6960 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006961 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, extreg, options,
6962 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08006963 return NULL;
6964 }
6965 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08006966}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006967UPB_INLINE char* google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07006968 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006969 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006970 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006971}
6972UPB_INLINE char* google_protobuf_DescriptorProto_ExtensionRange_serialize_ex(const google_protobuf_DescriptorProto_ExtensionRange* msg, int options,
6973 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07006974 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006975 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006976 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006977}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006978UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_clear_start(google_protobuf_DescriptorProto_ExtensionRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006979 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006980 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006981}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006982UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08006983 int32_t default_val = (int32_t)0;
6984 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006985 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00006986 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6987 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08006988 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08006989}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006990UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006991 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00006992 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07006993}
Mike Kruskal3bc50492022-12-01 13:34:12 -08006994UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_clear_end(google_protobuf_DescriptorProto_ExtensionRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00006995 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00006996 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07006997}
Joshua Habermanf41049a2022-01-21 14:41:25 -08006998UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08006999 int32_t default_val = (int32_t)0;
7000 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007001 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007002 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7003 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007004 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007005}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007006UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007007 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007008 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007009}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007010UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_clear_options(google_protobuf_DescriptorProto_ExtensionRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007011 const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007012 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007013}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007014UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007015 const google_protobuf_ExtensionRangeOptions* default_val = NULL;
7016 const google_protobuf_ExtensionRangeOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007017 const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007018 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007019 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7020 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007021 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007022}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007023UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007024 const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007025 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08007026}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007027
7028UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007029 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007030 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007031}
7032UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007033 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007034 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007035}
7036UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007037 const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007038 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00007039 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007040}
7041UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007042 struct google_protobuf_ExtensionRangeOptions* sub = (struct google_protobuf_ExtensionRangeOptions*)google_protobuf_DescriptorProto_ExtensionRange_options(msg);
7043 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007044 sub = (struct google_protobuf_ExtensionRangeOptions*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08007045 if (sub) google_protobuf_DescriptorProto_ExtensionRange_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007046 }
7047 return sub;
7048}
7049
7050/* google.protobuf.DescriptorProto.ReservedRange */
7051
Joshua Habermanf41049a2022-01-21 14:41:25 -08007052UPB_INLINE google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_ReservedRange_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007053 return (google_protobuf_DescriptorProto_ReservedRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ReservedRange_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007054}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007055UPB_INLINE google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_ReservedRange_parse(const char* buf, size_t size, upb_Arena* arena) {
7056 google_protobuf_DescriptorProto_ReservedRange* ret = google_protobuf_DescriptorProto_ReservedRange_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07007057 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007058 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ReservedRange_msg_init, NULL, 0, arena) !=
7059 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07007060 return NULL;
7061 }
7062 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007063}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007064UPB_INLINE google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_ReservedRange_parse_ex(const char* buf, size_t size,
7065 const upb_ExtensionRegistry* extreg,
7066 int options, upb_Arena* arena) {
7067 google_protobuf_DescriptorProto_ReservedRange* ret = google_protobuf_DescriptorProto_ReservedRange_new(arena);
7068 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007069 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ReservedRange_msg_init, extreg, options,
7070 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08007071 return NULL;
7072 }
7073 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007074}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007075UPB_INLINE char* google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007076 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007077 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ReservedRange_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007078 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007079}
7080UPB_INLINE char* google_protobuf_DescriptorProto_ReservedRange_serialize_ex(const google_protobuf_DescriptorProto_ReservedRange* msg, int options,
7081 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007082 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007083 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ReservedRange_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007084 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007085}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007086UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_clear_start(google_protobuf_DescriptorProto_ReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007087 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007088 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007089}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007090UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007091 int32_t default_val = (int32_t)0;
7092 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007093 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007094 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7095 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007096 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007097}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007098UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007099 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007100 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007101}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007102UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_clear_end(google_protobuf_DescriptorProto_ReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007103 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007104 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007105}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007106UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007107 int32_t default_val = (int32_t)0;
7108 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007109 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007110 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7111 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007112 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007113}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007114UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007115 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007116 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08007117}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007118
7119UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007120 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007121 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007122}
7123UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007124 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007125 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007126}
Mike Kruskal232ecf42023-01-14 00:09:40 -08007127
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007128/* google.protobuf.ExtensionRangeOptions */
7129
Joshua Habermanf41049a2022-01-21 14:41:25 -08007130UPB_INLINE google_protobuf_ExtensionRangeOptions* google_protobuf_ExtensionRangeOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007131 return (google_protobuf_ExtensionRangeOptions*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007132}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007133UPB_INLINE google_protobuf_ExtensionRangeOptions* google_protobuf_ExtensionRangeOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
7134 google_protobuf_ExtensionRangeOptions* ret = google_protobuf_ExtensionRangeOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07007135 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007136 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions_msg_init, NULL, 0, arena) !=
7137 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07007138 return NULL;
7139 }
7140 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007141}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007142UPB_INLINE google_protobuf_ExtensionRangeOptions* google_protobuf_ExtensionRangeOptions_parse_ex(const char* buf, size_t size,
7143 const upb_ExtensionRegistry* extreg,
7144 int options, upb_Arena* arena) {
7145 google_protobuf_ExtensionRangeOptions* ret = google_protobuf_ExtensionRangeOptions_new(arena);
7146 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007147 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions_msg_init, extreg, options,
7148 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08007149 return NULL;
7150 }
7151 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007152}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007153UPB_INLINE char* google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007154 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007155 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007156 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007157}
7158UPB_INLINE char* google_protobuf_ExtensionRangeOptions_serialize_ex(const google_protobuf_ExtensionRangeOptions* msg, int options,
7159 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007160 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007161 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007162 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007163}
Mike Kruskal145900f2023-03-27 09:55:52 -07007164UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_declaration(google_protobuf_ExtensionRangeOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007165 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007166 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007167}
7168UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* google_protobuf_ExtensionRangeOptions_declaration(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007169 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007170 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007171 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007172 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007173 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007174 return (const google_protobuf_ExtensionRangeOptions_Declaration* const*)upb_Array_DataPtr(arr);
Mike Kruskal145900f2023-03-27 09:55:52 -07007175 } else {
7176 if (size) *size = 0;
7177 return NULL;
7178 }
7179}
Deanna Garciab26afb52023-04-25 13:37:18 -07007180UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007181 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007182 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007183 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07007184 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007185 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007186 }
7187 return arr;
7188}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007189UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007190 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007191 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007192 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
7193 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07007194 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007195 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007196 }
7197 return arr;
7198}
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007199UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_verification(google_protobuf_ExtensionRangeOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007200 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007201 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007202}
7203UPB_INLINE int32_t google_protobuf_ExtensionRangeOptions_verification(const google_protobuf_ExtensionRangeOptions* msg) {
7204 int32_t default_val = 1;
7205 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007206 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007207 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7208 &default_val, &ret);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007209 return ret;
7210}
7211UPB_INLINE bool google_protobuf_ExtensionRangeOptions_has_verification(const google_protobuf_ExtensionRangeOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007212 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007213 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07007214}
7215UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_features(google_protobuf_ExtensionRangeOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007216 const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007217 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07007218}
7219UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptions_features(const google_protobuf_ExtensionRangeOptions* msg) {
7220 const google_protobuf_FeatureSet* default_val = NULL;
7221 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007222 const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007223 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007224 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7225 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07007226 return ret;
7227}
7228UPB_INLINE bool google_protobuf_ExtensionRangeOptions_has_features(const google_protobuf_ExtensionRangeOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007229 const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007230 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007231}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007232UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007233 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007234 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007235}
Eric Salob7d54ac2022-12-29 11:59:42 -08007236UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007237 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007238 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007239 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08007240 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007241 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007242 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08007243 } else {
7244 if (size) *size = 0;
7245 return NULL;
7246 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007247}
Deanna Garciab26afb52023-04-25 13:37:18 -07007248UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007249 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007250 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007251 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07007252 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007253 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007254 }
7255 return arr;
7256}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007257UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007258 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007259 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007260 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
7261 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07007262 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007263 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007264 }
7265 return arr;
7266}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007267
Mike Kruskal145900f2023-03-27 09:55:52 -07007268UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_mutable_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007269 upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007270 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007271 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007272 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007273 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007274 return (google_protobuf_ExtensionRangeOptions_Declaration**)upb_Array_MutableDataPtr(arr);
Mike Kruskal145900f2023-03-27 09:55:52 -07007275 } else {
7276 if (size) *size = 0;
7277 return NULL;
7278 }
7279}
7280UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_resize_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007281 upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007282 return (google_protobuf_ExtensionRangeOptions_Declaration**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
7283 &field, size, arena);
Mike Kruskal145900f2023-03-27 09:55:52 -07007284}
7285UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_add_declaration(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007286 upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007287 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007288 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
7289 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007290 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007291 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Mike Kruskal145900f2023-03-27 09:55:52 -07007292 return NULL;
7293 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007294 struct google_protobuf_ExtensionRangeOptions_Declaration* sub = (struct google_protobuf_ExtensionRangeOptions_Declaration*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init, arena);
Mike Kruskal145900f2023-03-27 09:55:52 -07007295 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007296 UPB_PRIVATE(_upb_Array_Set)
7297 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Mike Kruskal145900f2023-03-27 09:55:52 -07007298 return sub;
7299}
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007300UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_verification(google_protobuf_ExtensionRangeOptions *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007301 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007302 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007303}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07007304UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_features(google_protobuf_ExtensionRangeOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007305 const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007306 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00007307 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07007308}
7309UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptions_mutable_features(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
7310 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_ExtensionRangeOptions_features(msg);
7311 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007312 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07007313 if (sub) google_protobuf_ExtensionRangeOptions_set_features(msg, sub);
7314 }
7315 return sub;
7316}
Eric Salob7d54ac2022-12-29 11:59:42 -08007317UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007318 upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007319 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007320 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08007321 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007322 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007323 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08007324 } else {
7325 if (size) *size = 0;
7326 return NULL;
7327 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007328}
Eric Salob7d54ac2022-12-29 11:59:42 -08007329UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007330 upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007331 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
7332 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007333}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007334UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007335 upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007336 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007337 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
7338 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007339 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007340 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08007341 return NULL;
7342 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007343 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08007344 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007345 UPB_PRIVATE(_upb_Array_Set)
7346 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007347 return sub;
7348}
7349
Mike Kruskal145900f2023-03-27 09:55:52 -07007350/* google.protobuf.ExtensionRangeOptions.Declaration */
7351
7352UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_Declaration_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007353 return (google_protobuf_ExtensionRangeOptions_Declaration*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init, arena);
Mike Kruskal145900f2023-03-27 09:55:52 -07007354}
7355UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_Declaration_parse(const char* buf, size_t size, upb_Arena* arena) {
7356 google_protobuf_ExtensionRangeOptions_Declaration* ret = google_protobuf_ExtensionRangeOptions_Declaration_new(arena);
7357 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007358 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, NULL, 0, arena) !=
7359 kUpb_DecodeStatus_Ok) {
Mike Kruskal145900f2023-03-27 09:55:52 -07007360 return NULL;
7361 }
7362 return ret;
7363}
7364UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_Declaration_parse_ex(const char* buf, size_t size,
7365 const upb_ExtensionRegistry* extreg,
7366 int options, upb_Arena* arena) {
7367 google_protobuf_ExtensionRangeOptions_Declaration* ret = google_protobuf_ExtensionRangeOptions_Declaration_new(arena);
7368 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007369 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, extreg, options,
7370 arena) != kUpb_DecodeStatus_Ok) {
Mike Kruskal145900f2023-03-27 09:55:52 -07007371 return NULL;
7372 }
7373 return ret;
7374}
7375UPB_INLINE char* google_protobuf_ExtensionRangeOptions_Declaration_serialize(const google_protobuf_ExtensionRangeOptions_Declaration* msg, upb_Arena* arena, size_t* len) {
7376 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007377 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, 0, arena, &ptr, len);
Mike Kruskal145900f2023-03-27 09:55:52 -07007378 return ptr;
7379}
7380UPB_INLINE char* google_protobuf_ExtensionRangeOptions_Declaration_serialize_ex(const google_protobuf_ExtensionRangeOptions_Declaration* msg, int options,
7381 upb_Arena* arena, size_t* len) {
7382 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007383 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, options, arena, &ptr, len);
Mike Kruskal145900f2023-03-27 09:55:52 -07007384 return ptr;
7385}
7386UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_number(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007387 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007388 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007389}
7390UPB_INLINE int32_t google_protobuf_ExtensionRangeOptions_Declaration_number(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
7391 int32_t default_val = (int32_t)0;
7392 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007393 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007394 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7395 &default_val, &ret);
Mike Kruskal145900f2023-03-27 09:55:52 -07007396 return ret;
7397}
7398UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_number(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007399 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007400 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007401}
7402UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_full_name(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007403 const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007404 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007405}
7406UPB_INLINE upb_StringView google_protobuf_ExtensionRangeOptions_Declaration_full_name(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
7407 upb_StringView default_val = upb_StringView_FromString("");
7408 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007409 const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007410 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7411 &default_val, &ret);
Mike Kruskal145900f2023-03-27 09:55:52 -07007412 return ret;
7413}
7414UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_full_name(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007415 const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007416 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007417}
7418UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_type(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007419 const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007420 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007421}
7422UPB_INLINE upb_StringView google_protobuf_ExtensionRangeOptions_Declaration_type(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
7423 upb_StringView default_val = upb_StringView_FromString("");
7424 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007425 const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007426 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7427 &default_val, &ret);
Mike Kruskal145900f2023-03-27 09:55:52 -07007428 return ret;
7429}
7430UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_type(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007431 const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007432 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal145900f2023-03-27 09:55:52 -07007433}
Protobuf Team Bot41287bd2023-04-10 18:57:14 -07007434UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_reserved(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007435 const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007436 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot41287bd2023-04-10 18:57:14 -07007437}
7438UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_reserved(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
7439 bool default_val = false;
7440 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007441 const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007442 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7443 &default_val, &ret);
Protobuf Team Bot41287bd2023-04-10 18:57:14 -07007444 return ret;
7445}
7446UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_reserved(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007447 const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007448 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot41287bd2023-04-10 18:57:14 -07007449}
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007450UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_repeated(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007451 const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007452 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007453}
7454UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_repeated(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
7455 bool default_val = false;
7456 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007457 const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007458 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7459 &default_val, &ret);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007460 return ret;
7461}
7462UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_repeated(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007463 const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007464 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007465}
Mike Kruskal145900f2023-03-27 09:55:52 -07007466
7467UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_number(google_protobuf_ExtensionRangeOptions_Declaration *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007468 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007469 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal145900f2023-03-27 09:55:52 -07007470}
7471UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_full_name(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007472 const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007473 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal145900f2023-03-27 09:55:52 -07007474}
7475UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_type(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007476 const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007477 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal145900f2023-03-27 09:55:52 -07007478}
Protobuf Team Bot41287bd2023-04-10 18:57:14 -07007479UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_reserved(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007480 const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007481 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot41287bd2023-04-10 18:57:14 -07007482}
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007483UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_repeated(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007484 const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007485 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot469f0272023-04-21 18:12:45 -07007486}
Mike Kruskal145900f2023-03-27 09:55:52 -07007487
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007488/* google.protobuf.FieldDescriptorProto */
7489
Joshua Habermanf41049a2022-01-21 14:41:25 -08007490UPB_INLINE google_protobuf_FieldDescriptorProto* google_protobuf_FieldDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007491 return (google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007492}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007493UPB_INLINE google_protobuf_FieldDescriptorProto* google_protobuf_FieldDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
7494 google_protobuf_FieldDescriptorProto* ret = google_protobuf_FieldDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07007495 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007496 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldDescriptorProto_msg_init, NULL, 0, arena) !=
7497 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07007498 return NULL;
7499 }
7500 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007501}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007502UPB_INLINE google_protobuf_FieldDescriptorProto* google_protobuf_FieldDescriptorProto_parse_ex(const char* buf, size_t size,
7503 const upb_ExtensionRegistry* extreg,
7504 int options, upb_Arena* arena) {
7505 google_protobuf_FieldDescriptorProto* ret = google_protobuf_FieldDescriptorProto_new(arena);
7506 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007507 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldDescriptorProto_msg_init, extreg, options,
7508 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08007509 return NULL;
7510 }
7511 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007512}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007513UPB_INLINE char* google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007514 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007515 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007516 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007517}
7518UPB_INLINE char* google_protobuf_FieldDescriptorProto_serialize_ex(const google_protobuf_FieldDescriptorProto* msg, int options,
7519 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007520 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007521 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007522 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007523}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007524UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_name(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007525 const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007526 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007527}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007528UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007529 upb_StringView default_val = upb_StringView_FromString("");
7530 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007531 const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007532 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7533 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007534 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007535}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007536UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007537 const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007538 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007539}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007540UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_extendee(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007541 const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007542 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007543}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007544UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007545 upb_StringView default_val = upb_StringView_FromString("");
7546 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007547 const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007548 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7549 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007550 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007551}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007552UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007553 const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007554 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007555}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007556UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_number(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007557 const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007558 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007559}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007560UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007561 int32_t default_val = (int32_t)0;
7562 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007563 const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007564 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7565 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007566 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007567}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007568UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007569 const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007570 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007571}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007572UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_label(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007573 const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007574 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007575}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007576UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007577 int32_t default_val = 1;
7578 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007579 const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007580 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7581 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007582 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007583}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007584UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007585 const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007586 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007587}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007588UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_type(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007589 const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007590 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007591}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007592UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007593 int32_t default_val = 1;
7594 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007595 const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007596 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7597 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007598 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007599}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007600UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007601 const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007602 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007603}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007604UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_type_name(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007605 const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007606 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007607}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007608UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007609 upb_StringView default_val = upb_StringView_FromString("");
7610 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007611 const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007612 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7613 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007614 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007615}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007616UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007617 const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007618 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007619}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007620UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_default_value(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007621 const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007622 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007623}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007624UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007625 upb_StringView default_val = upb_StringView_FromString("");
7626 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007627 const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007628 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7629 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007630 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007631}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007632UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007633 const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007634 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007635}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007636UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_options(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007637 const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007638 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007639}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007640UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007641 const google_protobuf_FieldOptions* default_val = NULL;
7642 const google_protobuf_FieldOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007643 const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007644 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007645 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7646 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007647 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007648}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007649UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007650 const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007651 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007652}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007653UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_oneof_index(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007654 const upb_MiniTableField field = {9, UPB_SIZE(28, 24), 72, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007655 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007656}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007657UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007658 int32_t default_val = (int32_t)0;
7659 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007660 const upb_MiniTableField field = {9, UPB_SIZE(28, 24), 72, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007661 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7662 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007663 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007664}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007665UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007666 const upb_MiniTableField field = {9, UPB_SIZE(28, 24), 72, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007667 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007668}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007669UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_json_name(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007670 const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007671 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007672}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007673UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007674 upb_StringView default_val = upb_StringView_FromString("");
7675 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007676 const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007677 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7678 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007679 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007680}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007681UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007682 const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007683 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007684}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007685UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_proto3_optional(google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007686 const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007687 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007688}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007689UPB_INLINE bool google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007690 bool default_val = false;
7691 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007692 const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007693 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7694 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007695 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007696}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007697UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007698 const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007699 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08007700}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007701
7702UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007703 const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007704 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007705}
7706UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007707 const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007708 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007709}
7710UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007711 const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007712 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007713}
7714UPB_INLINE void google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007715 const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007716 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007717}
7718UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007719 const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007720 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007721}
7722UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007723 const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007724 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007725}
7726UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007727 const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007728 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007729}
7730UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007731 const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007732 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00007733 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007734}
7735UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007736 struct google_protobuf_FieldOptions* sub = (struct google_protobuf_FieldOptions*)google_protobuf_FieldDescriptorProto_options(msg);
7737 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007738 sub = (struct google_protobuf_FieldOptions*)_upb_Message_New(&google__protobuf__FieldOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08007739 if (sub) google_protobuf_FieldDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007740 }
7741 return sub;
7742}
7743UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007744 const upb_MiniTableField field = {9, UPB_SIZE(28, 24), 72, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007745 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007746}
7747UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007748 const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007749 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007750}
7751UPB_INLINE void google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007752 const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007753 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007754}
Mike Kruskal232ecf42023-01-14 00:09:40 -08007755
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007756/* google.protobuf.OneofDescriptorProto */
7757
Joshua Habermanf41049a2022-01-21 14:41:25 -08007758UPB_INLINE google_protobuf_OneofDescriptorProto* google_protobuf_OneofDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007759 return (google_protobuf_OneofDescriptorProto*)_upb_Message_New(&google__protobuf__OneofDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007760}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007761UPB_INLINE google_protobuf_OneofDescriptorProto* google_protobuf_OneofDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
7762 google_protobuf_OneofDescriptorProto* ret = google_protobuf_OneofDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07007763 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007764 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofDescriptorProto_msg_init, NULL, 0, arena) !=
7765 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07007766 return NULL;
7767 }
7768 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007769}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007770UPB_INLINE google_protobuf_OneofDescriptorProto* google_protobuf_OneofDescriptorProto_parse_ex(const char* buf, size_t size,
7771 const upb_ExtensionRegistry* extreg,
7772 int options, upb_Arena* arena) {
7773 google_protobuf_OneofDescriptorProto* ret = google_protobuf_OneofDescriptorProto_new(arena);
7774 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007775 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofDescriptorProto_msg_init, extreg, options,
7776 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08007777 return NULL;
7778 }
7779 return ret;
7780}
7781UPB_INLINE char* google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007782 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007783 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007784 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007785}
7786UPB_INLINE char* google_protobuf_OneofDescriptorProto_serialize_ex(const google_protobuf_OneofDescriptorProto* msg, int options,
7787 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007788 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007789 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007790 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007791}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007792UPB_INLINE void google_protobuf_OneofDescriptorProto_clear_name(google_protobuf_OneofDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007793 const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007794 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007795}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007796UPB_INLINE upb_StringView google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007797 upb_StringView default_val = upb_StringView_FromString("");
7798 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007799 const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007800 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7801 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007802 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007803}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007804UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007805 const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007806 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007807}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007808UPB_INLINE void google_protobuf_OneofDescriptorProto_clear_options(google_protobuf_OneofDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007809 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007810 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007811}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007812UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007813 const google_protobuf_OneofOptions* default_val = NULL;
7814 const google_protobuf_OneofOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007815 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007816 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007817 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7818 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007819 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007820}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007821UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007822 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007823 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08007824}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007825
Joshua Habermanf41049a2022-01-21 14:41:25 -08007826UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007827 const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00007828 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007829}
7830UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007831 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007832 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00007833 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08007834}
7835UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007836 struct google_protobuf_OneofOptions* sub = (struct google_protobuf_OneofOptions*)google_protobuf_OneofDescriptorProto_options(msg);
7837 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007838 sub = (struct google_protobuf_OneofOptions*)_upb_Message_New(&google__protobuf__OneofOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08007839 if (sub) google_protobuf_OneofDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007840 }
7841 return sub;
7842}
7843
7844/* google.protobuf.EnumDescriptorProto */
7845
Joshua Habermanf41049a2022-01-21 14:41:25 -08007846UPB_INLINE google_protobuf_EnumDescriptorProto* google_protobuf_EnumDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00007847 return (google_protobuf_EnumDescriptorProto*)_upb_Message_New(&google__protobuf__EnumDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007848}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007849UPB_INLINE google_protobuf_EnumDescriptorProto* google_protobuf_EnumDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
7850 google_protobuf_EnumDescriptorProto* ret = google_protobuf_EnumDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07007851 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007852 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto_msg_init, NULL, 0, arena) !=
7853 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07007854 return NULL;
7855 }
7856 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007857}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007858UPB_INLINE google_protobuf_EnumDescriptorProto* google_protobuf_EnumDescriptorProto_parse_ex(const char* buf, size_t size,
7859 const upb_ExtensionRegistry* extreg,
7860 int options, upb_Arena* arena) {
7861 google_protobuf_EnumDescriptorProto* ret = google_protobuf_EnumDescriptorProto_new(arena);
7862 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007863 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto_msg_init, extreg, options,
7864 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08007865 return NULL;
7866 }
7867 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08007868}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007869UPB_INLINE char* google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007870 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007871 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007872 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007873}
7874UPB_INLINE char* google_protobuf_EnumDescriptorProto_serialize_ex(const google_protobuf_EnumDescriptorProto* msg, int options,
7875 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07007876 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007877 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007878 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007879}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007880UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_name(google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007881 const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007882 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007883}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007884UPB_INLINE upb_StringView google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007885 upb_StringView default_val = upb_StringView_FromString("");
7886 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007887 const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007888 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7889 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007890 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007891}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007892UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007893 const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007894 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007895}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007896UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_value(google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007897 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007898 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007899}
Eric Salob7d54ac2022-12-29 11:59:42 -08007900UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007901 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007902 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007903 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08007904 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007905 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007906 return (const google_protobuf_EnumValueDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08007907 } else {
7908 if (size) *size = 0;
7909 return NULL;
7910 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007911}
Deanna Garciab26afb52023-04-25 13:37:18 -07007912UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007913 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007914 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007915 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07007916 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007917 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007918 }
7919 return arr;
7920}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007921UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_value_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007922 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007923 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007924 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
7925 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07007926 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007927 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007928 }
7929 return arr;
7930}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007931UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_options(google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007932 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007933 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007934}
Joshua Habermanf41049a2022-01-21 14:41:25 -08007935UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08007936 const google_protobuf_EnumOptions* default_val = NULL;
7937 const google_protobuf_EnumOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007938 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007939 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007940 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
7941 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08007942 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08007943}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007944UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007945 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00007946 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007947}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007948UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_range(google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007949 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007950 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007951}
Eric Salob7d54ac2022-12-29 11:59:42 -08007952UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007953 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007954 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007955 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08007956 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007957 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007958 return (const google_protobuf_EnumDescriptorProto_EnumReservedRange* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08007959 } else {
7960 if (size) *size = 0;
7961 return NULL;
7962 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007963}
Deanna Garciab26afb52023-04-25 13:37:18 -07007964UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007965 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007966 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007967 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07007968 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007969 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007970 }
7971 return arr;
7972}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007973UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007974 const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00007975 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007976 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
7977 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07007978 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007979 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07007980 }
7981 return arr;
7982}
Mike Kruskal3bc50492022-12-01 13:34:12 -08007983UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_name(google_protobuf_EnumDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007984 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00007985 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07007986}
Eric Salob7d54ac2022-12-29 11:59:42 -08007987UPB_INLINE upb_StringView const* google_protobuf_EnumDescriptorProto_reserved_name(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007988 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00007989 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08007990 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00007991 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00007992 return (upb_StringView const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08007993 } else {
7994 if (size) *size = 0;
7995 return NULL;
7996 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07007997}
Deanna Garciab26afb52023-04-25 13:37:18 -07007998UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00007999 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008000 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07008001 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008002 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07008003 }
8004 return arr;
8005}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008006UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008007 const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008008 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
8009 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07008010 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008011 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07008012 }
8013 return arr;
8014}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008015
Joshua Habermanf41049a2022-01-21 14:41:25 -08008016UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008017 const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008018 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008019}
8020UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008021 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008022 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008023 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08008024 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008025 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008026 return (google_protobuf_EnumValueDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08008027 } else {
8028 if (size) *size = 0;
8029 return NULL;
8030 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008031}
Eric Salob7d54ac2022-12-29 11:59:42 -08008032UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008033 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008034 return (google_protobuf_EnumValueDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
8035 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008036}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008037UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008038 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008039 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008040 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
8041 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008042 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008043 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08008044 return NULL;
8045 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008046 struct google_protobuf_EnumValueDescriptorProto* sub = (struct google_protobuf_EnumValueDescriptorProto*)_upb_Message_New(&google__protobuf__EnumValueDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08008047 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008048 UPB_PRIVATE(_upb_Array_Set)
8049 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008050 return sub;
8051}
8052UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008053 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008054 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00008055 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008056}
8057UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008058 struct google_protobuf_EnumOptions* sub = (struct google_protobuf_EnumOptions*)google_protobuf_EnumDescriptorProto_options(msg);
8059 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008060 sub = (struct google_protobuf_EnumOptions*)_upb_Message_New(&google__protobuf__EnumOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08008061 if (sub) google_protobuf_EnumDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008062 }
8063 return sub;
8064}
Eric Salob7d54ac2022-12-29 11:59:42 -08008065UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008066 upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008067 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008068 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08008069 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008070 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008071 return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08008072 } else {
8073 if (size) *size = 0;
8074 return NULL;
8075 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008076}
Eric Salob7d54ac2022-12-29 11:59:42 -08008077UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008078 upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008079 return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
8080 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008081}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008082UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008083 upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008084 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008085 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
8086 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008087 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008088 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08008089 return NULL;
8090 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008091 struct google_protobuf_EnumDescriptorProto_EnumReservedRange* sub = (struct google_protobuf_EnumDescriptorProto_EnumReservedRange*)_upb_Message_New(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08008092 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008093 UPB_PRIVATE(_upb_Array_Set)
8094 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008095 return sub;
8096}
Eric Salob7d54ac2022-12-29 11:59:42 -08008097UPB_INLINE upb_StringView* google_protobuf_EnumDescriptorProto_mutable_reserved_name(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008098 upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008099 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08008100 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008101 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008102 return (upb_StringView*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08008103 } else {
8104 if (size) *size = 0;
8105 return NULL;
8106 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008107}
Eric Salob7d54ac2022-12-29 11:59:42 -08008108UPB_INLINE upb_StringView* google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008109 upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008110 return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
8111 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008112}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008113UPB_INLINE bool google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto* msg, upb_StringView val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008114 upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008115 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
8116 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008117 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008118 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08008119 return false;
8120 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008121 UPB_PRIVATE(_upb_Array_Set)
8122 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -08008123 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008124}
8125
8126/* google.protobuf.EnumDescriptorProto.EnumReservedRange */
8127
Joshua Habermanf41049a2022-01-21 14:41:25 -08008128UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008129 return (google_protobuf_EnumDescriptorProto_EnumReservedRange*)_upb_Message_New(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008130}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008131UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_EnumReservedRange_parse(const char* buf, size_t size, upb_Arena* arena) {
8132 google_protobuf_EnumDescriptorProto_EnumReservedRange* ret = google_protobuf_EnumDescriptorProto_EnumReservedRange_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07008133 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008134 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, NULL, 0, arena) !=
8135 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07008136 return NULL;
8137 }
8138 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008139}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008140UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_EnumReservedRange_parse_ex(const char* buf, size_t size,
8141 const upb_ExtensionRegistry* extreg,
8142 int options, upb_Arena* arena) {
8143 google_protobuf_EnumDescriptorProto_EnumReservedRange* ret = google_protobuf_EnumDescriptorProto_EnumReservedRange_new(arena);
8144 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008145 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, extreg, options,
8146 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08008147 return NULL;
8148 }
8149 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008150}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008151UPB_INLINE char* google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008152 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008153 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008154 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008155}
8156UPB_INLINE char* google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize_ex(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg, int options,
8157 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008158 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008159 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008160 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008161}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008162UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_clear_start(google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008163 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008164 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008165}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008166UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008167 int32_t default_val = (int32_t)0;
8168 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008169 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008170 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8171 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008172 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008173}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008174UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008175 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008176 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008177}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008178UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_clear_end(google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008179 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008180 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008181}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008182UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008183 int32_t default_val = (int32_t)0;
8184 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008185 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008186 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8187 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008188 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008189}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008190UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008191 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008192 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08008193}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008194
8195UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008196 const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008197 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008198}
8199UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008200 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008201 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008202}
Mike Kruskal232ecf42023-01-14 00:09:40 -08008203
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008204/* google.protobuf.EnumValueDescriptorProto */
8205
Joshua Habermanf41049a2022-01-21 14:41:25 -08008206UPB_INLINE google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumValueDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008207 return (google_protobuf_EnumValueDescriptorProto*)_upb_Message_New(&google__protobuf__EnumValueDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008208}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008209UPB_INLINE google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumValueDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
8210 google_protobuf_EnumValueDescriptorProto* ret = google_protobuf_EnumValueDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07008211 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008212 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueDescriptorProto_msg_init, NULL, 0, arena) !=
8213 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07008214 return NULL;
8215 }
8216 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008217}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008218UPB_INLINE google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumValueDescriptorProto_parse_ex(const char* buf, size_t size,
8219 const upb_ExtensionRegistry* extreg,
8220 int options, upb_Arena* arena) {
8221 google_protobuf_EnumValueDescriptorProto* ret = google_protobuf_EnumValueDescriptorProto_new(arena);
8222 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008223 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueDescriptorProto_msg_init, extreg, options,
8224 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08008225 return NULL;
8226 }
8227 return ret;
8228}
8229UPB_INLINE char* google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008230 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008231 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008232 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008233}
8234UPB_INLINE char* google_protobuf_EnumValueDescriptorProto_serialize_ex(const google_protobuf_EnumValueDescriptorProto* msg, int options,
8235 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008236 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008237 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008238 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008239}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008240UPB_INLINE void google_protobuf_EnumValueDescriptorProto_clear_name(google_protobuf_EnumValueDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008241 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008242 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008243}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008244UPB_INLINE upb_StringView google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008245 upb_StringView default_val = upb_StringView_FromString("");
8246 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008247 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008248 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8249 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008250 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008251}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008252UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008253 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008254 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008255}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008256UPB_INLINE void google_protobuf_EnumValueDescriptorProto_clear_number(google_protobuf_EnumValueDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008257 const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008258 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008259}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008260UPB_INLINE int32_t google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008261 int32_t default_val = (int32_t)0;
8262 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008263 const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008264 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8265 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008266 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008267}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008268UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008269 const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008270 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008271}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008272UPB_INLINE void google_protobuf_EnumValueDescriptorProto_clear_options(google_protobuf_EnumValueDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008273 const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008274 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008275}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008276UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008277 const google_protobuf_EnumValueOptions* default_val = NULL;
8278 const google_protobuf_EnumValueOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008279 const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008280 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008281 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8282 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008283 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008284}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008285UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008286 const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008287 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08008288}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008289
Joshua Habermanf41049a2022-01-21 14:41:25 -08008290UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008291 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008292 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008293}
8294UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008295 const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008296 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008297}
8298UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008299 const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008300 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00008301 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008302}
8303UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008304 struct google_protobuf_EnumValueOptions* sub = (struct google_protobuf_EnumValueOptions*)google_protobuf_EnumValueDescriptorProto_options(msg);
8305 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008306 sub = (struct google_protobuf_EnumValueOptions*)_upb_Message_New(&google__protobuf__EnumValueOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08008307 if (sub) google_protobuf_EnumValueDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008308 }
8309 return sub;
8310}
8311
8312/* google.protobuf.ServiceDescriptorProto */
8313
Joshua Habermanf41049a2022-01-21 14:41:25 -08008314UPB_INLINE google_protobuf_ServiceDescriptorProto* google_protobuf_ServiceDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008315 return (google_protobuf_ServiceDescriptorProto*)_upb_Message_New(&google__protobuf__ServiceDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008316}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008317UPB_INLINE google_protobuf_ServiceDescriptorProto* google_protobuf_ServiceDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
8318 google_protobuf_ServiceDescriptorProto* ret = google_protobuf_ServiceDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07008319 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008320 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceDescriptorProto_msg_init, NULL, 0, arena) !=
8321 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07008322 return NULL;
8323 }
8324 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008325}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008326UPB_INLINE google_protobuf_ServiceDescriptorProto* google_protobuf_ServiceDescriptorProto_parse_ex(const char* buf, size_t size,
8327 const upb_ExtensionRegistry* extreg,
8328 int options, upb_Arena* arena) {
8329 google_protobuf_ServiceDescriptorProto* ret = google_protobuf_ServiceDescriptorProto_new(arena);
8330 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008331 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceDescriptorProto_msg_init, extreg, options,
8332 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08008333 return NULL;
8334 }
8335 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008336}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008337UPB_INLINE char* google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008338 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008339 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008340 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008341}
8342UPB_INLINE char* google_protobuf_ServiceDescriptorProto_serialize_ex(const google_protobuf_ServiceDescriptorProto* msg, int options,
8343 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008344 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008345 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008346 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008347}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008348UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_name(google_protobuf_ServiceDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008349 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008350 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008351}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008352UPB_INLINE upb_StringView google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008353 upb_StringView default_val = upb_StringView_FromString("");
8354 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008355 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008356 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8357 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008358 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008359}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008360UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008361 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008362 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008363}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008364UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_method(google_protobuf_ServiceDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008365 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008366 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008367}
Eric Salob7d54ac2022-12-29 11:59:42 -08008368UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008369 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008370 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008371 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08008372 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008373 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008374 return (const google_protobuf_MethodDescriptorProto* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08008375 } else {
8376 if (size) *size = 0;
8377 return NULL;
8378 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008379}
Deanna Garciab26afb52023-04-25 13:37:18 -07008380UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_array(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008381 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008382 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008383 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07008384 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008385 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07008386 }
8387 return arr;
8388}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008389UPB_INLINE upb_Array* _google_protobuf_ServiceDescriptorProto_method_mutable_upb_array(google_protobuf_ServiceDescriptorProto* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008390 const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008391 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008392 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
8393 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07008394 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008395 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07008396 }
8397 return arr;
8398}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008399UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_options(google_protobuf_ServiceDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008400 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008401 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008402}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008403UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008404 const google_protobuf_ServiceOptions* default_val = NULL;
8405 const google_protobuf_ServiceOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008406 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008407 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008408 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8409 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008410 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008411}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008412UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008413 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008414 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08008415}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008416
Joshua Habermanf41049a2022-01-21 14:41:25 -08008417UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008418 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008419 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008420}
8421UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008422 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008423 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008424 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08008425 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008426 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008427 return (google_protobuf_MethodDescriptorProto**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08008428 } else {
8429 if (size) *size = 0;
8430 return NULL;
8431 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008432}
Eric Salob7d54ac2022-12-29 11:59:42 -08008433UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008434 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008435 return (google_protobuf_MethodDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
8436 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008437}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008438UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008439 upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008440 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008441 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
8442 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00008443 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008444 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08008445 return NULL;
8446 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008447 struct google_protobuf_MethodDescriptorProto* sub = (struct google_protobuf_MethodDescriptorProto*)_upb_Message_New(&google__protobuf__MethodDescriptorProto_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08008448 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00008449 UPB_PRIVATE(_upb_Array_Set)
8450 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008451 return sub;
8452}
8453UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008454 const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008455 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00008456 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008457}
8458UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008459 struct google_protobuf_ServiceOptions* sub = (struct google_protobuf_ServiceOptions*)google_protobuf_ServiceDescriptorProto_options(msg);
8460 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008461 sub = (struct google_protobuf_ServiceOptions*)_upb_Message_New(&google__protobuf__ServiceOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08008462 if (sub) google_protobuf_ServiceDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008463 }
8464 return sub;
8465}
8466
8467/* google.protobuf.MethodDescriptorProto */
8468
Joshua Habermanf41049a2022-01-21 14:41:25 -08008469UPB_INLINE google_protobuf_MethodDescriptorProto* google_protobuf_MethodDescriptorProto_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008470 return (google_protobuf_MethodDescriptorProto*)_upb_Message_New(&google__protobuf__MethodDescriptorProto_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008471}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008472UPB_INLINE google_protobuf_MethodDescriptorProto* google_protobuf_MethodDescriptorProto_parse(const char* buf, size_t size, upb_Arena* arena) {
8473 google_protobuf_MethodDescriptorProto* ret = google_protobuf_MethodDescriptorProto_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07008474 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008475 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodDescriptorProto_msg_init, NULL, 0, arena) !=
8476 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07008477 return NULL;
8478 }
8479 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008480}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008481UPB_INLINE google_protobuf_MethodDescriptorProto* google_protobuf_MethodDescriptorProto_parse_ex(const char* buf, size_t size,
8482 const upb_ExtensionRegistry* extreg,
8483 int options, upb_Arena* arena) {
8484 google_protobuf_MethodDescriptorProto* ret = google_protobuf_MethodDescriptorProto_new(arena);
8485 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008486 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodDescriptorProto_msg_init, extreg, options,
8487 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08008488 return NULL;
8489 }
8490 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008491}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008492UPB_INLINE char* google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008493 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008494 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodDescriptorProto_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008495 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008496}
8497UPB_INLINE char* google_protobuf_MethodDescriptorProto_serialize_ex(const google_protobuf_MethodDescriptorProto* msg, int options,
8498 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008499 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008500 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodDescriptorProto_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008501 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008502}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008503UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_name(google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008504 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008505 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008506}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008507UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008508 upb_StringView default_val = upb_StringView_FromString("");
8509 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008510 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008511 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8512 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008513 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008514}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008515UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008516 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008517 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008518}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008519UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_input_type(google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008520 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008521 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008522}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008523UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008524 upb_StringView default_val = upb_StringView_FromString("");
8525 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008526 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008527 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8528 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008529 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008530}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008531UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008532 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008533 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008534}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008535UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_output_type(google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008536 const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008537 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008538}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008539UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008540 upb_StringView default_val = upb_StringView_FromString("");
8541 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008542 const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008543 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8544 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008545 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008546}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008547UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008548 const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008549 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008550}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008551UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_options(google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008552 const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008553 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008554}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008555UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008556 const google_protobuf_MethodOptions* default_val = NULL;
8557 const google_protobuf_MethodOptions* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008558 const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008559 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008560 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8561 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008562 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008563}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008564UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008565 const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008566 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008567}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008568UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_client_streaming(google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008569 const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008570 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008571}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008572UPB_INLINE bool google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008573 bool default_val = false;
8574 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008575 const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008576 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8577 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008578 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008579}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008580UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008581 const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008582 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008583}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008584UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_server_streaming(google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008585 const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008586 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008587}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008588UPB_INLINE bool google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008589 bool default_val = false;
8590 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008591 const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008592 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8593 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008594 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008595}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008596UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008597 const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008598 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -08008599}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008600
Joshua Habermanf41049a2022-01-21 14:41:25 -08008601UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008602 const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008603 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008604}
8605UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008606 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008607 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008608}
8609UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008610 const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008611 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008612}
8613UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008614 const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008615 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00008616 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008617}
8618UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena) {
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008619 struct google_protobuf_MethodOptions* sub = (struct google_protobuf_MethodOptions*)google_protobuf_MethodDescriptorProto_options(msg);
8620 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008621 sub = (struct google_protobuf_MethodOptions*)_upb_Message_New(&google__protobuf__MethodOptions_msg_init, arena);
Eric Salo8809a112022-11-21 13:01:06 -08008622 if (sub) google_protobuf_MethodDescriptorProto_set_options(msg, sub);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008623 }
8624 return sub;
8625}
8626UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008627 const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008628 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08008629}
8630UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008631 const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00008632 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008633}
Mike Kruskal232ecf42023-01-14 00:09:40 -08008634
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008635/* google.protobuf.FileOptions */
8636
Joshua Habermanf41049a2022-01-21 14:41:25 -08008637UPB_INLINE google_protobuf_FileOptions* google_protobuf_FileOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00008638 return (google_protobuf_FileOptions*)_upb_Message_New(&google__protobuf__FileOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008639}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008640UPB_INLINE google_protobuf_FileOptions* google_protobuf_FileOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
8641 google_protobuf_FileOptions* ret = google_protobuf_FileOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07008642 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008643 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileOptions_msg_init, NULL, 0, arena) !=
8644 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07008645 return NULL;
8646 }
8647 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008648}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008649UPB_INLINE google_protobuf_FileOptions* google_protobuf_FileOptions_parse_ex(const char* buf, size_t size,
8650 const upb_ExtensionRegistry* extreg,
8651 int options, upb_Arena* arena) {
8652 google_protobuf_FileOptions* ret = google_protobuf_FileOptions_new(arena);
8653 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008654 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileOptions_msg_init, extreg, options,
8655 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08008656 return NULL;
8657 }
8658 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08008659}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008660UPB_INLINE char* google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008661 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008662 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008663 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008664}
8665UPB_INLINE char* google_protobuf_FileOptions_serialize_ex(const google_protobuf_FileOptions* msg, int options,
8666 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07008667 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008668 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008669 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008670}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008671UPB_INLINE void google_protobuf_FileOptions_clear_java_package(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008672 const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008673 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008674}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008675UPB_INLINE upb_StringView google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008676 upb_StringView default_val = upb_StringView_FromString("");
8677 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008678 const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008679 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8680 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008681 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008682}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008683UPB_INLINE bool google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008684 const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008685 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008686}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008687UPB_INLINE void google_protobuf_FileOptions_clear_java_outer_classname(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008688 const upb_MiniTableField field = {8, 40, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008689 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008690}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008691UPB_INLINE upb_StringView google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008692 upb_StringView default_val = upb_StringView_FromString("");
8693 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008694 const upb_MiniTableField field = {8, 40, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008695 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8696 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008697 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008698}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008699UPB_INLINE bool google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008700 const upb_MiniTableField field = {8, 40, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008701 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008702}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008703UPB_INLINE void google_protobuf_FileOptions_clear_optimize_for(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008704 const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008705 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008706}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008707UPB_INLINE int32_t google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008708 int32_t default_val = 1;
8709 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008710 const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008711 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8712 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008713 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008714}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008715UPB_INLINE bool google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008716 const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008717 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008718}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008719UPB_INLINE void google_protobuf_FileOptions_clear_java_multiple_files(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008720 const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008721 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008722}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008723UPB_INLINE bool google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008724 bool default_val = false;
8725 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008726 const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008727 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8728 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008729 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008730}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008731UPB_INLINE bool google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008732 const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008733 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008734}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008735UPB_INLINE void google_protobuf_FileOptions_clear_go_package(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008736 const upb_MiniTableField field = {11, UPB_SIZE(48, 56), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008737 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008738}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008739UPB_INLINE upb_StringView google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008740 upb_StringView default_val = upb_StringView_FromString("");
8741 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008742 const upb_MiniTableField field = {11, UPB_SIZE(48, 56), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008743 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8744 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008745 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008746}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008747UPB_INLINE bool google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008748 const upb_MiniTableField field = {11, UPB_SIZE(48, 56), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008749 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008750}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008751UPB_INLINE void google_protobuf_FileOptions_clear_cc_generic_services(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008752 const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008753 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008754}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008755UPB_INLINE bool google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008756 bool default_val = false;
8757 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008758 const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008759 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8760 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008761 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008762}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008763UPB_INLINE bool google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008764 const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008765 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008766}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008767UPB_INLINE void google_protobuf_FileOptions_clear_java_generic_services(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008768 const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008769 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008770}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008771UPB_INLINE bool google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008772 bool default_val = false;
8773 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008774 const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008775 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8776 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008777 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008778}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008779UPB_INLINE bool google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008780 const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008781 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008782}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008783UPB_INLINE void google_protobuf_FileOptions_clear_py_generic_services(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008784 const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008785 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008786}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008787UPB_INLINE bool google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008788 bool default_val = false;
8789 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008790 const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008791 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8792 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008793 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008794}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008795UPB_INLINE bool google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008796 const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008797 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008798}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008799UPB_INLINE void google_protobuf_FileOptions_clear_java_generate_equals_and_hash(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008800 const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008801 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008802}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008803UPB_INLINE bool google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008804 bool default_val = false;
8805 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008806 const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008807 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8808 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008809 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008810}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008811UPB_INLINE bool google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008812 const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008813 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008814}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008815UPB_INLINE void google_protobuf_FileOptions_clear_deprecated(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008816 const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008817 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008818}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008819UPB_INLINE bool google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008820 bool default_val = false;
8821 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008822 const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008823 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8824 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008825 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008826}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008827UPB_INLINE bool google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008828 const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008829 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008830}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008831UPB_INLINE void google_protobuf_FileOptions_clear_java_string_check_utf8(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008832 const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008833 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008834}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008835UPB_INLINE bool google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008836 bool default_val = false;
8837 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008838 const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008839 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8840 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008841 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008842}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008843UPB_INLINE bool google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008844 const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008845 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008846}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008847UPB_INLINE void google_protobuf_FileOptions_clear_cc_enable_arenas(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008848 const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008849 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008850}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008851UPB_INLINE bool google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008852 bool default_val = true;
8853 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008854 const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008855 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8856 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008857 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008858}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008859UPB_INLINE bool google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008860 const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008861 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008862}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008863UPB_INLINE void google_protobuf_FileOptions_clear_objc_class_prefix(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008864 const upb_MiniTableField field = {36, UPB_SIZE(56, 72), 76, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008865 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008866}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008867UPB_INLINE upb_StringView google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008868 upb_StringView default_val = upb_StringView_FromString("");
8869 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008870 const upb_MiniTableField field = {36, UPB_SIZE(56, 72), 76, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008871 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8872 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008873 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008874}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008875UPB_INLINE bool google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008876 const upb_MiniTableField field = {36, UPB_SIZE(56, 72), 76, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008877 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008878}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008879UPB_INLINE void google_protobuf_FileOptions_clear_csharp_namespace(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008880 const upb_MiniTableField field = {37, UPB_SIZE(64, 88), 77, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008881 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008882}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008883UPB_INLINE upb_StringView google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008884 upb_StringView default_val = upb_StringView_FromString("");
8885 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008886 const upb_MiniTableField field = {37, UPB_SIZE(64, 88), 77, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008887 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8888 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008889 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008890}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008891UPB_INLINE bool google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008892 const upb_MiniTableField field = {37, UPB_SIZE(64, 88), 77, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008893 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008894}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008895UPB_INLINE void google_protobuf_FileOptions_clear_swift_prefix(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008896 const upb_MiniTableField field = {39, UPB_SIZE(72, 104), 78, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008897 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008898}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008899UPB_INLINE upb_StringView google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008900 upb_StringView default_val = upb_StringView_FromString("");
8901 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008902 const upb_MiniTableField field = {39, UPB_SIZE(72, 104), 78, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008903 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8904 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008905 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008906}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008907UPB_INLINE bool google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008908 const upb_MiniTableField field = {39, UPB_SIZE(72, 104), 78, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008909 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008910}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008911UPB_INLINE void google_protobuf_FileOptions_clear_php_class_prefix(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008912 const upb_MiniTableField field = {40, UPB_SIZE(80, 120), 79, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008913 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008914}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008915UPB_INLINE upb_StringView google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008916 upb_StringView default_val = upb_StringView_FromString("");
8917 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008918 const upb_MiniTableField field = {40, UPB_SIZE(80, 120), 79, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008919 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8920 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008921 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008922}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008923UPB_INLINE bool google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008924 const upb_MiniTableField field = {40, UPB_SIZE(80, 120), 79, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008925 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008926}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008927UPB_INLINE void google_protobuf_FileOptions_clear_php_namespace(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008928 const upb_MiniTableField field = {41, UPB_SIZE(88, 136), 80, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008929 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008930}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008931UPB_INLINE upb_StringView google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008932 upb_StringView default_val = upb_StringView_FromString("");
8933 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008934 const upb_MiniTableField field = {41, UPB_SIZE(88, 136), 80, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008935 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8936 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008937 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008938}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008939UPB_INLINE bool google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008940 const upb_MiniTableField field = {41, UPB_SIZE(88, 136), 80, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008941 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008942}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008943UPB_INLINE void google_protobuf_FileOptions_clear_php_metadata_namespace(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008944 const upb_MiniTableField field = {44, UPB_SIZE(96, 152), 81, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008945 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008946}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008947UPB_INLINE upb_StringView google_protobuf_FileOptions_php_metadata_namespace(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008948 upb_StringView default_val = upb_StringView_FromString("");
8949 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008950 const upb_MiniTableField field = {44, UPB_SIZE(96, 152), 81, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008951 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8952 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008953 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008954}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008955UPB_INLINE bool google_protobuf_FileOptions_has_php_metadata_namespace(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008956 const upb_MiniTableField field = {44, UPB_SIZE(96, 152), 81, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008957 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008958}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008959UPB_INLINE void google_protobuf_FileOptions_clear_ruby_package(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008960 const upb_MiniTableField field = {45, UPB_SIZE(104, 168), 82, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008961 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008962}
Joshua Habermanf41049a2022-01-21 14:41:25 -08008963UPB_INLINE upb_StringView google_protobuf_FileOptions_ruby_package(const google_protobuf_FileOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08008964 upb_StringView default_val = upb_StringView_FromString("");
8965 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008966 const upb_MiniTableField field = {45, UPB_SIZE(104, 168), 82, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008967 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8968 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08008969 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08008970}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008971UPB_INLINE bool google_protobuf_FileOptions_has_ruby_package(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008972 const upb_MiniTableField field = {45, UPB_SIZE(104, 168), 82, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008973 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07008974}
8975UPB_INLINE void google_protobuf_FileOptions_clear_features(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008976 const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008977 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07008978}
8979UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FileOptions_features(const google_protobuf_FileOptions* msg) {
8980 const google_protobuf_FeatureSet* default_val = NULL;
8981 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008982 const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008983 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008984 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
8985 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07008986 return ret;
8987}
8988UPB_INLINE bool google_protobuf_FileOptions_has_features(const google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008989 const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00008990 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07008991}
Mike Kruskal3bc50492022-12-01 13:34:12 -08008992UPB_INLINE void google_protobuf_FileOptions_clear_uninterpreted_option(google_protobuf_FileOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008993 const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00008994 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07008995}
Eric Salob7d54ac2022-12-29 11:59:42 -08008996UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00008997 const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00008998 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00008999 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08009000 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009001 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009002 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08009003 } else {
9004 if (size) *size = 0;
9005 return NULL;
9006 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009007}
Deanna Garciab26afb52023-04-25 13:37:18 -07009008UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_upb_array(const google_protobuf_FileOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009009 const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009010 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009011 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07009012 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009013 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009014 }
9015 return arr;
9016}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009017UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FileOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009018 const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009019 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009020 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
9021 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07009022 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009023 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009024 }
9025 return arr;
9026}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009027
Joshua Habermanf41049a2022-01-21 14:41:25 -08009028UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009029 const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009030 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009031}
9032UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009033 const upb_MiniTableField field = {8, 40, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009034 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009035}
9036UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009037 const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009038 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009039}
9040UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009041 const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009042 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009043}
9044UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009045 const upb_MiniTableField field = {11, UPB_SIZE(48, 56), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009046 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009047}
9048UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009049 const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009050 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009051}
9052UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009053 const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009054 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009055}
9056UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009057 const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009058 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009059}
9060UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009061 const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009062 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009063}
9064UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009065 const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009066 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009067}
9068UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009069 const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009070 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009071}
9072UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009073 const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009074 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009075}
9076UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009077 const upb_MiniTableField field = {36, UPB_SIZE(56, 72), 76, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009078 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009079}
9080UPB_INLINE void google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009081 const upb_MiniTableField field = {37, UPB_SIZE(64, 88), 77, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009082 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009083}
9084UPB_INLINE void google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009085 const upb_MiniTableField field = {39, UPB_SIZE(72, 104), 78, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009086 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009087}
9088UPB_INLINE void google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009089 const upb_MiniTableField field = {40, UPB_SIZE(80, 120), 79, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009090 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009091}
9092UPB_INLINE void google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009093 const upb_MiniTableField field = {41, UPB_SIZE(88, 136), 80, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009094 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009095}
9096UPB_INLINE void google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009097 const upb_MiniTableField field = {44, UPB_SIZE(96, 152), 81, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009098 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009099}
9100UPB_INLINE void google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009101 const upb_MiniTableField field = {45, UPB_SIZE(104, 168), 82, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009102 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009103}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009104UPB_INLINE void google_protobuf_FileOptions_set_features(google_protobuf_FileOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009105 const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009106 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00009107 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009108}
9109UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutable_features(google_protobuf_FileOptions* msg, upb_Arena* arena) {
9110 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FileOptions_features(msg);
9111 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009112 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009113 if (sub) google_protobuf_FileOptions_set_features(msg, sub);
9114 }
9115 return sub;
9116}
Mike Kruskal232ecf42023-01-14 00:09:40 -08009117UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009118 upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009119 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009120 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08009121 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009122 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009123 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08009124 } else {
9125 if (size) *size = 0;
9126 return NULL;
9127 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009128}
Eric Salob7d54ac2022-12-29 11:59:42 -08009129UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009130 upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009131 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
9132 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009133}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009134UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009135 upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009136 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009137 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
9138 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009139 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009140 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08009141 return NULL;
9142 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009143 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08009144 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009145 UPB_PRIVATE(_upb_Array_Set)
9146 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009147 return sub;
9148}
9149
9150/* google.protobuf.MessageOptions */
9151
Joshua Habermanf41049a2022-01-21 14:41:25 -08009152UPB_INLINE google_protobuf_MessageOptions* google_protobuf_MessageOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009153 return (google_protobuf_MessageOptions*)_upb_Message_New(&google__protobuf__MessageOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009154}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009155UPB_INLINE google_protobuf_MessageOptions* google_protobuf_MessageOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
9156 google_protobuf_MessageOptions* ret = google_protobuf_MessageOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07009157 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009158 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MessageOptions_msg_init, NULL, 0, arena) !=
9159 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07009160 return NULL;
9161 }
9162 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009163}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009164UPB_INLINE google_protobuf_MessageOptions* google_protobuf_MessageOptions_parse_ex(const char* buf, size_t size,
9165 const upb_ExtensionRegistry* extreg,
9166 int options, upb_Arena* arena) {
9167 google_protobuf_MessageOptions* ret = google_protobuf_MessageOptions_new(arena);
9168 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009169 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MessageOptions_msg_init, extreg, options,
9170 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08009171 return NULL;
9172 }
9173 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009174}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009175UPB_INLINE char* google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07009176 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009177 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MessageOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009178 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009179}
9180UPB_INLINE char* google_protobuf_MessageOptions_serialize_ex(const google_protobuf_MessageOptions* msg, int options,
9181 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07009182 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009183 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MessageOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009184 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009185}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009186UPB_INLINE void google_protobuf_MessageOptions_clear_message_set_wire_format(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009187 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009188 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009189}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009190UPB_INLINE bool google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009191 bool default_val = false;
9192 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009193 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009194 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9195 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009196 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009197}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009198UPB_INLINE bool google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009199 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009200 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009201}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009202UPB_INLINE void google_protobuf_MessageOptions_clear_no_standard_descriptor_accessor(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009203 const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009204 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009205}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009206UPB_INLINE bool google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009207 bool default_val = false;
9208 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009209 const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009210 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9211 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009212 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009213}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009214UPB_INLINE bool google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009215 const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009216 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009217}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009218UPB_INLINE void google_protobuf_MessageOptions_clear_deprecated(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009219 const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009220 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009221}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009222UPB_INLINE bool google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009223 bool default_val = false;
9224 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009225 const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009226 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9227 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009228 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009229}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009230UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009231 const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009232 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009233}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009234UPB_INLINE void google_protobuf_MessageOptions_clear_map_entry(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009235 const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009236 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009237}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009238UPB_INLINE bool google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009239 bool default_val = false;
9240 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009241 const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009242 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9243 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009244 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009245}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009246UPB_INLINE bool google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009247 const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009248 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009249}
Mike Kruskal6b87d6f2022-12-14 10:36:53 -08009250UPB_INLINE void google_protobuf_MessageOptions_clear_deprecated_legacy_json_field_conflicts(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009251 const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009252 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal6b87d6f2022-12-14 10:36:53 -08009253}
9254UPB_INLINE bool google_protobuf_MessageOptions_deprecated_legacy_json_field_conflicts(const google_protobuf_MessageOptions* msg) {
9255 bool default_val = false;
9256 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009257 const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009258 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9259 &default_val, &ret);
Mike Kruskal6b87d6f2022-12-14 10:36:53 -08009260 return ret;
9261}
9262UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated_legacy_json_field_conflicts(const google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009263 const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009264 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal6b87d6f2022-12-14 10:36:53 -08009265}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009266UPB_INLINE void google_protobuf_MessageOptions_clear_features(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009267 const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009268 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009269}
9270UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MessageOptions_features(const google_protobuf_MessageOptions* msg) {
9271 const google_protobuf_FeatureSet* default_val = NULL;
9272 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009273 const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009274 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009275 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9276 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009277 return ret;
9278}
9279UPB_INLINE bool google_protobuf_MessageOptions_has_features(const google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009280 const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009281 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009282}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009283UPB_INLINE void google_protobuf_MessageOptions_clear_uninterpreted_option(google_protobuf_MessageOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009284 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009285 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009286}
Eric Salob7d54ac2022-12-29 11:59:42 -08009287UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009288 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009289 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009290 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08009291 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009292 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009293 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08009294 } else {
9295 if (size) *size = 0;
9296 return NULL;
9297 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009298}
Deanna Garciab26afb52023-04-25 13:37:18 -07009299UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_upb_array(const google_protobuf_MessageOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009300 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009301 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009302 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07009303 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009304 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009305 }
9306 return arr;
9307}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009308UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MessageOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009309 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009310 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009311 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
9312 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07009313 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009314 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009315 }
9316 return arr;
9317}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009318
9319UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009320 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009321 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009322}
9323UPB_INLINE void google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009324 const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009325 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009326}
9327UPB_INLINE void google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009328 const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009329 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009330}
9331UPB_INLINE void google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009332 const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009333 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009334}
9335UPB_INLINE void google_protobuf_MessageOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_MessageOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009336 const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009337 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009338}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009339UPB_INLINE void google_protobuf_MessageOptions_set_features(google_protobuf_MessageOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009340 const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009341 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00009342 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009343}
9344UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mutable_features(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
9345 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_MessageOptions_features(msg);
9346 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009347 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009348 if (sub) google_protobuf_MessageOptions_set_features(msg, sub);
9349 }
9350 return sub;
9351}
Mike Kruskal232ecf42023-01-14 00:09:40 -08009352UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009353 upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009354 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009355 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08009356 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009357 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009358 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08009359 } else {
9360 if (size) *size = 0;
9361 return NULL;
9362 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009363}
Eric Salob7d54ac2022-12-29 11:59:42 -08009364UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009365 upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009366 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
9367 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009368}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009369UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009370 upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009371 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009372 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
9373 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009374 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009375 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08009376 return NULL;
9377 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009378 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08009379 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009380 UPB_PRIVATE(_upb_Array_Set)
9381 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009382 return sub;
9383}
9384
9385/* google.protobuf.FieldOptions */
9386
Joshua Habermanf41049a2022-01-21 14:41:25 -08009387UPB_INLINE google_protobuf_FieldOptions* google_protobuf_FieldOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009388 return (google_protobuf_FieldOptions*)_upb_Message_New(&google__protobuf__FieldOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009389}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009390UPB_INLINE google_protobuf_FieldOptions* google_protobuf_FieldOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
9391 google_protobuf_FieldOptions* ret = google_protobuf_FieldOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -07009392 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009393 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions_msg_init, NULL, 0, arena) !=
9394 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -07009395 return NULL;
9396 }
9397 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009398}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009399UPB_INLINE google_protobuf_FieldOptions* google_protobuf_FieldOptions_parse_ex(const char* buf, size_t size,
9400 const upb_ExtensionRegistry* extreg,
9401 int options, upb_Arena* arena) {
9402 google_protobuf_FieldOptions* ret = google_protobuf_FieldOptions_new(arena);
9403 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009404 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions_msg_init, extreg, options,
9405 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -08009406 return NULL;
9407 }
9408 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009409}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009410UPB_INLINE char* google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07009411 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009412 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009413 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009414}
9415UPB_INLINE char* google_protobuf_FieldOptions_serialize_ex(const google_protobuf_FieldOptions* msg, int options,
9416 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -07009417 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009418 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009419 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009420}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009421UPB_INLINE void google_protobuf_FieldOptions_clear_ctype(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009422 const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009423 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009424}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009425UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009426 int32_t default_val = 0;
9427 int32_t ret;
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009428 const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009429 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9430 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009431 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009432}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009433UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009434 const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009435 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009436}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009437UPB_INLINE void google_protobuf_FieldOptions_clear_packed(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009438 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009439 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009440}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009441UPB_INLINE bool google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009442 bool default_val = false;
9443 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009444 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009445 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9446 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009447 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009448}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009449UPB_INLINE bool google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009450 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009451 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009452}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009453UPB_INLINE void google_protobuf_FieldOptions_clear_deprecated(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009454 const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009455 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009456}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009457UPB_INLINE bool google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009458 bool default_val = false;
9459 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009460 const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009461 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9462 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009463 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009464}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009465UPB_INLINE bool google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009466 const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009467 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009468}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009469UPB_INLINE void google_protobuf_FieldOptions_clear_lazy(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009470 const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009471 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009472}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009473UPB_INLINE bool google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009474 bool default_val = false;
9475 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009476 const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009477 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9478 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009479 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009480}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009481UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009482 const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009483 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009484}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009485UPB_INLINE void google_protobuf_FieldOptions_clear_jstype(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009486 const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009487 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009488}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009489UPB_INLINE int32_t google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009490 int32_t default_val = 0;
9491 int32_t ret;
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009492 const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009493 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9494 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009495 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009496}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009497UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009498 const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009499 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009500}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009501UPB_INLINE void google_protobuf_FieldOptions_clear_weak(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009502 const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009503 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009504}
Joshua Habermanf41049a2022-01-21 14:41:25 -08009505UPB_INLINE bool google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009506 bool default_val = false;
9507 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009508 const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009509 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9510 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009511 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -08009512}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009513UPB_INLINE bool google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009514 const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009515 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009516}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009517UPB_INLINE void google_protobuf_FieldOptions_clear_unverified_lazy(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009518 const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009519 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009520}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009521UPB_INLINE bool google_protobuf_FieldOptions_unverified_lazy(const google_protobuf_FieldOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -08009522 bool default_val = false;
9523 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009524 const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009525 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9526 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -08009527 return ret;
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009528}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009529UPB_INLINE bool google_protobuf_FieldOptions_has_unverified_lazy(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009530 const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009531 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009532}
Protobuf Team Bot9238c482022-12-16 20:01:55 -08009533UPB_INLINE void google_protobuf_FieldOptions_clear_debug_redact(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009534 const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009535 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot9238c482022-12-16 20:01:55 -08009536}
9537UPB_INLINE bool google_protobuf_FieldOptions_debug_redact(const google_protobuf_FieldOptions* msg) {
9538 bool default_val = false;
9539 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009540 const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009541 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9542 &default_val, &ret);
Protobuf Team Bot9238c482022-12-16 20:01:55 -08009543 return ret;
9544}
9545UPB_INLINE bool google_protobuf_FieldOptions_has_debug_redact(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009546 const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009547 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot9238c482022-12-16 20:01:55 -08009548}
Adam Cozzette5a568372023-01-24 20:35:59 -08009549UPB_INLINE void google_protobuf_FieldOptions_clear_retention(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009550 const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009551 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Adam Cozzette5a568372023-01-24 20:35:59 -08009552}
9553UPB_INLINE int32_t google_protobuf_FieldOptions_retention(const google_protobuf_FieldOptions* msg) {
9554 int32_t default_val = 0;
9555 int32_t ret;
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009556 const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009557 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9558 &default_val, &ret);
Adam Cozzette5a568372023-01-24 20:35:59 -08009559 return ret;
9560}
9561UPB_INLINE bool google_protobuf_FieldOptions_has_retention(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009562 const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009563 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Adam Cozzette5a568372023-01-24 20:35:59 -08009564}
Mike Kruskal0c121392023-03-18 00:05:41 -07009565UPB_INLINE void google_protobuf_FieldOptions_clear_targets(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009566 const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009567 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Adam Cozzette5a568372023-01-24 20:35:59 -08009568}
Mike Kruskal0c121392023-03-18 00:05:41 -07009569UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009570 const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009571 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Mike Kruskal0c121392023-03-18 00:05:41 -07009572 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009573 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009574 return (int32_t const*)upb_Array_DataPtr(arr);
Mike Kruskal0c121392023-03-18 00:05:41 -07009575 } else {
9576 if (size) *size = 0;
9577 return NULL;
9578 }
Adam Cozzette5a568372023-01-24 20:35:59 -08009579}
Deanna Garciab26afb52023-04-25 13:37:18 -07009580UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009581 const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009582 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07009583 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009584 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009585 }
9586 return arr;
9587}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009588UPB_INLINE upb_Array* _google_protobuf_FieldOptions_targets_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009589 const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009590 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
9591 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07009592 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009593 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009594 }
9595 return arr;
9596}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009597UPB_INLINE void google_protobuf_FieldOptions_clear_edition_defaults(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009598 const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009599 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009600}
9601UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_protobuf_FieldOptions_edition_defaults(const google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009602 const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009603 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009604 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009605 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009606 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009607 return (const google_protobuf_FieldOptions_EditionDefault* const*)upb_Array_DataPtr(arr);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009608 } else {
9609 if (size) *size = 0;
9610 return NULL;
9611 }
9612}
9613UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009614 const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009615 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009616 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009617 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009618 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009619 }
9620 return arr;
9621}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009622UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009623 const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009624 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009625 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
9626 &field, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009627 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009628 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009629 }
9630 return arr;
9631}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009632UPB_INLINE void google_protobuf_FieldOptions_clear_features(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009633 const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009634 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009635}
9636UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FieldOptions_features(const google_protobuf_FieldOptions* msg) {
9637 const google_protobuf_FeatureSet* default_val = NULL;
9638 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009639 const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009640 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009641 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9642 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009643 return ret;
9644}
9645UPB_INLINE bool google_protobuf_FieldOptions_has_features(const google_protobuf_FieldOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009646 const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009647 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009648}
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009649UPB_INLINE void google_protobuf_FieldOptions_clear_feature_support(google_protobuf_FieldOptions* msg) {
9650 const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9651 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
9652}
9653UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_feature_support(const google_protobuf_FieldOptions* msg) {
9654 const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
9655 const google_protobuf_FieldOptions_FeatureSupport* ret;
9656 const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009657 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009658 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9659 &default_val, &ret);
9660 return ret;
9661}
9662UPB_INLINE bool google_protobuf_FieldOptions_has_feature_support(const google_protobuf_FieldOptions* msg) {
9663 const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9664 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
9665}
Mike Kruskal3bc50492022-12-01 13:34:12 -08009666UPB_INLINE void google_protobuf_FieldOptions_clear_uninterpreted_option(google_protobuf_FieldOptions* msg) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009667 const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009668 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -07009669}
Eric Salob7d54ac2022-12-29 11:59:42 -08009670UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009671 const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009672 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009673 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08009674 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009675 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009676 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08009677 } else {
9678 if (size) *size = 0;
9679 return NULL;
9680 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009681}
Deanna Garciab26afb52023-04-25 13:37:18 -07009682UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009683 const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009684 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009685 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -07009686 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009687 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009688 }
9689 return arr;
9690}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009691UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009692 const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009693 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009694 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
9695 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -07009696 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009697 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -07009698 }
9699 return arr;
9700}
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009701
9702UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009703 const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009704 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009705}
9706UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009707 const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009708 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009709}
9710UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009711 const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009712 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009713}
9714UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009715 const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009716 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009717}
9718UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009719 const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009720 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009721}
9722UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009723 const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009724 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009725}
9726UPB_INLINE void google_protobuf_FieldOptions_set_unverified_lazy(google_protobuf_FieldOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009727 const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009728 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009729}
9730UPB_INLINE void google_protobuf_FieldOptions_set_debug_redact(google_protobuf_FieldOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009731 const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009732 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -08009733}
Adam Cozzette5a568372023-01-24 20:35:59 -08009734UPB_INLINE void google_protobuf_FieldOptions_set_retention(google_protobuf_FieldOptions *msg, int32_t value) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009735 const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009736 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Adam Cozzette5a568372023-01-24 20:35:59 -08009737}
Mike Kruskal0c121392023-03-18 00:05:41 -07009738UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009739 upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009740 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Mike Kruskal0c121392023-03-18 00:05:41 -07009741 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009742 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009743 return (int32_t*)upb_Array_MutableDataPtr(arr);
Mike Kruskal0c121392023-03-18 00:05:41 -07009744 } else {
9745 if (size) *size = 0;
9746 return NULL;
9747 }
9748}
9749UPB_INLINE int32_t* google_protobuf_FieldOptions_resize_targets(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009750 upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009751 return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
9752 &field, size, arena);
Mike Kruskal0c121392023-03-18 00:05:41 -07009753}
9754UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOptions* msg, int32_t val, upb_Arena* arena) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009755 upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009756 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
9757 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009758 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009759 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Mike Kruskal0c121392023-03-18 00:05:41 -07009760 return false;
9761 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009762 UPB_PRIVATE(_upb_Array_Set)
9763 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Mike Kruskal0c121392023-03-18 00:05:41 -07009764 return true;
Adam Cozzette5a568372023-01-24 20:35:59 -08009765}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009766UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_mutable_edition_defaults(google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009767 upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009768 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009769 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009770 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009771 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009772 return (google_protobuf_FieldOptions_EditionDefault**)upb_Array_MutableDataPtr(arr);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009773 } else {
9774 if (size) *size = 0;
9775 return NULL;
9776 }
9777}
9778UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_resize_edition_defaults(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009779 upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009780 return (google_protobuf_FieldOptions_EditionDefault**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
9781 &field, size, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009782}
9783UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_add_edition_defaults(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009784 upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009785 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009786 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
9787 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009788 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009789 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009790 return NULL;
9791 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009792 struct google_protobuf_FieldOptions_EditionDefault* sub = (struct google_protobuf_FieldOptions_EditionDefault*)_upb_Message_New(&google__protobuf__FieldOptions__EditionDefault_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009793 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009794 UPB_PRIVATE(_upb_Array_Set)
9795 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009796 return sub;
9797}
9798UPB_INLINE void google_protobuf_FieldOptions_set_features(google_protobuf_FieldOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009799 const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009800 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00009801 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009802}
9803UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutable_features(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
9804 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FieldOptions_features(msg);
9805 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009806 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009807 if (sub) google_protobuf_FieldOptions_set_features(msg, sub);
9808 }
9809 return sub;
9810}
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009811UPB_INLINE void google_protobuf_FieldOptions_set_feature_support(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
9812 const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009813 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +00009814 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009815}
9816UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_mutable_feature_support(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
9817 struct google_protobuf_FieldOptions_FeatureSupport* sub = (struct google_protobuf_FieldOptions_FeatureSupport*)google_protobuf_FieldOptions_feature_support(msg);
9818 if (sub == NULL) {
9819 sub = (struct google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
9820 if (sub) google_protobuf_FieldOptions_set_feature_support(msg, sub);
9821 }
9822 return sub;
9823}
Mike Kruskal232ecf42023-01-14 00:09:40 -08009824UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t* size) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009825 upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009826 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009827 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -08009828 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009829 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009830 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -08009831 } else {
9832 if (size) *size = 0;
9833 return NULL;
9834 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009835}
Eric Salob7d54ac2022-12-29 11:59:42 -08009836UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009837 upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009838 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
9839 &field, size, arena);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -07009840}
9841UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009842 upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +00009843 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009844 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
9845 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +00009846 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009847 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -08009848 return NULL;
9849 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009850 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -08009851 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +00009852 UPB_PRIVATE(_upb_Array_Set)
9853 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -08009854 return sub;
9855}
9856
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009857/* google.protobuf.FieldOptions.EditionDefault */
9858
9859UPB_INLINE google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_EditionDefault_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +00009860 return (google_protobuf_FieldOptions_EditionDefault*)_upb_Message_New(&google__protobuf__FieldOptions__EditionDefault_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009861}
9862UPB_INLINE google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_EditionDefault_parse(const char* buf, size_t size, upb_Arena* arena) {
9863 google_protobuf_FieldOptions_EditionDefault* ret = google_protobuf_FieldOptions_EditionDefault_new(arena);
9864 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009865 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__EditionDefault_msg_init, NULL, 0, arena) !=
9866 kUpb_DecodeStatus_Ok) {
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009867 return NULL;
9868 }
9869 return ret;
9870}
9871UPB_INLINE google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_EditionDefault_parse_ex(const char* buf, size_t size,
9872 const upb_ExtensionRegistry* extreg,
9873 int options, upb_Arena* arena) {
9874 google_protobuf_FieldOptions_EditionDefault* ret = google_protobuf_FieldOptions_EditionDefault_new(arena);
9875 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009876 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__EditionDefault_msg_init, extreg, options,
9877 arena) != kUpb_DecodeStatus_Ok) {
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009878 return NULL;
9879 }
9880 return ret;
9881}
9882UPB_INLINE char* google_protobuf_FieldOptions_EditionDefault_serialize(const google_protobuf_FieldOptions_EditionDefault* msg, upb_Arena* arena, size_t* len) {
9883 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009884 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__EditionDefault_msg_init, 0, arena, &ptr, len);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009885 return ptr;
9886}
9887UPB_INLINE char* google_protobuf_FieldOptions_EditionDefault_serialize_ex(const google_protobuf_FieldOptions_EditionDefault* msg, int options,
9888 upb_Arena* arena, size_t* len) {
9889 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009890 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__EditionDefault_msg_init, options, arena, &ptr, len);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009891 return ptr;
9892}
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009893UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_clear_value(google_protobuf_FieldOptions_EditionDefault* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009894 const upb_MiniTableField field = {2, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009895 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009896}
9897UPB_INLINE upb_StringView google_protobuf_FieldOptions_EditionDefault_value(const google_protobuf_FieldOptions_EditionDefault* msg) {
9898 upb_StringView default_val = upb_StringView_FromString("");
9899 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009900 const upb_MiniTableField field = {2, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009901 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9902 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009903 return ret;
9904}
9905UPB_INLINE bool google_protobuf_FieldOptions_EditionDefault_has_value(const google_protobuf_FieldOptions_EditionDefault* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009906 const upb_MiniTableField field = {2, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009907 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00009908}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +00009909UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_clear_edition(google_protobuf_FieldOptions_EditionDefault* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009910 const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +00009911 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00009912}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +00009913UPB_INLINE int32_t google_protobuf_FieldOptions_EditionDefault_edition(const google_protobuf_FieldOptions_EditionDefault* msg) {
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00009914 int32_t default_val = 0;
9915 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009916 const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +00009917 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9918 &default_val, &ret);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00009919 return ret;
9920}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +00009921UPB_INLINE bool google_protobuf_FieldOptions_EditionDefault_has_edition(const google_protobuf_FieldOptions_EditionDefault* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009922 const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +00009923 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009924}
9925
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009926UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_value(google_protobuf_FieldOptions_EditionDefault *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009927 const upb_MiniTableField field = {2, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009928 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +00009929}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +00009930UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_edition(google_protobuf_FieldOptions_EditionDefault *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +00009931 const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +00009932 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -07009933}
9934
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +00009935/* google.protobuf.FieldOptions.FeatureSupport */
9936
9937UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_new(upb_Arena* arena) {
9938 return (google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
9939}
9940UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_parse(const char* buf, size_t size, upb_Arena* arena) {
9941 google_protobuf_FieldOptions_FeatureSupport* ret = google_protobuf_FieldOptions_FeatureSupport_new(arena);
9942 if (!ret) return NULL;
9943 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__FeatureSupport_msg_init, NULL, 0, arena) !=
9944 kUpb_DecodeStatus_Ok) {
9945 return NULL;
9946 }
9947 return ret;
9948}
9949UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_parse_ex(const char* buf, size_t size,
9950 const upb_ExtensionRegistry* extreg,
9951 int options, upb_Arena* arena) {
9952 google_protobuf_FieldOptions_FeatureSupport* ret = google_protobuf_FieldOptions_FeatureSupport_new(arena);
9953 if (!ret) return NULL;
9954 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__FeatureSupport_msg_init, extreg, options,
9955 arena) != kUpb_DecodeStatus_Ok) {
9956 return NULL;
9957 }
9958 return ret;
9959}
9960UPB_INLINE char* google_protobuf_FieldOptions_FeatureSupport_serialize(const google_protobuf_FieldOptions_FeatureSupport* msg, upb_Arena* arena, size_t* len) {
9961 char* ptr;
9962 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__FeatureSupport_msg_init, 0, arena, &ptr, len);
9963 return ptr;
9964}
9965UPB_INLINE char* google_protobuf_FieldOptions_FeatureSupport_serialize_ex(const google_protobuf_FieldOptions_FeatureSupport* msg, int options,
9966 upb_Arena* arena, size_t* len) {
9967 char* ptr;
9968 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__FeatureSupport_msg_init, options, arena, &ptr, len);
9969 return ptr;
9970}
9971UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_introduced(google_protobuf_FieldOptions_FeatureSupport* msg) {
9972 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
9973 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
9974}
9975UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_introduced(const google_protobuf_FieldOptions_FeatureSupport* msg) {
9976 int32_t default_val = 0;
9977 int32_t ret;
9978 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
9979 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9980 &default_val, &ret);
9981 return ret;
9982}
9983UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_introduced(const google_protobuf_FieldOptions_FeatureSupport* msg) {
9984 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
9985 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
9986}
9987UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_deprecated(google_protobuf_FieldOptions_FeatureSupport* msg) {
9988 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
9989 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
9990}
9991UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_deprecated(const google_protobuf_FieldOptions_FeatureSupport* msg) {
9992 int32_t default_val = 0;
9993 int32_t ret;
9994 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
9995 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
9996 &default_val, &ret);
9997 return ret;
9998}
9999UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_deprecated(const google_protobuf_FieldOptions_FeatureSupport* msg) {
10000 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
10001 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
10002}
10003UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_deprecation_warning(google_protobuf_FieldOptions_FeatureSupport* msg) {
10004 const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
10005 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
10006}
10007UPB_INLINE upb_StringView google_protobuf_FieldOptions_FeatureSupport_deprecation_warning(const google_protobuf_FieldOptions_FeatureSupport* msg) {
10008 upb_StringView default_val = upb_StringView_FromString("");
10009 upb_StringView ret;
10010 const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
10011 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10012 &default_val, &ret);
10013 return ret;
10014}
10015UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_deprecation_warning(const google_protobuf_FieldOptions_FeatureSupport* msg) {
10016 const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
10017 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
10018}
10019UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_removed(google_protobuf_FieldOptions_FeatureSupport* msg) {
10020 const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
10021 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
10022}
10023UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_removed(const google_protobuf_FieldOptions_FeatureSupport* msg) {
10024 int32_t default_val = 0;
10025 int32_t ret;
10026 const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
10027 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10028 &default_val, &ret);
10029 return ret;
10030}
10031UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_removed(const google_protobuf_FieldOptions_FeatureSupport* msg) {
10032 const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
10033 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
10034}
10035
10036UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_introduced(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
10037 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010038 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000010039}
10040UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_deprecated(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
10041 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010042 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000010043}
10044UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_deprecation_warning(google_protobuf_FieldOptions_FeatureSupport *msg, upb_StringView value) {
10045 const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010046 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000010047}
10048UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_removed(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
10049 const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010050 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000010051}
10052
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010053/* google.protobuf.OneofOptions */
10054
Joshua Habermanf41049a2022-01-21 14:41:25 -080010055UPB_INLINE google_protobuf_OneofOptions* google_protobuf_OneofOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010056 return (google_protobuf_OneofOptions*)_upb_Message_New(&google__protobuf__OneofOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010057}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010058UPB_INLINE google_protobuf_OneofOptions* google_protobuf_OneofOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
10059 google_protobuf_OneofOptions* ret = google_protobuf_OneofOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070010060 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010061 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofOptions_msg_init, NULL, 0, arena) !=
10062 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070010063 return NULL;
10064 }
10065 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010066}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010067UPB_INLINE google_protobuf_OneofOptions* google_protobuf_OneofOptions_parse_ex(const char* buf, size_t size,
10068 const upb_ExtensionRegistry* extreg,
10069 int options, upb_Arena* arena) {
10070 google_protobuf_OneofOptions* ret = google_protobuf_OneofOptions_new(arena);
10071 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010072 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofOptions_msg_init, extreg, options,
10073 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080010074 return NULL;
10075 }
10076 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010077}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010078UPB_INLINE char* google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010079 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010080 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010081 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010082}
10083UPB_INLINE char* google_protobuf_OneofOptions_serialize_ex(const google_protobuf_OneofOptions* msg, int options,
10084 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010085 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010086 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010087 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010088}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010089UPB_INLINE void google_protobuf_OneofOptions_clear_features(google_protobuf_OneofOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010090 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010091 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010092}
10093UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_OneofOptions_features(const google_protobuf_OneofOptions* msg) {
10094 const google_protobuf_FeatureSet* default_val = NULL;
10095 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010096 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010097 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010098 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10099 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010100 return ret;
10101}
10102UPB_INLINE bool google_protobuf_OneofOptions_has_features(const google_protobuf_OneofOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010103 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010104 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010105}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010106UPB_INLINE void google_protobuf_OneofOptions_clear_uninterpreted_option(google_protobuf_OneofOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010107 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010108 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010109}
Eric Salob7d54ac2022-12-29 11:59:42 -080010110UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010111 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010112 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010113 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010114 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010115 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010116 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010117 } else {
10118 if (size) *size = 0;
10119 return NULL;
10120 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010121}
Deanna Garciab26afb52023-04-25 13:37:18 -070010122UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_upb_array(const google_protobuf_OneofOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010123 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010124 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010125 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070010126 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010127 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010128 }
10129 return arr;
10130}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010131UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable_upb_array(google_protobuf_OneofOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010132 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010133 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010134 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
10135 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070010136 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010137 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010138 }
10139 return arr;
10140}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010141
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010142UPB_INLINE void google_protobuf_OneofOptions_set_features(google_protobuf_OneofOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010143 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010144 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000010145 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010146}
10147UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutable_features(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
10148 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_OneofOptions_features(msg);
10149 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010150 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010151 if (sub) google_protobuf_OneofOptions_set_features(msg, sub);
10152 }
10153 return sub;
10154}
Eric Salob7d54ac2022-12-29 11:59:42 -080010155UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010156 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010157 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010158 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010159 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010160 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010161 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010162 } else {
10163 if (size) *size = 0;
10164 return NULL;
10165 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010166}
Eric Salob7d54ac2022-12-29 11:59:42 -080010167UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010168 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010169 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
10170 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010171}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010172UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010173 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010174 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010175 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
10176 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010177 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010178 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080010179 return NULL;
10180 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010181 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080010182 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010183 UPB_PRIVATE(_upb_Array_Set)
10184 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010185 return sub;
10186}
10187
10188/* google.protobuf.EnumOptions */
10189
Joshua Habermanf41049a2022-01-21 14:41:25 -080010190UPB_INLINE google_protobuf_EnumOptions* google_protobuf_EnumOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010191 return (google_protobuf_EnumOptions*)_upb_Message_New(&google__protobuf__EnumOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010192}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010193UPB_INLINE google_protobuf_EnumOptions* google_protobuf_EnumOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
10194 google_protobuf_EnumOptions* ret = google_protobuf_EnumOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070010195 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010196 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumOptions_msg_init, NULL, 0, arena) !=
10197 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070010198 return NULL;
10199 }
10200 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010201}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010202UPB_INLINE google_protobuf_EnumOptions* google_protobuf_EnumOptions_parse_ex(const char* buf, size_t size,
10203 const upb_ExtensionRegistry* extreg,
10204 int options, upb_Arena* arena) {
10205 google_protobuf_EnumOptions* ret = google_protobuf_EnumOptions_new(arena);
10206 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010207 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumOptions_msg_init, extreg, options,
10208 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080010209 return NULL;
10210 }
10211 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010212}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010213UPB_INLINE char* google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010214 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010215 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010216 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010217}
10218UPB_INLINE char* google_protobuf_EnumOptions_serialize_ex(const google_protobuf_EnumOptions* msg, int options,
10219 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010220 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010221 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010222 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010223}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010224UPB_INLINE void google_protobuf_EnumOptions_clear_allow_alias(google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010225 const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010226 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010227}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010228UPB_INLINE bool google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010229 bool default_val = false;
10230 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010231 const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010232 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10233 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010234 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010235}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010236UPB_INLINE bool google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010237 const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010238 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010239}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010240UPB_INLINE void google_protobuf_EnumOptions_clear_deprecated(google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010241 const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010242 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010243}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010244UPB_INLINE bool google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010245 bool default_val = false;
10246 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010247 const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010248 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10249 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010250 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010251}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010252UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010253 const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010254 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010255}
Mike Kruskal6b87d6f2022-12-14 10:36:53 -080010256UPB_INLINE void google_protobuf_EnumOptions_clear_deprecated_legacy_json_field_conflicts(google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010257 const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010258 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal6b87d6f2022-12-14 10:36:53 -080010259}
10260UPB_INLINE bool google_protobuf_EnumOptions_deprecated_legacy_json_field_conflicts(const google_protobuf_EnumOptions* msg) {
10261 bool default_val = false;
10262 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010263 const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010264 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10265 &default_val, &ret);
Mike Kruskal6b87d6f2022-12-14 10:36:53 -080010266 return ret;
10267}
10268UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated_legacy_json_field_conflicts(const google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010269 const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010270 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal6b87d6f2022-12-14 10:36:53 -080010271}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010272UPB_INLINE void google_protobuf_EnumOptions_clear_features(google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010273 const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010274 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010275}
10276UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumOptions_features(const google_protobuf_EnumOptions* msg) {
10277 const google_protobuf_FeatureSet* default_val = NULL;
10278 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010279 const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010280 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010281 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10282 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010283 return ret;
10284}
10285UPB_INLINE bool google_protobuf_EnumOptions_has_features(const google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010286 const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010287 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010288}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010289UPB_INLINE void google_protobuf_EnumOptions_clear_uninterpreted_option(google_protobuf_EnumOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010290 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010291 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010292}
Eric Salob7d54ac2022-12-29 11:59:42 -080010293UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010294 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010295 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010296 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010297 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010298 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010299 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010300 } else {
10301 if (size) *size = 0;
10302 return NULL;
10303 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010304}
Deanna Garciab26afb52023-04-25 13:37:18 -070010305UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_upb_array(const google_protobuf_EnumOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010306 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010307 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010308 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070010309 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010310 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010311 }
10312 return arr;
10313}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010314UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010315 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010316 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010317 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
10318 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070010319 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010320 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010321 }
10322 return arr;
10323}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010324
10325UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010326 const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010327 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010328}
10329UPB_INLINE void google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010330 const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010331 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010332}
10333UPB_INLINE void google_protobuf_EnumOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_EnumOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010334 const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010335 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010336}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010337UPB_INLINE void google_protobuf_EnumOptions_set_features(google_protobuf_EnumOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010338 const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010339 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000010340 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010341}
10342UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutable_features(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
10343 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_EnumOptions_features(msg);
10344 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010345 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010346 if (sub) google_protobuf_EnumOptions_set_features(msg, sub);
10347 }
10348 return sub;
10349}
Mike Kruskal232ecf42023-01-14 00:09:40 -080010350UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010351 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010352 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010353 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010354 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010355 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010356 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010357 } else {
10358 if (size) *size = 0;
10359 return NULL;
10360 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010361}
Eric Salob7d54ac2022-12-29 11:59:42 -080010362UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010363 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010364 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
10365 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010366}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010367UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010368 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010369 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010370 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
10371 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010372 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010373 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080010374 return NULL;
10375 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010376 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080010377 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010378 UPB_PRIVATE(_upb_Array_Set)
10379 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010380 return sub;
10381}
10382
10383/* google.protobuf.EnumValueOptions */
10384
Joshua Habermanf41049a2022-01-21 14:41:25 -080010385UPB_INLINE google_protobuf_EnumValueOptions* google_protobuf_EnumValueOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010386 return (google_protobuf_EnumValueOptions*)_upb_Message_New(&google__protobuf__EnumValueOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010387}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010388UPB_INLINE google_protobuf_EnumValueOptions* google_protobuf_EnumValueOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
10389 google_protobuf_EnumValueOptions* ret = google_protobuf_EnumValueOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070010390 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010391 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueOptions_msg_init, NULL, 0, arena) !=
10392 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070010393 return NULL;
10394 }
10395 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010396}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010397UPB_INLINE google_protobuf_EnumValueOptions* google_protobuf_EnumValueOptions_parse_ex(const char* buf, size_t size,
10398 const upb_ExtensionRegistry* extreg,
10399 int options, upb_Arena* arena) {
10400 google_protobuf_EnumValueOptions* ret = google_protobuf_EnumValueOptions_new(arena);
10401 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010402 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueOptions_msg_init, extreg, options,
10403 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080010404 return NULL;
10405 }
10406 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010407}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010408UPB_INLINE char* google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010409 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010410 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010411 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010412}
10413UPB_INLINE char* google_protobuf_EnumValueOptions_serialize_ex(const google_protobuf_EnumValueOptions* msg, int options,
10414 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010415 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010416 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010417 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010418}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010419UPB_INLINE void google_protobuf_EnumValueOptions_clear_deprecated(google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010420 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010421 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010422}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010423UPB_INLINE bool google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010424 bool default_val = false;
10425 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010426 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010427 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10428 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010429 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010430}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010431UPB_INLINE bool google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010432 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010433 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010434}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010435UPB_INLINE void google_protobuf_EnumValueOptions_clear_features(google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010436 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010437 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010438}
10439UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_features(const google_protobuf_EnumValueOptions* msg) {
10440 const google_protobuf_FeatureSet* default_val = NULL;
10441 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010442 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010443 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010444 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10445 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010446 return ret;
10447}
10448UPB_INLINE bool google_protobuf_EnumValueOptions_has_features(const google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010449 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010450 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010451}
Mike Kruskal12e0f1d2023-05-31 15:40:54 -070010452UPB_INLINE void google_protobuf_EnumValueOptions_clear_debug_redact(google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010453 const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010454 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal12e0f1d2023-05-31 15:40:54 -070010455}
10456UPB_INLINE bool google_protobuf_EnumValueOptions_debug_redact(const google_protobuf_EnumValueOptions* msg) {
10457 bool default_val = false;
10458 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010459 const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010460 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10461 &default_val, &ret);
Mike Kruskal12e0f1d2023-05-31 15:40:54 -070010462 return ret;
10463}
10464UPB_INLINE bool google_protobuf_EnumValueOptions_has_debug_redact(const google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010465 const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010466 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal12e0f1d2023-05-31 15:40:54 -070010467}
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010468UPB_INLINE void google_protobuf_EnumValueOptions_clear_feature_support(google_protobuf_EnumValueOptions* msg) {
10469 const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
10470 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
10471}
10472UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_feature_support(const google_protobuf_EnumValueOptions* msg) {
10473 const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
10474 const google_protobuf_FieldOptions_FeatureSupport* ret;
10475 const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010476 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010477 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10478 &default_val, &ret);
10479 return ret;
10480}
10481UPB_INLINE bool google_protobuf_EnumValueOptions_has_feature_support(const google_protobuf_EnumValueOptions* msg) {
10482 const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
10483 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
10484}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010485UPB_INLINE void google_protobuf_EnumValueOptions_clear_uninterpreted_option(google_protobuf_EnumValueOptions* msg) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010486 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010487 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010488}
Eric Salob7d54ac2022-12-29 11:59:42 -080010489UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions* msg, size_t* size) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010490 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010491 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010492 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010493 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010494 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010495 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010496 } else {
10497 if (size) *size = 0;
10498 return NULL;
10499 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010500}
Deanna Garciab26afb52023-04-25 13:37:18 -070010501UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_upb_array(const google_protobuf_EnumValueOptions* msg, size_t* size) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010502 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010503 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010504 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070010505 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010506 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010507 }
10508 return arr;
10509}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010510UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumValueOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010511 const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010512 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010513 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
10514 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070010515 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010516 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010517 }
10518 return arr;
10519}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010520
10521UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010522 const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010523 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010524}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010525UPB_INLINE void google_protobuf_EnumValueOptions_set_features(google_protobuf_EnumValueOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010526 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010527 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000010528 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010529}
10530UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_mutable_features(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
10531 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_EnumValueOptions_features(msg);
10532 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010533 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010534 if (sub) google_protobuf_EnumValueOptions_set_features(msg, sub);
10535 }
10536 return sub;
10537}
Mike Kruskal12e0f1d2023-05-31 15:40:54 -070010538UPB_INLINE void google_protobuf_EnumValueOptions_set_debug_redact(google_protobuf_EnumValueOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010539 const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010540 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal12e0f1d2023-05-31 15:40:54 -070010541}
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010542UPB_INLINE void google_protobuf_EnumValueOptions_set_feature_support(google_protobuf_EnumValueOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
10543 const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010544 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010545 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
10546}
10547UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_mutable_feature_support(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
10548 struct google_protobuf_FieldOptions_FeatureSupport* sub = (struct google_protobuf_FieldOptions_FeatureSupport*)google_protobuf_EnumValueOptions_feature_support(msg);
10549 if (sub == NULL) {
10550 sub = (struct google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
10551 if (sub) google_protobuf_EnumValueOptions_set_feature_support(msg, sub);
10552 }
10553 return sub;
10554}
Mike Kruskal232ecf42023-01-14 00:09:40 -080010555UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t* size) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010556 upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010557 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010558 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010559 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010560 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010561 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010562 } else {
10563 if (size) *size = 0;
10564 return NULL;
10565 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010566}
Eric Salob7d54ac2022-12-29 11:59:42 -080010567UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010568 upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010569 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
10570 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010571}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010572UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
Protobuf Team Bot2e9c0a72024-05-21 23:17:21 +000010573 upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010574 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010575 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
10576 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010577 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010578 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080010579 return NULL;
10580 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010581 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080010582 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010583 UPB_PRIVATE(_upb_Array_Set)
10584 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010585 return sub;
10586}
10587
10588/* google.protobuf.ServiceOptions */
10589
Joshua Habermanf41049a2022-01-21 14:41:25 -080010590UPB_INLINE google_protobuf_ServiceOptions* google_protobuf_ServiceOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010591 return (google_protobuf_ServiceOptions*)_upb_Message_New(&google__protobuf__ServiceOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010592}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010593UPB_INLINE google_protobuf_ServiceOptions* google_protobuf_ServiceOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
10594 google_protobuf_ServiceOptions* ret = google_protobuf_ServiceOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070010595 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010596 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceOptions_msg_init, NULL, 0, arena) !=
10597 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070010598 return NULL;
10599 }
10600 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010601}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010602UPB_INLINE google_protobuf_ServiceOptions* google_protobuf_ServiceOptions_parse_ex(const char* buf, size_t size,
10603 const upb_ExtensionRegistry* extreg,
10604 int options, upb_Arena* arena) {
10605 google_protobuf_ServiceOptions* ret = google_protobuf_ServiceOptions_new(arena);
10606 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010607 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceOptions_msg_init, extreg, options,
10608 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080010609 return NULL;
10610 }
10611 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010612}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010613UPB_INLINE char* google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010614 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010615 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010616 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010617}
10618UPB_INLINE char* google_protobuf_ServiceOptions_serialize_ex(const google_protobuf_ServiceOptions* msg, int options,
10619 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010620 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010621 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010622 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010623}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010624UPB_INLINE void google_protobuf_ServiceOptions_clear_deprecated(google_protobuf_ServiceOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010625 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010626 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010627}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010628UPB_INLINE bool google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010629 bool default_val = false;
10630 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010631 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010632 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10633 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010634 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010635}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010636UPB_INLINE bool google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010637 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010638 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010639}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010640UPB_INLINE void google_protobuf_ServiceOptions_clear_features(google_protobuf_ServiceOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010641 const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010642 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010643}
10644UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ServiceOptions_features(const google_protobuf_ServiceOptions* msg) {
10645 const google_protobuf_FeatureSet* default_val = NULL;
10646 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010647 const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010648 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010649 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10650 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010651 return ret;
10652}
10653UPB_INLINE bool google_protobuf_ServiceOptions_has_features(const google_protobuf_ServiceOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010654 const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010655 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010656}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010657UPB_INLINE void google_protobuf_ServiceOptions_clear_uninterpreted_option(google_protobuf_ServiceOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010658 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010659 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010660}
Eric Salob7d54ac2022-12-29 11:59:42 -080010661UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010662 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010663 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010664 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010665 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010666 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010667 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010668 } else {
10669 if (size) *size = 0;
10670 return NULL;
10671 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010672}
Deanna Garciab26afb52023-04-25 13:37:18 -070010673UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_upb_array(const google_protobuf_ServiceOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010674 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010675 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010676 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070010677 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010678 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010679 }
10680 return arr;
10681}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010682UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ServiceOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010683 const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010684 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010685 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
10686 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070010687 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010688 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010689 }
10690 return arr;
10691}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010692
10693UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010694 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010695 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010696}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010697UPB_INLINE void google_protobuf_ServiceOptions_set_features(google_protobuf_ServiceOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010698 const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010699 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000010700 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010701}
10702UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mutable_features(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
10703 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_ServiceOptions_features(msg);
10704 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010705 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010706 if (sub) google_protobuf_ServiceOptions_set_features(msg, sub);
10707 }
10708 return sub;
10709}
Mike Kruskal232ecf42023-01-14 00:09:40 -080010710UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010711 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010712 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010713 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010714 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010715 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010716 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010717 } else {
10718 if (size) *size = 0;
10719 return NULL;
10720 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010721}
Eric Salob7d54ac2022-12-29 11:59:42 -080010722UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010723 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010724 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
10725 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010726}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010727UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010728 upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010729 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010730 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
10731 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010732 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010733 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080010734 return NULL;
10735 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010736 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080010737 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010738 UPB_PRIVATE(_upb_Array_Set)
10739 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010740 return sub;
10741}
10742
10743/* google.protobuf.MethodOptions */
10744
Joshua Habermanf41049a2022-01-21 14:41:25 -080010745UPB_INLINE google_protobuf_MethodOptions* google_protobuf_MethodOptions_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010746 return (google_protobuf_MethodOptions*)_upb_Message_New(&google__protobuf__MethodOptions_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010747}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010748UPB_INLINE google_protobuf_MethodOptions* google_protobuf_MethodOptions_parse(const char* buf, size_t size, upb_Arena* arena) {
10749 google_protobuf_MethodOptions* ret = google_protobuf_MethodOptions_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070010750 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010751 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodOptions_msg_init, NULL, 0, arena) !=
10752 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070010753 return NULL;
10754 }
10755 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010756}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010757UPB_INLINE google_protobuf_MethodOptions* google_protobuf_MethodOptions_parse_ex(const char* buf, size_t size,
10758 const upb_ExtensionRegistry* extreg,
10759 int options, upb_Arena* arena) {
10760 google_protobuf_MethodOptions* ret = google_protobuf_MethodOptions_new(arena);
10761 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010762 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodOptions_msg_init, extreg, options,
10763 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080010764 return NULL;
10765 }
10766 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010767}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010768UPB_INLINE char* google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010769 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010770 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodOptions_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010771 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010772}
10773UPB_INLINE char* google_protobuf_MethodOptions_serialize_ex(const google_protobuf_MethodOptions* msg, int options,
10774 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010775 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010776 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodOptions_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010777 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010778}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010779UPB_INLINE void google_protobuf_MethodOptions_clear_deprecated(google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010780 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010781 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010782}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010783UPB_INLINE bool google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010784 bool default_val = false;
10785 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010786 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010787 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10788 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010789 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010790}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010791UPB_INLINE bool google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010792 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010793 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010794}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010795UPB_INLINE void google_protobuf_MethodOptions_clear_idempotency_level(google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010796 const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010797 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010798}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010799UPB_INLINE int32_t google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010800 int32_t default_val = 0;
10801 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010802 const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010803 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10804 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010805 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010806}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010807UPB_INLINE bool google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010808 const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010809 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010810}
10811UPB_INLINE void google_protobuf_MethodOptions_clear_features(google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010812 const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010813 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010814}
10815UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MethodOptions_features(const google_protobuf_MethodOptions* msg) {
10816 const google_protobuf_FeatureSet* default_val = NULL;
10817 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010818 const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010819 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010820 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10821 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010822 return ret;
10823}
10824UPB_INLINE bool google_protobuf_MethodOptions_has_features(const google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010825 const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000010826 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010827}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010828UPB_INLINE void google_protobuf_MethodOptions_clear_uninterpreted_option(google_protobuf_MethodOptions* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010829 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010830 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010831}
Eric Salob7d54ac2022-12-29 11:59:42 -080010832UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010833 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010834 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010835 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010836 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010837 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010838 return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010839 } else {
10840 if (size) *size = 0;
10841 return NULL;
10842 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010843}
Deanna Garciab26afb52023-04-25 13:37:18 -070010844UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_upb_array(const google_protobuf_MethodOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010845 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010846 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010847 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070010848 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010849 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010850 }
10851 return arr;
10852}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010853UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MethodOptions* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010854 const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010855 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010856 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
10857 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070010858 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010859 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010860 }
10861 return arr;
10862}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010863
10864UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010865 const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010866 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010867}
10868UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010869 const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000010870 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080010871}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010872UPB_INLINE void google_protobuf_MethodOptions_set_features(google_protobuf_MethodOptions *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010873 const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010874 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000010875 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010876}
10877UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_mutable_features(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
10878 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_MethodOptions_features(msg);
10879 if (sub == NULL) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010880 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070010881 if (sub) google_protobuf_MethodOptions_set_features(msg, sub);
10882 }
10883 return sub;
10884}
Mike Kruskal232ecf42023-01-14 00:09:40 -080010885UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010886 upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010887 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010888 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010889 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010890 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010891 return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010892 } else {
10893 if (size) *size = 0;
10894 return NULL;
10895 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010896}
Eric Salob7d54ac2022-12-29 11:59:42 -080010897UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010898 upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010899 return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
10900 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010901}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010902UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010903 upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010904 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010905 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
10906 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010907 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010908 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080010909 return NULL;
10910 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010911 struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080010912 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010913 UPB_PRIVATE(_upb_Array_Set)
10914 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010915 return sub;
10916}
10917
10918/* google.protobuf.UninterpretedOption */
10919
Joshua Habermanf41049a2022-01-21 14:41:25 -080010920UPB_INLINE google_protobuf_UninterpretedOption* google_protobuf_UninterpretedOption_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000010921 return (google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010922}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010923UPB_INLINE google_protobuf_UninterpretedOption* google_protobuf_UninterpretedOption_parse(const char* buf, size_t size, upb_Arena* arena) {
10924 google_protobuf_UninterpretedOption* ret = google_protobuf_UninterpretedOption_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070010925 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010926 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption_msg_init, NULL, 0, arena) !=
10927 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070010928 return NULL;
10929 }
10930 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010931}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010932UPB_INLINE google_protobuf_UninterpretedOption* google_protobuf_UninterpretedOption_parse_ex(const char* buf, size_t size,
10933 const upb_ExtensionRegistry* extreg,
10934 int options, upb_Arena* arena) {
10935 google_protobuf_UninterpretedOption* ret = google_protobuf_UninterpretedOption_new(arena);
10936 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010937 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption_msg_init, extreg, options,
10938 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080010939 return NULL;
10940 }
10941 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080010942}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010943UPB_INLINE char* google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010944 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010945 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010946 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010947}
10948UPB_INLINE char* google_protobuf_UninterpretedOption_serialize_ex(const google_protobuf_UninterpretedOption* msg, int options,
10949 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070010950 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010951 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010952 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080010953}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010954UPB_INLINE void google_protobuf_UninterpretedOption_clear_name(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010955 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010956 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010957}
Eric Salob7d54ac2022-12-29 11:59:42 -080010958UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010959 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010960 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010961 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080010962 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010963 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000010964 return (const google_protobuf_UninterpretedOption_NamePart* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080010965 } else {
10966 if (size) *size = 0;
10967 return NULL;
10968 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070010969}
Deanna Garciab26afb52023-04-25 13:37:18 -070010970UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(const google_protobuf_UninterpretedOption* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010971 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010972 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010973 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070010974 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010975 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010976 }
10977 return arr;
10978}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010979UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_array(google_protobuf_UninterpretedOption* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010980 const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000010981 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010982 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
10983 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070010984 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000010985 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070010986 }
10987 return arr;
10988}
Mike Kruskal3bc50492022-12-01 13:34:12 -080010989UPB_INLINE void google_protobuf_UninterpretedOption_clear_identifier_value(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010990 const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000010991 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070010992}
Joshua Habermanf41049a2022-01-21 14:41:25 -080010993UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080010994 upb_StringView default_val = upb_StringView_FromString("");
10995 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000010996 const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000010997 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
10998 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080010999 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011000}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011001UPB_INLINE bool google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011002 const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011003 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011004}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011005UPB_INLINE void google_protobuf_UninterpretedOption_clear_positive_int_value(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011006 const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011007 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011008}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011009UPB_INLINE uint64_t google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011010 uint64_t default_val = (uint64_t)0ull;
11011 uint64_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011012 const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011013 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11014 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011015 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011016}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011017UPB_INLINE bool google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011018 const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011019 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011020}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011021UPB_INLINE void google_protobuf_UninterpretedOption_clear_negative_int_value(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011022 const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011023 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011024}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011025UPB_INLINE int64_t google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011026 int64_t default_val = (int64_t)0ll;
11027 int64_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011028 const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011029 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11030 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011031 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011032}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011033UPB_INLINE bool google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011034 const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011035 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011036}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011037UPB_INLINE void google_protobuf_UninterpretedOption_clear_double_value(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011038 const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011039 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011040}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011041UPB_INLINE double google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011042 double default_val = 0;
11043 double ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011044 const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011045 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11046 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011047 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011048}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011049UPB_INLINE bool google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011050 const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011051 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011052}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011053UPB_INLINE void google_protobuf_UninterpretedOption_clear_string_value(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011054 const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011055 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011056}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011057UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011058 upb_StringView default_val = upb_StringView_FromString("");
11059 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011060 const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011061 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11062 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011063 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011064}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011065UPB_INLINE bool google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011066 const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011067 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011068}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011069UPB_INLINE void google_protobuf_UninterpretedOption_clear_aggregate_value(google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011070 const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011071 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011072}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011073UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011074 upb_StringView default_val = upb_StringView_FromString("");
11075 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011076 const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011077 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11078 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011079 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011080}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011081UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011082 const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011083 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -080011084}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011085
Eric Salob7d54ac2022-12-29 11:59:42 -080011086UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011087 upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011088 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011089 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011090 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011091 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011092 return (google_protobuf_UninterpretedOption_NamePart**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011093 } else {
11094 if (size) *size = 0;
11095 return NULL;
11096 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011097}
Eric Salob7d54ac2022-12-29 11:59:42 -080011098UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011099 upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011100 return (google_protobuf_UninterpretedOption_NamePart**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
11101 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011102}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011103UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011104 upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011105 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011106 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
11107 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011108 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011109 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080011110 return NULL;
11111 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011112 struct google_protobuf_UninterpretedOption_NamePart* sub = (struct google_protobuf_UninterpretedOption_NamePart*)_upb_Message_New(&google__protobuf__UninterpretedOption__NamePart_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080011113 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011114 UPB_PRIVATE(_upb_Array_Set)
11115 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011116 return sub;
11117}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011118UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011119 const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011120 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011121}
11122UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011123 const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011124 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011125}
11126UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011127 const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011128 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011129}
11130UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011131 const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011132 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011133}
11134UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011135 const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011136 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011137}
11138UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011139 const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011140 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011141}
Mike Kruskal232ecf42023-01-14 00:09:40 -080011142
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011143/* google.protobuf.UninterpretedOption.NamePart */
11144
Joshua Habermanf41049a2022-01-21 14:41:25 -080011145UPB_INLINE google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_NamePart_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011146 return (google_protobuf_UninterpretedOption_NamePart*)_upb_Message_New(&google__protobuf__UninterpretedOption__NamePart_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011147}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011148UPB_INLINE google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_NamePart_parse(const char* buf, size_t size, upb_Arena* arena) {
11149 google_protobuf_UninterpretedOption_NamePart* ret = google_protobuf_UninterpretedOption_NamePart_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070011150 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011151 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption__NamePart_msg_init, NULL, 0, arena) !=
11152 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070011153 return NULL;
11154 }
11155 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011156}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011157UPB_INLINE google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_NamePart_parse_ex(const char* buf, size_t size,
11158 const upb_ExtensionRegistry* extreg,
11159 int options, upb_Arena* arena) {
11160 google_protobuf_UninterpretedOption_NamePart* ret = google_protobuf_UninterpretedOption_NamePart_new(arena);
11161 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011162 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption__NamePart_msg_init, extreg, options,
11163 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080011164 return NULL;
11165 }
11166 return ret;
11167}
11168UPB_INLINE char* google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070011169 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011170 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption__NamePart_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011171 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011172}
11173UPB_INLINE char* google_protobuf_UninterpretedOption_NamePart_serialize_ex(const google_protobuf_UninterpretedOption_NamePart* msg, int options,
11174 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070011175 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011176 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption__NamePart_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011177 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011178}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011179UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_clear_name_part(google_protobuf_UninterpretedOption_NamePart* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011180 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011181 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011182}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011183UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011184 upb_StringView default_val = upb_StringView_FromString("");
11185 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011186 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011187 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11188 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011189 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011190}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011191UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011192 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011193 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011194}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011195UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_clear_is_extension(google_protobuf_UninterpretedOption_NamePart* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011196 const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011197 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011198}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011199UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011200 bool default_val = false;
11201 bool ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011202 const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011203 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11204 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011205 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011206}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011207UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011208 const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011209 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -080011210}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011211
Joshua Habermanf41049a2022-01-21 14:41:25 -080011212UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011213 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011214 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011215}
11216UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011217 const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011218 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011219}
Mike Kruskal232ecf42023-01-14 00:09:40 -080011220
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011221/* google.protobuf.FeatureSet */
11222
11223UPB_INLINE google_protobuf_FeatureSet* google_protobuf_FeatureSet_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011224 return (google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011225}
11226UPB_INLINE google_protobuf_FeatureSet* google_protobuf_FeatureSet_parse(const char* buf, size_t size, upb_Arena* arena) {
11227 google_protobuf_FeatureSet* ret = google_protobuf_FeatureSet_new(arena);
11228 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011229 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSet_msg_init, NULL, 0, arena) !=
11230 kUpb_DecodeStatus_Ok) {
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011231 return NULL;
11232 }
11233 return ret;
11234}
11235UPB_INLINE google_protobuf_FeatureSet* google_protobuf_FeatureSet_parse_ex(const char* buf, size_t size,
11236 const upb_ExtensionRegistry* extreg,
11237 int options, upb_Arena* arena) {
11238 google_protobuf_FeatureSet* ret = google_protobuf_FeatureSet_new(arena);
11239 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011240 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSet_msg_init, extreg, options,
11241 arena) != kUpb_DecodeStatus_Ok) {
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011242 return NULL;
11243 }
11244 return ret;
11245}
11246UPB_INLINE char* google_protobuf_FeatureSet_serialize(const google_protobuf_FeatureSet* msg, upb_Arena* arena, size_t* len) {
11247 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011248 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSet_msg_init, 0, arena, &ptr, len);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011249 return ptr;
11250}
11251UPB_INLINE char* google_protobuf_FeatureSet_serialize_ex(const google_protobuf_FeatureSet* msg, int options,
11252 upb_Arena* arena, size_t* len) {
11253 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011254 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSet_msg_init, options, arena, &ptr, len);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011255 return ptr;
11256}
11257UPB_INLINE void google_protobuf_FeatureSet_clear_field_presence(google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011258 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011259 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011260}
11261UPB_INLINE int32_t google_protobuf_FeatureSet_field_presence(const google_protobuf_FeatureSet* msg) {
11262 int32_t default_val = 0;
11263 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011264 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011265 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11266 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011267 return ret;
11268}
11269UPB_INLINE bool google_protobuf_FeatureSet_has_field_presence(const google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011270 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011271 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011272}
11273UPB_INLINE void google_protobuf_FeatureSet_clear_enum_type(google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011274 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011275 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011276}
11277UPB_INLINE int32_t google_protobuf_FeatureSet_enum_type(const google_protobuf_FeatureSet* msg) {
11278 int32_t default_val = 0;
11279 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011280 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011281 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11282 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011283 return ret;
11284}
11285UPB_INLINE bool google_protobuf_FeatureSet_has_enum_type(const google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011286 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011287 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011288}
11289UPB_INLINE void google_protobuf_FeatureSet_clear_repeated_field_encoding(google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011290 const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011291 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011292}
11293UPB_INLINE int32_t google_protobuf_FeatureSet_repeated_field_encoding(const google_protobuf_FeatureSet* msg) {
11294 int32_t default_val = 0;
11295 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011296 const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011297 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11298 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011299 return ret;
11300}
11301UPB_INLINE bool google_protobuf_FeatureSet_has_repeated_field_encoding(const google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011302 const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011303 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011304}
Protobuf Team Bot61127952023-09-26 20:07:33 +000011305UPB_INLINE void google_protobuf_FeatureSet_clear_utf8_validation(google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011306 const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011307 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot61127952023-09-26 20:07:33 +000011308}
11309UPB_INLINE int32_t google_protobuf_FeatureSet_utf8_validation(const google_protobuf_FeatureSet* msg) {
11310 int32_t default_val = 0;
11311 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011312 const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011313 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11314 &default_val, &ret);
Protobuf Team Bot61127952023-09-26 20:07:33 +000011315 return ret;
11316}
11317UPB_INLINE bool google_protobuf_FeatureSet_has_utf8_validation(const google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011318 const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011319 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Bot61127952023-09-26 20:07:33 +000011320}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011321UPB_INLINE void google_protobuf_FeatureSet_clear_message_encoding(google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011322 const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011323 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011324}
11325UPB_INLINE int32_t google_protobuf_FeatureSet_message_encoding(const google_protobuf_FeatureSet* msg) {
11326 int32_t default_val = 0;
11327 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011328 const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011329 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11330 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011331 return ret;
11332}
11333UPB_INLINE bool google_protobuf_FeatureSet_has_message_encoding(const google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011334 const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011335 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011336}
11337UPB_INLINE void google_protobuf_FeatureSet_clear_json_format(google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011338 const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011339 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011340}
11341UPB_INLINE int32_t google_protobuf_FeatureSet_json_format(const google_protobuf_FeatureSet* msg) {
11342 int32_t default_val = 0;
11343 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011344 const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011345 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11346 &default_val, &ret);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011347 return ret;
11348}
11349UPB_INLINE bool google_protobuf_FeatureSet_has_json_format(const google_protobuf_FeatureSet* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011350 const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011351 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011352}
11353
11354UPB_INLINE void google_protobuf_FeatureSet_set_field_presence(google_protobuf_FeatureSet *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011355 const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011356 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011357}
11358UPB_INLINE void google_protobuf_FeatureSet_set_enum_type(google_protobuf_FeatureSet *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011359 const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011360 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011361}
11362UPB_INLINE void google_protobuf_FeatureSet_set_repeated_field_encoding(google_protobuf_FeatureSet *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011363 const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011364 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011365}
Protobuf Team Bot61127952023-09-26 20:07:33 +000011366UPB_INLINE void google_protobuf_FeatureSet_set_utf8_validation(google_protobuf_FeatureSet *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011367 const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011368 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot61127952023-09-26 20:07:33 +000011369}
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011370UPB_INLINE void google_protobuf_FeatureSet_set_message_encoding(google_protobuf_FeatureSet *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011371 const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011372 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011373}
11374UPB_INLINE void google_protobuf_FeatureSet_set_json_format(google_protobuf_FeatureSet *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011375 const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011376 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal4f9e4172023-06-30 20:14:50 -070011377}
11378
Mike Kruskalba964702023-08-22 17:37:48 -070011379/* google.protobuf.FeatureSetDefaults */
11380
11381UPB_INLINE google_protobuf_FeatureSetDefaults* google_protobuf_FeatureSetDefaults_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011382 return (google_protobuf_FeatureSetDefaults*)_upb_Message_New(&google__protobuf__FeatureSetDefaults_msg_init, arena);
Mike Kruskalba964702023-08-22 17:37:48 -070011383}
11384UPB_INLINE google_protobuf_FeatureSetDefaults* google_protobuf_FeatureSetDefaults_parse(const char* buf, size_t size, upb_Arena* arena) {
11385 google_protobuf_FeatureSetDefaults* ret = google_protobuf_FeatureSetDefaults_new(arena);
11386 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011387 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults_msg_init, NULL, 0, arena) !=
11388 kUpb_DecodeStatus_Ok) {
Mike Kruskalba964702023-08-22 17:37:48 -070011389 return NULL;
11390 }
11391 return ret;
11392}
11393UPB_INLINE google_protobuf_FeatureSetDefaults* google_protobuf_FeatureSetDefaults_parse_ex(const char* buf, size_t size,
11394 const upb_ExtensionRegistry* extreg,
11395 int options, upb_Arena* arena) {
11396 google_protobuf_FeatureSetDefaults* ret = google_protobuf_FeatureSetDefaults_new(arena);
11397 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011398 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults_msg_init, extreg, options,
11399 arena) != kUpb_DecodeStatus_Ok) {
Mike Kruskalba964702023-08-22 17:37:48 -070011400 return NULL;
11401 }
11402 return ret;
11403}
11404UPB_INLINE char* google_protobuf_FeatureSetDefaults_serialize(const google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena, size_t* len) {
11405 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011406 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults_msg_init, 0, arena, &ptr, len);
Mike Kruskalba964702023-08-22 17:37:48 -070011407 return ptr;
11408}
11409UPB_INLINE char* google_protobuf_FeatureSetDefaults_serialize_ex(const google_protobuf_FeatureSetDefaults* msg, int options,
11410 upb_Arena* arena, size_t* len) {
11411 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011412 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults_msg_init, options, arena, &ptr, len);
Mike Kruskalba964702023-08-22 17:37:48 -070011413 return ptr;
11414}
11415UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_defaults(google_protobuf_FeatureSetDefaults* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011416 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011417 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011418}
11419UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const* google_protobuf_FeatureSetDefaults_defaults(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011420 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011421 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011422 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011423 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011424 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011425 return (const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const*)upb_Array_DataPtr(arr);
Mike Kruskalba964702023-08-22 17:37:48 -070011426 } else {
11427 if (size) *size = 0;
11428 return NULL;
11429 }
11430}
11431UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_array(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011432 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011433 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011434 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011435 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011436 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Mike Kruskalba964702023-08-22 17:37:48 -070011437 }
11438 return arr;
11439}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011440UPB_INLINE upb_Array* _google_protobuf_FeatureSetDefaults_defaults_mutable_upb_array(google_protobuf_FeatureSetDefaults* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011441 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011442 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011443 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
11444 &field, arena);
Mike Kruskalba964702023-08-22 17:37:48 -070011445 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011446 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Mike Kruskalba964702023-08-22 17:37:48 -070011447 }
11448 return arr;
11449}
Mike Kruskalba964702023-08-22 17:37:48 -070011450UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_minimum_edition(google_protobuf_FeatureSetDefaults* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011451 const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 64, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011452 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011453}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011454UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_minimum_edition(const google_protobuf_FeatureSetDefaults* msg) {
11455 int32_t default_val = 0;
11456 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011457 const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 64, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011458 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11459 &default_val, &ret);
Mike Kruskalba964702023-08-22 17:37:48 -070011460 return ret;
11461}
11462UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_minimum_edition(const google_protobuf_FeatureSetDefaults* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011463 const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 64, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011464 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011465}
11466UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_maximum_edition(google_protobuf_FeatureSetDefaults* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011467 const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011468 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011469}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011470UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_maximum_edition(const google_protobuf_FeatureSetDefaults* msg) {
11471 int32_t default_val = 0;
11472 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011473 const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011474 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11475 &default_val, &ret);
Mike Kruskalba964702023-08-22 17:37:48 -070011476 return ret;
11477}
11478UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_maximum_edition(const google_protobuf_FeatureSetDefaults* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011479 const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011480 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011481}
11482
11483UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_mutable_defaults(google_protobuf_FeatureSetDefaults* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011484 upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011485 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011486 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Mike Kruskalba964702023-08-22 17:37:48 -070011487 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011488 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011489 return (google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault**)upb_Array_MutableDataPtr(arr);
Mike Kruskalba964702023-08-22 17:37:48 -070011490 } else {
11491 if (size) *size = 0;
11492 return NULL;
11493 }
11494}
11495UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_resize_defaults(google_protobuf_FeatureSetDefaults* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011496 upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011497 return (google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
11498 &field, size, arena);
Mike Kruskalba964702023-08-22 17:37:48 -070011499}
11500UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_add_defaults(google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011501 upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011502 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011503 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
11504 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011505 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011506 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Mike Kruskalba964702023-08-22 17:37:48 -070011507 return NULL;
11508 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011509 struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* sub = (struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault*)_upb_Message_New(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, arena);
Mike Kruskalba964702023-08-22 17:37:48 -070011510 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011511 UPB_PRIVATE(_upb_Array_Set)
11512 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Mike Kruskalba964702023-08-22 17:37:48 -070011513 return sub;
11514}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011515UPB_INLINE void google_protobuf_FeatureSetDefaults_set_minimum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011516 const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 64, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011517 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskalba964702023-08-22 17:37:48 -070011518}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011519UPB_INLINE void google_protobuf_FeatureSetDefaults_set_maximum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011520 const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011521 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskalba964702023-08-22 17:37:48 -070011522}
11523
11524/* google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault */
11525
11526UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011527 return (google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault*)_upb_Message_New(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, arena);
Mike Kruskalba964702023-08-22 17:37:48 -070011528}
11529UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_parse(const char* buf, size_t size, upb_Arena* arena) {
11530 google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* ret = google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_new(arena);
11531 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011532 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, NULL, 0, arena) !=
11533 kUpb_DecodeStatus_Ok) {
Mike Kruskalba964702023-08-22 17:37:48 -070011534 return NULL;
11535 }
11536 return ret;
11537}
11538UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_parse_ex(const char* buf, size_t size,
11539 const upb_ExtensionRegistry* extreg,
11540 int options, upb_Arena* arena) {
11541 google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* ret = google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_new(arena);
11542 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011543 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, extreg, options,
11544 arena) != kUpb_DecodeStatus_Ok) {
Mike Kruskalba964702023-08-22 17:37:48 -070011545 return NULL;
11546 }
11547 return ret;
11548}
11549UPB_INLINE char* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_serialize(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena, size_t* len) {
11550 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011551 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, 0, arena, &ptr, len);
Mike Kruskalba964702023-08-22 17:37:48 -070011552 return ptr;
11553}
11554UPB_INLINE char* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_serialize_ex(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, int options,
11555 upb_Arena* arena, size_t* len) {
11556 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011557 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, options, arena, &ptr, len);
Mike Kruskalba964702023-08-22 17:37:48 -070011558 return ptr;
11559}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011560UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011561 const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011562 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +000011563}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011564UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Botfa98bb32023-09-01 18:11:09 +000011565 int32_t default_val = 0;
11566 int32_t ret;
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011567 const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011568 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11569 &default_val, &ret);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +000011570 return ret;
11571}
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011572UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011573 const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011574 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
11575}
11576UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011577 const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011578 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
11579}
11580UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
11581 const google_protobuf_FeatureSet* default_val = NULL;
11582 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011583 const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011584 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011585 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11586 &default_val, &ret);
11587 return ret;
11588}
11589UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011590 const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011591 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
11592}
11593UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011594 const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011595 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
11596}
11597UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
11598 const google_protobuf_FeatureSet* default_val = NULL;
11599 const google_protobuf_FeatureSet* ret;
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011600 const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011601 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011602 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11603 &default_val, &ret);
11604 return ret;
11605}
11606UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011607 const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011608 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +000011609}
Mike Kruskalba964702023-08-22 17:37:48 -070011610
Protobuf Team Botab58f8f2023-09-26 16:14:19 +000011611UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, int32_t value) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011612 const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011613 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Botfa98bb32023-09-01 18:11:09 +000011614}
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011615UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011616 const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011617 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000011618 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011619}
11620UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
11621 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_overridable_features(msg);
11622 if (sub == NULL) {
11623 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
11624 if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(msg, sub);
11625 }
11626 return sub;
11627}
11628UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
Protobuf Team Bot6afdd5a2024-04-17 22:09:39 +000011629 const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011630 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
Protobuf Team Botac32c972024-04-10 03:30:05 +000011631 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Protobuf Team Bot85edb7e2024-04-03 02:43:54 +000011632}
11633UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
11634 struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_fixed_features(msg);
11635 if (sub == NULL) {
11636 sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
11637 if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(msg, sub);
11638 }
11639 return sub;
11640}
Mike Kruskalba964702023-08-22 17:37:48 -070011641
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011642/* google.protobuf.SourceCodeInfo */
11643
Joshua Habermanf41049a2022-01-21 14:41:25 -080011644UPB_INLINE google_protobuf_SourceCodeInfo* google_protobuf_SourceCodeInfo_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011645 return (google_protobuf_SourceCodeInfo*)_upb_Message_New(&google__protobuf__SourceCodeInfo_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011646}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011647UPB_INLINE google_protobuf_SourceCodeInfo* google_protobuf_SourceCodeInfo_parse(const char* buf, size_t size, upb_Arena* arena) {
11648 google_protobuf_SourceCodeInfo* ret = google_protobuf_SourceCodeInfo_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070011649 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011650 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo_msg_init, NULL, 0, arena) !=
11651 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070011652 return NULL;
11653 }
11654 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011655}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011656UPB_INLINE google_protobuf_SourceCodeInfo* google_protobuf_SourceCodeInfo_parse_ex(const char* buf, size_t size,
11657 const upb_ExtensionRegistry* extreg,
11658 int options, upb_Arena* arena) {
11659 google_protobuf_SourceCodeInfo* ret = google_protobuf_SourceCodeInfo_new(arena);
11660 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011661 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo_msg_init, extreg, options,
11662 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080011663 return NULL;
11664 }
11665 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011666}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011667UPB_INLINE char* google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070011668 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011669 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011670 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011671}
11672UPB_INLINE char* google_protobuf_SourceCodeInfo_serialize_ex(const google_protobuf_SourceCodeInfo* msg, int options,
11673 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070011674 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011675 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011676 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011677}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011678UPB_INLINE void google_protobuf_SourceCodeInfo_clear_location(google_protobuf_SourceCodeInfo* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011679 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011680 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011681}
Eric Salob7d54ac2022-12-29 11:59:42 -080011682UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011683 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011684 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011685 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011686 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011687 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011688 return (const google_protobuf_SourceCodeInfo_Location* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011689 } else {
11690 if (size) *size = 0;
11691 return NULL;
11692 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011693}
Deanna Garciab26afb52023-04-25 13:37:18 -070011694UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011695 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011696 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011697 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070011698 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011699 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011700 }
11701 return arr;
11702}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011703UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array(google_protobuf_SourceCodeInfo* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011704 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011705 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011706 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
11707 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070011708 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011709 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011710 }
11711 return arr;
11712}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011713
Eric Salob7d54ac2022-12-29 11:59:42 -080011714UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011715 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011716 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011717 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011718 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011719 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011720 return (google_protobuf_SourceCodeInfo_Location**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011721 } else {
11722 if (size) *size = 0;
11723 return NULL;
11724 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011725}
Eric Salob7d54ac2022-12-29 11:59:42 -080011726UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011727 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011728 return (google_protobuf_SourceCodeInfo_Location**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
11729 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011730}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011731UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011732 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000011733 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011734 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
11735 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011736 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011737 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080011738 return NULL;
11739 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011740 struct google_protobuf_SourceCodeInfo_Location* sub = (struct google_protobuf_SourceCodeInfo_Location*)_upb_Message_New(&google__protobuf__SourceCodeInfo__Location_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080011741 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011742 UPB_PRIVATE(_upb_Array_Set)
11743 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011744 return sub;
11745}
11746
11747/* google.protobuf.SourceCodeInfo.Location */
11748
Joshua Habermanf41049a2022-01-21 14:41:25 -080011749UPB_INLINE google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_Location_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000011750 return (google_protobuf_SourceCodeInfo_Location*)_upb_Message_New(&google__protobuf__SourceCodeInfo__Location_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011751}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011752UPB_INLINE google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_Location_parse(const char* buf, size_t size, upb_Arena* arena) {
11753 google_protobuf_SourceCodeInfo_Location* ret = google_protobuf_SourceCodeInfo_Location_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070011754 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011755 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo__Location_msg_init, NULL, 0, arena) !=
11756 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070011757 return NULL;
11758 }
11759 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011760}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011761UPB_INLINE google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_Location_parse_ex(const char* buf, size_t size,
11762 const upb_ExtensionRegistry* extreg,
11763 int options, upb_Arena* arena) {
11764 google_protobuf_SourceCodeInfo_Location* ret = google_protobuf_SourceCodeInfo_Location_new(arena);
11765 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011766 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo__Location_msg_init, extreg, options,
11767 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080011768 return NULL;
11769 }
11770 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011771}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011772UPB_INLINE char* google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070011773 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011774 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo__Location_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011775 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011776}
11777UPB_INLINE char* google_protobuf_SourceCodeInfo_Location_serialize_ex(const google_protobuf_SourceCodeInfo_Location* msg, int options,
11778 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070011779 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011780 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo__Location_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011781 return ptr;
11782}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011783UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_path(google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011784 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011785 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermanf41049a2022-01-21 14:41:25 -080011786}
Eric Salob7d54ac2022-12-29 11:59:42 -080011787UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011788 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011789 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011790 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011791 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011792 return (int32_t const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011793 } else {
11794 if (size) *size = 0;
11795 return NULL;
11796 }
Joshua Habermand3995ec2022-09-30 16:54:39 -070011797}
Deanna Garciab26afb52023-04-25 13:37:18 -070011798UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_path_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011799 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011800 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070011801 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011802 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011803 }
11804 return arr;
11805}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011806UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_path_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011807 const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011808 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
11809 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070011810 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011811 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011812 }
11813 return arr;
11814}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011815UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_span(google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011816 const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011817 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011818}
Eric Salob7d54ac2022-12-29 11:59:42 -080011819UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011820 const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011821 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011822 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011823 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011824 return (int32_t const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011825 } else {
11826 if (size) *size = 0;
11827 return NULL;
11828 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011829}
Deanna Garciab26afb52023-04-25 13:37:18 -070011830UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_span_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011831 const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011832 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070011833 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011834 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011835 }
11836 return arr;
11837}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011838UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_span_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011839 const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011840 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
11841 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070011842 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011843 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011844 }
11845 return arr;
11846}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011847UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_leading_comments(google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011848 const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011849 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011850}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011851UPB_INLINE upb_StringView google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011852 upb_StringView default_val = upb_StringView_FromString("");
11853 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011854 const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011855 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11856 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011857 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080011858}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011859UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011860 const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011861 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011862}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011863UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_trailing_comments(google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011864 const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011865 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070011866}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011867UPB_INLINE upb_StringView google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080011868 upb_StringView default_val = upb_StringView_FromString("");
11869 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011870 const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011871 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
11872 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080011873 return ret;
Joshua Habermand3995ec2022-09-30 16:54:39 -070011874}
Mike Kruskal3bc50492022-12-01 13:34:12 -080011875UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011876 const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000011877 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -080011878}
11879UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011880 const upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000011881 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermanf41049a2022-01-21 14:41:25 -080011882}
Eric Salob7d54ac2022-12-29 11:59:42 -080011883UPB_INLINE upb_StringView const* google_protobuf_SourceCodeInfo_Location_leading_detached_comments(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011884 const upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011885 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011886 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011887 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011888 return (upb_StringView const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011889 } else {
11890 if (size) *size = 0;
11891 return NULL;
11892 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011893}
Deanna Garciab26afb52023-04-25 13:37:18 -070011894UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_leading_detached_comments_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011895 const upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011896 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070011897 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011898 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011899 }
11900 return arr;
11901}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011902UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_leading_detached_comments_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011903 const upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011904 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
11905 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070011906 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011907 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070011908 }
11909 return arr;
11910}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011911
Eric Salob7d54ac2022-12-29 11:59:42 -080011912UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011913 upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011914 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011915 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011916 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011917 return (int32_t*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011918 } else {
11919 if (size) *size = 0;
11920 return NULL;
11921 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011922}
Eric Salob7d54ac2022-12-29 11:59:42 -080011923UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011924 upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011925 return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
11926 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011927}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011928UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location* msg, int32_t val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011929 upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011930 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
11931 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011932 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011933 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080011934 return false;
11935 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011936 UPB_PRIVATE(_upb_Array_Set)
11937 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -080011938 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011939}
Eric Salob7d54ac2022-12-29 11:59:42 -080011940UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011941 upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011942 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011943 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011944 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011945 return (int32_t*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011946 } else {
11947 if (size) *size = 0;
11948 return NULL;
11949 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011950}
Eric Salob7d54ac2022-12-29 11:59:42 -080011951UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011952 upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011953 return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
11954 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011955}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011956UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location* msg, int32_t val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011957 upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011958 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
11959 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011960 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011961 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080011962 return false;
11963 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011964 UPB_PRIVATE(_upb_Array_Set)
11965 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -080011966 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011967}
Joshua Habermanf41049a2022-01-21 14:41:25 -080011968UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011969 const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011970 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011971}
11972UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011973 const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000011974 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080011975}
11976UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011977 upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011978 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080011979 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011980 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011981 return (upb_StringView*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080011982 } else {
11983 if (size) *size = 0;
11984 return NULL;
11985 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011986}
Eric Salob7d54ac2022-12-29 11:59:42 -080011987UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011988 upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011989 return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
11990 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080011991}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070011992UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, upb_StringView val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000011993 upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000011994 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
11995 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000011996 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000011997 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080011998 return false;
11999 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012000 UPB_PRIVATE(_upb_Array_Set)
12001 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -080012002 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012003}
12004
12005/* google.protobuf.GeneratedCodeInfo */
12006
Joshua Habermanf41049a2022-01-21 14:41:25 -080012007UPB_INLINE google_protobuf_GeneratedCodeInfo* google_protobuf_GeneratedCodeInfo_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000012008 return (google_protobuf_GeneratedCodeInfo*)_upb_Message_New(&google__protobuf__GeneratedCodeInfo_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012009}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012010UPB_INLINE google_protobuf_GeneratedCodeInfo* google_protobuf_GeneratedCodeInfo_parse(const char* buf, size_t size, upb_Arena* arena) {
12011 google_protobuf_GeneratedCodeInfo* ret = google_protobuf_GeneratedCodeInfo_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070012012 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012013 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo_msg_init, NULL, 0, arena) !=
12014 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070012015 return NULL;
12016 }
12017 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012018}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012019UPB_INLINE google_protobuf_GeneratedCodeInfo* google_protobuf_GeneratedCodeInfo_parse_ex(const char* buf, size_t size,
12020 const upb_ExtensionRegistry* extreg,
12021 int options, upb_Arena* arena) {
12022 google_protobuf_GeneratedCodeInfo* ret = google_protobuf_GeneratedCodeInfo_new(arena);
12023 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012024 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo_msg_init, extreg, options,
12025 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080012026 return NULL;
12027 }
12028 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012029}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012030UPB_INLINE char* google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070012031 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012032 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012033 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080012034}
12035UPB_INLINE char* google_protobuf_GeneratedCodeInfo_serialize_ex(const google_protobuf_GeneratedCodeInfo* msg, int options,
12036 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070012037 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012038 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012039 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080012040}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012041UPB_INLINE void google_protobuf_GeneratedCodeInfo_clear_annotation(google_protobuf_GeneratedCodeInfo* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012042 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012043 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012044}
Eric Salob7d54ac2022-12-29 11:59:42 -080012045UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012046 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000012047 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012048 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080012049 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012050 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000012051 return (const google_protobuf_GeneratedCodeInfo_Annotation* const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080012052 } else {
12053 if (size) *size = 0;
12054 return NULL;
12055 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070012056}
Deanna Garciab26afb52023-04-25 13:37:18 -070012057UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_array(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012058 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000012059 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012060 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070012061 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012062 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070012063 }
12064 return arr;
12065}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012066UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_array(google_protobuf_GeneratedCodeInfo* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012067 const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000012068 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012069 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
12070 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070012071 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012072 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070012073 }
12074 return arr;
12075}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012076
Eric Salob7d54ac2022-12-29 11:59:42 -080012077UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012078 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000012079 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012080 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080012081 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012082 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000012083 return (google_protobuf_GeneratedCodeInfo_Annotation**)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080012084 } else {
12085 if (size) *size = 0;
12086 return NULL;
12087 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012088}
Eric Salob7d54ac2022-12-29 11:59:42 -080012089UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012090 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012091 return (google_protobuf_GeneratedCodeInfo_Annotation**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
12092 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012093}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070012094UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012095 upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bota9387b52024-06-12 15:17:52 +000012096 UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012097 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
12098 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000012099 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012100 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080012101 return NULL;
12102 }
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000012103 struct google_protobuf_GeneratedCodeInfo_Annotation* sub = (struct google_protobuf_GeneratedCodeInfo_Annotation*)_upb_Message_New(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init, arena);
Eric Salob7d54ac2022-12-29 11:59:42 -080012104 if (!arr || !sub) return NULL;
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012105 UPB_PRIVATE(_upb_Array_Set)
12106 (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub));
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012107 return sub;
12108}
12109
12110/* google.protobuf.GeneratedCodeInfo.Annotation */
12111
Joshua Habermanf41049a2022-01-21 14:41:25 -080012112UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_Annotation_new(upb_Arena* arena) {
Protobuf Team Bot4ffe0862023-12-06 02:02:36 +000012113 return (google_protobuf_GeneratedCodeInfo_Annotation*)_upb_Message_New(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012114}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012115UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_Annotation_parse(const char* buf, size_t size, upb_Arena* arena) {
12116 google_protobuf_GeneratedCodeInfo_Annotation* ret = google_protobuf_GeneratedCodeInfo_Annotation_new(arena);
Joshua Haberman9d578a32021-08-02 15:32:01 -070012117 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012118 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, NULL, 0, arena) !=
12119 kUpb_DecodeStatus_Ok) {
Joshua Haberman9d578a32021-08-02 15:32:01 -070012120 return NULL;
12121 }
12122 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012123}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012124UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_Annotation_parse_ex(const char* buf, size_t size,
12125 const upb_ExtensionRegistry* extreg,
12126 int options, upb_Arena* arena) {
12127 google_protobuf_GeneratedCodeInfo_Annotation* ret = google_protobuf_GeneratedCodeInfo_Annotation_new(arena);
12128 if (!ret) return NULL;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012129 if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, extreg, options,
12130 arena) != kUpb_DecodeStatus_Ok) {
Joshua Habermanf41049a2022-01-21 14:41:25 -080012131 return NULL;
12132 }
12133 return ret;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012134}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012135UPB_INLINE char* google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation* msg, upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070012136 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012137 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, 0, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012138 return ptr;
Joshua Habermanf41049a2022-01-21 14:41:25 -080012139}
12140UPB_INLINE char* google_protobuf_GeneratedCodeInfo_Annotation_serialize_ex(const google_protobuf_GeneratedCodeInfo_Annotation* msg, int options,
12141 upb_Arena* arena, size_t* len) {
Joshua Habermand3995ec2022-09-30 16:54:39 -070012142 char* ptr;
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012143 (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, options, arena, &ptr, len);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012144 return ptr;
12145}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012146UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_path(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012147 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012148 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermanf41049a2022-01-21 14:41:25 -080012149}
Eric Salob7d54ac2022-12-29 11:59:42 -080012150UPB_INLINE int32_t const* google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012151 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012152 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080012153 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012154 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000012155 return (int32_t const*)upb_Array_DataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080012156 } else {
12157 if (size) *size = 0;
12158 return NULL;
12159 }
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070012160}
Deanna Garciab26afb52023-04-25 13:37:18 -070012161UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_upb_array(const google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012162 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012163 const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
Deanna Garciab26afb52023-04-25 13:37:18 -070012164 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012165 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070012166 }
12167 return arr;
12168}
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012169UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_mutable_upb_array(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012170 const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012171 upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
12172 &field, arena);
Deanna Garciab26afb52023-04-25 13:37:18 -070012173 if (size) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012174 *size = arr ? arr->UPB_PRIVATE(size) : 0;
Deanna Garciab26afb52023-04-25 13:37:18 -070012175 }
12176 return arr;
12177}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012178UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_source_file(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012179 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012180 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012181}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012182UPB_INLINE upb_StringView google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080012183 upb_StringView default_val = upb_StringView_FromString("");
12184 upb_StringView ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012185 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012186 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
12187 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080012188 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080012189}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012190UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012191 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000012192 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070012193}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012194UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_begin(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012195 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012196 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012197}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012198UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080012199 int32_t default_val = (int32_t)0;
12200 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012201 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012202 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
12203 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080012204 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080012205}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012206UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012207 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000012208 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070012209}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012210UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_end(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012211 const upb_MiniTableField field = {4, UPB_SIZE(20, 16), 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012212 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012213}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012214UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080012215 int32_t default_val = (int32_t)0;
12216 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012217 const upb_MiniTableField field = {4, UPB_SIZE(20, 16), 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012218 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
12219 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080012220 return ret;
Joshua Habermanf41049a2022-01-21 14:41:25 -080012221}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012222UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012223 const upb_MiniTableField field = {4, UPB_SIZE(20, 16), 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000012224 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012225}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012226UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_semantic(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012227 const upb_MiniTableField field = {5, UPB_SIZE(24, 20), 67, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012228 upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
Joshua Habermand3995ec2022-09-30 16:54:39 -070012229}
12230UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_semantic(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Eric Salo8809a112022-11-21 13:01:06 -080012231 int32_t default_val = 0;
12232 int32_t ret;
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012233 const upb_MiniTableField field = {5, UPB_SIZE(24, 20), 67, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012234 _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
12235 &default_val, &ret);
Eric Salo8809a112022-11-21 13:01:06 -080012236 return ret;
Joshua Habermand3995ec2022-09-30 16:54:39 -070012237}
Mike Kruskal3bc50492022-12-01 13:34:12 -080012238UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_semantic(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012239 const upb_MiniTableField field = {5, UPB_SIZE(24, 20), 67, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Bot8c1f6352024-01-10 05:18:15 +000012240 return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
Mike Kruskal3bc50492022-12-01 13:34:12 -080012241}
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012242
Eric Salob7d54ac2022-12-29 11:59:42 -080012243UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012244 upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012245 upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
Eric Salob7d54ac2022-12-29 11:59:42 -080012246 if (arr) {
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012247 if (size) *size = arr->UPB_PRIVATE(size);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000012248 return (int32_t*)upb_Array_MutableDataPtr(arr);
Eric Salob7d54ac2022-12-29 11:59:42 -080012249 } else {
12250 if (size) *size = 0;
12251 return NULL;
12252 }
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012253}
Eric Salob7d54ac2022-12-29 11:59:42 -080012254UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t size, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012255 upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012256 return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
12257 &field, size, arena);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012258}
Joshua Haberman7ecf43f2022-03-14 13:11:29 -070012259UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, int32_t val, upb_Arena* arena) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012260 upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
Protobuf Team Bot4a8f21e2023-12-21 16:23:10 +000012261 upb_Array* arr = upb_Message_GetOrCreateMutableArray(
12262 UPB_UPCAST(msg), &field, arena);
Protobuf Team Bot81e54332024-01-11 21:04:07 +000012263 if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012264 arr, arr->UPB_PRIVATE(size) + 1, arena)) {
Eric Salob7d54ac2022-12-29 11:59:42 -080012265 return false;
12266 }
Protobuf Team Botf73985a2023-12-19 00:14:19 +000012267 UPB_PRIVATE(_upb_Array_Set)
12268 (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
Eric Salob7d54ac2022-12-29 11:59:42 -080012269 return true;
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012270}
Joshua Habermanf41049a2022-01-21 14:41:25 -080012271UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_StringView value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012272 const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000012273 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012274}
12275UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012276 const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000012277 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012278}
12279UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012280 const upb_MiniTableField field = {4, UPB_SIZE(20, 16), 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000012281 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012282}
12283UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_semantic(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012284 const upb_MiniTableField field = {5, UPB_SIZE(24, 20), 67, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
Protobuf Team Botac32c972024-04-10 03:30:05 +000012285 upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012286}
Mike Kruskal232ecf42023-01-14 00:09:40 -080012287
Joshua Habermanf41049a2022-01-21 14:41:25 -080012288/* Max size 32 is google.protobuf.FileOptions */
12289/* Max size 64 is google.protobuf.FileOptions */
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000012290#define _UPB_MAXOPT_SIZE UPB_SIZE(112, 200)
Joshua Habermanf41049a2022-01-21 14:41:25 -080012291
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012292#ifdef __cplusplus
12293} /* extern "C" */
12294#endif
12295
12296
12297#endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ */
Mike Kruskal232ecf42023-01-14 00:09:40 -080012298// end:github_only
Eric Salo8809a112022-11-21 13:01:06 -080012299
Protobuf Team Bot7dabac92023-09-07 18:35:50 +000012300typedef enum {
12301 kUpb_Syntax_Proto2 = 2,
12302 kUpb_Syntax_Proto3 = 3,
12303 kUpb_Syntax_Editions = 99
12304} upb_Syntax;
Eric Salo8809a112022-11-21 13:01:06 -080012305
12306// Forward declarations for circular references.
12307typedef struct upb_DefPool upb_DefPool;
12308typedef struct upb_EnumDef upb_EnumDef;
12309typedef struct upb_EnumReservedRange upb_EnumReservedRange;
12310typedef struct upb_EnumValueDef upb_EnumValueDef;
12311typedef struct upb_ExtensionRange upb_ExtensionRange;
12312typedef struct upb_FieldDef upb_FieldDef;
12313typedef struct upb_FileDef upb_FileDef;
12314typedef struct upb_MessageDef upb_MessageDef;
12315typedef struct upb_MessageReservedRange upb_MessageReservedRange;
12316typedef struct upb_MethodDef upb_MethodDef;
12317typedef struct upb_OneofDef upb_OneofDef;
12318typedef struct upb_ServiceDef upb_ServiceDef;
12319
12320// EVERYTHING BELOW THIS LINE IS INTERNAL - DO NOT USE /////////////////////////
12321
12322typedef struct upb_DefBuilder upb_DefBuilder;
12323
12324#endif /* UPB_REFLECTION_COMMON_H_ */
12325
12326#ifndef UPB_REFLECTION_DEF_TYPE_H_
12327#define UPB_REFLECTION_DEF_TYPE_H_
12328
12329
12330// Must be last.
12331
12332// Inside a symtab we store tagged pointers to specific def types.
12333typedef enum {
12334 UPB_DEFTYPE_MASK = 7,
12335
12336 // Only inside symtab table.
12337 UPB_DEFTYPE_EXT = 0,
12338 UPB_DEFTYPE_MSG = 1,
12339 UPB_DEFTYPE_ENUM = 2,
12340 UPB_DEFTYPE_ENUMVAL = 3,
12341 UPB_DEFTYPE_SERVICE = 4,
12342
12343 // Only inside message table.
12344 UPB_DEFTYPE_FIELD = 0,
12345 UPB_DEFTYPE_ONEOF = 1,
Eric Salo8809a112022-11-21 13:01:06 -080012346} upb_deftype_t;
12347
12348#ifdef __cplusplus
12349extern "C" {
12350#endif
12351
12352// Our 3-bit pointer tagging requires all pointers to be multiples of 8.
12353// The arena will always yield 8-byte-aligned addresses, however we put
12354// the defs into arrays. For each element in the array to be 8-byte-aligned,
12355// the sizes of each def type must also be a multiple of 8.
12356//
12357// If any of these asserts fail, we need to add or remove padding on 32-bit
12358// machines (64-bit machines will have 8-byte alignment already due to
12359// pointers, which all of these structs have).
12360UPB_INLINE void _upb_DefType_CheckPadding(size_t size) {
12361 UPB_ASSERT((size & UPB_DEFTYPE_MASK) == 0);
12362}
12363
12364upb_deftype_t _upb_DefType_Type(upb_value v);
12365
12366upb_value _upb_DefType_Pack(const void* ptr, upb_deftype_t type);
12367
12368const void* _upb_DefType_Unpack(upb_value v, upb_deftype_t type);
12369
12370#ifdef __cplusplus
12371} /* extern "C" */
12372#endif
12373
12374
12375#endif /* UPB_REFLECTION_DEF_TYPE_H_ */
12376
12377// Must be last.
12378
12379#ifdef __cplusplus
12380extern "C" {
12381#endif
12382
Jason Lunn67dee292023-07-13 13:15:26 -070012383UPB_API void upb_DefPool_Free(upb_DefPool* s);
Eric Salo8809a112022-11-21 13:01:06 -080012384
Jason Lunn67dee292023-07-13 13:15:26 -070012385UPB_API upb_DefPool* upb_DefPool_New(void);
Eric Salo8809a112022-11-21 13:01:06 -080012386
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012387UPB_API const UPB_DESC(FeatureSetDefaults) *
12388 upb_DefPool_FeatureSetDefaults(const upb_DefPool* s);
12389
Protobuf Team Botc6b149c2023-11-10 23:37:46 +000012390UPB_API bool upb_DefPool_SetFeatureSetDefaults(upb_DefPool* s,
12391 const char* serialized_defaults,
12392 size_t serialized_len,
12393 upb_Status* status);
12394
Jason Lunn67dee292023-07-13 13:15:26 -070012395UPB_API const upb_MessageDef* upb_DefPool_FindMessageByName(
12396 const upb_DefPool* s, const char* sym);
Eric Salo8809a112022-11-21 13:01:06 -080012397
12398const upb_MessageDef* upb_DefPool_FindMessageByNameWithSize(
12399 const upb_DefPool* s, const char* sym, size_t len);
12400
Jason Lunn67dee292023-07-13 13:15:26 -070012401UPB_API const upb_EnumDef* upb_DefPool_FindEnumByName(const upb_DefPool* s,
12402 const char* sym);
Eric Salo8809a112022-11-21 13:01:06 -080012403
12404const upb_EnumValueDef* upb_DefPool_FindEnumByNameval(const upb_DefPool* s,
12405 const char* sym);
12406
12407const upb_FileDef* upb_DefPool_FindFileByName(const upb_DefPool* s,
12408 const char* name);
12409
12410const upb_FileDef* upb_DefPool_FindFileByNameWithSize(const upb_DefPool* s,
12411 const char* name,
12412 size_t len);
12413
12414const upb_FieldDef* upb_DefPool_FindExtensionByMiniTable(
12415 const upb_DefPool* s, const upb_MiniTableExtension* ext);
12416
Protobuf Team Bot8aad0582023-11-14 23:47:47 +000012417UPB_API const upb_FieldDef* upb_DefPool_FindExtensionByName(const upb_DefPool* s,
Eric Salo8809a112022-11-21 13:01:06 -080012418 const char* sym);
12419
12420const upb_FieldDef* upb_DefPool_FindExtensionByNameWithSize(
12421 const upb_DefPool* s, const char* name, size_t size);
12422
12423const upb_FieldDef* upb_DefPool_FindExtensionByNumber(const upb_DefPool* s,
12424 const upb_MessageDef* m,
12425 int32_t fieldnum);
12426
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012427UPB_API const upb_ServiceDef* upb_DefPool_FindServiceByName(
12428 const upb_DefPool* s, const char* name);
Eric Salo8809a112022-11-21 13:01:06 -080012429
12430const upb_ServiceDef* upb_DefPool_FindServiceByNameWithSize(
12431 const upb_DefPool* s, const char* name, size_t size);
12432
12433const upb_FileDef* upb_DefPool_FindFileContainingSymbol(const upb_DefPool* s,
12434 const char* name);
12435
Jason Lunn67dee292023-07-13 13:15:26 -070012436UPB_API const upb_FileDef* upb_DefPool_AddFile(
12437 upb_DefPool* s, const UPB_DESC(FileDescriptorProto) * file_proto,
12438 upb_Status* status);
Eric Salo8809a112022-11-21 13:01:06 -080012439
Protobuf Team Bot8aad0582023-11-14 23:47:47 +000012440UPB_API const upb_ExtensionRegistry* upb_DefPool_ExtensionRegistry(
Eric Salo8809a112022-11-21 13:01:06 -080012441 const upb_DefPool* s);
12442
12443const upb_FieldDef** upb_DefPool_GetAllExtensions(const upb_DefPool* s,
12444 const upb_MessageDef* m,
12445 size_t* count);
12446
12447#ifdef __cplusplus
12448} /* extern "C" */
12449#endif
12450
12451
12452#endif /* UPB_REFLECTION_DEF_POOL_H_ */
12453
Protobuf Team Bot06310352023-09-26 21:54:58 +000012454// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012455
12456#ifndef UPB_REFLECTION_ENUM_DEF_H_
12457#define UPB_REFLECTION_ENUM_DEF_H_
Joshua Habermand3995ec2022-09-30 16:54:39 -070012458
12459
12460// Must be last.
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012461
12462#ifdef __cplusplus
12463extern "C" {
Joshua Habermand3995ec2022-09-30 16:54:39 -070012464#endif
Joshua Haberman9abf6e22021-01-13 12:16:25 -080012465
Eric Salo8809a112022-11-21 13:01:06 -080012466bool upb_EnumDef_CheckNumber(const upb_EnumDef* e, int32_t num);
12467const upb_MessageDef* upb_EnumDef_ContainingType(const upb_EnumDef* e);
12468int32_t upb_EnumDef_Default(const upb_EnumDef* e);
Jason Lunn67dee292023-07-13 13:15:26 -070012469UPB_API const upb_FileDef* upb_EnumDef_File(const upb_EnumDef* e);
Eric Salo8809a112022-11-21 13:01:06 -080012470const upb_EnumValueDef* upb_EnumDef_FindValueByName(const upb_EnumDef* e,
12471 const char* name);
Jason Lunn67dee292023-07-13 13:15:26 -070012472UPB_API const upb_EnumValueDef* upb_EnumDef_FindValueByNameWithSize(
Eric Salo8809a112022-11-21 13:01:06 -080012473 const upb_EnumDef* e, const char* name, size_t size);
Jason Lunn67dee292023-07-13 13:15:26 -070012474UPB_API const upb_EnumValueDef* upb_EnumDef_FindValueByNumber(
12475 const upb_EnumDef* e, int32_t num);
12476UPB_API const char* upb_EnumDef_FullName(const upb_EnumDef* e);
Eric Salo8809a112022-11-21 13:01:06 -080012477bool upb_EnumDef_HasOptions(const upb_EnumDef* e);
12478bool upb_EnumDef_IsClosed(const upb_EnumDef* e);
Protobuf Team Bot5e8d7e52024-03-15 22:28:30 +000012479bool upb_EnumDef_IsSpecifiedAsClosed(const upb_EnumDef* e);
Eric Salo8809a112022-11-21 13:01:06 -080012480
12481// Creates a mini descriptor string for an enum, returns true on success.
12482bool upb_EnumDef_MiniDescriptorEncode(const upb_EnumDef* e, upb_Arena* a,
12483 upb_StringView* out);
12484
12485const char* upb_EnumDef_Name(const upb_EnumDef* e);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012486const UPB_DESC(EnumOptions) * upb_EnumDef_Options(const upb_EnumDef* e);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012487const UPB_DESC(FeatureSet) * upb_EnumDef_ResolvedFeatures(const upb_EnumDef* e);
Eric Salo8809a112022-11-21 13:01:06 -080012488
12489upb_StringView upb_EnumDef_ReservedName(const upb_EnumDef* e, int i);
12490int upb_EnumDef_ReservedNameCount(const upb_EnumDef* e);
12491
12492const upb_EnumReservedRange* upb_EnumDef_ReservedRange(const upb_EnumDef* e,
12493 int i);
12494int upb_EnumDef_ReservedRangeCount(const upb_EnumDef* e);
12495
Jason Lunn67dee292023-07-13 13:15:26 -070012496UPB_API const upb_EnumValueDef* upb_EnumDef_Value(const upb_EnumDef* e, int i);
12497UPB_API int upb_EnumDef_ValueCount(const upb_EnumDef* e);
Eric Salo8809a112022-11-21 13:01:06 -080012498
12499#ifdef __cplusplus
12500} /* extern "C" */
12501#endif
12502
12503
12504#endif /* UPB_REFLECTION_ENUM_DEF_H_ */
12505
Protobuf Team Bot06310352023-09-26 21:54:58 +000012506// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012507
12508#ifndef UPB_REFLECTION_ENUM_VALUE_DEF_H_
12509#define UPB_REFLECTION_ENUM_VALUE_DEF_H_
12510
12511
12512// Must be last.
12513
12514#ifdef __cplusplus
12515extern "C" {
12516#endif
12517
12518const upb_EnumDef* upb_EnumValueDef_Enum(const upb_EnumValueDef* v);
12519const char* upb_EnumValueDef_FullName(const upb_EnumValueDef* v);
12520bool upb_EnumValueDef_HasOptions(const upb_EnumValueDef* v);
12521uint32_t upb_EnumValueDef_Index(const upb_EnumValueDef* v);
Jason Lunn67dee292023-07-13 13:15:26 -070012522UPB_API const char* upb_EnumValueDef_Name(const upb_EnumValueDef* v);
12523UPB_API int32_t upb_EnumValueDef_Number(const upb_EnumValueDef* v);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012524const UPB_DESC(EnumValueOptions) *
12525 upb_EnumValueDef_Options(const upb_EnumValueDef* v);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012526const UPB_DESC(FeatureSet) *
12527 upb_EnumValueDef_ResolvedFeatures(const upb_EnumValueDef* e);
Eric Salo8809a112022-11-21 13:01:06 -080012528
12529#ifdef __cplusplus
12530} /* extern "C" */
12531#endif
12532
12533
12534#endif /* UPB_REFLECTION_ENUM_VALUE_DEF_H_ */
12535
Protobuf Team Bot06310352023-09-26 21:54:58 +000012536// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012537
12538#ifndef UPB_REFLECTION_EXTENSION_RANGE_H_
12539#define UPB_REFLECTION_EXTENSION_RANGE_H_
12540
12541
12542// Must be last.
12543
12544#ifdef __cplusplus
12545extern "C" {
12546#endif
12547
12548int32_t upb_ExtensionRange_Start(const upb_ExtensionRange* r);
12549int32_t upb_ExtensionRange_End(const upb_ExtensionRange* r);
12550
12551bool upb_ExtensionRange_HasOptions(const upb_ExtensionRange* r);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012552const UPB_DESC(ExtensionRangeOptions) *
12553 upb_ExtensionRange_Options(const upb_ExtensionRange* r);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012554const UPB_DESC(FeatureSet) *
12555 upb_ExtensionRange_ResolvedFeatures(const upb_ExtensionRange* e);
Eric Salo8809a112022-11-21 13:01:06 -080012556
12557#ifdef __cplusplus
12558} /* extern "C" */
12559#endif
12560
12561
12562#endif /* UPB_REFLECTION_EXTENSION_RANGE_H_ */
12563
Protobuf Team Bot06310352023-09-26 21:54:58 +000012564// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012565
12566#ifndef UPB_REFLECTION_FIELD_DEF_H_
12567#define UPB_REFLECTION_FIELD_DEF_H_
12568
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012569#include <stdint.h>
12570
Eric Salo8809a112022-11-21 13:01:06 -080012571
12572// Must be last.
12573
12574// Maximum field number allowed for FieldDefs.
12575// This is an inherent limit of the protobuf wire format.
12576#define kUpb_MaxFieldNumber ((1 << 29) - 1)
12577
12578#ifdef __cplusplus
12579extern "C" {
12580#endif
12581
12582const upb_OneofDef* upb_FieldDef_ContainingOneof(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012583UPB_API const upb_MessageDef* upb_FieldDef_ContainingType(
12584 const upb_FieldDef* f);
12585UPB_API upb_CType upb_FieldDef_CType(const upb_FieldDef* f);
12586UPB_API upb_MessageValue upb_FieldDef_Default(const upb_FieldDef* f);
12587UPB_API const upb_EnumDef* upb_FieldDef_EnumSubDef(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012588const upb_MessageDef* upb_FieldDef_ExtensionScope(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012589UPB_API const upb_FileDef* upb_FieldDef_File(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012590const char* upb_FieldDef_FullName(const upb_FieldDef* f);
12591bool upb_FieldDef_HasDefault(const upb_FieldDef* f);
12592bool upb_FieldDef_HasJsonName(const upb_FieldDef* f);
12593bool upb_FieldDef_HasOptions(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012594UPB_API bool upb_FieldDef_HasPresence(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012595bool upb_FieldDef_HasSubDef(const upb_FieldDef* f);
12596uint32_t upb_FieldDef_Index(const upb_FieldDef* f);
Protobuf Team Botef020872024-04-24 18:42:18 +000012597UPB_API bool upb_FieldDef_IsEnum(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012598bool upb_FieldDef_IsExtension(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012599UPB_API bool upb_FieldDef_IsMap(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012600bool upb_FieldDef_IsOptional(const upb_FieldDef* f);
Protobuf Team Botf2c187d2024-01-09 17:58:04 +000012601UPB_API bool upb_FieldDef_IsPacked(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012602bool upb_FieldDef_IsPrimitive(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012603UPB_API bool upb_FieldDef_IsRepeated(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012604bool upb_FieldDef_IsRequired(const upb_FieldDef* f);
12605bool upb_FieldDef_IsString(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012606UPB_API bool upb_FieldDef_IsSubMessage(const upb_FieldDef* f);
12607UPB_API const char* upb_FieldDef_JsonName(const upb_FieldDef* f);
12608UPB_API upb_Label upb_FieldDef_Label(const upb_FieldDef* f);
Protobuf Team Botb361c9c2024-03-22 00:27:43 +000012609uint32_t upb_FieldDef_LayoutIndex(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012610UPB_API const upb_MessageDef* upb_FieldDef_MessageSubDef(const upb_FieldDef* f);
Protobuf Team Botb58bd402023-09-19 15:42:34 +000012611bool _upb_FieldDef_ValidateUtf8(const upb_FieldDef* f);
Protobuf Team Bot8ce5c9f2024-04-05 20:20:09 +000012612bool _upb_FieldDef_IsGroupLike(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012613
12614// Creates a mini descriptor string for a field, returns true on success.
12615bool upb_FieldDef_MiniDescriptorEncode(const upb_FieldDef* f, upb_Arena* a,
12616 upb_StringView* out);
12617
12618const upb_MiniTableField* upb_FieldDef_MiniTable(const upb_FieldDef* f);
Protobuf Team Bot4e90ead2024-01-08 15:46:34 +000012619const upb_MiniTableExtension* upb_FieldDef_MiniTableExtension(
12620 const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012621UPB_API const char* upb_FieldDef_Name(const upb_FieldDef* f);
12622UPB_API uint32_t upb_FieldDef_Number(const upb_FieldDef* f);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012623const UPB_DESC(FieldOptions) * upb_FieldDef_Options(const upb_FieldDef* f);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012624const UPB_DESC(FeatureSet) *
12625 upb_FieldDef_ResolvedFeatures(const upb_FieldDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012626UPB_API const upb_OneofDef* upb_FieldDef_RealContainingOneof(
12627 const upb_FieldDef* f);
12628UPB_API upb_FieldType upb_FieldDef_Type(const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012629
12630#ifdef __cplusplus
12631} /* extern "C" */
12632#endif
12633
12634
12635#endif /* UPB_REFLECTION_FIELD_DEF_H_ */
12636
Protobuf Team Bot06310352023-09-26 21:54:58 +000012637// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012638
12639#ifndef UPB_REFLECTION_FILE_DEF_H_
12640#define UPB_REFLECTION_FILE_DEF_H_
12641
12642
12643// Must be last.
12644
12645#ifdef __cplusplus
12646extern "C" {
12647#endif
12648
Protobuf Team Botc6b149c2023-11-10 23:37:46 +000012649UPB_API const char* upb_FileDef_EditionName(int edition);
12650
Eric Salo8809a112022-11-21 13:01:06 -080012651const upb_FileDef* upb_FileDef_Dependency(const upb_FileDef* f, int i);
12652int upb_FileDef_DependencyCount(const upb_FileDef* f);
12653bool upb_FileDef_HasOptions(const upb_FileDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012654UPB_API const char* upb_FileDef_Name(const upb_FileDef* f);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012655const UPB_DESC(FileOptions) * upb_FileDef_Options(const upb_FileDef* f);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012656const UPB_DESC(FeatureSet) * upb_FileDef_ResolvedFeatures(const upb_FileDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012657const char* upb_FileDef_Package(const upb_FileDef* f);
Protobuf Team Bot7dabac92023-09-07 18:35:50 +000012658UPB_DESC(Edition) upb_FileDef_Edition(const upb_FileDef* f);
Jason Lunn67dee292023-07-13 13:15:26 -070012659UPB_API const upb_DefPool* upb_FileDef_Pool(const upb_FileDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012660
12661const upb_FileDef* upb_FileDef_PublicDependency(const upb_FileDef* f, int i);
12662int upb_FileDef_PublicDependencyCount(const upb_FileDef* f);
12663
12664const upb_ServiceDef* upb_FileDef_Service(const upb_FileDef* f, int i);
12665int upb_FileDef_ServiceCount(const upb_FileDef* f);
12666
Jason Lunn67dee292023-07-13 13:15:26 -070012667UPB_API upb_Syntax upb_FileDef_Syntax(const upb_FileDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080012668
12669const upb_EnumDef* upb_FileDef_TopLevelEnum(const upb_FileDef* f, int i);
12670int upb_FileDef_TopLevelEnumCount(const upb_FileDef* f);
12671
12672const upb_FieldDef* upb_FileDef_TopLevelExtension(const upb_FileDef* f, int i);
12673int upb_FileDef_TopLevelExtensionCount(const upb_FileDef* f);
12674
12675const upb_MessageDef* upb_FileDef_TopLevelMessage(const upb_FileDef* f, int i);
12676int upb_FileDef_TopLevelMessageCount(const upb_FileDef* f);
12677
12678const upb_FileDef* upb_FileDef_WeakDependency(const upb_FileDef* f, int i);
12679int upb_FileDef_WeakDependencyCount(const upb_FileDef* f);
12680
Protobuf Team Bot55696ad2024-04-16 14:44:23 +000012681// Returns whether |symbol| is transitively included by |f|
12682bool upb_FileDef_Resolves(const upb_FileDef* f, const char* symbol);
12683
Eric Salo8809a112022-11-21 13:01:06 -080012684#ifdef __cplusplus
12685} /* extern "C" */
12686#endif
12687
12688
12689#endif /* UPB_REFLECTION_FILE_DEF_H_ */
12690
Protobuf Team Bot06310352023-09-26 21:54:58 +000012691// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012692
12693#ifndef UPB_REFLECTION_MESSAGE_DEF_H_
12694#define UPB_REFLECTION_MESSAGE_DEF_H_
12695
12696
12697// Must be last.
12698
12699// Well-known field tag numbers for map-entry messages.
12700#define kUpb_MapEntry_KeyFieldNumber 1
12701#define kUpb_MapEntry_ValueFieldNumber 2
12702
12703// Well-known field tag numbers for Any messages.
12704#define kUpb_Any_TypeFieldNumber 1
12705#define kUpb_Any_ValueFieldNumber 2
12706
12707// Well-known field tag numbers for duration messages.
12708#define kUpb_Duration_SecondsFieldNumber 1
12709#define kUpb_Duration_NanosFieldNumber 2
12710
12711// Well-known field tag numbers for timestamp messages.
12712#define kUpb_Timestamp_SecondsFieldNumber 1
12713#define kUpb_Timestamp_NanosFieldNumber 2
12714
12715// All the different kind of well known type messages. For simplicity of check,
12716// number wrappers and string wrappers are grouped together. Make sure the
12717// order and number of these groups are not changed.
12718typedef enum {
12719 kUpb_WellKnown_Unspecified,
12720 kUpb_WellKnown_Any,
12721 kUpb_WellKnown_FieldMask,
12722 kUpb_WellKnown_Duration,
12723 kUpb_WellKnown_Timestamp,
12724
12725 // number wrappers
12726 kUpb_WellKnown_DoubleValue,
12727 kUpb_WellKnown_FloatValue,
12728 kUpb_WellKnown_Int64Value,
12729 kUpb_WellKnown_UInt64Value,
12730 kUpb_WellKnown_Int32Value,
12731 kUpb_WellKnown_UInt32Value,
12732
12733 // string wrappers
12734 kUpb_WellKnown_StringValue,
12735 kUpb_WellKnown_BytesValue,
12736 kUpb_WellKnown_BoolValue,
12737 kUpb_WellKnown_Value,
12738 kUpb_WellKnown_ListValue,
12739 kUpb_WellKnown_Struct,
12740} upb_WellKnown;
12741
12742#ifdef __cplusplus
12743extern "C" {
12744#endif
12745
12746const upb_MessageDef* upb_MessageDef_ContainingType(const upb_MessageDef* m);
12747
12748const upb_ExtensionRange* upb_MessageDef_ExtensionRange(const upb_MessageDef* m,
12749 int i);
12750int upb_MessageDef_ExtensionRangeCount(const upb_MessageDef* m);
12751
Jason Lunn67dee292023-07-13 13:15:26 -070012752UPB_API const upb_FieldDef* upb_MessageDef_Field(const upb_MessageDef* m,
12753 int i);
12754UPB_API int upb_MessageDef_FieldCount(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012755
Jason Lunn67dee292023-07-13 13:15:26 -070012756UPB_API const upb_FileDef* upb_MessageDef_File(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012757
12758// Returns a field by either JSON name or regular proto name.
12759const upb_FieldDef* upb_MessageDef_FindByJsonNameWithSize(
12760 const upb_MessageDef* m, const char* name, size_t size);
12761UPB_INLINE const upb_FieldDef* upb_MessageDef_FindByJsonName(
12762 const upb_MessageDef* m, const char* name) {
12763 return upb_MessageDef_FindByJsonNameWithSize(m, name, strlen(name));
12764}
12765
12766// Lookup of either field or oneof by name. Returns whether either was found.
12767// If the return is true, then the found def will be set, and the non-found
12768// one set to NULL.
Jason Lunn67dee292023-07-13 13:15:26 -070012769UPB_API bool upb_MessageDef_FindByNameWithSize(const upb_MessageDef* m,
12770 const char* name, size_t size,
12771 const upb_FieldDef** f,
12772 const upb_OneofDef** o);
Eric Salo8809a112022-11-21 13:01:06 -080012773UPB_INLINE bool upb_MessageDef_FindByName(const upb_MessageDef* m,
12774 const char* name,
12775 const upb_FieldDef** f,
12776 const upb_OneofDef** o) {
12777 return upb_MessageDef_FindByNameWithSize(m, name, strlen(name), f, o);
12778}
12779
12780const upb_FieldDef* upb_MessageDef_FindFieldByName(const upb_MessageDef* m,
12781 const char* name);
Jason Lunn67dee292023-07-13 13:15:26 -070012782UPB_API const upb_FieldDef* upb_MessageDef_FindFieldByNameWithSize(
Eric Salo8809a112022-11-21 13:01:06 -080012783 const upb_MessageDef* m, const char* name, size_t size);
Jason Lunn67dee292023-07-13 13:15:26 -070012784UPB_API const upb_FieldDef* upb_MessageDef_FindFieldByNumber(
12785 const upb_MessageDef* m, uint32_t i);
Eric Salo8809a112022-11-21 13:01:06 -080012786const upb_OneofDef* upb_MessageDef_FindOneofByName(const upb_MessageDef* m,
12787 const char* name);
Jason Lunn67dee292023-07-13 13:15:26 -070012788UPB_API const upb_OneofDef* upb_MessageDef_FindOneofByNameWithSize(
Eric Salo8809a112022-11-21 13:01:06 -080012789 const upb_MessageDef* m, const char* name, size_t size);
Jason Lunn67dee292023-07-13 13:15:26 -070012790UPB_API const char* upb_MessageDef_FullName(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012791bool upb_MessageDef_HasOptions(const upb_MessageDef* m);
12792bool upb_MessageDef_IsMapEntry(const upb_MessageDef* m);
12793bool upb_MessageDef_IsMessageSet(const upb_MessageDef* m);
12794
12795// Creates a mini descriptor string for a message, returns true on success.
12796bool upb_MessageDef_MiniDescriptorEncode(const upb_MessageDef* m, upb_Arena* a,
12797 upb_StringView* out);
12798
Jason Lunn67dee292023-07-13 13:15:26 -070012799UPB_API const upb_MiniTable* upb_MessageDef_MiniTable(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012800const char* upb_MessageDef_Name(const upb_MessageDef* m);
12801
12802const upb_EnumDef* upb_MessageDef_NestedEnum(const upb_MessageDef* m, int i);
12803const upb_FieldDef* upb_MessageDef_NestedExtension(const upb_MessageDef* m,
12804 int i);
12805const upb_MessageDef* upb_MessageDef_NestedMessage(const upb_MessageDef* m,
12806 int i);
12807
12808int upb_MessageDef_NestedEnumCount(const upb_MessageDef* m);
12809int upb_MessageDef_NestedExtensionCount(const upb_MessageDef* m);
12810int upb_MessageDef_NestedMessageCount(const upb_MessageDef* m);
12811
Jason Lunn67dee292023-07-13 13:15:26 -070012812UPB_API const upb_OneofDef* upb_MessageDef_Oneof(const upb_MessageDef* m,
12813 int i);
12814UPB_API int upb_MessageDef_OneofCount(const upb_MessageDef* m);
Mike Kruskal232ecf42023-01-14 00:09:40 -080012815int upb_MessageDef_RealOneofCount(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012816
Mike Kruskal232ecf42023-01-14 00:09:40 -080012817const UPB_DESC(MessageOptions) *
12818 upb_MessageDef_Options(const upb_MessageDef* m);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012819const UPB_DESC(FeatureSet) *
12820 upb_MessageDef_ResolvedFeatures(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012821
12822upb_StringView upb_MessageDef_ReservedName(const upb_MessageDef* m, int i);
12823int upb_MessageDef_ReservedNameCount(const upb_MessageDef* m);
12824
12825const upb_MessageReservedRange* upb_MessageDef_ReservedRange(
12826 const upb_MessageDef* m, int i);
12827int upb_MessageDef_ReservedRangeCount(const upb_MessageDef* m);
12828
Jason Lunn67dee292023-07-13 13:15:26 -070012829UPB_API upb_Syntax upb_MessageDef_Syntax(const upb_MessageDef* m);
12830UPB_API upb_WellKnown upb_MessageDef_WellKnownType(const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012831
12832#ifdef __cplusplus
12833} /* extern "C" */
12834#endif
12835
12836
12837#endif /* UPB_REFLECTION_MESSAGE_DEF_H_ */
12838
Protobuf Team Bot06310352023-09-26 21:54:58 +000012839// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012840
12841#ifndef UPB_REFLECTION_METHOD_DEF_H_
12842#define UPB_REFLECTION_METHOD_DEF_H_
12843
12844
12845// Must be last.
12846
12847#ifdef __cplusplus
12848extern "C" {
12849#endif
12850
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012851UPB_API bool upb_MethodDef_ClientStreaming(const upb_MethodDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012852const char* upb_MethodDef_FullName(const upb_MethodDef* m);
12853bool upb_MethodDef_HasOptions(const upb_MethodDef* m);
12854int upb_MethodDef_Index(const upb_MethodDef* m);
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012855UPB_API const upb_MessageDef* upb_MethodDef_InputType(const upb_MethodDef* m);
12856UPB_API const char* upb_MethodDef_Name(const upb_MethodDef* m);
12857UPB_API const UPB_DESC(MethodOptions) *
12858 upb_MethodDef_Options(const upb_MethodDef* m);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012859const UPB_DESC(FeatureSet) *
12860 upb_MethodDef_ResolvedFeatures(const upb_MethodDef* m);
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012861UPB_API const upb_MessageDef* upb_MethodDef_OutputType(const upb_MethodDef* m);
12862UPB_API bool upb_MethodDef_ServerStreaming(const upb_MethodDef* m);
12863UPB_API const upb_ServiceDef* upb_MethodDef_Service(const upb_MethodDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080012864
12865#ifdef __cplusplus
12866} /* extern "C" */
12867#endif
12868
12869
12870#endif /* UPB_REFLECTION_METHOD_DEF_H_ */
12871
Protobuf Team Bot06310352023-09-26 21:54:58 +000012872// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012873
12874#ifndef UPB_REFLECTION_ONEOF_DEF_H_
12875#define UPB_REFLECTION_ONEOF_DEF_H_
12876
12877
12878// Must be last.
12879
12880#ifdef __cplusplus
12881extern "C" {
12882#endif
12883
Jason Lunn67dee292023-07-13 13:15:26 -070012884UPB_API const upb_MessageDef* upb_OneofDef_ContainingType(
12885 const upb_OneofDef* o);
12886UPB_API const upb_FieldDef* upb_OneofDef_Field(const upb_OneofDef* o, int i);
12887UPB_API int upb_OneofDef_FieldCount(const upb_OneofDef* o);
Eric Salo8809a112022-11-21 13:01:06 -080012888const char* upb_OneofDef_FullName(const upb_OneofDef* o);
12889bool upb_OneofDef_HasOptions(const upb_OneofDef* o);
12890uint32_t upb_OneofDef_Index(const upb_OneofDef* o);
12891bool upb_OneofDef_IsSynthetic(const upb_OneofDef* o);
12892const upb_FieldDef* upb_OneofDef_LookupName(const upb_OneofDef* o,
12893 const char* name);
12894const upb_FieldDef* upb_OneofDef_LookupNameWithSize(const upb_OneofDef* o,
12895 const char* name,
12896 size_t size);
12897const upb_FieldDef* upb_OneofDef_LookupNumber(const upb_OneofDef* o,
12898 uint32_t num);
Jason Lunn67dee292023-07-13 13:15:26 -070012899UPB_API const char* upb_OneofDef_Name(const upb_OneofDef* o);
Eric Salo8809a112022-11-21 13:01:06 -080012900int upb_OneofDef_numfields(const upb_OneofDef* o);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012901const UPB_DESC(OneofOptions*) upb_OneofDef_Options(const upb_OneofDef* o);
12902const UPB_DESC(FeatureSet*)
12903 upb_OneofDef_ResolvedFeatures(const upb_OneofDef* o);
Eric Salo8809a112022-11-21 13:01:06 -080012904
12905#ifdef __cplusplus
12906} /* extern "C" */
12907#endif
12908
12909
12910#endif /* UPB_REFLECTION_ONEOF_DEF_H_ */
12911
Protobuf Team Bot06310352023-09-26 21:54:58 +000012912// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080012913
12914#ifndef UPB_REFLECTION_SERVICE_DEF_H_
12915#define UPB_REFLECTION_SERVICE_DEF_H_
12916
12917
12918// Must be last.
12919
12920#ifdef __cplusplus
12921extern "C" {
12922#endif
12923
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012924UPB_API const upb_FileDef* upb_ServiceDef_File(const upb_ServiceDef* s);
Eric Salo8809a112022-11-21 13:01:06 -080012925const upb_MethodDef* upb_ServiceDef_FindMethodByName(const upb_ServiceDef* s,
12926 const char* name);
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012927UPB_API const char* upb_ServiceDef_FullName(const upb_ServiceDef* s);
Eric Salo8809a112022-11-21 13:01:06 -080012928bool upb_ServiceDef_HasOptions(const upb_ServiceDef* s);
12929int upb_ServiceDef_Index(const upb_ServiceDef* s);
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012930UPB_API const upb_MethodDef* upb_ServiceDef_Method(const upb_ServiceDef* s,
12931 int i);
12932UPB_API int upb_ServiceDef_MethodCount(const upb_ServiceDef* s);
Eric Salo8809a112022-11-21 13:01:06 -080012933const char* upb_ServiceDef_Name(const upb_ServiceDef* s);
Protobuf Team Bot312240c2024-03-22 17:47:13 +000012934UPB_API const UPB_DESC(ServiceOptions) *
Mike Kruskal232ecf42023-01-14 00:09:40 -080012935 upb_ServiceDef_Options(const upb_ServiceDef* s);
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000012936const UPB_DESC(FeatureSet) *
12937 upb_ServiceDef_ResolvedFeatures(const upb_ServiceDef* s);
Eric Salo8809a112022-11-21 13:01:06 -080012938
12939#ifdef __cplusplus
12940} /* extern "C" */
12941#endif
12942
12943
12944#endif /* UPB_REFLECTION_SERVICE_DEF_H_ */
Protobuf Team Botffc56ba2023-09-08 15:29:06 +000012945// IWYU pragma: end_exports
Eric Salo8809a112022-11-21 13:01:06 -080012946
12947#endif /* UPB_REFLECTION_DEF_H_ */
12948
12949// Must be last.
12950
12951#ifdef __cplusplus
12952extern "C" {
12953#endif
12954
12955enum { upb_JsonDecode_IgnoreUnknown = 1 };
12956
Jason Lunn67dee292023-07-13 13:15:26 -070012957UPB_API bool upb_JsonDecode(const char* buf, size_t size, upb_Message* msg,
12958 const upb_MessageDef* m, const upb_DefPool* symtab,
12959 int options, upb_Arena* arena, upb_Status* status);
Eric Salo8809a112022-11-21 13:01:06 -080012960
12961#ifdef __cplusplus
12962} /* extern "C" */
12963#endif
12964
12965
12966#endif /* UPB_JSONDECODE_H_ */
12967
12968#ifndef UPB_LEX_ATOI_H_
12969#define UPB_LEX_ATOI_H_
12970
Adam Cozzette7d5592e2023-08-23 12:15:26 -070012971#include <stdint.h>
12972
Eric Salo8809a112022-11-21 13:01:06 -080012973// Must be last.
12974
12975#ifdef __cplusplus
12976extern "C" {
12977#endif
12978
12979// We use these hand-written routines instead of strto[u]l() because the "long
12980// long" variants aren't in c89. Also our version allows setting a ptr limit.
12981// Return the new position of the pointer after parsing the int, or NULL on
12982// integer overflow.
12983
12984const char* upb_BufToUint64(const char* ptr, const char* end, uint64_t* val);
12985const char* upb_BufToInt64(const char* ptr, const char* end, int64_t* val,
12986 bool* is_neg);
12987
12988#ifdef __cplusplus
12989} /* extern "C" */
12990#endif
12991
12992
12993#endif /* UPB_LEX_ATOI_H_ */
12994
12995#ifndef UPB_LEX_UNICODE_H_
12996#define UPB_LEX_UNICODE_H_
12997
Adam Cozzette7d5592e2023-08-23 12:15:26 -070012998#include <stdint.h>
12999
Eric Salo8809a112022-11-21 13:01:06 -080013000// Must be last.
13001
13002#ifdef __cplusplus
13003extern "C" {
13004#endif
13005
13006// Returns true iff a codepoint is the value for a high surrogate.
13007UPB_INLINE bool upb_Unicode_IsHigh(uint32_t cp) {
13008 return (cp >= 0xd800 && cp <= 0xdbff);
13009}
13010
13011// Returns true iff a codepoint is the value for a low surrogate.
13012UPB_INLINE bool upb_Unicode_IsLow(uint32_t cp) {
13013 return (cp >= 0xdc00 && cp <= 0xdfff);
13014}
13015
13016// Returns the high 16-bit surrogate value for a supplementary codepoint.
13017// Does not sanity-check the input.
13018UPB_INLINE uint16_t upb_Unicode_ToHigh(uint32_t cp) {
13019 return (cp >> 10) + 0xd7c0;
13020}
13021
13022// Returns the low 16-bit surrogate value for a supplementary codepoint.
13023// Does not sanity-check the input.
13024UPB_INLINE uint16_t upb_Unicode_ToLow(uint32_t cp) {
13025 return (cp & 0x3ff) | 0xdc00;
13026}
13027
13028// Returns the 32-bit value corresponding to a pair of 16-bit surrogates.
13029// Does not sanity-check the input.
13030UPB_INLINE uint32_t upb_Unicode_FromPair(uint32_t high, uint32_t low) {
13031 return ((high & 0x3ff) << 10) + (low & 0x3ff) + 0x10000;
13032}
13033
13034// Outputs a codepoint as UTF8.
13035// Returns the number of bytes written (1-4 on success, 0 on error).
13036// Does not sanity-check the input. Specifically does not check for surrogates.
13037int upb_Unicode_ToUTF8(uint32_t cp, char* out);
13038
13039#ifdef __cplusplus
13040} /* extern "C" */
13041#endif
13042
13043
13044#endif /* UPB_LEX_UNICODE_H_ */
13045
13046#ifndef UPB_REFLECTION_MESSAGE_H_
13047#define UPB_REFLECTION_MESSAGE_H_
13048
Protobuf Team Bot473d20d2023-09-15 22:27:16 +000013049#include <stddef.h>
13050
Eric Salo8809a112022-11-21 13:01:06 -080013051
13052// Must be last.
13053
13054#ifdef __cplusplus
13055extern "C" {
13056#endif
13057
Eric Salo3f36a912022-12-05 14:12:25 -080013058// Returns a mutable pointer to a map, array, or submessage value. If the given
13059// arena is non-NULL this will construct a new object if it was not previously
13060// present. May not be called for primitive fields.
Jason Lunn67dee292023-07-13 13:15:26 -070013061UPB_API upb_MutableMessageValue upb_Message_Mutable(upb_Message* msg,
13062 const upb_FieldDef* f,
13063 upb_Arena* a);
Eric Salo8809a112022-11-21 13:01:06 -080013064
Eric Salo3f36a912022-12-05 14:12:25 -080013065// Returns the field that is set in the oneof, or NULL if none are set.
Protobuf Team Bot6cce6222024-05-28 17:15:46 +000013066UPB_API const upb_FieldDef* upb_Message_WhichOneofByDef(const upb_Message* msg,
13067 const upb_OneofDef* o);
Eric Salo8809a112022-11-21 13:01:06 -080013068
Eric Salo3f36a912022-12-05 14:12:25 -080013069// Clear all data and unknown fields.
13070void upb_Message_ClearByDef(upb_Message* msg, const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080013071
Eric Salo3f36a912022-12-05 14:12:25 -080013072// Clears any field presence and sets the value back to its default.
Jason Lunn67dee292023-07-13 13:15:26 -070013073UPB_API void upb_Message_ClearFieldByDef(upb_Message* msg,
13074 const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080013075
Eric Salo3f36a912022-12-05 14:12:25 -080013076// May only be called for fields where upb_FieldDef_HasPresence(f) == true.
Jason Lunn67dee292023-07-13 13:15:26 -070013077UPB_API bool upb_Message_HasFieldByDef(const upb_Message* msg,
13078 const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080013079
Eric Salo3f36a912022-12-05 14:12:25 -080013080// Returns the value in the message associated with this field def.
Jason Lunn67dee292023-07-13 13:15:26 -070013081UPB_API upb_MessageValue upb_Message_GetFieldByDef(const upb_Message* msg,
13082 const upb_FieldDef* f);
Eric Salo3f36a912022-12-05 14:12:25 -080013083
13084// Sets the given field to the given value. For a msg/array/map/string, the
13085// caller must ensure that the target data outlives |msg| (by living either in
13086// the same arena or a different arena that outlives it).
13087//
13088// Returns false if allocation fails.
Jason Lunn67dee292023-07-13 13:15:26 -070013089UPB_API bool upb_Message_SetFieldByDef(upb_Message* msg, const upb_FieldDef* f,
13090 upb_MessageValue val, upb_Arena* a);
Eric Salo3f36a912022-12-05 14:12:25 -080013091
13092// Iterate over present fields.
13093//
13094// size_t iter = kUpb_Message_Begin;
13095// const upb_FieldDef *f;
13096// upb_MessageValue val;
13097// while (upb_Message_Next(msg, m, ext_pool, &f, &val, &iter)) {
13098// process_field(f, val);
13099// }
13100//
13101// If ext_pool is NULL, no extensions will be returned. If the given symtab
13102// returns extensions that don't match what is in this message, those extensions
13103// will be skipped.
Eric Salo8809a112022-11-21 13:01:06 -080013104
13105#define kUpb_Message_Begin -1
Eric Salo3f36a912022-12-05 14:12:25 -080013106
Protobuf Team Bot7e324502024-01-04 18:12:49 +000013107UPB_API bool upb_Message_Next(const upb_Message* msg, const upb_MessageDef* m,
13108 const upb_DefPool* ext_pool,
13109 const upb_FieldDef** f, upb_MessageValue* val,
13110 size_t* iter);
Eric Salo8809a112022-11-21 13:01:06 -080013111
Eric Salo3f36a912022-12-05 14:12:25 -080013112// Clears all unknown field data from this message and all submessages.
Jason Lunn67dee292023-07-13 13:15:26 -070013113UPB_API bool upb_Message_DiscardUnknown(upb_Message* msg,
13114 const upb_MessageDef* m, int maxdepth);
Eric Salo8809a112022-11-21 13:01:06 -080013115
13116#ifdef __cplusplus
13117} /* extern "C" */
13118#endif
13119
13120
13121#endif /* UPB_REFLECTION_MESSAGE_H_ */
13122
13123#ifndef UPB_JSON_ENCODE_H_
13124#define UPB_JSON_ENCODE_H_
13125
13126
13127// Must be last.
13128
13129#ifdef __cplusplus
13130extern "C" {
13131#endif
13132
13133enum {
Protobuf Team Bot986cbb62023-09-19 15:03:51 +000013134 /* When set, emits 0/default values. TODO: proto3 only? */
Eric Salo8809a112022-11-21 13:01:06 -080013135 upb_JsonEncode_EmitDefaults = 1 << 0,
13136
13137 /* When set, use normal (snake_case) field names instead of JSON (camelCase)
13138 names. */
13139 upb_JsonEncode_UseProtoNames = 1 << 1,
13140
13141 /* When set, emits enums as their integer values instead of as their names. */
13142 upb_JsonEncode_FormatEnumsAsIntegers = 1 << 2
13143};
13144
13145/* Encodes the given |msg| to JSON format. The message's reflection is given in
Protobuf Team Botad884532023-09-05 18:31:02 +000013146 * |m|. The DefPool in |ext_pool| is used to find extensions (if NULL,
13147 * extensions will not be printed).
Eric Salo8809a112022-11-21 13:01:06 -080013148 *
13149 * Output is placed in the given buffer, and always NULL-terminated. The output
13150 * size (excluding NULL) is returned. This means that a return value >= |size|
13151 * implies that the output was truncated. (These are the same semantics as
13152 * snprintf()). */
Jason Lunn67dee292023-07-13 13:15:26 -070013153UPB_API size_t upb_JsonEncode(const upb_Message* msg, const upb_MessageDef* m,
13154 const upb_DefPool* ext_pool, int options,
13155 char* buf, size_t size, upb_Status* status);
Eric Salo8809a112022-11-21 13:01:06 -080013156
13157#ifdef __cplusplus
13158} /* extern "C" */
13159#endif
13160
13161
13162#endif /* UPB_JSONENCODE_H_ */
13163
13164#ifndef UPB_LEX_ROUND_TRIP_H_
13165#define UPB_LEX_ROUND_TRIP_H_
13166
13167// Must be last.
13168
13169// Encodes a float or double that is round-trippable, but as short as possible.
13170// These routines are not fully optimal (not guaranteed to be shortest), but are
13171// short-ish and match the implementation that has been used in protobuf since
13172// the beginning.
13173
13174// The given buffer size must be at least kUpb_RoundTripBufferSize.
13175enum { kUpb_RoundTripBufferSize = 32 };
13176
13177#ifdef __cplusplus
13178extern "C" {
13179#endif
13180
13181void _upb_EncodeRoundTripDouble(double val, char* buf, size_t size);
13182void _upb_EncodeRoundTripFloat(float val, char* buf, size_t size);
13183
13184#ifdef __cplusplus
13185} /* extern "C" */
13186#endif
13187
13188
13189#endif /* UPB_LEX_ROUND_TRIP_H_ */
13190
13191#ifndef UPB_PORT_VSNPRINTF_COMPAT_H_
13192#define UPB_PORT_VSNPRINTF_COMPAT_H_
13193
13194// Must be last.
13195
13196UPB_INLINE int _upb_vsnprintf(char* buf, size_t size, const char* fmt,
13197 va_list ap) {
13198#if defined(__MINGW64__) || defined(__MINGW32__) || defined(_MSC_VER)
13199 // The msvc runtime has a non-conforming vsnprintf() that requires the
13200 // following compatibility code to become conformant.
13201 int n = -1;
13202 if (size != 0) n = _vsnprintf_s(buf, size, _TRUNCATE, fmt, ap);
13203 if (n == -1) n = _vscprintf(fmt, ap);
13204 return n;
13205#else
13206 return vsnprintf(buf, size, fmt, ap);
13207#endif
13208}
13209
13210
13211#endif // UPB_PORT_VSNPRINTF_COMPAT_H_
13212
Eric Salodfb71552023-03-22 12:35:09 -070013213#ifndef UPB_PORT_ATOMIC_H_
13214#define UPB_PORT_ATOMIC_H_
13215
13216
13217#ifdef UPB_USE_C11_ATOMICS
13218
Protobuf Team Bot743bf922023-09-14 01:12:11 +000013219// IWYU pragma: begin_exports
Eric Salodfb71552023-03-22 12:35:09 -070013220#include <stdatomic.h>
13221#include <stdbool.h>
Protobuf Team Bot743bf922023-09-14 01:12:11 +000013222// IWYU pragma: end_exports
Eric Salodfb71552023-03-22 12:35:09 -070013223
Deanna Garciac7d979d2023-04-14 17:22:13 -070013224#define upb_Atomic_Init(addr, val) atomic_init(addr, val)
13225#define upb_Atomic_Load(addr, order) atomic_load_explicit(addr, order)
13226#define upb_Atomic_Store(addr, val, order) \
13227 atomic_store_explicit(addr, val, order)
13228#define upb_Atomic_Add(addr, val, order) \
13229 atomic_fetch_add_explicit(addr, val, order)
13230#define upb_Atomic_Sub(addr, val, order) \
Deanna Garciabd6a0cf2023-04-20 10:30:44 -070013231 atomic_fetch_sub_explicit(addr, val, order)
13232#define upb_Atomic_Exchange(addr, val, order) \
13233 atomic_exchange_explicit(addr, val, order)
Deanna Garciac7d979d2023-04-14 17:22:13 -070013234#define upb_Atomic_CompareExchangeStrong(addr, expected, desired, \
13235 success_order, failure_order) \
13236 atomic_compare_exchange_strong_explicit(addr, expected, desired, \
13237 success_order, failure_order)
13238#define upb_Atomic_CompareExchangeWeak(addr, expected, desired, success_order, \
13239 failure_order) \
13240 atomic_compare_exchange_weak_explicit(addr, expected, desired, \
13241 success_order, failure_order)
Eric Salodfb71552023-03-22 12:35:09 -070013242
13243#else // !UPB_USE_C11_ATOMICS
13244
Deanna Garciac7d979d2023-04-14 17:22:13 -070013245#include <string.h>
Eric Salodfb71552023-03-22 12:35:09 -070013246
Deanna Garciac7d979d2023-04-14 17:22:13 -070013247#define upb_Atomic_Init(addr, val) (*addr = val)
13248#define upb_Atomic_Load(addr, order) (*addr)
13249#define upb_Atomic_Store(addr, val, order) (*(addr) = val)
13250#define upb_Atomic_Add(addr, val, order) (*(addr) += val)
13251#define upb_Atomic_Sub(addr, val, order) (*(addr) -= val)
Eric Salodfb71552023-03-22 12:35:09 -070013252
Deanna Garciabd6a0cf2023-04-20 10:30:44 -070013253UPB_INLINE void* _upb_NonAtomic_Exchange(void* addr, void* value) {
13254 void* old;
13255 memcpy(&old, addr, sizeof(value));
13256 memcpy(addr, &value, sizeof(value));
13257 return old;
13258}
13259
13260#define upb_Atomic_Exchange(addr, val, order) _upb_NonAtomic_Exchange(addr, val)
13261
Deanna Garciac7d979d2023-04-14 17:22:13 -070013262// `addr` and `expected` are logically double pointers.
13263UPB_INLINE bool _upb_NonAtomic_CompareExchangeStrongP(void* addr,
13264 void* expected,
13265 void* desired) {
13266 if (memcmp(addr, expected, sizeof(desired)) == 0) {
13267 memcpy(addr, &desired, sizeof(desired));
Eric Salodfb71552023-03-22 12:35:09 -070013268 return true;
13269 } else {
Deanna Garciac7d979d2023-04-14 17:22:13 -070013270 memcpy(expected, addr, sizeof(desired));
Eric Salodfb71552023-03-22 12:35:09 -070013271 return false;
13272 }
13273}
13274
Deanna Garciac7d979d2023-04-14 17:22:13 -070013275#define upb_Atomic_CompareExchangeStrong(addr, expected, desired, \
13276 success_order, failure_order) \
13277 _upb_NonAtomic_CompareExchangeStrongP((void*)addr, (void*)expected, \
13278 (void*)desired)
13279#define upb_Atomic_CompareExchangeWeak(addr, expected, desired, success_order, \
13280 failure_order) \
13281 upb_Atomic_CompareExchangeStrong(addr, expected, desired, 0, 0)
13282
Eric Salodfb71552023-03-22 12:35:09 -070013283#endif
13284
13285
13286#endif // UPB_PORT_ATOMIC_H_
13287
Protobuf Team Bot95d7dc02023-12-13 04:09:17 +000013288#ifndef UPB_MESSAGE_COMPAT_H_
13289#define UPB_MESSAGE_COMPAT_H_
13290
13291#include <stdint.h>
13292
13293
13294// Must be last.
13295
13296// upb does not support mixing minitables from different sources but these
13297// functions are still used by some existing users so for now we make them
13298// available here. This may or may not change in the future so do not add
13299// them to new code.
13300
13301#ifdef __cplusplus
13302extern "C" {
13303#endif
13304
Protobuf Team Bot64441a22024-01-23 23:46:32 +000013305const upb_MiniTableExtension* upb_Message_ExtensionByIndex(
13306 const upb_Message* msg, size_t index);
Protobuf Team Botf2845222023-12-19 04:57:32 +000013307
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013308// Returns the minitable with the given field number, or NULL on failure.
13309const upb_MiniTableExtension* upb_Message_FindExtensionByNumber(
13310 const upb_Message* msg, uint32_t field_number);
Protobuf Team Bot95d7dc02023-12-13 04:09:17 +000013311
13312#ifdef __cplusplus
13313} /* extern "C" */
13314#endif
13315
13316
13317#endif /* UPB_MESSAGE_COMPAT_H_ */
13318
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013319// EVERYTHING BELOW THIS LINE IS INTERNAL - DO NOT USE /////////////////////////
13320
Protobuf Team Bot5b343372023-12-19 06:18:53 +000013321#ifndef UPB_MESSAGE_INTERNAL_MAP_SORTER_H_
13322#define UPB_MESSAGE_INTERNAL_MAP_SORTER_H_
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013323
13324#include <stdlib.h>
13325
13326
Protobuf Team Botc12c96e2024-01-16 07:41:08 +000013327#ifndef UPB_MESSAGE_INTERNAL_MAP_ENTRY_H_
13328#define UPB_MESSAGE_INTERNAL_MAP_ENTRY_H_
Protobuf Team Bot5b343372023-12-19 06:18:53 +000013329
13330#include <stdint.h>
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013331
13332
13333// Map entries aren't actually stored for map fields, they are only used during
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013334// parsing. (It helps a lot if all map entry messages have the same layout.)
13335// The mini_table layout code will ensure that all map entries have this layout.
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013336//
13337// Note that users can and do create map entries directly, which will also use
13338// this layout.
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013339
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013340typedef struct {
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013341 struct upb_Message message;
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013342 // We only need 2 hasbits max, but due to alignment we'll use 8 bytes here,
13343 // and the uint64_t helps make this clear.
13344 uint64_t hasbits;
13345 union {
13346 upb_StringView str; // For str/bytes.
13347 upb_value val; // For all other types.
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013348 double d[2]; // Padding for 32-bit builds.
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013349 } k;
13350 union {
13351 upb_StringView str; // For str/bytes.
13352 upb_value val; // For all other types.
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013353 double d[2]; // Padding for 32-bit builds.
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013354 } v;
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013355} upb_MapEntry;
13356
Protobuf Team Botc12c96e2024-01-16 07:41:08 +000013357#endif // UPB_MESSAGE_INTERNAL_MAP_ENTRY_H_
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013358
13359// Must be last.
13360
13361#ifdef __cplusplus
13362extern "C" {
13363#endif
13364
13365// _upb_mapsorter sorts maps and provides ordered iteration over the entries.
13366// Since maps can be recursive (map values can be messages which contain other
13367// maps), _upb_mapsorter can contain a stack of maps.
13368
13369typedef struct {
13370 void const** entries;
13371 int size;
13372 int cap;
13373} _upb_mapsorter;
13374
13375typedef struct {
13376 int start;
13377 int pos;
13378 int end;
13379} _upb_sortedmap;
13380
13381UPB_INLINE void _upb_mapsorter_init(_upb_mapsorter* s) {
13382 s->entries = NULL;
13383 s->size = 0;
13384 s->cap = 0;
13385}
13386
13387UPB_INLINE void _upb_mapsorter_destroy(_upb_mapsorter* s) {
Protobuf Team Botddc54062023-12-12 20:03:38 +000013388 if (s->entries) upb_gfree(s->entries);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013389}
13390
Protobuf Team Bot499c7482023-12-30 01:42:17 +000013391UPB_INLINE bool _upb_sortedmap_next(_upb_mapsorter* s,
13392 const struct upb_Map* map,
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013393 _upb_sortedmap* sorted, upb_MapEntry* ent) {
13394 if (sorted->pos == sorted->end) return false;
13395 const upb_tabent* tabent = (const upb_tabent*)s->entries[sorted->pos++];
13396 upb_StringView key = upb_tabstrview(tabent->key);
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013397 _upb_map_fromkey(key, &ent->k, map->key_size);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013398 upb_value val = {tabent->val.val};
Protobuf Team Bot03440ec2024-01-11 23:13:19 +000013399 _upb_map_fromvalue(val, &ent->v, map->val_size);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013400 return true;
13401}
13402
13403UPB_INLINE bool _upb_sortedmap_nextext(_upb_mapsorter* s,
13404 _upb_sortedmap* sorted,
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013405 const upb_Extension** ext) {
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013406 if (sorted->pos == sorted->end) return false;
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013407 *ext = (const upb_Extension*)s->entries[sorted->pos++];
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013408 return true;
13409}
13410
13411UPB_INLINE void _upb_mapsorter_popmap(_upb_mapsorter* s,
13412 _upb_sortedmap* sorted) {
13413 s->size = sorted->start;
13414}
13415
13416bool _upb_mapsorter_pushmap(_upb_mapsorter* s, upb_FieldType key_type,
Protobuf Team Bot499c7482023-12-30 01:42:17 +000013417 const struct upb_Map* map, _upb_sortedmap* sorted);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013418
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013419bool _upb_mapsorter_pushexts(_upb_mapsorter* s, const upb_Extension* exts,
13420 size_t count, _upb_sortedmap* sorted);
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013421
13422#ifdef __cplusplus
13423} /* extern "C" */
13424#endif
13425
13426
Protobuf Team Bot5b343372023-12-19 06:18:53 +000013427#endif /* UPB_MESSAGE_INTERNAL_MAP_SORTER_H_ */
Protobuf Team Bot376ba2f2023-09-29 22:17:43 +000013428
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000013429#ifndef UPB_BASE_INTERNAL_LOG2_H_
13430#define UPB_BASE_INTERNAL_LOG2_H_
13431
13432// Must be last.
13433
13434#ifdef __cplusplus
13435extern "C" {
13436#endif
13437
13438UPB_INLINE int upb_Log2Ceiling(int x) {
13439 if (x <= 1) return 0;
13440#ifdef __GNUC__
13441 return 32 - __builtin_clz(x - 1);
13442#else
13443 int lg2 = 0;
13444 while ((1 << lg2) < x) lg2++;
13445 return lg2;
13446#endif
13447}
13448
13449UPB_INLINE int upb_Log2CeilingSize(int x) { return 1 << upb_Log2Ceiling(x); }
13450
13451#ifdef __cplusplus
13452} /* extern "C" */
13453#endif
13454
13455
13456#endif /* UPB_BASE_INTERNAL_LOG2_H_ */
13457
Protobuf Team Bot80b5fe42023-12-27 20:08:36 +000013458#ifndef UPB_MESSAGE_COMPARE_H_
13459#define UPB_MESSAGE_COMPARE_H_
13460
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013461#include <stddef.h>
13462
Protobuf Team Bot80b5fe42023-12-27 20:08:36 +000013463
13464// Must be last.
13465
Protobuf Team Bota8543e82024-04-06 01:56:37 +000013466enum {
13467 // If set, upb_Message_IsEqual() will attempt to compare unknown fields.
13468 // By its very nature this comparison is inexact.
13469 kUpb_CompareOption_IncludeUnknownFields = (1 << 0)
13470};
13471
Protobuf Team Bot80b5fe42023-12-27 20:08:36 +000013472#ifdef __cplusplus
13473extern "C" {
13474#endif
13475
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013476// Returns true if no known fields or extensions are set in the message.
13477UPB_API bool upb_Message_IsEmpty(const upb_Message* msg,
13478 const upb_MiniTable* m);
13479
13480UPB_API bool upb_Message_IsEqual(const upb_Message* msg1,
13481 const upb_Message* msg2,
Protobuf Team Botdb9cc392024-03-11 17:27:18 +000013482 const upb_MiniTable* m, int options);
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013483
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013484// If |ctype| is a message then |m| must point to its minitable.
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013485UPB_API_INLINE bool upb_MessageValue_IsEqual(upb_MessageValue val1,
13486 upb_MessageValue val2,
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013487 upb_CType ctype,
Protobuf Team Botdb9cc392024-03-11 17:27:18 +000013488 const upb_MiniTable* m,
13489 int options) {
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013490 switch (ctype) {
13491 case kUpb_CType_Bool:
13492 return val1.bool_val == val2.bool_val;
13493
13494 case kUpb_CType_Float:
13495 case kUpb_CType_Int32:
13496 case kUpb_CType_UInt32:
13497 case kUpb_CType_Enum:
13498 return val1.int32_val == val2.int32_val;
13499
13500 case kUpb_CType_Double:
13501 case kUpb_CType_Int64:
13502 case kUpb_CType_UInt64:
13503 return val1.int64_val == val2.int64_val;
13504
13505 case kUpb_CType_String:
13506 case kUpb_CType_Bytes:
13507 return upb_StringView_IsEqual(val1.str_val, val2.str_val);
13508
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013509 case kUpb_CType_Message:
Protobuf Team Botdb9cc392024-03-11 17:27:18 +000013510 return upb_Message_IsEqual(val1.msg_val, val2.msg_val, m, options);
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013511
13512 default:
13513 UPB_UNREACHABLE();
Protobuf Team Botc13512a2024-01-25 18:53:49 +000013514 return false;
13515 }
13516}
13517
Protobuf Team Bot80b5fe42023-12-27 20:08:36 +000013518#ifdef __cplusplus
13519} /* extern "C" */
13520#endif
13521
13522
13523#endif // UPB_MESSAGE_COMPARE_H_
13524
Protobuf Team Bote3dcdfd2024-02-09 21:49:54 +000013525#ifndef UPB_MESSAGE_INTERNAL_COMPARE_UNKNOWN_H_
13526#define UPB_MESSAGE_INTERNAL_COMPARE_UNKNOWN_H_
13527
13528#include <stddef.h>
13529
13530// Must be last.
13531
13532#ifdef __cplusplus
13533extern "C" {
13534#endif
13535
13536// Returns true if unknown fields from the two messages are equal when sorted
13537// and varints are made canonical.
13538//
13539// This function is discouraged, as the comparison is inherently lossy without
13540// schema data:
13541//
13542// 1. We don't know whether delimited fields are sub-messages. Unknown
13543// sub-messages will therefore not have their fields sorted and varints
13544// canonicalized.
13545// 2. We don't know about oneof/non-repeated fields, which should semantically
13546// discard every value except the last.
13547
13548typedef enum {
13549 kUpb_UnknownCompareResult_Equal = 0,
13550 kUpb_UnknownCompareResult_NotEqual = 1,
13551 kUpb_UnknownCompareResult_OutOfMemory = 2,
13552 kUpb_UnknownCompareResult_MaxDepthExceeded = 3,
13553} upb_UnknownCompareResult;
13554
13555upb_UnknownCompareResult UPB_PRIVATE(_upb_Message_UnknownFieldsAreEqual)(
13556 const char* buf1, size_t size1, const char* buf2, size_t size2,
13557 int max_depth);
13558
13559#ifdef __cplusplus
13560} /* extern "C" */
13561#endif
13562
13563
13564#endif /* UPB_MESSAGE_INTERNAL_COMPARE_UNKNOWN_H_ */
13565
Protobuf Team Bot80b5fe42023-12-27 20:08:36 +000013566#ifndef UPB_MESSAGE_COPY_H_
13567#define UPB_MESSAGE_COPY_H_
13568
13569
13570// Must be last.
13571
13572#ifdef __cplusplus
13573extern "C" {
13574#endif
13575
13576// Deep clones a message using the provided target arena.
13577upb_Message* upb_Message_DeepClone(const upb_Message* msg,
13578 const upb_MiniTable* m, upb_Arena* arena);
13579
13580// Shallow clones a message using the provided target arena.
13581upb_Message* upb_Message_ShallowClone(const upb_Message* msg,
13582 const upb_MiniTable* m, upb_Arena* arena);
13583
13584// Deep clones array contents.
13585upb_Array* upb_Array_DeepClone(const upb_Array* array, upb_CType value_type,
13586 const upb_MiniTable* sub, upb_Arena* arena);
13587
13588// Deep clones map contents.
13589upb_Map* upb_Map_DeepClone(const upb_Map* map, upb_CType key_type,
13590 upb_CType value_type,
13591 const upb_MiniTable* map_entry_table,
13592 upb_Arena* arena);
13593
13594// Deep copies the message from src to dst.
13595bool upb_Message_DeepCopy(upb_Message* dst, const upb_Message* src,
13596 const upb_MiniTable* m, upb_Arena* arena);
13597
13598// Shallow copies the message from src to dst.
13599void upb_Message_ShallowCopy(upb_Message* dst, const upb_Message* src,
13600 const upb_MiniTable* m);
13601
13602#ifdef __cplusplus
13603} /* extern "C" */
13604#endif
13605
13606
13607#endif // UPB_MESSAGE_COPY_H_
Protobuf Team Botf4b57b92024-06-25 14:56:05 +000013608#ifndef THIRD_PARTY_UPB_UPB_MESSAGE_MERGE_H_
13609#define THIRD_PARTY_UPB_UPB_MESSAGE_MERGE_H_
13610
13611
13612// Must be last.
13613
13614#ifdef __cplusplus
13615extern "C" {
13616#endif
13617
13618UPB_API bool upb_Message_MergeFrom(upb_Message* dst, const upb_Message* src,
13619 const upb_MiniTable* mt,
13620 const upb_ExtensionRegistry* extreg,
13621 upb_Arena* arena);
13622
13623#ifdef __cplusplus
13624} /* extern "C" */
13625#endif
13626
13627#endif // THIRD_PARTY_UPB_UPB_MESSAGE_MERGE_H_
Protobuf Team Bot80b5fe42023-12-27 20:08:36 +000013628
Adam Cozzette8059da22023-08-16 07:57:14 -070013629#ifndef UPB_MINI_DESCRIPTOR_INTERNAL_BASE92_H_
13630#define UPB_MINI_DESCRIPTOR_INTERNAL_BASE92_H_
13631
Adam Cozzette7d5592e2023-08-23 12:15:26 -070013632#include <stdint.h>
13633
Adam Cozzette8059da22023-08-16 07:57:14 -070013634
13635// Must be last.
13636
13637#ifdef __cplusplus
13638extern "C" {
13639#endif
13640
13641UPB_INLINE char _upb_ToBase92(int8_t ch) {
13642 extern const char _kUpb_ToBase92[];
13643 UPB_ASSERT(0 <= ch && ch < 92);
13644 return _kUpb_ToBase92[ch];
13645}
13646
13647UPB_INLINE char _upb_FromBase92(uint8_t ch) {
13648 extern const int8_t _kUpb_FromBase92[];
13649 if (' ' > ch || ch > '~') return -1;
13650 return _kUpb_FromBase92[ch - ' '];
13651}
13652
13653UPB_INLINE const char* _upb_Base92_DecodeVarint(const char* ptr,
13654 const char* end, char first_ch,
13655 uint8_t min, uint8_t max,
13656 uint32_t* out_val) {
13657 uint32_t val = 0;
13658 uint32_t shift = 0;
13659 const int bits_per_char =
13660 upb_Log2Ceiling(_upb_FromBase92(max) - _upb_FromBase92(min));
13661 char ch = first_ch;
13662 while (1) {
13663 uint32_t bits = _upb_FromBase92(ch) - _upb_FromBase92(min);
13664 val |= bits << shift;
13665 if (ptr == end || *ptr < min || max < *ptr) {
13666 *out_val = val;
13667 UPB_ASSUME(ptr != NULL);
13668 return ptr;
13669 }
13670 ch = *ptr++;
13671 shift += bits_per_char;
13672 if (shift >= 32) return NULL;
13673 }
13674}
13675
13676#ifdef __cplusplus
13677} /* extern "C" */
13678#endif
13679
13680
13681#endif // UPB_MINI_DESCRIPTOR_INTERNAL_BASE92_H_
13682
Protobuf Team Bot91cfce92023-11-27 21:05:28 +000013683#ifndef UPB_MINI_DESCRIPTOR_INTERNAL_DECODER_H_
13684#define UPB_MINI_DESCRIPTOR_INTERNAL_DECODER_H_
13685
13686
Adam Cozzette8059da22023-08-16 07:57:14 -070013687// Must be last.
13688
13689// upb_MdDecoder: used internally for decoding MiniDescriptors for messages,
13690// extensions, and enums.
13691typedef struct {
13692 const char* end;
13693 upb_Status* status;
13694 jmp_buf err;
13695} upb_MdDecoder;
13696
13697UPB_PRINTF(2, 3)
13698UPB_NORETURN UPB_INLINE void upb_MdDecoder_ErrorJmp(upb_MdDecoder* d,
13699 const char* fmt, ...) {
13700 if (d->status) {
13701 va_list argp;
13702 upb_Status_SetErrorMessage(d->status, "Error building mini table: ");
13703 va_start(argp, fmt);
13704 upb_Status_VAppendErrorFormat(d->status, fmt, argp);
13705 va_end(argp);
13706 }
13707 UPB_LONGJMP(d->err, 1);
13708}
13709
13710UPB_INLINE void upb_MdDecoder_CheckOutOfMemory(upb_MdDecoder* d,
13711 const void* ptr) {
13712 if (!ptr) upb_MdDecoder_ErrorJmp(d, "Out of memory");
13713}
13714
13715UPB_INLINE const char* upb_MdDecoder_DecodeBase92Varint(
13716 upb_MdDecoder* d, const char* ptr, char first_ch, uint8_t min, uint8_t max,
13717 uint32_t* out_val) {
13718 ptr = _upb_Base92_DecodeVarint(ptr, d->end, first_ch, min, max, out_val);
13719 if (!ptr) upb_MdDecoder_ErrorJmp(d, "Overlong varint");
13720 return ptr;
13721}
13722
13723
13724#endif // UPB_MINI_DESCRIPTOR_INTERNAL_DECODER_H_
13725
13726#ifndef UPB_MINI_DESCRIPTOR_INTERNAL_WIRE_CONSTANTS_H_
13727#define UPB_MINI_DESCRIPTOR_INTERNAL_WIRE_CONSTANTS_H_
13728
13729
13730// Must be last.
13731
13732typedef enum {
13733 kUpb_EncodedType_Double = 0,
13734 kUpb_EncodedType_Float = 1,
13735 kUpb_EncodedType_Fixed32 = 2,
13736 kUpb_EncodedType_Fixed64 = 3,
13737 kUpb_EncodedType_SFixed32 = 4,
13738 kUpb_EncodedType_SFixed64 = 5,
13739 kUpb_EncodedType_Int32 = 6,
13740 kUpb_EncodedType_UInt32 = 7,
13741 kUpb_EncodedType_SInt32 = 8,
13742 kUpb_EncodedType_Int64 = 9,
13743 kUpb_EncodedType_UInt64 = 10,
13744 kUpb_EncodedType_SInt64 = 11,
13745 kUpb_EncodedType_OpenEnum = 12,
13746 kUpb_EncodedType_Bool = 13,
13747 kUpb_EncodedType_Bytes = 14,
13748 kUpb_EncodedType_String = 15,
13749 kUpb_EncodedType_Group = 16,
13750 kUpb_EncodedType_Message = 17,
13751 kUpb_EncodedType_ClosedEnum = 18,
13752
13753 kUpb_EncodedType_RepeatedBase = 20,
13754} upb_EncodedType;
13755
13756typedef enum {
13757 kUpb_EncodedFieldModifier_FlipPacked = 1 << 0,
13758 kUpb_EncodedFieldModifier_IsRequired = 1 << 1,
13759 kUpb_EncodedFieldModifier_IsProto3Singular = 1 << 2,
Protobuf Team Botb58bd402023-09-19 15:42:34 +000013760 kUpb_EncodedFieldModifier_FlipValidateUtf8 = 1 << 3,
Adam Cozzette8059da22023-08-16 07:57:14 -070013761} upb_EncodedFieldModifier;
13762
13763enum {
13764 kUpb_EncodedValue_MinField = ' ',
13765 kUpb_EncodedValue_MaxField = 'I',
13766 kUpb_EncodedValue_MinModifier = 'L',
13767 kUpb_EncodedValue_MaxModifier = '[',
13768 kUpb_EncodedValue_End = '^',
13769 kUpb_EncodedValue_MinSkip = '_',
13770 kUpb_EncodedValue_MaxSkip = '~',
13771 kUpb_EncodedValue_OneofSeparator = '~',
13772 kUpb_EncodedValue_FieldSeparator = '|',
13773 kUpb_EncodedValue_MinOneofField = ' ',
13774 kUpb_EncodedValue_MaxOneofField = 'b',
13775 kUpb_EncodedValue_MaxEnumMask = 'A',
13776};
13777
13778enum {
13779 kUpb_EncodedVersion_EnumV1 = '!',
13780 kUpb_EncodedVersion_ExtensionV1 = '#',
13781 kUpb_EncodedVersion_MapV1 = '%',
13782 kUpb_EncodedVersion_MessageV1 = '$',
13783 kUpb_EncodedVersion_MessageSetV1 = '&',
13784};
13785
13786
13787#endif // UPB_MINI_DESCRIPTOR_INTERNAL_WIRE_CONSTANTS_H_
13788
13789#ifndef UPB_MINI_DESCRIPTOR_INTERNAL_MODIFIERS_H_
13790#define UPB_MINI_DESCRIPTOR_INTERNAL_MODIFIERS_H_
13791
13792// Must be last.
13793
13794typedef enum {
13795 kUpb_FieldModifier_IsRepeated = 1 << 0,
13796 kUpb_FieldModifier_IsPacked = 1 << 1,
13797 kUpb_FieldModifier_IsClosedEnum = 1 << 2,
13798 kUpb_FieldModifier_IsProto3Singular = 1 << 3,
13799 kUpb_FieldModifier_IsRequired = 1 << 4,
Protobuf Team Botb58bd402023-09-19 15:42:34 +000013800 kUpb_FieldModifier_ValidateUtf8 = 1 << 5,
Adam Cozzette8059da22023-08-16 07:57:14 -070013801} kUpb_FieldModifier;
13802
Protobuf Team Botb58bd402023-09-19 15:42:34 +000013803// These modifiers are also used on the wire.
Adam Cozzette8059da22023-08-16 07:57:14 -070013804typedef enum {
13805 kUpb_MessageModifier_ValidateUtf8 = 1 << 0,
13806 kUpb_MessageModifier_DefaultIsPacked = 1 << 1,
13807 kUpb_MessageModifier_IsExtendable = 1 << 2,
13808} kUpb_MessageModifier;
13809
13810
13811#endif // UPB_MINI_DESCRIPTOR_INTERNAL_MODIFIERS_H_
13812
Protobuf Team Botc4a7b032023-12-27 00:12:48 +000013813#ifndef UPB_MINI_TABLE_COMPAT_H_
13814#define UPB_MINI_TABLE_COMPAT_H_
13815
13816
13817// Must be last.
13818
13819// upb does not support mixing minitables from different sources but these
13820// functions are still used by some existing users so for now we make them
13821// available here. This may or may not change in the future so do not add
13822// them to new code.
13823
13824#ifdef __cplusplus
13825extern "C" {
13826#endif
13827
13828// Checks if memory layout of src is compatible with dst.
13829bool upb_MiniTable_Compatible(const upb_MiniTable* src,
13830 const upb_MiniTable* dst);
13831
13832typedef enum {
13833 kUpb_MiniTableEquals_NotEqual,
13834 kUpb_MiniTableEquals_Equal,
13835 kUpb_MiniTableEquals_OutOfMemory,
13836} upb_MiniTableEquals_Status;
13837
13838// Checks equality of mini tables originating from different language runtimes.
13839upb_MiniTableEquals_Status upb_MiniTable_Equals(const upb_MiniTable* src,
13840 const upb_MiniTable* dst);
13841
13842#ifdef __cplusplus
13843} /* extern "C" */
13844#endif
13845
13846
13847#endif /* UPB_MINI_TABLE_COMPAT_H_ */
13848
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000013849#ifndef UPB_HASH_INT_TABLE_H_
13850#define UPB_HASH_INT_TABLE_H_
13851
13852
13853// Must be last.
13854
13855typedef struct {
13856 upb_table t; // For entries that don't fit in the array part.
13857 const upb_tabval* array; // Array part of the table. See const note above.
13858 size_t array_size; // Array part size.
13859 size_t array_count; // Array part number of elements.
13860} upb_inttable;
13861
13862#ifdef __cplusplus
13863extern "C" {
13864#endif
13865
13866// Initialize a table. If memory allocation failed, false is returned and
13867// the table is uninitialized.
13868bool upb_inttable_init(upb_inttable* table, upb_Arena* a);
13869
13870// Returns the number of values in the table.
13871size_t upb_inttable_count(const upb_inttable* t);
13872
13873// Inserts the given key into the hashtable with the given value.
13874// The key must not already exist in the hash table.
13875// The value must not be UINTPTR_MAX.
13876//
13877// If a table resize was required but memory allocation failed, false is
13878// returned and the table is unchanged.
13879bool upb_inttable_insert(upb_inttable* t, uintptr_t key, upb_value val,
13880 upb_Arena* a);
13881
13882// Looks up key in this table, returning "true" if the key was found.
13883// If v is non-NULL, copies the value for this key into *v.
13884bool upb_inttable_lookup(const upb_inttable* t, uintptr_t key, upb_value* v);
13885
13886// Removes an item from the table. Returns true if the remove was successful,
13887// and stores the removed item in *val if non-NULL.
13888bool upb_inttable_remove(upb_inttable* t, uintptr_t key, upb_value* val);
13889
13890// Updates an existing entry in an inttable.
13891// If the entry does not exist, returns false and does nothing.
13892// Unlike insert/remove, this does not invalidate iterators.
13893bool upb_inttable_replace(upb_inttable* t, uintptr_t key, upb_value val);
13894
13895// Optimizes the table for the current set of entries, for both memory use and
13896// lookup time. Client should call this after all entries have been inserted;
13897// inserting more entries is legal, but will likely require a table resize.
13898void upb_inttable_compact(upb_inttable* t, upb_Arena* a);
13899
13900// Iteration over inttable:
13901//
13902// intptr_t iter = UPB_INTTABLE_BEGIN;
13903// uintptr_t key;
13904// upb_value val;
13905// while (upb_inttable_next(t, &key, &val, &iter)) {
13906// // ...
13907// }
13908
13909#define UPB_INTTABLE_BEGIN -1
13910
13911bool upb_inttable_next(const upb_inttable* t, uintptr_t* key, upb_value* val,
13912 intptr_t* iter);
13913void upb_inttable_removeiter(upb_inttable* t, intptr_t* iter);
13914
13915#ifdef __cplusplus
13916} /* extern "C" */
13917#endif
13918
13919
13920#endif /* UPB_HASH_INT_TABLE_H_ */
13921
13922#ifndef UPB_WIRE_INTERNAL_CONSTANTS_H_
13923#define UPB_WIRE_INTERNAL_CONSTANTS_H_
13924
13925#define kUpb_WireFormat_DefaultDepthLimit 100
13926
13927// MessageSet wire format is:
13928// message MessageSet {
13929// repeated group Item = 1 {
13930// required int32 type_id = 2;
13931// required bytes message = 3;
13932// }
13933// }
13934
13935enum {
13936 kUpb_MsgSet_Item = 1,
13937 kUpb_MsgSet_TypeId = 2,
13938 kUpb_MsgSet_Message = 3,
13939};
13940
13941#endif /* UPB_WIRE_INTERNAL_CONSTANTS_H_ */
13942
13943/*
13944 * Internal implementation details of the decoder that are shared between
13945 * decode.c and decode_fast.c.
13946 */
13947
13948#ifndef UPB_WIRE_INTERNAL_DECODER_H_
13949#define UPB_WIRE_INTERNAL_DECODER_H_
13950
13951#include "utf8_range.h"
13952
13953// Must be last.
13954
13955#define DECODE_NOGROUP (uint32_t) - 1
13956
13957typedef struct upb_Decoder {
13958 upb_EpsCopyInputStream input;
13959 const upb_ExtensionRegistry* extreg;
13960 const char* unknown; // Start of unknown data, preserve at buffer flip
13961 upb_Message* unknown_msg; // Pointer to preserve data to
13962 int depth; // Tracks recursion depth to bound stack usage.
13963 uint32_t end_group; // field number of END_GROUP tag, else DECODE_NOGROUP.
13964 uint16_t options;
13965 bool missing_required;
13966 union {
13967 upb_Arena arena;
13968 void* foo[UPB_ARENA_SIZE_HACK];
13969 };
13970 upb_DecodeStatus status;
13971 jmp_buf err;
13972
13973#ifndef NDEBUG
13974 const char* debug_tagstart;
13975 const char* debug_valstart;
13976#endif
13977} upb_Decoder;
13978
13979/* Error function that will abort decoding with longjmp(). We can't declare this
13980 * UPB_NORETURN, even though it is appropriate, because if we do then compilers
13981 * will "helpfully" refuse to tailcall to it
13982 * (see: https://stackoverflow.com/a/55657013), which will defeat a major goal
13983 * of our optimizations. That is also why we must declare it in a separate file,
13984 * otherwise the compiler will see that it calls longjmp() and deduce that it is
13985 * noreturn. */
13986const char* _upb_FastDecoder_ErrorJmp(upb_Decoder* d, int status);
13987
13988extern const uint8_t upb_utf8_offsets[];
13989
13990UPB_INLINE
13991bool _upb_Decoder_VerifyUtf8Inline(const char* ptr, int len) {
13992 return utf8_range_IsValid(ptr, len);
13993}
13994
13995const char* _upb_Decoder_CheckRequired(upb_Decoder* d, const char* ptr,
13996 const upb_Message* msg,
13997 const upb_MiniTable* m);
13998
13999/* x86-64 pointers always have the high 16 bits matching. So we can shift
14000 * left 8 and right 8 without loss of information. */
14001UPB_INLINE intptr_t decode_totable(const upb_MiniTable* tablep) {
14002 return ((intptr_t)tablep << 8) | tablep->UPB_PRIVATE(table_mask);
14003}
14004
14005UPB_INLINE const upb_MiniTable* decode_totablep(intptr_t table) {
14006 return (const upb_MiniTable*)(table >> 8);
14007}
14008
14009const char* _upb_Decoder_IsDoneFallback(upb_EpsCopyInputStream* e,
14010 const char* ptr, int overrun);
14011
14012UPB_INLINE bool _upb_Decoder_IsDone(upb_Decoder* d, const char** ptr) {
14013 return upb_EpsCopyInputStream_IsDoneWithCallback(
14014 &d->input, ptr, &_upb_Decoder_IsDoneFallback);
14015}
14016
14017UPB_INLINE const char* _upb_Decoder_BufferFlipCallback(
14018 upb_EpsCopyInputStream* e, const char* old_end, const char* new_start) {
14019 upb_Decoder* d = (upb_Decoder*)e;
14020 if (!old_end) _upb_FastDecoder_ErrorJmp(d, kUpb_DecodeStatus_Malformed);
14021
14022 if (d->unknown) {
14023 if (!UPB_PRIVATE(_upb_Message_AddUnknown)(
14024 d->unknown_msg, d->unknown, old_end - d->unknown, &d->arena)) {
14025 _upb_FastDecoder_ErrorJmp(d, kUpb_DecodeStatus_OutOfMemory);
14026 }
14027 d->unknown = new_start;
14028 }
14029 return new_start;
14030}
14031
14032#if UPB_FASTTABLE
14033UPB_INLINE
14034const char* _upb_FastDecoder_TagDispatch(upb_Decoder* d, const char* ptr,
14035 upb_Message* msg, intptr_t table,
14036 uint64_t hasbits, uint64_t tag) {
14037 const upb_MiniTable* table_p = decode_totablep(table);
14038 uint8_t mask = table;
14039 uint64_t data;
14040 size_t idx = tag & mask;
14041 UPB_ASSUME((idx & 7) == 0);
14042 idx >>= 3;
14043 data = table_p->UPB_PRIVATE(fasttable)[idx].field_data ^ tag;
14044 UPB_MUSTTAIL return table_p->UPB_PRIVATE(fasttable)[idx].field_parser(
14045 d, ptr, msg, table, hasbits, data);
14046}
14047#endif
14048
14049UPB_INLINE uint32_t _upb_FastDecoder_LoadTag(const char* ptr) {
14050 uint16_t tag;
14051 memcpy(&tag, ptr, 2);
14052 return tag;
14053}
14054
14055
14056#endif /* UPB_WIRE_INTERNAL_DECODER_H_ */
14057
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014058#ifndef UPB_WIRE_READER_H_
14059#define UPB_WIRE_READER_H_
14060
14061
14062#ifndef UPB_WIRE_INTERNAL_READER_H_
14063#define UPB_WIRE_INTERNAL_READER_H_
14064
14065// Must be last.
14066
14067#define kUpb_WireReader_WireTypeBits 3
14068#define kUpb_WireReader_WireTypeMask 7
14069
14070typedef struct {
14071 const char* ptr;
14072 uint64_t val;
14073} UPB_PRIVATE(_upb_WireReader_LongVarint);
14074
14075#ifdef __cplusplus
14076extern "C" {
14077#endif
14078
14079UPB_PRIVATE(_upb_WireReader_LongVarint)
14080UPB_PRIVATE(_upb_WireReader_ReadLongVarint)(const char* ptr, uint64_t val);
14081
Protobuf Team Bot1d143b52024-01-25 20:29:43 +000014082UPB_FORCEINLINE const char* UPB_PRIVATE(_upb_WireReader_ReadVarint)(
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014083 const char* ptr, uint64_t* val, int maxlen, uint64_t maxval) {
14084 uint64_t byte = (uint8_t)*ptr;
14085 if (UPB_LIKELY((byte & 0x80) == 0)) {
14086 *val = (uint32_t)byte;
14087 return ptr + 1;
14088 }
14089 const char* start = ptr;
14090 UPB_PRIVATE(_upb_WireReader_LongVarint)
14091 res = UPB_PRIVATE(_upb_WireReader_ReadLongVarint)(ptr, byte);
14092 if (!res.ptr || (maxlen < 10 && res.ptr - start > maxlen) ||
14093 res.val > maxval) {
14094 return NULL; // Malformed.
14095 }
14096 *val = res.val;
14097 return res.ptr;
14098}
14099
Protobuf Team Botb3878b52024-02-08 21:50:53 +000014100UPB_API_INLINE uint32_t upb_WireReader_GetFieldNumber(uint32_t tag) {
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014101 return tag >> kUpb_WireReader_WireTypeBits;
14102}
14103
Protobuf Team Botb3878b52024-02-08 21:50:53 +000014104UPB_API_INLINE uint8_t upb_WireReader_GetWireType(uint32_t tag) {
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014105 return tag & kUpb_WireReader_WireTypeMask;
14106}
14107
14108#ifdef __cplusplus
14109} /* extern "C" */
14110#endif
14111
14112
14113#endif // UPB_WIRE_INTERNAL_READER_H_
14114
14115#ifndef UPB_WIRE_TYPES_H_
14116#define UPB_WIRE_TYPES_H_
14117
14118// A list of types as they are encoded on the wire.
14119typedef enum {
14120 kUpb_WireType_Varint = 0,
14121 kUpb_WireType_64Bit = 1,
14122 kUpb_WireType_Delimited = 2,
14123 kUpb_WireType_StartGroup = 3,
14124 kUpb_WireType_EndGroup = 4,
14125 kUpb_WireType_32Bit = 5
14126} upb_WireType;
14127
14128#endif /* UPB_WIRE_TYPES_H_ */
14129
14130// Must be last.
14131
14132// The upb_WireReader interface is suitable for general-purpose parsing of
14133// protobuf binary wire format. It is designed to be used along with
14134// upb_EpsCopyInputStream for buffering, and all parsing routines in this file
14135// assume that at least kUpb_EpsCopyInputStream_SlopBytes worth of data is
14136// available to read without any bounds checks.
14137
14138#ifdef __cplusplus
14139extern "C" {
14140#endif
14141
14142// Parses a tag into `tag`, and returns a pointer past the end of the tag, or
14143// NULL if there was an error in the tag data.
14144//
14145// REQUIRES: there must be at least 10 bytes of data available at `ptr`.
14146// Bounds checks must be performed before calling this function, preferably
14147// by calling upb_EpsCopyInputStream_IsDone().
Protobuf Team Bot1d143b52024-01-25 20:29:43 +000014148UPB_FORCEINLINE const char* upb_WireReader_ReadTag(const char* ptr,
14149 uint32_t* tag) {
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014150 uint64_t val;
14151 ptr = UPB_PRIVATE(_upb_WireReader_ReadVarint)(ptr, &val, 5, UINT32_MAX);
14152 if (!ptr) return NULL;
14153 *tag = val;
14154 return ptr;
14155}
14156
14157// Given a tag, returns the field number.
Protobuf Team Botb3878b52024-02-08 21:50:53 +000014158UPB_API_INLINE uint32_t upb_WireReader_GetFieldNumber(uint32_t tag);
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014159
14160// Given a tag, returns the wire type.
Protobuf Team Botb3878b52024-02-08 21:50:53 +000014161UPB_API_INLINE uint8_t upb_WireReader_GetWireType(uint32_t tag);
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014162
14163UPB_INLINE const char* upb_WireReader_ReadVarint(const char* ptr,
14164 uint64_t* val) {
14165 return UPB_PRIVATE(_upb_WireReader_ReadVarint)(ptr, val, 10, UINT64_MAX);
14166}
14167
14168// Skips data for a varint, returning a pointer past the end of the varint, or
14169// NULL if there was an error in the varint data.
14170//
14171// REQUIRES: there must be at least 10 bytes of data available at `ptr`.
14172// Bounds checks must be performed before calling this function, preferably
14173// by calling upb_EpsCopyInputStream_IsDone().
14174UPB_INLINE const char* upb_WireReader_SkipVarint(const char* ptr) {
14175 uint64_t val;
14176 return upb_WireReader_ReadVarint(ptr, &val);
14177}
14178
14179// Reads a varint indicating the size of a delimited field into `size`, or
14180// NULL if there was an error in the varint data.
14181//
14182// REQUIRES: there must be at least 10 bytes of data available at `ptr`.
14183// Bounds checks must be performed before calling this function, preferably
14184// by calling upb_EpsCopyInputStream_IsDone().
14185UPB_INLINE const char* upb_WireReader_ReadSize(const char* ptr, int* size) {
14186 uint64_t size64;
14187 ptr = upb_WireReader_ReadVarint(ptr, &size64);
14188 if (!ptr || size64 >= INT32_MAX) return NULL;
14189 *size = size64;
14190 return ptr;
14191}
14192
14193// Reads a fixed32 field, performing byte swapping if necessary.
14194//
14195// REQUIRES: there must be at least 4 bytes of data available at `ptr`.
14196// Bounds checks must be performed before calling this function, preferably
14197// by calling upb_EpsCopyInputStream_IsDone().
14198UPB_INLINE const char* upb_WireReader_ReadFixed32(const char* ptr, void* val) {
14199 uint32_t uval;
14200 memcpy(&uval, ptr, 4);
Protobuf Team Botde5ea1e2024-01-02 04:02:53 +000014201 uval = upb_BigEndian32(uval);
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014202 memcpy(val, &uval, 4);
14203 return ptr + 4;
14204}
14205
14206// Reads a fixed64 field, performing byte swapping if necessary.
14207//
14208// REQUIRES: there must be at least 4 bytes of data available at `ptr`.
14209// Bounds checks must be performed before calling this function, preferably
14210// by calling upb_EpsCopyInputStream_IsDone().
14211UPB_INLINE const char* upb_WireReader_ReadFixed64(const char* ptr, void* val) {
14212 uint64_t uval;
14213 memcpy(&uval, ptr, 8);
Protobuf Team Botde5ea1e2024-01-02 04:02:53 +000014214 uval = upb_BigEndian64(uval);
Protobuf Team Botcb8a31e2024-01-02 02:33:01 +000014215 memcpy(val, &uval, 8);
14216 return ptr + 8;
14217}
14218
14219const char* UPB_PRIVATE(_upb_WireReader_SkipGroup)(
14220 const char* ptr, uint32_t tag, int depth_limit,
14221 upb_EpsCopyInputStream* stream);
14222
14223// Skips data for a group, returning a pointer past the end of the group, or
14224// NULL if there was an error parsing the group. The `tag` argument should be
14225// the start group tag that begins the group. The `depth_limit` argument
14226// indicates how many levels of recursion the group is allowed to have before
14227// reporting a parse error (this limit exists to protect against stack
14228// overflow).
14229//
14230// TODO: evaluate how the depth_limit should be specified. Do users need
14231// control over this?
14232UPB_INLINE const char* upb_WireReader_SkipGroup(
14233 const char* ptr, uint32_t tag, upb_EpsCopyInputStream* stream) {
14234 return UPB_PRIVATE(_upb_WireReader_SkipGroup)(ptr, tag, 100, stream);
14235}
14236
14237UPB_INLINE const char* _upb_WireReader_SkipValue(
14238 const char* ptr, uint32_t tag, int depth_limit,
14239 upb_EpsCopyInputStream* stream) {
14240 switch (upb_WireReader_GetWireType(tag)) {
14241 case kUpb_WireType_Varint:
14242 return upb_WireReader_SkipVarint(ptr);
14243 case kUpb_WireType_32Bit:
14244 return ptr + 4;
14245 case kUpb_WireType_64Bit:
14246 return ptr + 8;
14247 case kUpb_WireType_Delimited: {
14248 int size;
14249 ptr = upb_WireReader_ReadSize(ptr, &size);
14250 if (!ptr) return NULL;
14251 ptr += size;
14252 return ptr;
14253 }
14254 case kUpb_WireType_StartGroup:
14255 return UPB_PRIVATE(_upb_WireReader_SkipGroup)(ptr, tag, depth_limit,
14256 stream);
14257 case kUpb_WireType_EndGroup:
14258 return NULL; // Should be handled before now.
14259 default:
14260 return NULL; // Unknown wire type.
14261 }
14262}
14263
14264// Skips data for a wire value of any type, returning a pointer past the end of
14265// the data, or NULL if there was an error parsing the group. The `tag` argument
14266// should be the tag that was just parsed. The `depth_limit` argument indicates
14267// how many levels of recursion a group is allowed to have before reporting a
14268// parse error (this limit exists to protect against stack overflow).
14269//
14270// REQUIRES: there must be at least 10 bytes of data available at `ptr`.
14271// Bounds checks must be performed before calling this function, preferably
14272// by calling upb_EpsCopyInputStream_IsDone().
14273//
14274// TODO: evaluate how the depth_limit should be specified. Do users need
14275// control over this?
14276UPB_INLINE const char* upb_WireReader_SkipValue(
14277 const char* ptr, uint32_t tag, upb_EpsCopyInputStream* stream) {
14278 return _upb_WireReader_SkipValue(ptr, tag, 100, stream);
14279}
14280
14281#ifdef __cplusplus
14282} /* extern "C" */
14283#endif
14284
14285
14286#endif // UPB_WIRE_READER_H_
14287
14288#ifndef UPB_LEX_STRTOD_H_
14289#define UPB_LEX_STRTOD_H_
14290
14291// Must be last.
14292
14293#ifdef __cplusplus
14294extern "C" {
14295#endif
14296
14297double _upb_NoLocaleStrtod(const char *str, char **endptr);
14298
14299#ifdef __cplusplus
14300} /* extern "C" */
14301#endif
14302
14303
14304#endif /* UPB_LEX_STRTOD_H_ */
14305
14306#ifndef UPB_MINI_DESCRIPTOR_INTERNAL_ENCODE_H_
14307#define UPB_MINI_DESCRIPTOR_INTERNAL_ENCODE_H_
14308
14309#include <stdint.h>
14310
14311
14312// Must be last.
14313
14314// If the input buffer has at least this many bytes available, the encoder call
14315// is guaranteed to succeed (as long as field number order is maintained).
14316#define kUpb_MtDataEncoder_MinSize 16
14317
14318typedef struct {
14319 char* end; // Limit of the buffer passed as a parameter.
14320 // Aliased to internal-only members in .cc.
14321 char internal[32];
14322} upb_MtDataEncoder;
14323
14324#ifdef __cplusplus
14325extern "C" {
14326#endif
14327
14328// Encodes field/oneof information for a given message. The sequence of calls
14329// should look like:
14330//
14331// upb_MtDataEncoder e;
14332// char buf[256];
14333// char* ptr = buf;
14334// e.end = ptr + sizeof(buf);
14335// unit64_t msg_mod = ...; // bitwise & of kUpb_MessageModifiers or zero
14336// ptr = upb_MtDataEncoder_StartMessage(&e, ptr, msg_mod);
14337// // Fields *must* be in field number order.
14338// ptr = upb_MtDataEncoder_PutField(&e, ptr, ...);
14339// ptr = upb_MtDataEncoder_PutField(&e, ptr, ...);
14340// ptr = upb_MtDataEncoder_PutField(&e, ptr, ...);
14341//
14342// // If oneofs are present. Oneofs must be encoded after regular fields.
14343// ptr = upb_MiniTable_StartOneof(&e, ptr)
14344// ptr = upb_MiniTable_PutOneofField(&e, ptr, ...);
14345// ptr = upb_MiniTable_PutOneofField(&e, ptr, ...);
14346//
14347// ptr = upb_MiniTable_StartOneof(&e, ptr);
14348// ptr = upb_MiniTable_PutOneofField(&e, ptr, ...);
14349// ptr = upb_MiniTable_PutOneofField(&e, ptr, ...);
14350//
14351// Oneofs must be encoded after all regular fields.
14352char* upb_MtDataEncoder_StartMessage(upb_MtDataEncoder* e, char* ptr,
14353 uint64_t msg_mod);
14354char* upb_MtDataEncoder_PutField(upb_MtDataEncoder* e, char* ptr,
14355 upb_FieldType type, uint32_t field_num,
14356 uint64_t field_mod);
14357char* upb_MtDataEncoder_StartOneof(upb_MtDataEncoder* e, char* ptr);
14358char* upb_MtDataEncoder_PutOneofField(upb_MtDataEncoder* e, char* ptr,
14359 uint32_t field_num);
14360
14361// Encodes the set of values for a given enum. The values must be given in
14362// order (after casting to uint32_t), and repeats are not allowed.
14363char* upb_MtDataEncoder_StartEnum(upb_MtDataEncoder* e, char* ptr);
14364char* upb_MtDataEncoder_PutEnumValue(upb_MtDataEncoder* e, char* ptr,
14365 uint32_t val);
14366char* upb_MtDataEncoder_EndEnum(upb_MtDataEncoder* e, char* ptr);
14367
14368// Encodes an entire mini descriptor for an extension.
14369char* upb_MtDataEncoder_EncodeExtension(upb_MtDataEncoder* e, char* ptr,
14370 upb_FieldType type, uint32_t field_num,
14371 uint64_t field_mod);
14372
14373// Encodes an entire mini descriptor for a map.
14374char* upb_MtDataEncoder_EncodeMap(upb_MtDataEncoder* e, char* ptr,
14375 upb_FieldType key_type,
14376 upb_FieldType value_type, uint64_t key_mod,
14377 uint64_t value_mod);
14378
14379// Encodes an entire mini descriptor for a message set.
14380char* upb_MtDataEncoder_EncodeMessageSet(upb_MtDataEncoder* e, char* ptr);
14381
14382#ifdef __cplusplus
14383} /* extern "C" */
14384#endif
14385
14386
14387#endif /* UPB_MINI_DESCRIPTOR_INTERNAL_ENCODE_H_ */
14388
Eric Salo8809a112022-11-21 13:01:06 -080014389#ifndef UPB_REFLECTION_DEF_POOL_INTERNAL_H_
14390#define UPB_REFLECTION_DEF_POOL_INTERNAL_H_
14391
14392
14393// Must be last.
14394
14395#ifdef __cplusplus
14396extern "C" {
14397#endif
14398
14399upb_Arena* _upb_DefPool_Arena(const upb_DefPool* s);
14400size_t _upb_DefPool_BytesLoaded(const upb_DefPool* s);
14401upb_ExtensionRegistry* _upb_DefPool_ExtReg(const upb_DefPool* s);
14402
14403bool _upb_DefPool_InsertExt(upb_DefPool* s, const upb_MiniTableExtension* ext,
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -070014404 const upb_FieldDef* f);
Eric Salo8809a112022-11-21 13:01:06 -080014405bool _upb_DefPool_InsertSym(upb_DefPool* s, upb_StringView sym, upb_value v,
14406 upb_Status* status);
14407bool _upb_DefPool_LookupSym(const upb_DefPool* s, const char* sym, size_t size,
14408 upb_value* v);
14409
14410void** _upb_DefPool_ScratchData(const upb_DefPool* s);
14411size_t* _upb_DefPool_ScratchSize(const upb_DefPool* s);
Mike Kruskal232ecf42023-01-14 00:09:40 -080014412void _upb_DefPool_SetPlatform(upb_DefPool* s, upb_MiniTablePlatform platform);
Eric Salo8809a112022-11-21 13:01:06 -080014413
14414// For generated code only: loads a generated descriptor.
14415typedef struct _upb_DefPool_Init {
14416 struct _upb_DefPool_Init** deps; // Dependencies of this file.
14417 const upb_MiniTableFile* layout;
14418 const char* filename;
14419 upb_StringView descriptor; // Serialized descriptor.
14420} _upb_DefPool_Init;
14421
14422bool _upb_DefPool_LoadDefInit(upb_DefPool* s, const _upb_DefPool_Init* init);
14423
14424// Should only be directly called by tests. This variant lets us suppress
14425// the use of compiled-in tables, forcing a rebuild of the tables at runtime.
14426bool _upb_DefPool_LoadDefInitEx(upb_DefPool* s, const _upb_DefPool_Init* init,
14427 bool rebuild_minitable);
14428
14429#ifdef __cplusplus
14430} /* extern "C" */
14431#endif
14432
14433
14434#endif /* UPB_REFLECTION_DEF_POOL_INTERNAL_H_ */
14435
Protobuf Team Bot7be2a452023-09-13 16:50:05 +000014436#ifndef UPB_REFLECTION_DEF_BUILDER_INTERNAL_H_
14437#define UPB_REFLECTION_DEF_BUILDER_INTERNAL_H_
14438
14439
Eric Salo8809a112022-11-21 13:01:06 -080014440// Must be last.
14441
14442// We want to copy the options verbatim into the destination options proto.
14443// We use serialize+parse as our deep copy.
Mike Kruskal232ecf42023-01-14 00:09:40 -080014444#define UPB_DEF_SET_OPTIONS(target, desc_type, options_type, proto) \
14445 if (UPB_DESC(desc_type##_has_options)(proto)) { \
14446 size_t size; \
14447 char* pb = UPB_DESC(options_type##_serialize)( \
14448 UPB_DESC(desc_type##_options)(proto), ctx->tmp_arena, &size); \
14449 if (!pb) _upb_DefBuilder_OomErr(ctx); \
14450 target = \
14451 UPB_DESC(options_type##_parse)(pb, size, _upb_DefBuilder_Arena(ctx)); \
14452 if (!target) _upb_DefBuilder_OomErr(ctx); \
14453 } else { \
14454 target = (const UPB_DESC(options_type)*)kUpbDefOptDefault; \
Eric Salo8809a112022-11-21 13:01:06 -080014455 }
14456
14457#ifdef __cplusplus
14458extern "C" {
14459#endif
14460
14461struct upb_DefBuilder {
14462 upb_DefPool* symtab;
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014463 upb_strtable feature_cache; // Caches features by identity.
14464 UPB_DESC(FeatureSet*) legacy_features; // For computing legacy features.
14465 char* tmp_buf; // Temporary buffer in tmp_arena.
14466 size_t tmp_buf_size; // Size of temporary buffer.
Eric Salo8809a112022-11-21 13:01:06 -080014467 upb_FileDef* file; // File we are building.
14468 upb_Arena* arena; // Allocate defs here.
14469 upb_Arena* tmp_arena; // For temporary allocations.
14470 upb_Status* status; // Record errors here.
14471 const upb_MiniTableFile* layout; // NULL if we should build layouts.
Mike Kruskal232ecf42023-01-14 00:09:40 -080014472 upb_MiniTablePlatform platform; // Platform we are targeting.
Eric Salo8809a112022-11-21 13:01:06 -080014473 int enum_count; // Count of enums built so far.
14474 int msg_count; // Count of messages built so far.
14475 int ext_count; // Count of extensions built so far.
14476 jmp_buf err; // longjmp() on error.
14477};
14478
14479extern const char* kUpbDefOptDefault;
14480
14481// ctx->status has already been set elsewhere so just fail/longjmp()
14482UPB_NORETURN void _upb_DefBuilder_FailJmp(upb_DefBuilder* ctx);
14483
14484UPB_NORETURN void _upb_DefBuilder_Errf(upb_DefBuilder* ctx, const char* fmt,
14485 ...) UPB_PRINTF(2, 3);
14486UPB_NORETURN void _upb_DefBuilder_OomErr(upb_DefBuilder* ctx);
14487
14488const char* _upb_DefBuilder_MakeFullName(upb_DefBuilder* ctx,
14489 const char* prefix,
14490 upb_StringView name);
14491
14492// Given a symbol and the base symbol inside which it is defined,
14493// find the symbol's definition.
14494const void* _upb_DefBuilder_ResolveAny(upb_DefBuilder* ctx,
14495 const char* from_name_dbg,
14496 const char* base, upb_StringView sym,
14497 upb_deftype_t* type);
14498
14499const void* _upb_DefBuilder_Resolve(upb_DefBuilder* ctx,
14500 const char* from_name_dbg, const char* base,
14501 upb_StringView sym, upb_deftype_t type);
14502
14503char _upb_DefBuilder_ParseEscape(upb_DefBuilder* ctx, const upb_FieldDef* f,
14504 const char** src, const char* end);
14505
14506const char* _upb_DefBuilder_FullToShort(const char* fullname);
14507
14508UPB_INLINE void* _upb_DefBuilder_Alloc(upb_DefBuilder* ctx, size_t bytes) {
14509 if (bytes == 0) return NULL;
14510 void* ret = upb_Arena_Malloc(ctx->arena, bytes);
14511 if (!ret) _upb_DefBuilder_OomErr(ctx);
14512 return ret;
14513}
14514
14515// Adds a symbol |v| to the symtab, which must be a def pointer previously
14516// packed with pack_def(). The def's pointer to upb_FileDef* must be set before
14517// adding, so we know which entries to remove if building this file fails.
14518UPB_INLINE void _upb_DefBuilder_Add(upb_DefBuilder* ctx, const char* name,
14519 upb_value v) {
14520 upb_StringView sym = {.data = name, .size = strlen(name)};
14521 bool ok = _upb_DefPool_InsertSym(ctx->symtab, sym, v, ctx->status);
14522 if (!ok) _upb_DefBuilder_FailJmp(ctx);
14523}
14524
14525UPB_INLINE upb_Arena* _upb_DefBuilder_Arena(const upb_DefBuilder* ctx) {
14526 return ctx->arena;
14527}
14528
14529UPB_INLINE upb_FileDef* _upb_DefBuilder_File(const upb_DefBuilder* ctx) {
14530 return ctx->file;
14531}
14532
14533// This version of CheckIdent() is only called by other, faster versions after
14534// they detect a parsing error.
14535void _upb_DefBuilder_CheckIdentSlow(upb_DefBuilder* ctx, upb_StringView name,
14536 bool full);
14537
Eric Salo8809a112022-11-21 13:01:06 -080014538// Verify a full identifier string. This is slightly more complicated than
14539// verifying a relative identifier string because we must track '.' chars.
14540UPB_INLINE void _upb_DefBuilder_CheckIdentFull(upb_DefBuilder* ctx,
14541 upb_StringView name) {
14542 bool good = name.size > 0;
14543 bool start = true;
14544
14545 for (size_t i = 0; i < name.size; i++) {
14546 const char c = name.data[i];
14547 const char d = c | 0x20; // force lowercase
14548 const bool is_alpha = (('a' <= d) & (d <= 'z')) | (c == '_');
14549 const bool is_numer = ('0' <= c) & (c <= '9') & !start;
14550 const bool is_dot = (c == '.') & !start;
14551
14552 good &= is_alpha | is_numer | is_dot;
14553 start = is_dot;
14554 }
14555
14556 if (!good) _upb_DefBuilder_CheckIdentSlow(ctx, name, true);
14557}
14558
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014559// Returns true if the returned feature set is new and must be populated.
14560bool _upb_DefBuilder_GetOrCreateFeatureSet(upb_DefBuilder* ctx,
14561 const UPB_DESC(FeatureSet*) parent,
14562 upb_StringView key,
14563 UPB_DESC(FeatureSet**) set);
14564
14565const UPB_DESC(FeatureSet*)
14566 _upb_DefBuilder_DoResolveFeatures(upb_DefBuilder* ctx,
14567 const UPB_DESC(FeatureSet*) parent,
14568 const UPB_DESC(FeatureSet*) child,
14569 bool is_implicit);
14570
14571UPB_INLINE const UPB_DESC(FeatureSet*)
14572 _upb_DefBuilder_ResolveFeatures(upb_DefBuilder* ctx,
14573 const UPB_DESC(FeatureSet*) parent,
14574 const UPB_DESC(FeatureSet*) child) {
14575 return _upb_DefBuilder_DoResolveFeatures(ctx, parent, child, false);
14576}
14577
Eric Salo8809a112022-11-21 13:01:06 -080014578#ifdef __cplusplus
14579} /* extern "C" */
14580#endif
14581
14582
14583#endif /* UPB_REFLECTION_DEF_BUILDER_INTERNAL_H_ */
14584
14585#ifndef UPB_REFLECTION_ENUM_DEF_INTERNAL_H_
14586#define UPB_REFLECTION_ENUM_DEF_INTERNAL_H_
14587
14588
14589// Must be last.
14590
14591#ifdef __cplusplus
14592extern "C" {
14593#endif
14594
14595upb_EnumDef* _upb_EnumDef_At(const upb_EnumDef* e, int i);
14596bool _upb_EnumDef_Insert(upb_EnumDef* e, upb_EnumValueDef* v, upb_Arena* a);
14597const upb_MiniTableEnum* _upb_EnumDef_MiniTable(const upb_EnumDef* e);
14598
14599// Allocate and initialize an array of |n| enum defs.
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014600upb_EnumDef* _upb_EnumDefs_New(upb_DefBuilder* ctx, int n,
14601 const UPB_DESC(EnumDescriptorProto*)
14602 const* protos,
14603 const UPB_DESC(FeatureSet*) parent_features,
14604 const upb_MessageDef* containing_type);
Eric Salo8809a112022-11-21 13:01:06 -080014605
14606#ifdef __cplusplus
14607} /* extern "C" */
14608#endif
14609
14610
14611#endif /* UPB_REFLECTION_ENUM_DEF_INTERNAL_H_ */
14612
14613#ifndef UPB_REFLECTION_ENUM_VALUE_DEF_INTERNAL_H_
14614#define UPB_REFLECTION_ENUM_VALUE_DEF_INTERNAL_H_
14615
14616
14617// Must be last.
14618
14619#ifdef __cplusplus
14620extern "C" {
14621#endif
14622
14623upb_EnumValueDef* _upb_EnumValueDef_At(const upb_EnumValueDef* v, int i);
14624
14625// Allocate and initialize an array of |n| enum value defs owned by |e|.
14626upb_EnumValueDef* _upb_EnumValueDefs_New(
14627 upb_DefBuilder* ctx, const char* prefix, int n,
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014628 const UPB_DESC(EnumValueDescriptorProto*) const* protos,
14629 const UPB_DESC(FeatureSet*) parent_features, upb_EnumDef* e,
Eric Salo8809a112022-11-21 13:01:06 -080014630 bool* is_sorted);
14631
14632const upb_EnumValueDef** _upb_EnumValueDefs_Sorted(const upb_EnumValueDef* v,
14633 int n, upb_Arena* a);
14634
14635#ifdef __cplusplus
14636} /* extern "C" */
14637#endif
14638
14639
14640#endif /* UPB_REFLECTION_ENUM_VALUE_DEF_INTERNAL_H_ */
14641
14642#ifndef UPB_REFLECTION_FIELD_DEF_INTERNAL_H_
14643#define UPB_REFLECTION_FIELD_DEF_INTERNAL_H_
14644
14645
14646// Must be last.
14647
14648#ifdef __cplusplus
14649extern "C" {
14650#endif
14651
14652upb_FieldDef* _upb_FieldDef_At(const upb_FieldDef* f, int i);
14653
Eric Salo8809a112022-11-21 13:01:06 -080014654bool _upb_FieldDef_IsClosedEnum(const upb_FieldDef* f);
14655bool _upb_FieldDef_IsProto3Optional(const upb_FieldDef* f);
14656int _upb_FieldDef_LayoutIndex(const upb_FieldDef* f);
14657uint64_t _upb_FieldDef_Modifiers(const upb_FieldDef* f);
14658void _upb_FieldDef_Resolve(upb_DefBuilder* ctx, const char* prefix,
14659 upb_FieldDef* f);
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -070014660void _upb_FieldDef_BuildMiniTableExtension(upb_DefBuilder* ctx,
14661 const upb_FieldDef* f);
14662
14663// Allocate and initialize an array of |n| extensions (field defs).
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014664upb_FieldDef* _upb_Extensions_New(upb_DefBuilder* ctx, int n,
14665 const UPB_DESC(FieldDescriptorProto*)
14666 const* protos,
14667 const UPB_DESC(FeatureSet*) parent_features,
14668 const char* prefix, upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080014669
14670// Allocate and initialize an array of |n| field defs.
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014671upb_FieldDef* _upb_FieldDefs_New(upb_DefBuilder* ctx, int n,
14672 const UPB_DESC(FieldDescriptorProto*)
14673 const* protos,
14674 const UPB_DESC(FeatureSet*) parent_features,
14675 const char* prefix, upb_MessageDef* m,
14676 bool* is_sorted);
Eric Salo8809a112022-11-21 13:01:06 -080014677
14678// Allocate and return a list of pointers to the |n| field defs in |ff|,
14679// sorted by field number.
14680const upb_FieldDef** _upb_FieldDefs_Sorted(const upb_FieldDef* f, int n,
14681 upb_Arena* a);
14682
14683#ifdef __cplusplus
14684} /* extern "C" */
14685#endif
14686
14687
14688#endif /* UPB_REFLECTION_FIELD_DEF_INTERNAL_H_ */
14689
14690#ifndef UPB_REFLECTION_FILE_DEF_INTERNAL_H_
14691#define UPB_REFLECTION_FILE_DEF_INTERNAL_H_
14692
14693
14694// Must be last.
14695
14696#ifdef __cplusplus
14697extern "C" {
14698#endif
14699
14700const upb_MiniTableExtension* _upb_FileDef_ExtensionMiniTable(
14701 const upb_FileDef* f, int i);
14702const int32_t* _upb_FileDef_PublicDependencyIndexes(const upb_FileDef* f);
14703const int32_t* _upb_FileDef_WeakDependencyIndexes(const upb_FileDef* f);
14704
14705// upb_FileDef_Package() returns "" if f->package is NULL, this does not.
14706const char* _upb_FileDef_RawPackage(const upb_FileDef* f);
14707
14708void _upb_FileDef_Create(upb_DefBuilder* ctx,
Mike Kruskal232ecf42023-01-14 00:09:40 -080014709 const UPB_DESC(FileDescriptorProto) * file_proto);
Eric Salo8809a112022-11-21 13:01:06 -080014710
14711#ifdef __cplusplus
14712} /* extern "C" */
14713#endif
14714
14715
14716#endif /* UPB_REFLECTION_FILE_DEF_INTERNAL_H_ */
14717
14718#ifndef UPB_REFLECTION_MESSAGE_DEF_INTERNAL_H_
14719#define UPB_REFLECTION_MESSAGE_DEF_INTERNAL_H_
14720
14721
14722// Must be last.
14723
14724#ifdef __cplusplus
14725extern "C" {
14726#endif
14727
14728upb_MessageDef* _upb_MessageDef_At(const upb_MessageDef* m, int i);
14729bool _upb_MessageDef_InMessageSet(const upb_MessageDef* m);
14730bool _upb_MessageDef_Insert(upb_MessageDef* m, const char* name, size_t size,
14731 upb_value v, upb_Arena* a);
14732void _upb_MessageDef_InsertField(upb_DefBuilder* ctx, upb_MessageDef* m,
14733 const upb_FieldDef* f);
14734bool _upb_MessageDef_IsValidExtensionNumber(const upb_MessageDef* m, int n);
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -070014735void _upb_MessageDef_CreateMiniTable(upb_DefBuilder* ctx, upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080014736void _upb_MessageDef_LinkMiniTable(upb_DefBuilder* ctx,
14737 const upb_MessageDef* m);
14738void _upb_MessageDef_Resolve(upb_DefBuilder* ctx, upb_MessageDef* m);
14739
14740// Allocate and initialize an array of |n| message defs.
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014741upb_MessageDef* _upb_MessageDefs_New(upb_DefBuilder* ctx, int n,
14742 const UPB_DESC(DescriptorProto*)
14743 const* protos,
14744 const UPB_DESC(FeatureSet*)
14745 parent_features,
14746 const upb_MessageDef* containing_type);
Eric Salo8809a112022-11-21 13:01:06 -080014747
14748#ifdef __cplusplus
14749} /* extern "C" */
14750#endif
14751
14752
14753#endif /* UPB_REFLECTION_MESSAGE_DEF_INTERNAL_H_ */
14754
14755#ifndef UPB_REFLECTION_SERVICE_DEF_INTERNAL_H_
14756#define UPB_REFLECTION_SERVICE_DEF_INTERNAL_H_
14757
14758
14759// Must be last.
14760
14761#ifdef __cplusplus
14762extern "C" {
14763#endif
14764
14765upb_ServiceDef* _upb_ServiceDef_At(const upb_ServiceDef* s, int i);
14766
14767// Allocate and initialize an array of |n| service defs.
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014768upb_ServiceDef* _upb_ServiceDefs_New(upb_DefBuilder* ctx, int n,
14769 const UPB_DESC(ServiceDescriptorProto*)
14770 const* protos,
14771 const UPB_DESC(FeatureSet*)
14772 parent_features);
Eric Salo8809a112022-11-21 13:01:06 -080014773
14774#ifdef __cplusplus
14775} /* extern "C" */
14776#endif
14777
14778
14779#endif /* UPB_REFLECTION_SERVICE_DEF_INTERNAL_H_ */
14780
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014781#ifndef UPB_REFLECTION_UPB_EDITION_DEFAULTS_H_
14782#define UPB_REFLECTION_UPB_EDITION_DEFAULTS_H_
14783
14784// This file contains the serialized FeatureSetDefaults object for
14785// language-independent features and (possibly at some point) for upb-specific
14786// features. This is used for feature resolution under Editions.
14787// NOLINTBEGIN
14788// clang-format off
Protobuf Team Botc12c7322024-05-31 05:25:33 +000014789#define UPB_INTERNAL_UPB_EDITION_DEFAULTS "\n\023\030\204\007\"\000*\014\010\001\020\002\030\002 \003(\0010\002\n\023\030\347\007\"\000*\014\010\002\020\001\030\001 \002(\0010\001\n\023\030\350\007\"\014\010\001\020\001\030\001 \002(\0010\001*\000 \346\007(\350\007"
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014790// clang-format on
14791// NOLINTEND
14792
14793#endif // UPB_REFLECTION_UPB_EDITION_DEFAULTS_H_
14794
Eric Salo8809a112022-11-21 13:01:06 -080014795#ifndef UPB_REFLECTION_DESC_STATE_INTERNAL_H_
14796#define UPB_REFLECTION_DESC_STATE_INTERNAL_H_
14797
14798
14799// Must be last.
14800
14801// Manages the storage for mini descriptor strings as they are being encoded.
Protobuf Team Bot986cbb62023-09-19 15:03:51 +000014802// TODO: Move some of this state directly into the encoder, maybe.
Eric Salo8809a112022-11-21 13:01:06 -080014803typedef struct {
14804 upb_MtDataEncoder e;
14805 size_t bufsize;
14806 char* buf;
14807 char* ptr;
14808} upb_DescState;
14809
14810#ifdef __cplusplus
14811extern "C" {
14812#endif
14813
14814UPB_INLINE void _upb_DescState_Init(upb_DescState* d) {
14815 d->bufsize = kUpb_MtDataEncoder_MinSize * 2;
14816 d->buf = NULL;
14817 d->ptr = NULL;
14818}
14819
14820bool _upb_DescState_Grow(upb_DescState* d, upb_Arena* a);
14821
14822#ifdef __cplusplus
14823} /* extern "C" */
14824#endif
14825
14826
14827#endif /* UPB_REFLECTION_DESC_STATE_INTERNAL_H_ */
14828
14829#ifndef UPB_REFLECTION_ENUM_RESERVED_RANGE_INTERNAL_H_
14830#define UPB_REFLECTION_ENUM_RESERVED_RANGE_INTERNAL_H_
14831
14832
Protobuf Team Bot06310352023-09-26 21:54:58 +000014833// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080014834
14835#ifndef UPB_REFLECTION_ENUM_RESERVED_RANGE_H_
14836#define UPB_REFLECTION_ENUM_RESERVED_RANGE_H_
14837
14838
14839// Must be last.
14840
14841#ifdef __cplusplus
14842extern "C" {
14843#endif
14844
14845int32_t upb_EnumReservedRange_Start(const upb_EnumReservedRange* r);
14846int32_t upb_EnumReservedRange_End(const upb_EnumReservedRange* r);
14847
14848#ifdef __cplusplus
14849} /* extern "C" */
14850#endif
14851
14852
14853#endif /* UPB_REFLECTION_ENUM_RESERVED_RANGE_H_ */
14854
14855// Must be last.
14856
14857#ifdef __cplusplus
14858extern "C" {
14859#endif
14860
14861upb_EnumReservedRange* _upb_EnumReservedRange_At(const upb_EnumReservedRange* r,
14862 int i);
14863
14864// Allocate and initialize an array of |n| reserved ranges owned by |e|.
14865upb_EnumReservedRange* _upb_EnumReservedRanges_New(
14866 upb_DefBuilder* ctx, int n,
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014867 const UPB_DESC(EnumDescriptorProto_EnumReservedRange*) const* protos,
Eric Salo8809a112022-11-21 13:01:06 -080014868 const upb_EnumDef* e);
14869
14870#ifdef __cplusplus
14871} /* extern "C" */
14872#endif
14873
14874
14875#endif /* UPB_REFLECTION_ENUM_RESERVED_RANGE_INTERNAL_H_ */
14876
Protobuf Team Bot7be2a452023-09-13 16:50:05 +000014877#ifndef UPB_REFLECTION_INTERNAL_STRDUP2_H_
14878#define UPB_REFLECTION_INTERNAL_STRDUP2_H_
14879
14880#include <stddef.h>
14881
14882
14883// Must be last.
14884
14885#ifdef __cplusplus
14886extern "C" {
14887#endif
14888
14889// Variant that works with a length-delimited rather than NULL-delimited string,
14890// as supported by strtable.
14891char* upb_strdup2(const char* s, size_t len, upb_Arena* a);
14892
14893#ifdef __cplusplus
14894} /* extern "C" */
14895#endif
14896
14897
14898#endif /* UPB_REFLECTION_INTERNAL_STRDUP2_H_ */
14899
Eric Salo8809a112022-11-21 13:01:06 -080014900#ifndef UPB_REFLECTION_EXTENSION_RANGE_INTERNAL_H_
14901#define UPB_REFLECTION_EXTENSION_RANGE_INTERNAL_H_
14902
14903
14904// Must be last.
14905
14906#ifdef __cplusplus
14907extern "C" {
14908#endif
14909
14910upb_ExtensionRange* _upb_ExtensionRange_At(const upb_ExtensionRange* r, int i);
14911
14912// Allocate and initialize an array of |n| extension ranges owned by |m|.
14913upb_ExtensionRange* _upb_ExtensionRanges_New(
14914 upb_DefBuilder* ctx, int n,
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014915 const UPB_DESC(DescriptorProto_ExtensionRange*) const* protos,
14916 const UPB_DESC(FeatureSet*) parent_features, const upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080014917
14918#ifdef __cplusplus
14919} /* extern "C" */
14920#endif
14921
14922
14923#endif /* UPB_REFLECTION_EXTENSION_RANGE_INTERNAL_H_ */
14924
14925#ifndef UPB_REFLECTION_ONEOF_DEF_INTERNAL_H_
14926#define UPB_REFLECTION_ONEOF_DEF_INTERNAL_H_
14927
14928
14929// Must be last.
14930
14931#ifdef __cplusplus
14932extern "C" {
14933#endif
14934
14935upb_OneofDef* _upb_OneofDef_At(const upb_OneofDef* o, int i);
Jakob Buchgraberc0c79b22023-03-20 08:13:52 -070014936void _upb_OneofDef_Insert(upb_DefBuilder* ctx, upb_OneofDef* o,
14937 const upb_FieldDef* f, const char* name, size_t size);
Eric Salo8809a112022-11-21 13:01:06 -080014938
14939// Allocate and initialize an array of |n| oneof defs owned by |m|.
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000014940upb_OneofDef* _upb_OneofDefs_New(upb_DefBuilder* ctx, int n,
14941 const UPB_DESC(OneofDescriptorProto*)
14942 const* protos,
14943 const UPB_DESC(FeatureSet*) parent_features,
14944 upb_MessageDef* m);
Eric Salo8809a112022-11-21 13:01:06 -080014945
14946size_t _upb_OneofDefs_Finalize(upb_DefBuilder* ctx, upb_MessageDef* m);
14947
14948#ifdef __cplusplus
14949} /* extern "C" */
14950#endif
14951
14952
14953#endif /* UPB_REFLECTION_ONEOF_DEF_INTERNAL_H_ */
14954
14955#ifndef UPB_REFLECTION_MESSAGE_RESERVED_RANGE_INTERNAL_H_
14956#define UPB_REFLECTION_MESSAGE_RESERVED_RANGE_INTERNAL_H_
14957
14958
Protobuf Team Bot06310352023-09-26 21:54:58 +000014959// IWYU pragma: private, include "upb/reflection/def.h"
Eric Salo8809a112022-11-21 13:01:06 -080014960
14961#ifndef UPB_REFLECTION_MESSAGE_RESERVED_RANGE_H_
14962#define UPB_REFLECTION_MESSAGE_RESERVED_RANGE_H_
14963
14964
14965// Must be last.
14966
14967#ifdef __cplusplus
14968extern "C" {
14969#endif
14970
14971int32_t upb_MessageReservedRange_Start(const upb_MessageReservedRange* r);
14972int32_t upb_MessageReservedRange_End(const upb_MessageReservedRange* r);
14973
14974#ifdef __cplusplus
14975} /* extern "C" */
14976#endif
14977
14978
14979#endif /* UPB_REFLECTION_MESSAGE_RESERVED_RANGE_H_ */
14980
14981// Must be last.
14982
14983#ifdef __cplusplus
14984extern "C" {
14985#endif
14986
14987upb_MessageReservedRange* _upb_MessageReservedRange_At(
14988 const upb_MessageReservedRange* r, int i);
14989
14990// Allocate and initialize an array of |n| reserved ranges owned by |m|.
14991upb_MessageReservedRange* _upb_MessageReservedRanges_New(
14992 upb_DefBuilder* ctx, int n,
Mike Kruskal232ecf42023-01-14 00:09:40 -080014993 const UPB_DESC(DescriptorProto_ReservedRange) * const* protos,
Eric Salo8809a112022-11-21 13:01:06 -080014994 const upb_MessageDef* m);
14995
14996#ifdef __cplusplus
14997} /* extern "C" */
14998#endif
14999
15000
15001#endif /* UPB_REFLECTION_MESSAGE_RESERVED_RANGE_INTERNAL_H_ */
15002
15003#ifndef UPB_REFLECTION_METHOD_DEF_INTERNAL_H_
15004#define UPB_REFLECTION_METHOD_DEF_INTERNAL_H_
15005
15006
15007// Must be last.
15008
15009#ifdef __cplusplus
15010extern "C" {
15011#endif
15012
15013upb_MethodDef* _upb_MethodDef_At(const upb_MethodDef* m, int i);
15014
15015// Allocate and initialize an array of |n| method defs owned by |s|.
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000015016upb_MethodDef* _upb_MethodDefs_New(upb_DefBuilder* ctx, int n,
15017 const UPB_DESC(MethodDescriptorProto*)
15018 const* protos,
15019 const UPB_DESC(FeatureSet*) parent_features,
15020 upb_ServiceDef* s);
Eric Salo8809a112022-11-21 13:01:06 -080015021
15022#ifdef __cplusplus
15023} /* extern "C" */
15024#endif
15025
15026
15027#endif /* UPB_REFLECTION_METHOD_DEF_INTERNAL_H_ */
15028
Eric Salo8809a112022-11-21 13:01:06 -080015029// This should #undef all macros #defined in def.inc
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015030
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015031#undef UPB_SIZE
15032#undef UPB_PTR_AT
Joshua Habermandd69a482021-05-17 22:40:33 -070015033#undef UPB_MAPTYPE_STRING
Eric Salo3f36a912022-12-05 14:12:25 -080015034#undef UPB_EXPORT
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015035#undef UPB_INLINE
Eric Salo3f36a912022-12-05 14:12:25 -080015036#undef UPB_API
15037#undef UPB_API_INLINE
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015038#undef UPB_ALIGN_UP
15039#undef UPB_ALIGN_DOWN
15040#undef UPB_ALIGN_MALLOC
15041#undef UPB_ALIGN_OF
Protobuf Team Bote2785502023-12-21 21:28:36 +000015042#undef UPB_ALIGN_AS
Joshua Habermand3995ec2022-09-30 16:54:39 -070015043#undef UPB_MALLOC_ALIGN
Joshua Habermandd69a482021-05-17 22:40:33 -070015044#undef UPB_LIKELY
15045#undef UPB_UNLIKELY
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015046#undef UPB_FORCEINLINE
15047#undef UPB_NOINLINE
15048#undef UPB_NORETURN
Joshua Habermandd69a482021-05-17 22:40:33 -070015049#undef UPB_PRINTF
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015050#undef UPB_MAX
15051#undef UPB_MIN
15052#undef UPB_UNUSED
15053#undef UPB_ASSUME
15054#undef UPB_ASSERT
15055#undef UPB_UNREACHABLE
Joshua Habermandd69a482021-05-17 22:40:33 -070015056#undef UPB_SETJMP
15057#undef UPB_LONGJMP
15058#undef UPB_PTRADD
15059#undef UPB_MUSTTAIL
15060#undef UPB_FASTTABLE_SUPPORTED
Mike Kruskal232ecf42023-01-14 00:09:40 -080015061#undef UPB_FASTTABLE_MASK
Joshua Habermandd69a482021-05-17 22:40:33 -070015062#undef UPB_FASTTABLE
15063#undef UPB_FASTTABLE_INIT
Joshua Haberman9abf6e22021-01-13 12:16:25 -080015064#undef UPB_POISON_MEMORY_REGION
15065#undef UPB_UNPOISON_MEMORY_REGION
15066#undef UPB_ASAN
Sandy Zhange3b09432023-08-07 09:30:02 -070015067#undef UPB_ASAN_GUARD_SIZE
15068#undef UPB_CLANG_ASAN
Protobuf Team Bot5e8d7e52024-03-15 22:28:30 +000015069#undef UPB_TREAT_CLOSED_ENUMS_LIKE_OPEN
Joshua Habermand3995ec2022-09-30 16:54:39 -070015070#undef UPB_DEPRECATED
15071#undef UPB_GNUC_MIN
Mike Kruskal232ecf42023-01-14 00:09:40 -080015072#undef UPB_DESCRIPTOR_UPB_H_FILENAME
15073#undef UPB_DESC
Protobuf Team Botce9dcc22023-11-03 22:38:26 +000015074#undef UPB_DESC_MINITABLE
Mike Kruskal232ecf42023-01-14 00:09:40 -080015075#undef UPB_IS_GOOGLE3
Eric Salodfb71552023-03-22 12:35:09 -070015076#undef UPB_ATOMIC
15077#undef UPB_USE_C11_ATOMICS
Deanna Garciac7d979d2023-04-14 17:22:13 -070015078#undef UPB_PRIVATE
Protobuf Team Bot07194fc2023-11-30 05:43:03 +000015079#undef UPB_ONLYBITS
Protobuf Team Botbf7ac9f2024-06-04 17:32:11 +000015080#undef UPB_LINKARR_DECLARE
15081#undef UPB_LINKARR_APPEND
15082#undef UPB_LINKARR_START
15083#undef UPB_LINKARR_STOP