Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 1 | // Ruby is still using proto3 enum semantics for proto2 |
Protobuf Team Bot | 5e8d7e5 | 2024-03-15 22:28:30 +0000 | [diff] [blame] | 2 | #define UPB_DISABLE_CLOSED_ENUM_CHECKING |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 3 | /* Amalgamated source file */ |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 4 | |
| 5 | /* |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6 | * This is where we define internal portability macros used across upb. |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 7 | * |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8 | * All of these macros are undef'd in undef.inc to avoid leaking them to users. |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 9 | * |
| 10 | * The correct usage is: |
| 11 | * |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12 | * #include "upb/foobar.h" |
| 13 | * #include "upb/baz.h" |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 14 | * |
| 15 | * // MUST be last included header. |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 16 | * #include "upb/port/def.inc" |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 17 | * |
| 18 | * // Code for this file. |
| 19 | * // <...> |
| 20 | * |
| 21 | * // Can be omitted for .c files, required for .h. |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 22 | * #include "upb/port/undef.inc" |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 23 | * |
| 24 | * This file is private and must not be included by users! |
| 25 | */ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 26 | |
| 27 | #if !((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ |
Mike Kruskal | fd0b1a5 | 2022-10-14 16:27:22 -0700 | [diff] [blame] | 28 | (defined(__cplusplus) && __cplusplus >= 201402L) || \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 29 | (defined(_MSC_VER) && _MSC_VER >= 1900)) |
Mike Kruskal | fd0b1a5 | 2022-10-14 16:27:22 -0700 | [diff] [blame] | 30 | #error upb requires C99 or C++14 or MSVC >= 2015. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 31 | #endif |
| 32 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 33 | // 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 Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 45 | #include <stdint.h> |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 46 | #include <stdio.h> |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 47 | |
Adam Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 48 | #ifndef UINTPTR_MAX |
| 49 | Error, UINTPTR_MAX is undefined |
| 50 | #endif |
| 51 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 52 | #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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 63 | #define UPB_MAPTYPE_STRING 0 |
| 64 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 65 | // 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 73 | #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 Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 81 | #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 Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 89 | #define UPB_MALLOC_ALIGN 8 |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 90 | #define UPB_ALIGN_UP(size, align) (((size) + (align) - 1) / (align) * (align)) |
| 91 | #define UPB_ALIGN_DOWN(size, align) ((size) / (align) * (align)) |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 92 | #define UPB_ALIGN_MALLOC(size) UPB_ALIGN_UP(size, UPB_MALLOC_ALIGN) |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 93 | #ifdef __clang__ |
| 94 | #define UPB_ALIGN_OF(type) _Alignof(type) |
| 95 | #else |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 96 | #define UPB_ALIGN_OF(type) offsetof (struct { char c; type member; }, member) |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 97 | #endif |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 98 | |
Protobuf Team Bot | e278550 | 2023-12-21 21:28:36 +0000 | [diff] [blame] | 99 | #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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 106 | // Hints to the compiler about likely/unlikely branches. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 107 | #if defined (__GNUC__) || defined(__clang__) |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 108 | #define UPB_LIKELY(x) __builtin_expect((bool)(x), 1) |
| 109 | #define UPB_UNLIKELY(x) __builtin_expect((bool)(x), 0) |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 110 | #else |
| 111 | #define UPB_LIKELY(x) (x) |
| 112 | #define UPB_UNLIKELY(x) (x) |
| 113 | #endif |
| 114 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 115 | // Macros for function attributes on compilers that support them. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 116 | #ifdef __GNUC__ |
Protobuf Team Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 117 | #define UPB_FORCEINLINE __inline__ __attribute__((always_inline)) static |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 118 | #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 Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 123 | #define UPB_FORCEINLINE static |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 124 | #define UPB_NORETURN __declspec(noreturn) |
| 125 | #define UPB_PRINTF(str, first_vararg) |
| 126 | #else /* !defined(__GNUC__) */ |
Protobuf Team Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 127 | #define UPB_FORCEINLINE static |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 128 | #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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 138 | // UPB_ASSUME(): in release mode, we tell the compiler to assume this is true. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 139 | #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 Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 161 | #elif defined(_MSC_VER) |
| 162 | #define UPB_UNREACHABLE() \ |
| 163 | do { \ |
| 164 | assert(0); \ |
| 165 | __assume(0); \ |
| 166 | } while (0) |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 167 | #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 Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 180 | #ifdef __GNUC__ |
| 181 | #define UPB_USE_C11_ATOMICS |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 182 | #define UPB_ATOMIC(T) _Atomic(T) |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 183 | #else |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 184 | #define UPB_ATOMIC(T) T |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 185 | #endif |
| 186 | |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 187 | /* UPB_PTRADD(ptr, ofs): add pointer while avoiding "NULL + 0" UB */ |
| 188 | #define UPB_PTRADD(ptr, ofs) ((ofs) ? (ptr) + (ofs) : (ptr)) |
| 189 | |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 190 | #define UPB_PRIVATE(x) x##_dont_copy_me__upb_internal_use_only |
| 191 | |
Protobuf Team Bot | 07194fc | 2023-11-30 05:43:03 +0000 | [diff] [blame] | 192 | #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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 198 | /* Configure whether fasttable is switched on or not. *************************/ |
| 199 | |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 200 | #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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 229 | #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 Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 239 | #error fasttable is x86-64/ARM64 only and requires GCC or Clang. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 240 | #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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 252 | * degrade to non-fasttable if the runtime or platform do not support it. */ |
| 253 | #if !UPB_FASTTABLE |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 254 | #define UPB_FASTTABLE_INIT(...) |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 255 | #define UPB_FASTTABLE_MASK(mask) -1 |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 256 | #else |
| 257 | #define UPB_FASTTABLE_INIT(...) __VA_ARGS__ |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 258 | #define UPB_FASTTABLE_MASK(mask) mask |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 259 | #endif |
| 260 | |
| 261 | #undef UPB_FASTTABLE_SUPPORTED |
| 262 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 263 | /* ASAN poisoning (for arena). |
| 264 | * If using UPB from an interpreted language like Ruby, a build of the |
Joshua Haberman | 488b8b9 | 2022-09-30 18:07:16 -0700 | [diff] [blame] | 265 | * interpreter compiled with ASAN enabled must be used in order to get sane and |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 266 | * expected behavior. |
| 267 | */ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 268 | |
Sandy Zhang | e3b0943 | 2023-08-07 09:30:02 -0700 | [diff] [blame] | 269 | /* 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 284 | #define UPB_ASAN 1 |
Sandy Zhang | e3b0943 | 2023-08-07 09:30:02 -0700 | [diff] [blame] | 285 | #define UPB_ASAN_GUARD_SIZE 32 |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 286 | #ifdef __cplusplus |
Adam Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 287 | extern "C" { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 288 | #endif |
| 289 | void __asan_poison_memory_region(void const volatile *addr, size_t size); |
| 290 | void __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 Zhang | e3b0943 | 2023-08-07 09:30:02 -0700 | [diff] [blame] | 300 | #define UPB_ASAN_GUARD_SIZE 0 |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 301 | #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 Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 305 | #endif |
| 306 | |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 307 | /* Disable proto2 arena behavior (TEMPORARY) **********************************/ |
| 308 | |
Protobuf Team Bot | 5e8d7e5 | 2024-03-15 22:28:30 +0000 | [diff] [blame] | 309 | #ifdef UPB_DISABLE_CLOSED_ENUM_CHECKING |
| 310 | #define UPB_TREAT_CLOSED_ENUMS_LIKE_OPEN 1 |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 311 | #else |
Protobuf Team Bot | 5e8d7e5 | 2024-03-15 22:28:30 +0000 | [diff] [blame] | 312 | #define UPB_TREAT_CLOSED_ENUMS_LIKE_OPEN 0 |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 313 | #endif |
| 314 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 315 | #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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 329 | |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 330 | // 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 Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 336 | #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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 340 | #else |
| 341 | #define UPB_DESC(sym) google_protobuf_##sym |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 342 | #define UPB_DESC_MINITABLE(sym) &google__protobuf__##sym##_msg_init |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 343 | #endif |
| 344 | |
Protobuf Team Bot | 5d58cb8 | 2024-03-06 19:59:18 +0000 | [diff] [blame] | 345 | |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 346 | // 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 Bot | 9f2893a | 2024-06-11 18:26:04 +0000 | [diff] [blame] | 377 | UPB_LINKARR_APPEND(name) type UPB_linkarr_internal_empty_##name[1] |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 378 | #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 Bot | bbf5227 | 2024-06-11 23:07:36 +0000 | [diff] [blame] | 385 | __attribute__((retain, used, section("__DATA,__la_" #name))) |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 386 | #define UPB_LINKARR_DECLARE(name, type) \ |
| 387 | extern type const __start_linkarr_##name __asm( \ |
Protobuf Team Bot | bbf5227 | 2024-06-11 23:07:36 +0000 | [diff] [blame] | 388 | "section$start$__DATA$__la_" #name); \ |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 389 | extern type const __stop_linkarr_##name __asm( \ |
| 390 | "section$end$__DATA$" \ |
Protobuf Team Bot | bbf5227 | 2024-06-11 23:07:36 +0000 | [diff] [blame] | 391 | "__la_" #name); \ |
Protobuf Team Bot | 9f2893a | 2024-06-11 18:26:04 +0000 | [diff] [blame] | 392 | UPB_LINKARR_APPEND(name) type UPB_linkarr_internal_empty_##name[1] |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 393 | #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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 422 | #ifndef UPB_BASE_STATUS_H_ |
| 423 | #define UPB_BASE_STATUS_H_ |
| 424 | |
| 425 | #include <stdarg.h> |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 426 | |
| 427 | // Must be last. |
| 428 | |
Protobuf Team Bot | b931e79 | 2024-01-31 21:16:11 +0000 | [diff] [blame] | 429 | #define _kUpb_Status_MaxMessage 511 |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 430 | |
| 431 | typedef struct { |
| 432 | bool ok; |
| 433 | char msg[_kUpb_Status_MaxMessage]; // Error message; NULL-terminated. |
| 434 | } upb_Status; |
| 435 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 436 | #ifdef __cplusplus |
| 437 | extern "C" { |
| 438 | #endif |
| 439 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 440 | UPB_API const char* upb_Status_ErrorMessage(const upb_Status* status); |
| 441 | UPB_API bool upb_Status_IsOk(const upb_Status* status); |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 442 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 443 | // These are no-op if |status| is NULL. |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 444 | UPB_API void upb_Status_Clear(upb_Status* status); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 445 | void upb_Status_SetErrorMessage(upb_Status* status, const char* msg); |
| 446 | void upb_Status_SetErrorFormat(upb_Status* status, const char* fmt, ...) |
| 447 | UPB_PRINTF(2, 3); |
| 448 | void upb_Status_VSetErrorFormat(upb_Status* status, const char* fmt, |
| 449 | va_list args) UPB_PRINTF(2, 0); |
| 450 | void upb_Status_VAppendErrorFormat(upb_Status* status, const char* fmt, |
| 451 | va_list args) UPB_PRINTF(2, 0); |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 452 | |
| 453 | #ifdef __cplusplus |
| 454 | } /* extern "C" */ |
| 455 | #endif |
| 456 | |
| 457 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 458 | #endif /* UPB_BASE_STATUS_H_ */ |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 459 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 460 | #ifndef UPB_GENERATED_CODE_SUPPORT_H_ |
| 461 | #define UPB_GENERATED_CODE_SUPPORT_H_ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 462 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 463 | // IWYU pragma: begin_exports |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 464 | |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 465 | #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 Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 486 | #ifndef UPB_MESSAGE_ACCESSORS_H_ |
| 487 | #define UPB_MESSAGE_ACCESSORS_H_ |
Protobuf Team Bot | 473d20d | 2023-09-15 22:27:16 +0000 | [diff] [blame] | 488 | |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 489 | #ifndef UPB_BASE_STRING_VIEW_H_ |
| 490 | #define UPB_BASE_STRING_VIEW_H_ |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 491 | |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 492 | #include <string.h> |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 493 | |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 494 | // Must be last. |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 495 | |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 496 | #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) |
| 503 | typedef struct { |
| 504 | const char* data; |
| 505 | size_t size; |
| 506 | } upb_StringView; |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 507 | |
| 508 | #ifdef __cplusplus |
| 509 | extern "C" { |
| 510 | #endif |
| 511 | |
| 512 | UPB_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 | |
| 520 | UPB_INLINE upb_StringView upb_StringView_FromString(const char* data) { |
| 521 | return upb_StringView_FromDataAndSize(data, strlen(data)); |
| 522 | } |
| 523 | |
| 524 | UPB_INLINE bool upb_StringView_IsEqual(upb_StringView a, upb_StringView b) { |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 525 | return (a.size == b.size) && (!a.size || !memcmp(a.data, b.data, a.size)); |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 526 | } |
| 527 | |
Protobuf Team Bot | 030ab8d | 2023-12-01 19:20:11 +0000 | [diff] [blame] | 528 | // LINT.ThenChange( |
Protobuf Team Bot | fd82df7 | 2024-01-29 20:24:42 +0000 | [diff] [blame] | 529 | // GoogleInternalName1, |
Protobuf Team Bot | 030ab8d | 2023-12-01 19:20:11 +0000 | [diff] [blame] | 530 | // //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 Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 534 | #ifdef __cplusplus |
| 535 | } /* extern "C" */ |
| 536 | #endif |
| 537 | |
| 538 | |
| 539 | #endif /* UPB_BASE_STRING_VIEW_H_ */ |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 540 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 541 | /* 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 Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 546 | * |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 547 | * 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 552 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 553 | #ifndef UPB_MEM_ARENA_H_ |
| 554 | #define UPB_MEM_ARENA_H_ |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 555 | |
Adam Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 556 | #include <stddef.h> |
| 557 | #include <stdint.h> |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 558 | |
| 559 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 560 | #ifndef UPB_MEM_ALLOC_H_ |
| 561 | #define UPB_MEM_ALLOC_H_ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 562 | |
| 563 | // Must be last. |
| 564 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 565 | #ifdef __cplusplus |
| 566 | extern "C" { |
| 567 | #endif |
| 568 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 569 | typedef struct upb_alloc upb_alloc; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 570 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 571 | /* 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. */ |
| 575 | typedef 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. */ |
| 584 | struct upb_alloc { |
| 585 | upb_alloc_func* func; |
| 586 | }; |
| 587 | |
| 588 | UPB_INLINE void* upb_malloc(upb_alloc* alloc, size_t size) { |
| 589 | UPB_ASSERT(alloc); |
| 590 | return alloc->func(alloc, NULL, 0, size); |
| 591 | } |
| 592 | |
| 593 | UPB_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 | |
| 599 | UPB_INLINE void upb_free(upb_alloc* alloc, void* ptr) { |
| 600 | UPB_ASSERT(alloc); |
| 601 | alloc->func(alloc, ptr, 0, 0); |
| 602 | } |
| 603 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 604 | // The global allocator used by upb. Uses the standard malloc()/free(). |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 605 | |
| 606 | extern 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 | |
| 613 | UPB_INLINE void* upb_gmalloc(size_t size) { |
| 614 | return upb_malloc(&upb_alloc_global, size); |
| 615 | } |
| 616 | |
| 617 | UPB_INLINE void* upb_grealloc(void* ptr, size_t oldsize, size_t size) { |
| 618 | return upb_realloc(&upb_alloc_global, ptr, oldsize, size); |
| 619 | } |
| 620 | |
| 621 | UPB_INLINE void upb_gfree(void* ptr) { upb_free(&upb_alloc_global, ptr); } |
| 622 | |
| 623 | #ifdef __cplusplus |
| 624 | } /* extern "C" */ |
| 625 | #endif |
| 626 | |
| 627 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 628 | #endif /* UPB_MEM_ALLOC_H_ */ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 629 | |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 630 | #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 Bot | 6964e2c | 2023-12-21 15:42:16 +0000 | [diff] [blame] | 646 | // LINT.IfChange(upb_Arena) |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 647 | |
| 648 | struct upb_Arena { |
| 649 | char* UPB_ONLYBITS(ptr); |
| 650 | char* UPB_ONLYBITS(end); |
| 651 | }; |
| 652 | |
Protobuf Team Bot | 6964e2c | 2023-12-21 15:42:16 +0000 | [diff] [blame] | 653 | // LINT.ThenChange(//depot/google3/third_party/upb/bits/typescript/arena.ts:upb_Arena) |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 654 | |
| 655 | #ifdef __cplusplus |
| 656 | extern "C" { |
| 657 | #endif |
| 658 | |
| 659 | void UPB_PRIVATE(_upb_Arena_SwapIn)(struct upb_Arena* des, |
| 660 | const struct upb_Arena* src); |
| 661 | void UPB_PRIVATE(_upb_Arena_SwapOut)(struct upb_Arena* des, |
| 662 | const struct upb_Arena* src); |
| 663 | |
Protobuf Team Bot | 5640930 | 2024-02-12 16:52:47 +0000 | [diff] [blame] | 664 | // Returns whether |ptr| was allocated directly by |a| (so care must be used |
| 665 | // with fused arenas). |
| 666 | UPB_API bool UPB_ONLYBITS(_upb_Arena_Contains)(const struct upb_Arena* a, |
| 667 | void* ptr); |
| 668 | |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 669 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 673 | UPB_API_INLINE void* upb_Arena_Malloc(struct upb_Arena* a, size_t size) { |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 674 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 693 | UPB_API_INLINE void* upb_Arena_Realloc(struct upb_Arena* a, void* ptr, |
| 694 | size_t oldsize, size_t size) { |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 695 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 710 | void* ret = upb_Arena_Malloc(a, size); |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 711 | |
| 712 | if (ret && oldsize > 0) { |
| 713 | memcpy(ret, ptr, UPB_MIN(oldsize, size)); |
| 714 | } |
| 715 | |
| 716 | return ret; |
| 717 | } |
| 718 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 719 | UPB_API_INLINE void upb_Arena_ShrinkLast(struct upb_Arena* a, void* ptr, |
| 720 | size_t oldsize, size_t size) { |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 721 | 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 Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 737 | // Must be last. |
| 738 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 739 | typedef struct upb_Arena upb_Arena; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 740 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 741 | #ifdef __cplusplus |
| 742 | extern "C" { |
| 743 | #endif |
| 744 | |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 745 | // 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 Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 748 | UPB_API upb_Arena* upb_Arena_Init(void* mem, size_t n, upb_alloc* alloc); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 749 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 750 | UPB_API void upb_Arena_Free(upb_Arena* a); |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 751 | UPB_API bool upb_Arena_Fuse(upb_Arena* a, upb_Arena* b); |
| 752 | |
Protobuf Team Bot | 3d597c2 | 2023-12-13 04:04:17 +0000 | [diff] [blame] | 753 | bool upb_Arena_IncRefFor(upb_Arena* a, const void* owner); |
| 754 | void upb_Arena_DecRefFor(upb_Arena* a, const void* owner); |
Protobuf Team Bot | 777d6a9 | 2023-10-06 23:52:49 +0000 | [diff] [blame] | 755 | |
Protobuf Team Bot | a3c33a8 | 2024-02-13 21:14:13 +0000 | [diff] [blame] | 756 | size_t upb_Arena_SpaceAllocated(upb_Arena* a, size_t* fused_count); |
Protobuf Team Bot | 3d597c2 | 2023-12-13 04:04:17 +0000 | [diff] [blame] | 757 | uint32_t upb_Arena_DebugRefCount(upb_Arena* a); |
| 758 | |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 759 | UPB_API_INLINE upb_Arena* upb_Arena_New(void) { |
| 760 | return upb_Arena_Init(NULL, 0, &upb_alloc_global); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 761 | } |
| 762 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 763 | UPB_API_INLINE void* upb_Arena_Malloc(struct upb_Arena* a, size_t size); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 764 | |
Protobuf Team Bot | f75fe9e | 2023-12-19 22:41:49 +0000 | [diff] [blame] | 765 | UPB_API_INLINE void* upb_Arena_Realloc(upb_Arena* a, void* ptr, size_t oldsize, |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 766 | size_t size); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 767 | |
Protobuf Team Bot | a4f9ddd | 2024-06-28 21:55:50 +0000 | [diff] [blame^] | 768 | // 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. |
| 775 | void upb_Arena_SetMaxBlockSize(size_t max); |
| 776 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 777 | // 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 Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 781 | UPB_API_INLINE void upb_Arena_ShrinkLast(upb_Arena* a, void* ptr, |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 782 | size_t oldsize, size_t size); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 783 | |
Protobuf Team Bot | fb08bca | 2024-03-14 15:21:13 +0000 | [diff] [blame] | 784 | #ifdef UPB_TRACING_ENABLED |
| 785 | void 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 Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 792 | #ifdef __cplusplus |
| 793 | } /* extern "C" */ |
| 794 | #endif |
| 795 | |
| 796 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 797 | #endif /* UPB_MEM_ARENA_H_ */ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 798 | |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 799 | #ifndef UPB_MESSAGE_ARRAY_H_ |
| 800 | #define UPB_MESSAGE_ARRAY_H_ |
| 801 | |
| 802 | #include <stddef.h> |
| 803 | |
| 804 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 805 | #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. |
| 814 | typedef 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. |
| 829 | typedef 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. |
| 836 | typedef 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 |
| 860 | extern "C" { |
| 861 | #endif |
| 862 | |
| 863 | // Convert from upb_FieldType to upb_CType |
| 864 | UPB_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 | |
| 890 | UPB_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 Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 908 | #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 |
| 922 | extern "C" { |
| 923 | #endif |
| 924 | |
Protobuf Team Bot | fd82df7 | 2024-01-29 20:24:42 +0000 | [diff] [blame] | 925 | // LINT.IfChange(upb_Array) |
| 926 | |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 927 | // Our internal representation for repeated fields. |
| 928 | struct 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 Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 935 | // Bit #2 contains the frozen/immutable flag. |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 936 | 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 Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 942 | UPB_INLINE void UPB_PRIVATE(_upb_Array_ShallowFreeze)(struct upb_Array* arr) { |
| 943 | arr->UPB_ONLYBITS(data) |= _UPB_ARRAY_MASK_IMM; |
| 944 | } |
| 945 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 946 | UPB_API_INLINE bool upb_Array_IsFrozen(const struct upb_Array* arr) { |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 947 | return (arr->UPB_ONLYBITS(data) & _UPB_ARRAY_MASK_IMM) != 0; |
| 948 | } |
| 949 | |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 950 | UPB_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 | |
| 958 | UPB_INLINE size_t |
| 959 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 965 | UPB_API_INLINE const void* upb_Array_DataPtr(const struct upb_Array* array) { |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 966 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 970 | UPB_API_INLINE void* upb_Array_MutableDataPtr(struct upb_Array* array) { |
| 971 | return (void*)upb_Array_DataPtr(array); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | UPB_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. |
| 992 | bool UPB_PRIVATE(_upb_Array_Realloc)(struct upb_Array* array, size_t min_size, |
| 993 | upb_Arena* arena); |
| 994 | |
Protobuf Team Bot | 4b6de0f | 2024-03-29 19:09:40 +0000 | [diff] [blame] | 995 | UPB_API_INLINE bool upb_Array_Reserve(struct upb_Array* array, size_t size, |
| 996 | upb_Arena* arena) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 997 | UPB_ASSERT(!upb_Array_IsFrozen(array)); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 998 | 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. |
| 1004 | UPB_INLINE bool UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
| 1005 | struct upb_Array* array, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1006 | UPB_ASSERT(!upb_Array_IsFrozen(array)); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 1007 | UPB_ASSERT(size <= array->UPB_ONLYBITS(size) || |
| 1008 | arena); // Allow NULL arena when shrinking. |
Protobuf Team Bot | 4b6de0f | 2024-03-29 19:09:40 +0000 | [diff] [blame] | 1009 | if (!upb_Array_Reserve(array, size, arena)) return false; |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 1010 | 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. |
| 1017 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1020 | UPB_ASSERT(!upb_Array_IsFrozen(array)); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 1021 | UPB_ASSERT(i < array->UPB_ONLYBITS(size)); |
| 1022 | UPB_ASSERT(elem_size == 1U << UPB_PRIVATE(_upb_Array_ElemSizeLg2)(array)); |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1023 | char* arr_data = (char*)upb_Array_MutableDataPtr(array); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 1024 | memcpy(arr_data + (i * elem_size), data, elem_size); |
| 1025 | } |
| 1026 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1027 | UPB_API_INLINE size_t upb_Array_Size(const struct upb_Array* arr) { |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 1028 | return arr->UPB_ONLYBITS(size); |
| 1029 | } |
| 1030 | |
Protobuf Team Bot | fd82df7 | 2024-01-29 20:24:42 +0000 | [diff] [blame] | 1031 | // LINT.ThenChange(GoogleInternalName0) |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 1032 | |
| 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 Bot | 473d20d | 2023-09-15 22:27:16 +0000 | [diff] [blame] | 1044 | // Users should include array.h or map.h instead. |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 1045 | // IWYU pragma: private, include "upb/message/array.h" |
Protobuf Team Bot | 473d20d | 2023-09-15 22:27:16 +0000 | [diff] [blame] | 1046 | |
| 1047 | #ifndef UPB_MESSAGE_VALUE_H_ |
| 1048 | #define UPB_MESSAGE_VALUE_H_ |
| 1049 | |
| 1050 | #include <stdint.h> |
| 1051 | |
Protobuf Team Bot | 473d20d | 2023-09-15 22:27:16 +0000 | [diff] [blame] | 1052 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1053 | typedef 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 Bot | 473d20d | 2023-09-15 22:27:16 +0000 | [diff] [blame] | 1065 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1066 | // 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 Bot | 7c68721 | 2023-11-14 03:01:42 +0000 | [diff] [blame] | 1072 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1073 | typedef 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 Bot | dcc1f61 | 2023-09-05 21:56:25 +0000 | [diff] [blame] | 1080 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1081 | #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 |
| 1104 | extern "C" { |
| 1105 | #endif |
| 1106 | |
| 1107 | // Return the log2 of the storage size in bytes for a upb_CType |
| 1108 | UPB_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 |
| 1128 | UPB_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) |
| 1164 | struct 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1179 | #define kUpb_NoSub ((uint16_t) - 1) |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1180 | |
| 1181 | typedef 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. |
| 1191 | typedef 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. |
| 1203 | typedef 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 |
| 1217 | extern "C" { |
| 1218 | #endif |
| 1219 | |
| 1220 | UPB_INLINE upb_FieldMode |
| 1221 | UPB_PRIVATE(_upb_MiniTableField_Mode)(const struct upb_MiniTableField* f) { |
| 1222 | return (upb_FieldMode)(f->UPB_ONLYBITS(mode) & kUpb_FieldMode_Mask); |
| 1223 | } |
| 1224 | |
| 1225 | UPB_INLINE upb_FieldRep |
| 1226 | UPB_PRIVATE(_upb_MiniTableField_GetRep)(const struct upb_MiniTableField* f) { |
| 1227 | return (upb_FieldRep)(f->UPB_ONLYBITS(mode) >> kUpb_FieldRep_Shift); |
| 1228 | } |
| 1229 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1230 | UPB_API_INLINE bool upb_MiniTableField_IsArray( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1231 | const struct upb_MiniTableField* f) { |
| 1232 | return UPB_PRIVATE(_upb_MiniTableField_Mode)(f) == kUpb_FieldMode_Array; |
| 1233 | } |
| 1234 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1235 | UPB_API_INLINE bool upb_MiniTableField_IsMap( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1236 | const struct upb_MiniTableField* f) { |
| 1237 | return UPB_PRIVATE(_upb_MiniTableField_Mode)(f) == kUpb_FieldMode_Map; |
| 1238 | } |
| 1239 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1240 | UPB_API_INLINE bool upb_MiniTableField_IsScalar( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1241 | const struct upb_MiniTableField* f) { |
| 1242 | return UPB_PRIVATE(_upb_MiniTableField_Mode)(f) == kUpb_FieldMode_Scalar; |
| 1243 | } |
| 1244 | |
| 1245 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1250 | UPB_API_INLINE bool upb_MiniTableField_IsExtension( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1251 | const struct upb_MiniTableField* f) { |
| 1252 | return (f->UPB_ONLYBITS(mode) & kUpb_LabelFlags_IsExtension) != 0; |
| 1253 | } |
| 1254 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1255 | UPB_API_INLINE bool upb_MiniTableField_IsPacked( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1256 | const struct upb_MiniTableField* f) { |
| 1257 | return (f->UPB_ONLYBITS(mode) & kUpb_LabelFlags_IsPacked) != 0; |
| 1258 | } |
| 1259 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1260 | UPB_API_INLINE upb_FieldType |
| 1261 | upb_MiniTableField_Type(const struct upb_MiniTableField* f) { |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1262 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1271 | UPB_API_INLINE |
| 1272 | upb_CType upb_MiniTableField_CType(const struct upb_MiniTableField* f) { |
| 1273 | return upb_FieldType_CType(upb_MiniTableField_Type(f)); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1274 | } |
| 1275 | |
| 1276 | UPB_INLINE bool UPB_PRIVATE(_upb_MiniTableField_HasHasbit)( |
| 1277 | const struct upb_MiniTableField* f) { |
| 1278 | return f->presence > 0; |
| 1279 | } |
| 1280 | |
| 1281 | UPB_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 | |
| 1288 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1295 | UPB_API_INLINE bool upb_MiniTableField_IsClosedEnum( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1296 | const struct upb_MiniTableField* f) { |
| 1297 | return f->UPB_PRIVATE(descriptortype) == kUpb_FieldType_Enum; |
| 1298 | } |
| 1299 | |
Protobuf Team Bot | 8958768 | 2024-02-29 17:19:51 +0000 | [diff] [blame] | 1300 | UPB_API_INLINE bool upb_MiniTableField_IsInOneof( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1301 | const struct upb_MiniTableField* f) { |
| 1302 | return f->presence < 0; |
| 1303 | } |
| 1304 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1305 | UPB_API_INLINE bool upb_MiniTableField_IsSubMessage( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1306 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1311 | UPB_API_INLINE bool upb_MiniTableField_HasPresence( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1312 | const struct upb_MiniTableField* f) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1313 | if (upb_MiniTableField_IsExtension(f)) { |
| 1314 | return upb_MiniTableField_IsScalar(f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1315 | } else { |
| 1316 | return f->presence != 0; |
| 1317 | } |
| 1318 | } |
| 1319 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1320 | UPB_API_INLINE uint32_t |
| 1321 | upb_MiniTableField_Number(const struct upb_MiniTableField* f) { |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1322 | return f->UPB_ONLYBITS(number); |
| 1323 | } |
| 1324 | |
| 1325 | UPB_INLINE uint16_t |
| 1326 | UPB_PRIVATE(_upb_MiniTableField_Offset)(const struct upb_MiniTableField* f) { |
| 1327 | return f->UPB_ONLYBITS(offset); |
| 1328 | } |
| 1329 | |
| 1330 | UPB_INLINE size_t UPB_PRIVATE(_upb_MiniTableField_OneofOffset)( |
| 1331 | const struct upb_MiniTableField* f) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1332 | UPB_ASSERT(upb_MiniTableField_IsInOneof(f)); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1333 | return ~(ptrdiff_t)f->presence; |
| 1334 | } |
| 1335 | |
| 1336 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1340 | UPB_ASSUME(upb_MiniTableField_IsArray(f)); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1341 | UPB_ASSUME(f->presence == 0); |
| 1342 | } |
| 1343 | |
| 1344 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1348 | UPB_ASSUME(upb_MiniTableField_IsMap(f)); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1349 | UPB_ASSUME(f->presence == 0); |
| 1350 | } |
| 1351 | |
| 1352 | UPB_INLINE size_t UPB_PRIVATE(_upb_MiniTableField_ElemSizeLg2)( |
| 1353 | const struct upb_MiniTableField* f) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1354 | const upb_FieldType field_type = upb_MiniTableField_Type(f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1355 | 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 | |
| 1369 | typedef struct upb_MiniTableField upb_MiniTableField; |
| 1370 | |
| 1371 | #ifdef __cplusplus |
| 1372 | extern "C" { |
| 1373 | #endif |
| 1374 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1375 | UPB_API_INLINE upb_CType upb_MiniTableField_CType(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1376 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1377 | UPB_API_INLINE bool upb_MiniTableField_HasPresence(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1378 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1379 | UPB_API_INLINE bool upb_MiniTableField_IsArray(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1380 | |
| 1381 | UPB_API_INLINE bool upb_MiniTableField_IsClosedEnum( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1382 | const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1383 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1384 | UPB_API_INLINE bool upb_MiniTableField_IsExtension(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1385 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1386 | UPB_API_INLINE bool upb_MiniTableField_IsInOneof(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1387 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1388 | UPB_API_INLINE bool upb_MiniTableField_IsMap(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1389 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1390 | UPB_API_INLINE bool upb_MiniTableField_IsPacked(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1391 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1392 | UPB_API_INLINE bool upb_MiniTableField_IsScalar(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1393 | |
| 1394 | UPB_API_INLINE bool upb_MiniTableField_IsSubMessage( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1395 | const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1396 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1397 | UPB_API_INLINE uint32_t upb_MiniTableField_Number(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1398 | |
| 1399 | UPB_API_INLINE upb_FieldType |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1400 | upb_MiniTableField_Type(const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1401 | |
| 1402 | #ifdef __cplusplus |
| 1403 | } /* extern "C" */ |
| 1404 | #endif |
| 1405 | |
| 1406 | |
| 1407 | #endif /* UPB_MINI_TABLE_FIELD_H_ */ |
| 1408 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1409 | #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 | |
| 1426 | struct 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 |
| 1433 | extern "C" { |
| 1434 | #endif |
| 1435 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1436 | UPB_API_INLINE bool upb_MiniTableEnum_CheckValue( |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1437 | 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 | |
| 1470 | typedef struct upb_MiniTableEnum upb_MiniTableEnum; |
| 1471 | |
| 1472 | #ifdef __cplusplus |
| 1473 | extern "C" { |
| 1474 | #endif |
| 1475 | |
| 1476 | // Validates enum value against range defined by enum mini table. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1477 | UPB_API_INLINE bool upb_MiniTableEnum_CheckValue(const upb_MiniTableEnum* e, |
| 1478 | uint32_t val); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1479 | |
| 1480 | #ifdef __cplusplus |
| 1481 | } /* extern "C" */ |
| 1482 | #endif |
| 1483 | |
| 1484 | |
| 1485 | #endif /* UPB_MINI_TABLE_ENUM_H_ */ |
| 1486 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1487 | #ifndef UPB_MINI_TABLE_INTERNAL_MESSAGE_H_ |
| 1488 | #define UPB_MINI_TABLE_INTERNAL_MESSAGE_H_ |
| 1489 | |
Protobuf Team Bot | d1cf09a | 2024-04-19 22:43:34 +0000 | [diff] [blame] | 1490 | #include <stddef.h> |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1491 | #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 Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 1499 | typedef union { |
| 1500 | const struct upb_MiniTable* const* UPB_PRIVATE(submsg); |
| 1501 | const struct upb_MiniTableEnum* UPB_PRIVATE(subenum); |
| 1502 | } upb_MiniTableSubInternal; |
| 1503 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1504 | union upb_MiniTableSub { |
| 1505 | const struct upb_MiniTable* UPB_PRIVATE(submsg); |
| 1506 | const struct upb_MiniTableEnum* UPB_PRIVATE(subenum); |
| 1507 | }; |
| 1508 | |
| 1509 | #ifdef __cplusplus |
| 1510 | extern "C" { |
| 1511 | #endif |
| 1512 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1513 | UPB_API_INLINE union upb_MiniTableSub upb_MiniTableSub_FromEnum( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1514 | const struct upb_MiniTableEnum* subenum) { |
| 1515 | union upb_MiniTableSub out; |
| 1516 | out.UPB_PRIVATE(subenum) = subenum; |
| 1517 | return out; |
| 1518 | } |
| 1519 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1520 | UPB_API_INLINE union upb_MiniTableSub upb_MiniTableSub_FromMessage( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1521 | const struct upb_MiniTable* submsg) { |
| 1522 | union upb_MiniTableSub out; |
| 1523 | out.UPB_PRIVATE(submsg) = submsg; |
| 1524 | return out; |
| 1525 | } |
| 1526 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1527 | UPB_API_INLINE const struct upb_MiniTableEnum* upb_MiniTableSub_Enum( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1528 | const union upb_MiniTableSub sub) { |
| 1529 | return sub.UPB_PRIVATE(subenum); |
| 1530 | } |
| 1531 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1532 | UPB_API_INLINE const struct upb_MiniTable* upb_MiniTableSub_Message( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1533 | 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 | |
| 1546 | struct upb_Decoder; |
Protobuf Team Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 1547 | struct upb_Message; |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1548 | typedef 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); |
| 1551 | typedef struct { |
| 1552 | uint64_t field_data; |
| 1553 | _upb_FieldParser* field_parser; |
| 1554 | } _upb_FastTable_Entry; |
| 1555 | |
| 1556 | typedef 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) |
| 1573 | struct upb_MiniTable { |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 1574 | const upb_MiniTableSubInternal* UPB_PRIVATE(subs); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1575 | 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 Bot | ccfab6a | 2024-03-07 20:32:42 +0000 | [diff] [blame] | 1587 | |
Protobuf Team Bot | 5d58cb8 | 2024-03-06 19:59:18 +0000 | [diff] [blame] | 1588 | #ifdef UPB_TRACING_ENABLED |
| 1589 | const char* UPB_PRIVATE(full_name); |
| 1590 | #endif |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1591 | |
Protobuf Team Bot | 5d58cb8 | 2024-03-06 19:59:18 +0000 | [diff] [blame] | 1592 | #ifdef UPB_FASTTABLE_ENABLED |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1593 | // 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 Bot | 5d58cb8 | 2024-03-06 19:59:18 +0000 | [diff] [blame] | 1597 | #endif |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1598 | }; |
| 1599 | // LINT.ThenChange(//depot/google3/third_party/upb/bits/typescript/mini_table.ts) |
| 1600 | |
| 1601 | #ifdef __cplusplus |
| 1602 | extern "C" { |
| 1603 | #endif |
| 1604 | |
Protobuf Team Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 1605 | UPB_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 Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1616 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1622 | UPB_API_INLINE int upb_MiniTable_FieldCount(const struct upb_MiniTable* m) { |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1623 | return m->UPB_ONLYBITS(field_count); |
| 1624 | } |
| 1625 | |
| 1626 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1633 | UPB_API_INLINE const struct upb_MiniTableField* upb_MiniTable_GetFieldByIndex( |
| 1634 | const struct upb_MiniTable* m, uint32_t i) { |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1635 | return &m->UPB_ONLYBITS(fields)[i]; |
| 1636 | } |
| 1637 | |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 1638 | UPB_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 Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1642 | } |
| 1643 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1644 | UPB_API_INLINE const struct upb_MiniTable* upb_MiniTable_SubMessage( |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1645 | const struct upb_MiniTable* m, const struct upb_MiniTableField* f) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1646 | if (upb_MiniTableField_CType(f) != kUpb_CType_Message) { |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1647 | return NULL; |
| 1648 | } |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 1649 | return UPB_PRIVATE(_upb_MiniTable_GetSubTableByIndex)( |
| 1650 | m, f->UPB_PRIVATE(submsg_index)); |
Protobuf Team Bot | d1cf09a | 2024-04-19 22:43:34 +0000 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | UPB_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 | |
| 1661 | UPB_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 | |
| 1666 | UPB_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 Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1671 | } |
| 1672 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1673 | UPB_API_INLINE const struct upb_MiniTableEnum* upb_MiniTable_GetSubEnumTable( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1674 | const struct upb_MiniTable* m, const struct upb_MiniTableField* f) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1675 | UPB_ASSERT(upb_MiniTableField_CType(f) == kUpb_CType_Enum); |
Protobuf Team Bot | d1cf09a | 2024-04-19 22:43:34 +0000 | [diff] [blame] | 1676 | return m->UPB_PRIVATE(subs)[f->UPB_PRIVATE(submsg_index)].UPB_PRIVATE( |
| 1677 | subenum); |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1678 | } |
| 1679 | |
| 1680 | UPB_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 | |
| 1688 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 1696 | // Computes a bitmask in which the |m->required_count| lowest bits are set. |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1697 | // |
| 1698 | // Sample output: |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 1699 | // RequiredMask(1) => 0b1 (0x1) |
| 1700 | // RequiredMask(5) => 0b11111 (0x1f) |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1701 | UPB_INLINE uint64_t |
| 1702 | UPB_PRIVATE(_upb_MiniTable_RequiredMask)(const struct upb_MiniTable* m) { |
| 1703 | int n = m->UPB_PRIVATE(required_count); |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 1704 | UPB_ASSERT(0 < n && n <= 64); |
| 1705 | return (1ULL << n) - 1; |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1706 | } |
| 1707 | |
Protobuf Team Bot | 5d58cb8 | 2024-03-06 19:59:18 +0000 | [diff] [blame] | 1708 | #ifdef UPB_TRACING_ENABLED |
| 1709 | UPB_INLINE const char* upb_MiniTable_FullName( |
| 1710 | const struct upb_MiniTable* mini_table) { |
| 1711 | return mini_table->UPB_PRIVATE(full_name); |
| 1712 | } |
Protobuf Team Bot | ccfab6a | 2024-03-07 20:32:42 +0000 | [diff] [blame] | 1713 | // 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 Bot | 3ee0120 | 2024-03-07 23:27:46 +0000 | [diff] [blame] | 1716 | UPB_INLINE void upb_MiniTable_SetFullName(struct upb_MiniTable* mini_table, |
| 1717 | const char* full_name) { |
Protobuf Team Bot | ccfab6a | 2024-03-07 20:32:42 +0000 | [diff] [blame] | 1718 | mini_table->UPB_PRIVATE(full_name) = full_name; |
| 1719 | } |
Protobuf Team Bot | 5d58cb8 | 2024-03-06 19:59:18 +0000 | [diff] [blame] | 1720 | #endif |
| 1721 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1722 | #ifdef __cplusplus |
| 1723 | } /* extern "C" */ |
| 1724 | #endif |
| 1725 | |
| 1726 | |
| 1727 | #endif /* UPB_MINI_TABLE_INTERNAL_MESSAGE_H_ */ |
| 1728 | |
| 1729 | // Must be last. |
| 1730 | |
| 1731 | typedef struct upb_MiniTable upb_MiniTable; |
| 1732 | |
| 1733 | #ifdef __cplusplus |
| 1734 | extern "C" { |
| 1735 | #endif |
| 1736 | |
| 1737 | UPB_API const upb_MiniTableField* upb_MiniTable_FindFieldByNumber( |
| 1738 | const upb_MiniTable* m, uint32_t number); |
| 1739 | |
| 1740 | UPB_API_INLINE const upb_MiniTableField* upb_MiniTable_GetFieldByIndex( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1741 | const upb_MiniTable* m, uint32_t index); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1742 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1743 | UPB_API_INLINE int upb_MiniTable_FieldCount(const upb_MiniTable* m); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1744 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1745 | // DEPRECATED: use upb_MiniTable_SubMessage() instead |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1746 | // Returns the MiniTable for a message field, NULL if the field is unlinked. |
| 1747 | UPB_API_INLINE const upb_MiniTable* upb_MiniTable_GetSubMessageTable( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1748 | const upb_MiniTable* m, const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1749 | |
Protobuf Team Bot | d1cf09a | 2024-04-19 22:43:34 +0000 | [diff] [blame] | 1750 | // 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 Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1757 | UPB_API_INLINE const upb_MiniTable* upb_MiniTable_SubMessage( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1758 | const upb_MiniTable* m, const upb_MiniTableField* f); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1759 | |
Protobuf Team Bot | d1cf09a | 2024-04-19 22:43:34 +0000 | [diff] [blame] | 1760 | // Returns the MiniTable for a map field. The given field must refer to a map. |
| 1761 | UPB_API_INLINE const upb_MiniTable* upb_MiniTable_MapEntrySubMessage( |
| 1762 | const upb_MiniTable* m, const upb_MiniTableField* f); |
| 1763 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1764 | // Returns the MiniTableEnum for a message field, NULL if the field is unlinked. |
| 1765 | UPB_API_INLINE const upb_MiniTableEnum* upb_MiniTable_GetSubEnumTable( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1766 | const upb_MiniTable* m, const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1767 | |
| 1768 | // Returns the MiniTableField for the key of a map. |
| 1769 | UPB_API_INLINE const upb_MiniTableField* upb_MiniTable_MapKey( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1770 | const upb_MiniTable* m); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1771 | |
| 1772 | // Returns the MiniTableField for the value of a map. |
| 1773 | UPB_API_INLINE const upb_MiniTableField* upb_MiniTable_MapValue( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1774 | const upb_MiniTable* m); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1775 | |
| 1776 | // Returns true if this MiniTable field is linked to a MiniTable for the |
| 1777 | // sub-message. |
Protobuf Team Bot | 54f512b | 2024-04-08 18:30:15 +0000 | [diff] [blame] | 1778 | UPB_API_INLINE bool upb_MiniTable_FieldIsLinked(const upb_MiniTable* m, |
| 1779 | const upb_MiniTableField* f); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1780 | |
| 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 | // |
| 1791 | const 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. |
| 1799 | bool 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 Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1811 | typedef struct upb_Array upb_Array; |
| 1812 | |
| 1813 | #ifdef __cplusplus |
| 1814 | extern "C" { |
| 1815 | #endif |
| 1816 | |
| 1817 | // Creates a new array on the given arena that holds elements of this type. |
| 1818 | UPB_API upb_Array* upb_Array_New(upb_Arena* a, upb_CType type); |
| 1819 | |
| 1820 | // Returns the number of elements in the array. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1821 | UPB_API_INLINE size_t upb_Array_Size(const upb_Array* arr); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1822 | |
| 1823 | // Returns the given element, which must be within the array's current size. |
| 1824 | UPB_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. |
| 1828 | UPB_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. |
| 1831 | UPB_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. |
| 1834 | UPB_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. |
| 1839 | UPB_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)` |
| 1846 | UPB_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)` |
| 1852 | UPB_API void upb_Array_Delete(upb_Array* array, size_t i, size_t count); |
| 1853 | |
Protobuf Team Bot | 4b6de0f | 2024-03-29 19:09:40 +0000 | [diff] [blame] | 1854 | // Reserves |size| elements of storage for the array. |
| 1855 | UPB_API_INLINE bool upb_Array_Reserve(struct upb_Array* array, size_t size, |
| 1856 | upb_Arena* arena); |
| 1857 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1858 | // Changes the size of a vector. New elements are initialized to NULL/0. |
| 1859 | // Returns false on allocation failure. |
| 1860 | UPB_API bool upb_Array_Resize(upb_Array* array, size_t size, upb_Arena* arena); |
| 1861 | |
| 1862 | // Returns pointer to array data. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1863 | UPB_API_INLINE const void* upb_Array_DataPtr(const upb_Array* arr); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1864 | |
| 1865 | // Returns mutable pointer to array data. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1866 | UPB_API_INLINE void* upb_Array_MutableDataPtr(upb_Array* arr); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1867 | |
| 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. |
| 1871 | UPB_API void upb_Array_Freeze(upb_Array* arr, const upb_MiniTable* m); |
| 1872 | |
| 1873 | // Returns whether an array has been frozen. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1874 | UPB_API_INLINE bool upb_Array_IsFrozen(const upb_Array* arr); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1875 | |
| 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 |
| 1899 | extern "C" { |
| 1900 | #endif |
| 1901 | |
| 1902 | UPB_INLINE bool upb_IsLittleEndian(void) { |
| 1903 | const int x = 1; |
| 1904 | return *(char*)&x == 1; |
| 1905 | } |
| 1906 | |
| 1907 | UPB_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 | |
| 1914 | UPB_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 Bot | 4df6e04 | 2024-01-30 19:27:52 +0000 | [diff] [blame] | 1932 | #include <stddef.h> |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 1933 | |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1934 | |
| 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 Bot | eb31de3 | 2024-05-09 22:09:21 +0000 | [diff] [blame] | 1944 | #include <stddef.h> |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1945 | #include <stdint.h> |
| 1946 | |
| 1947 | |
| 1948 | // Must be last. |
| 1949 | |
| 1950 | struct 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 |
| 1959 | extern "C" { |
| 1960 | #endif |
| 1961 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1962 | UPB_API_INLINE upb_CType |
| 1963 | upb_MiniTableExtension_CType(const struct upb_MiniTableExtension* e) { |
| 1964 | return upb_MiniTableField_CType(&e->UPB_PRIVATE(field)); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1965 | } |
| 1966 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1967 | UPB_API_INLINE uint32_t |
| 1968 | upb_MiniTableExtension_Number(const struct upb_MiniTableExtension* e) { |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1969 | return e->UPB_PRIVATE(field).UPB_ONLYBITS(number); |
| 1970 | } |
| 1971 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1972 | UPB_API_INLINE const struct upb_MiniTable* upb_MiniTableExtension_GetSubMessage( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1973 | const struct upb_MiniTableExtension* e) { |
Protobuf Team Bot | eb31de3 | 2024-05-09 22:09:21 +0000 | [diff] [blame] | 1974 | if (upb_MiniTableExtension_CType(e) != kUpb_CType_Message) { |
| 1975 | return NULL; |
| 1976 | } |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1977 | return upb_MiniTableSub_Message(e->UPB_PRIVATE(sub)); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1978 | } |
| 1979 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 1980 | UPB_API_INLINE void upb_MiniTableExtension_SetSubMessage( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1981 | struct upb_MiniTableExtension* e, const struct upb_MiniTable* m) { |
| 1982 | e->UPB_PRIVATE(sub).UPB_PRIVATE(submsg) = m; |
| 1983 | } |
| 1984 | |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 1985 | UPB_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 Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 1990 | #ifdef __cplusplus |
| 1991 | } /* extern "C" */ |
| 1992 | #endif |
| 1993 | |
| 1994 | |
| 1995 | #endif /* UPB_MINI_TABLE_INTERNAL_EXTENSION_H_ */ |
| 1996 | |
| 1997 | // Must be last. |
| 1998 | |
| 1999 | typedef struct upb_MiniTableExtension upb_MiniTableExtension; |
| 2000 | |
| 2001 | #ifdef __cplusplus |
| 2002 | extern "C" { |
| 2003 | #endif |
| 2004 | |
Protobuf Team Bot | fe6a601 | 2024-01-18 00:05:28 +0000 | [diff] [blame] | 2005 | UPB_API_INLINE upb_CType |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2006 | upb_MiniTableExtension_CType(const upb_MiniTableExtension* e); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2007 | |
| 2008 | UPB_API_INLINE uint32_t |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2009 | upb_MiniTableExtension_Number(const upb_MiniTableExtension* e); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2010 | |
| 2011 | UPB_API_INLINE const upb_MiniTable* upb_MiniTableExtension_GetSubMessage( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2012 | const upb_MiniTableExtension* e); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2013 | |
| 2014 | UPB_API_INLINE void upb_MiniTableExtension_SetSubMessage( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2015 | upb_MiniTableExtension* e, const upb_MiniTable* m); |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2016 | |
| 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 Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 2034 | typedef struct { |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2035 | const upb_MiniTableExtension* ext; |
Protobuf Team Bot | 4df6e04 | 2024-01-30 19:27:52 +0000 | [diff] [blame] | 2036 | upb_MessageValue data; |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 2037 | } upb_Extension; |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2038 | |
| 2039 | #ifdef __cplusplus |
| 2040 | extern "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 Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 2046 | upb_Extension* UPB_PRIVATE(_upb_Message_GetOrCreateExtension)( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2047 | 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 Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 2052 | const upb_Extension* UPB_PRIVATE(_upb_Message_Getexts)( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2053 | 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 Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 2057 | const upb_Extension* UPB_PRIVATE(_upb_Message_Getext)( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2058 | 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 Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2066 | |
| 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 |
| 2106 | extern "C" { |
| 2107 | #endif |
| 2108 | |
| 2109 | /* upb_value ******************************************************************/ |
| 2110 | |
| 2111 | typedef struct { |
| 2112 | uint64_t val; |
| 2113 | } upb_value; |
| 2114 | |
| 2115 | UPB_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 | |
| 2138 | FUNCS(int32, int32, int32_t, int32_t) |
| 2139 | FUNCS(int64, int64, int64_t, int64_t) |
| 2140 | FUNCS(uint32, uint32, uint32_t, uint32_t) |
| 2141 | FUNCS(uint64, uint64, uint64_t, uint64_t) |
| 2142 | FUNCS(bool, _bool, bool, bool) |
| 2143 | FUNCS(cstr, cstr, char*, uintptr_t) |
| 2144 | FUNCS(uintptr, uptr, uintptr_t, uintptr_t) |
| 2145 | FUNCS(ptr, ptr, void*, uintptr_t) |
| 2146 | FUNCS(constptr, constptr, const void*, uintptr_t) |
| 2147 | |
| 2148 | #undef FUNCS |
| 2149 | |
| 2150 | UPB_INLINE void upb_value_setfloat(upb_value* val, float cval) { |
| 2151 | memcpy(&val->val, &cval, sizeof(cval)); |
| 2152 | } |
| 2153 | |
| 2154 | UPB_INLINE void upb_value_setdouble(upb_value* val, double cval) { |
| 2155 | memcpy(&val->val, &cval, sizeof(cval)); |
| 2156 | } |
| 2157 | |
| 2158 | UPB_INLINE upb_value upb_value_float(float cval) { |
| 2159 | upb_value ret; |
| 2160 | upb_value_setfloat(&ret, cval); |
| 2161 | return ret; |
| 2162 | } |
| 2163 | |
| 2164 | UPB_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. */ |
| 2179 | typedef uintptr_t upb_tabkey; |
| 2180 | |
| 2181 | UPB_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 | |
| 2187 | UPB_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 | |
| 2197 | typedef struct upb_tabval { |
| 2198 | uint64_t val; |
| 2199 | } upb_tabval; |
| 2200 | |
| 2201 | #define UPB_TABVALUE_EMPTY_INIT \ |
| 2202 | { -1 } |
| 2203 | |
| 2204 | /* upb_table ******************************************************************/ |
| 2205 | |
| 2206 | typedef 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 | |
| 2217 | typedef 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 | |
| 2225 | UPB_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 | |
| 2231 | UPB_INLINE bool upb_tabent_isempty(const upb_tabent* e) { return e->key == 0; } |
| 2232 | |
| 2233 | uint32_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 | |
| 2244 | typedef struct { |
| 2245 | upb_table t; |
| 2246 | } upb_strtable; |
| 2247 | |
| 2248 | #ifdef __cplusplus |
| 2249 | extern "C" { |
| 2250 | #endif |
| 2251 | |
| 2252 | // Initialize a table. If memory allocation failed, false is returned and |
| 2253 | // the table is uninitialized. |
| 2254 | bool upb_strtable_init(upb_strtable* table, size_t expected_size, upb_Arena* a); |
| 2255 | |
| 2256 | // Returns the number of values in the table. |
| 2257 | UPB_INLINE size_t upb_strtable_count(const upb_strtable* t) { |
| 2258 | return t->t.count; |
| 2259 | } |
| 2260 | |
| 2261 | void 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. */ |
| 2269 | bool 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. |
| 2274 | bool upb_strtable_lookup2(const upb_strtable* t, const char* key, size_t len, |
| 2275 | upb_value* v); |
| 2276 | |
| 2277 | // For NULL-terminated strings. |
| 2278 | UPB_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. |
| 2285 | bool upb_strtable_remove2(upb_strtable* t, const char* key, size_t len, |
| 2286 | upb_value* val); |
| 2287 | |
| 2288 | UPB_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. |
| 2294 | bool 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 | |
| 2308 | bool upb_strtable_next2(const upb_strtable* t, upb_StringView* key, |
| 2309 | upb_value* val, intptr_t* iter); |
| 2310 | void upb_strtable_removeiter(upb_strtable* t, intptr_t* iter); |
| 2311 | void 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 | |
| 2346 | typedef struct { |
| 2347 | const upb_strtable* t; |
| 2348 | size_t index; |
| 2349 | } upb_strtable_iter; |
| 2350 | |
| 2351 | UPB_INLINE const upb_tabent* str_tabent(const upb_strtable_iter* i) { |
| 2352 | return &i->t->t.entries[i->index]; |
| 2353 | } |
| 2354 | |
| 2355 | void upb_strtable_begin(upb_strtable_iter* i, const upb_strtable* t); |
| 2356 | void upb_strtable_next(upb_strtable_iter* i); |
| 2357 | bool upb_strtable_done(const upb_strtable_iter* i); |
| 2358 | upb_StringView upb_strtable_iter_key(const upb_strtable_iter* i); |
| 2359 | upb_value upb_strtable_iter_value(const upb_strtable_iter* i); |
| 2360 | void upb_strtable_iter_setdone(upb_strtable_iter* i); |
| 2361 | bool 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 | |
| 2373 | typedef 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 | |
| 2381 | struct 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 Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2386 | bool UPB_PRIVATE(is_frozen); |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2387 | |
| 2388 | upb_strtable table; |
| 2389 | }; |
| 2390 | |
| 2391 | #ifdef __cplusplus |
| 2392 | extern "C" { |
| 2393 | #endif |
| 2394 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2395 | UPB_INLINE void UPB_PRIVATE(_upb_Map_ShallowFreeze)(struct upb_Map* map) { |
| 2396 | map->UPB_PRIVATE(is_frozen) = true; |
| 2397 | } |
| 2398 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2399 | UPB_API_INLINE bool upb_Map_IsFrozen(const struct upb_Map* map) { |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2400 | return map->UPB_PRIVATE(is_frozen); |
| 2401 | } |
| 2402 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2403 | // 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 | |
| 2411 | UPB_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 | |
| 2419 | UPB_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 | |
| 2427 | UPB_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 | |
| 2440 | UPB_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 | |
| 2449 | UPB_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 | |
| 2459 | UPB_INLINE void _upb_Map_Clear(struct upb_Map* map) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2460 | UPB_ASSERT(!upb_Map_IsFrozen(map)); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2461 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2462 | upb_strtable_clear(&map->table); |
| 2463 | } |
| 2464 | |
| 2465 | UPB_INLINE bool _upb_Map_Delete(struct upb_Map* map, const void* key, |
| 2466 | size_t key_size, upb_value* val) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2467 | UPB_ASSERT(!upb_Map_IsFrozen(map)); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2468 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2469 | upb_StringView k = _upb_map_tokey(key, key_size); |
| 2470 | return upb_strtable_remove2(&map->table, k.data, k.size, val); |
| 2471 | } |
| 2472 | |
| 2473 | UPB_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 | |
| 2484 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2488 | UPB_ASSERT(!upb_Map_IsFrozen(map)); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2489 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2490 | 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 | |
| 2506 | UPB_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. |
| 2511 | extern char _upb_Map_CTypeSizeTable[12]; |
| 2512 | |
| 2513 | UPB_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. |
| 2518 | struct 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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 2526 | |
Protobuf Team Bot | 4df6e04 | 2024-01-30 19:27:52 +0000 | [diff] [blame] | 2527 | /* |
| 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 |
| 2544 | extern "C" { |
| 2545 | #endif |
| 2546 | |
| 2547 | extern const float kUpb_FltInfinity; |
| 2548 | extern const double kUpb_Infinity; |
| 2549 | extern 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 | |
| 2554 | typedef 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 Bot | ccfab6a | 2024-03-07 20:32:42 +0000 | [diff] [blame] | 2577 | #ifdef UPB_TRACING_ENABLED |
Protobuf Team Bot | 51cba7c | 2024-05-06 13:34:40 +0000 | [diff] [blame] | 2578 | UPB_API void upb_Message_LogNewMessage(const upb_MiniTable* m, |
| 2579 | const upb_Arena* arena); |
| 2580 | UPB_API void upb_Message_SetNewMessageTraceHandler( |
| 2581 | void (*handler)(const upb_MiniTable*, const upb_Arena*)); |
| 2582 | #endif // UPB_TRACING_ENABLED |
Protobuf Team Bot | ccfab6a | 2024-03-07 20:32:42 +0000 | [diff] [blame] | 2583 | |
Protobuf Team Bot | 4df6e04 | 2024-01-30 19:27:52 +0000 | [diff] [blame] | 2584 | // Inline version upb_Message_New(), for internal use. |
| 2585 | UPB_INLINE struct upb_Message* _upb_Message_New(const upb_MiniTable* m, |
| 2586 | upb_Arena* a) { |
Protobuf Team Bot | ccfab6a | 2024-03-07 20:32:42 +0000 | [diff] [blame] | 2587 | #ifdef UPB_TRACING_ENABLED |
Protobuf Team Bot | 51cba7c | 2024-05-06 13:34:40 +0000 | [diff] [blame] | 2588 | upb_Message_LogNewMessage(m, a); |
| 2589 | #endif // UPB_TRACING_ENABLED |
| 2590 | |
Protobuf Team Bot | 4df6e04 | 2024-01-30 19:27:52 +0000 | [diff] [blame] | 2591 | 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. |
| 2599 | void _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. |
| 2603 | bool UPB_PRIVATE(_upb_Message_AddUnknown)(struct upb_Message* msg, |
| 2604 | const char* data, size_t len, |
| 2605 | upb_Arena* arena); |
| 2606 | |
| 2607 | bool 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 Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2617 | #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 Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2625 | #ifdef __cplusplus |
| 2626 | extern "C" { |
| 2627 | #endif |
| 2628 | |
| 2629 | // Internal-only because empty messages cannot be created by the user. |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2630 | UPB_INLINE uintptr_t |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2631 | UPB_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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2636 | UPB_API_INLINE bool upb_TaggedMessagePtr_IsEmpty(uintptr_t ptr) { |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2637 | return ptr & 1; |
| 2638 | } |
| 2639 | |
| 2640 | UPB_INLINE struct upb_Message* UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2641 | uintptr_t ptr) { |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2642 | return (struct upb_Message*)(ptr & ~(uintptr_t)1); |
| 2643 | } |
| 2644 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2645 | UPB_API_INLINE struct upb_Message* upb_TaggedMessagePtr_GetNonEmptyMessage( |
| 2646 | uintptr_t ptr) { |
| 2647 | UPB_ASSERT(!upb_TaggedMessagePtr_IsEmpty(ptr)); |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2648 | return UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)(ptr); |
| 2649 | } |
| 2650 | |
| 2651 | UPB_INLINE struct upb_Message* UPB_PRIVATE( |
Protobuf Team Bot | e1253cd | 2024-01-08 23:09:09 +0000 | [diff] [blame] | 2652 | _upb_TaggedMessagePtr_GetEmptyMessage)(uintptr_t ptr) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2653 | UPB_ASSERT(upb_TaggedMessagePtr_IsEmpty(ptr)); |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2654 | 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 Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 2664 | #ifndef UPB_MESSAGE_INTERNAL_TYPES_H_ |
| 2665 | #define UPB_MESSAGE_INTERNAL_TYPES_H_ |
| 2666 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2667 | #include <stdint.h> |
| 2668 | |
| 2669 | // Must be last. |
| 2670 | |
| 2671 | #define UPB_OPAQUE(x) x##_opaque |
| 2672 | |
Protobuf Team Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 2673 | struct upb_Message { |
| 2674 | union { |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2675 | uintptr_t UPB_OPAQUE(internal); // tagged pointer, low bit == frozen |
Protobuf Team Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 2676 | double d; // Forces same size for 32-bit/64-bit builds |
| 2677 | }; |
| 2678 | }; |
| 2679 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2680 | #ifdef __cplusplus |
| 2681 | extern "C" { |
| 2682 | #endif |
| 2683 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2684 | UPB_INLINE void UPB_PRIVATE(_upb_Message_ShallowFreeze)( |
| 2685 | struct upb_Message* msg) { |
| 2686 | msg->UPB_OPAQUE(internal) |= 1ULL; |
| 2687 | } |
| 2688 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2689 | UPB_API_INLINE bool upb_Message_IsFrozen(const struct upb_Message* msg) { |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2690 | return (msg->UPB_OPAQUE(internal) & 1ULL) != 0; |
| 2691 | } |
| 2692 | |
| 2693 | UPB_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 | |
| 2699 | UPB_INLINE void UPB_PRIVATE(_upb_Message_SetInternal)( |
| 2700 | struct upb_Message* msg, struct upb_Message_Internal* internal) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2701 | UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2702 | msg->UPB_OPAQUE(internal) = (uintptr_t)internal; |
| 2703 | } |
| 2704 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2705 | #ifdef __cplusplus |
| 2706 | } /* extern "C" */ |
| 2707 | #endif |
| 2708 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 2709 | #undef UPB_OPAQUE |
| 2710 | |
| 2711 | |
Protobuf Team Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 2712 | #endif /* UPB_MESSAGE_INTERNAL_TYPES_H_ */ |
| 2713 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2714 | // Must be last. |
| 2715 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 2716 | #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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 2729 | #if __GNUC__ >= 11 |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 2730 | #pragma GCC diagnostic ignored "-Wstringop-overread" |
| 2731 | #endif |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 2732 | #endif |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 2733 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2734 | #ifdef __cplusplus |
| 2735 | extern "C" { |
| 2736 | #endif |
| 2737 | |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2738 | // LINT.IfChange(presence_logic) |
| 2739 | |
| 2740 | // Hasbit access /////////////////////////////////////////////////////////////// |
| 2741 | |
Protobuf Team Bot | 7713df5 | 2023-12-05 20:16:11 +0000 | [diff] [blame] | 2742 | UPB_INLINE bool UPB_PRIVATE(_upb_Message_GetHasbit)( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2743 | const struct upb_Message* msg, const upb_MiniTableField* f) { |
Protobuf Team Bot | a0e8195 | 2023-12-21 14:54:29 +0000 | [diff] [blame] | 2744 | const size_t offset = UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(f); |
| 2745 | const char mask = UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(f); |
| 2746 | |
Protobuf Team Bot | b8c1a27 | 2023-11-15 17:49:10 +0000 | [diff] [blame] | 2747 | return (*UPB_PTR_AT(msg, offset, const char) & mask) != 0; |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2748 | } |
| 2749 | |
Protobuf Team Bot | 7713df5 | 2023-12-05 20:16:11 +0000 | [diff] [blame] | 2750 | UPB_INLINE void UPB_PRIVATE(_upb_Message_SetHasbit)( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2751 | const struct upb_Message* msg, const upb_MiniTableField* f) { |
Protobuf Team Bot | a0e8195 | 2023-12-21 14:54:29 +0000 | [diff] [blame] | 2752 | const size_t offset = UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(f); |
| 2753 | const char mask = UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(f); |
| 2754 | |
Protobuf Team Bot | b8c1a27 | 2023-11-15 17:49:10 +0000 | [diff] [blame] | 2755 | (*UPB_PTR_AT(msg, offset, char)) |= mask; |
| 2756 | } |
| 2757 | |
Protobuf Team Bot | 7713df5 | 2023-12-05 20:16:11 +0000 | [diff] [blame] | 2758 | UPB_INLINE void UPB_PRIVATE(_upb_Message_ClearHasbit)( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2759 | const struct upb_Message* msg, const upb_MiniTableField* f) { |
Protobuf Team Bot | a0e8195 | 2023-12-21 14:54:29 +0000 | [diff] [blame] | 2760 | const size_t offset = UPB_PRIVATE(_upb_MiniTableField_HasbitOffset)(f); |
| 2761 | const char mask = UPB_PRIVATE(_upb_MiniTableField_HasbitMask)(f); |
| 2762 | |
Protobuf Team Bot | b8c1a27 | 2023-11-15 17:49:10 +0000 | [diff] [blame] | 2763 | (*UPB_PTR_AT(msg, offset, char)) &= ~mask; |
| 2764 | } |
| 2765 | |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2766 | // Oneof case access /////////////////////////////////////////////////////////// |
| 2767 | |
Protobuf Team Bot | 7d4ead2 | 2023-12-05 21:25:30 +0000 | [diff] [blame] | 2768 | UPB_INLINE uint32_t* UPB_PRIVATE(_upb_Message_OneofCasePtr)( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2769 | struct upb_Message* msg, const upb_MiniTableField* f) { |
Protobuf Team Bot | a0e8195 | 2023-12-21 14:54:29 +0000 | [diff] [blame] | 2770 | return UPB_PTR_AT(msg, UPB_PRIVATE(_upb_MiniTableField_OneofOffset)(f), |
| 2771 | uint32_t); |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2772 | } |
| 2773 | |
Protobuf Team Bot | 7d4ead2 | 2023-12-05 21:25:30 +0000 | [diff] [blame] | 2774 | UPB_INLINE uint32_t UPB_PRIVATE(_upb_Message_GetOneofCase)( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2775 | const struct upb_Message* msg, const upb_MiniTableField* f) { |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2776 | const uint32_t* ptr = |
| 2777 | UPB_PRIVATE(_upb_Message_OneofCasePtr)((struct upb_Message*)msg, f); |
| 2778 | |
| 2779 | return *ptr; |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2780 | } |
| 2781 | |
Protobuf Team Bot | 7d4ead2 | 2023-12-05 21:25:30 +0000 | [diff] [blame] | 2782 | UPB_INLINE void UPB_PRIVATE(_upb_Message_SetOneofCase)( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2783 | struct upb_Message* msg, const upb_MiniTableField* f) { |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2784 | uint32_t* ptr = UPB_PRIVATE(_upb_Message_OneofCasePtr)(msg, f); |
| 2785 | |
| 2786 | *ptr = upb_MiniTableField_Number(f); |
Protobuf Team Bot | b8c1a27 | 2023-11-15 17:49:10 +0000 | [diff] [blame] | 2787 | } |
| 2788 | |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2789 | // Returns true if the given field is the current oneof case. |
| 2790 | // Does nothing if it is not the current oneof case. |
| 2791 | UPB_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 Bot | b8c1a27 | 2023-11-15 17:49:10 +0000 | [diff] [blame] | 2799 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 2800 | UPB_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 Bot | 6cce622 | 2024-05-28 17:15:46 +0000 | [diff] [blame] | 2806 | UPB_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 Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2817 | // LINT.ThenChange(GoogleInternalName2) |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 2818 | |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 2819 | // Returns false if the message is missing any of its required fields. |
| 2820 | UPB_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 Bot | 9bee747 | 2024-01-10 18:09:23 +0000 | [diff] [blame] | 2828 | UPB_INLINE void* UPB_PRIVATE(_upb_Message_MutableDataPtr)( |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2829 | struct upb_Message* msg, const upb_MiniTableField* f) { |
| 2830 | return (char*)msg + f->UPB_ONLYBITS(offset); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2831 | } |
| 2832 | |
Protobuf Team Bot | 9bee747 | 2024-01-10 18:09:23 +0000 | [diff] [blame] | 2833 | UPB_INLINE const void* UPB_PRIVATE(_upb_Message_DataPtr)( |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2834 | const struct upb_Message* msg, const upb_MiniTableField* f) { |
| 2835 | return (const char*)msg + f->UPB_ONLYBITS(offset); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2836 | } |
| 2837 | |
Protobuf Team Bot | 7d4ead2 | 2023-12-05 21:25:30 +0000 | [diff] [blame] | 2838 | UPB_INLINE void UPB_PRIVATE(_upb_Message_SetPresence)( |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2839 | 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2844 | } |
| 2845 | } |
| 2846 | |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2847 | UPB_INLINE void UPB_PRIVATE(_upb_MiniTableField_DataCopy)( |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2848 | const upb_MiniTableField* f, void* to, const void* from) { |
| 2849 | switch (UPB_PRIVATE(_upb_MiniTableField_GetRep)(f)) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2850 | 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 Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2867 | UPB_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 | |
| 2885 | UPB_INLINE void UPB_PRIVATE(_upb_MiniTableField_DataClear)( |
| 2886 | const upb_MiniTableField* f, void* val) { |
| 2887 | const char zero[16] = {0}; |
Protobuf Team Bot | 8203e2f | 2024-05-20 19:23:30 +0000 | [diff] [blame] | 2888 | UPB_PRIVATE(_upb_MiniTableField_DataCopy)(f, val, zero); |
Protobuf Team Bot | 18d4a76 | 2024-01-02 05:41:47 +0000 | [diff] [blame] | 2889 | } |
| 2890 | |
| 2891 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2897 | // 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 Salo | b598b2d | 2022-12-22 23:14:27 -0800 | [diff] [blame] | 2903 | // // Via struct literals. |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2904 | // 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 2907 | // upb_Message_SetBaseField(msg, &field, &value); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2908 | // } |
| 2909 | // |
| 2910 | // // Via UPB_ASSUME(). |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 2911 | // UPB_INLINE bool upb_Message_SetBool(upb_Message* msg, |
| 2912 | // const upb_MiniTableField* field, |
| 2913 | // bool value, upb_Arena* a) { |
Deanna Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 2914 | // UPB_ASSUME(field->UPB_PRIVATE(descriptortype) == kUpb_FieldType_Bool); |
Protobuf Team Bot | 4216972 | 2023-11-29 03:54:33 +0000 | [diff] [blame] | 2915 | // UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(field) == |
| 2916 | // kUpb_FieldRep_1Byte); |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 2917 | // upb_Message_SetField(msg, field, &value, a); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2918 | // } |
| 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 Salo | b598b2d | 2022-12-22 23:14:27 -0800 | [diff] [blame] | 2923 | // about how they read/write the message data, for efficiency. |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 2924 | // |
| 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2928 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2929 | UPB_API_INLINE bool upb_Message_HasBaseField(const struct upb_Message* msg, |
| 2930 | const upb_MiniTableField* field) { |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 2931 | UPB_ASSERT(upb_MiniTableField_HasPresence(field)); |
| 2932 | UPB_ASSUME(!upb_MiniTableField_IsExtension(field)); |
Protobuf Team Bot | e81cda1 | 2023-11-21 18:23:13 +0000 | [diff] [blame] | 2933 | if (upb_MiniTableField_IsInOneof(field)) { |
Protobuf Team Bot | 7d4ead2 | 2023-12-05 21:25:30 +0000 | [diff] [blame] | 2934 | return UPB_PRIVATE(_upb_Message_GetOneofCase)(msg, field) == |
Protobuf Team Bot | 7bdd38e | 2023-12-01 23:06:45 +0000 | [diff] [blame] | 2935 | upb_MiniTableField_Number(field); |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 2936 | } else { |
Protobuf Team Bot | 7713df5 | 2023-12-05 20:16:11 +0000 | [diff] [blame] | 2937 | return UPB_PRIVATE(_upb_Message_GetHasbit)(msg, field); |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 2938 | } |
| 2939 | } |
| 2940 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2941 | UPB_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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 2945 | } |
| 2946 | |
Protobuf Team Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 2947 | UPB_FORCEINLINE void _upb_Message_GetNonExtensionField( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2948 | const struct upb_Message* msg, const upb_MiniTableField* field, |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2949 | const void* default_val, void* val) { |
| 2950 | UPB_ASSUME(!upb_MiniTableField_IsExtension(field)); |
Protobuf Team Bot | e81cda1 | 2023-11-21 18:23:13 +0000 | [diff] [blame] | 2951 | if ((upb_MiniTableField_IsInOneof(field) || |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2952 | !UPB_PRIVATE(_upb_MiniTableField_DataIsZero)(field, default_val)) && |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2953 | !upb_Message_HasBaseField(msg, field)) { |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2954 | UPB_PRIVATE(_upb_MiniTableField_DataCopy)(field, val, default_val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2955 | return; |
| 2956 | } |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2957 | UPB_PRIVATE(_upb_MiniTableField_DataCopy) |
Protobuf Team Bot | 9bee747 | 2024-01-10 18:09:23 +0000 | [diff] [blame] | 2958 | (field, val, UPB_PRIVATE(_upb_Message_DataPtr)(msg, field)); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2959 | } |
| 2960 | |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 2961 | UPB_INLINE void _upb_Message_GetExtensionField( |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 2962 | const struct upb_Message* msg, const upb_MiniTableExtension* mt_ext, |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2963 | const void* default_val, void* val) { |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 2964 | const upb_Extension* ext = UPB_PRIVATE(_upb_Message_Getext)(msg, mt_ext); |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2965 | const upb_MiniTableField* f = &mt_ext->UPB_PRIVATE(field); |
| 2966 | UPB_ASSUME(upb_MiniTableField_IsExtension(f)); |
| 2967 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2968 | if (ext) { |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2969 | UPB_PRIVATE(_upb_MiniTableField_DataCopy)(f, val, &ext->data); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2970 | } else { |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2971 | UPB_PRIVATE(_upb_MiniTableField_DataCopy)(f, val, default_val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 2972 | } |
| 2973 | } |
| 2974 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 2975 | // 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. |
| 2980 | UPB_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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 2993 | UPB_API_INLINE void upb_Message_SetBaseField(struct upb_Message* msg, |
| 2994 | const upb_MiniTableField* f, |
| 2995 | const void* val) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 2996 | UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 2997 | UPB_ASSUME(!upb_MiniTableField_IsExtension(f)); |
| 2998 | UPB_PRIVATE(_upb_Message_SetPresence)(msg, f); |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 2999 | UPB_PRIVATE(_upb_MiniTableField_DataCopy) |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 3000 | (f, UPB_PRIVATE(_upb_Message_MutableDataPtr)(msg, f), val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3001 | } |
| 3002 | |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 3003 | UPB_API_INLINE bool upb_Message_SetExtension(struct upb_Message* msg, |
| 3004 | const upb_MiniTableExtension* e, |
| 3005 | const void* val, upb_Arena* a) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3006 | UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 3007 | UPB_ASSERT(a); |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 3008 | upb_Extension* ext = |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 3009 | UPB_PRIVATE(_upb_Message_GetOrCreateExtension)(msg, e, a); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3010 | if (!ext) return false; |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 3011 | UPB_PRIVATE(_upb_MiniTableField_DataCopy) |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 3012 | (&e->UPB_PRIVATE(field), &ext->data, val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3013 | return true; |
| 3014 | } |
| 3015 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3016 | // 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. |
| 3019 | UPB_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 | |
| 3032 | UPB_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 | |
| 3041 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3045 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3046 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_1Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3047 | upb_MessageValue def; |
| 3048 | def.bool_val = default_val; |
| 3049 | return upb_Message_GetField(msg, f, def).bool_val; |
| 3050 | } |
| 3051 | |
| 3052 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3056 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3057 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3058 | |
| 3059 | upb_MessageValue def; |
| 3060 | def.double_val = default_val; |
| 3061 | return upb_Message_GetField(msg, f, def).double_val; |
| 3062 | } |
| 3063 | |
| 3064 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3068 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3069 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3070 | |
| 3071 | upb_MessageValue def; |
| 3072 | def.float_val = default_val; |
| 3073 | return upb_Message_GetField(msg, f, def).float_val; |
| 3074 | } |
| 3075 | |
| 3076 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3081 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3082 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3083 | |
| 3084 | upb_MessageValue def; |
| 3085 | def.int32_val = default_val; |
| 3086 | return upb_Message_GetField(msg, f, def).int32_val; |
| 3087 | } |
| 3088 | |
| 3089 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3093 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3094 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3095 | |
| 3096 | upb_MessageValue def; |
| 3097 | def.int64_val = default_val; |
| 3098 | return upb_Message_GetField(msg, f, def).int64_val; |
| 3099 | } |
| 3100 | |
| 3101 | UPB_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 | |
| 3113 | UPB_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 Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3123 | UPB_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. |
| 3138 | UPB_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 | |
| 3148 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3154 | UPB_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 | |
| 3160 | UPB_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 Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3165 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3170 | UPB_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 | |
| 3187 | UPB_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 | |
| 3204 | UPB_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 | |
| 3218 | UPB_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 | |
| 3238 | UPB_API_INLINE upb_StringView |
| 3239 | upb_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3245 | |
| 3246 | upb_MessageValue def; |
| 3247 | def.str_val = default_val; |
| 3248 | return upb_Message_GetField(msg, f, def).str_val; |
| 3249 | } |
| 3250 | |
| 3251 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3255 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3256 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3257 | |
| 3258 | upb_MessageValue def; |
| 3259 | def.uint32_val = default_val; |
| 3260 | return upb_Message_GetField(msg, f, def).uint32_val; |
| 3261 | } |
| 3262 | |
| 3263 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3267 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3268 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_8Byte); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3269 | |
| 3270 | upb_MessageValue def; |
| 3271 | def.uint64_val = default_val; |
| 3272 | return upb_Message_GetField(msg, f, def).uint64_val; |
| 3273 | } |
| 3274 | |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3275 | // BaseField Setters /////////////////////////////////////////////////////////// |
| 3276 | |
| 3277 | UPB_API_INLINE void upb_Message_SetBaseFieldBool(struct upb_Message* msg, |
| 3278 | const upb_MiniTableField* f, |
| 3279 | bool value) { |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3280 | UPB_ASSUME(upb_MiniTableField_CType(f) == kUpb_CType_Bool); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3281 | UPB_ASSUME(upb_MiniTableField_IsScalar(f)); |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3282 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_1Byte); |
| 3283 | upb_Message_SetBaseField(msg, f, &value); |
| 3284 | } |
| 3285 | |
| 3286 | UPB_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 | |
| 3295 | UPB_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 | |
| 3304 | UPB_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 | |
| 3314 | UPB_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 | |
| 3323 | UPB_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 | |
| 3334 | UPB_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 | |
| 3343 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3350 | } |
| 3351 | |
Protobuf Team Bot | ddc70b0 | 2024-05-11 02:21:06 +0000 | [diff] [blame] | 3352 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3356 | UPB_ASSERT(upb_MiniTableField_IsClosedEnum(f)); |
| 3357 | UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(f) == kUpb_FieldRep_4Byte); |
Protobuf Team Bot | ddc70b0 | 2024-05-11 02:21:06 +0000 | [diff] [blame] | 3358 | UPB_ASSERT( |
| 3359 | upb_MiniTableEnum_CheckValue(upb_MiniTable_GetSubEnumTable(m, f), value)); |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3360 | upb_Message_SetBaseField(msg, f, &value); |
| 3361 | } |
| 3362 | |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3363 | // Extension Setters /////////////////////////////////////////////////////////// |
| 3364 | |
| 3365 | UPB_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 | |
| 3374 | UPB_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 | |
| 3383 | UPB_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 | |
| 3392 | UPB_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 | |
| 3402 | UPB_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 | |
| 3411 | UPB_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 | |
| 3421 | UPB_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 | |
| 3430 | UPB_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 | |
| 3441 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3450 | UPB_API_INLINE bool upb_Message_SetDouble(struct upb_Message* msg, |
| 3451 | const upb_MiniTableField* f, |
| 3452 | double value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3453 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3457 | } |
| 3458 | |
| 3459 | UPB_API_INLINE bool upb_Message_SetFloat(struct upb_Message* msg, |
| 3460 | const upb_MiniTableField* f, |
| 3461 | float value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3462 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3466 | } |
| 3467 | |
| 3468 | UPB_API_INLINE bool upb_Message_SetInt32(struct upb_Message* msg, |
| 3469 | const upb_MiniTableField* f, |
| 3470 | int32_t value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3471 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3475 | } |
| 3476 | |
| 3477 | UPB_API_INLINE bool upb_Message_SetInt64(struct upb_Message* msg, |
| 3478 | const upb_MiniTableField* f, |
| 3479 | int64_t value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3480 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3484 | } |
| 3485 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3486 | // Sets the value of a message-typed field. The mini_tables of `msg` and |
Protobuf Team Bot | b51dc1b | 2024-05-09 21:34:06 +0000 | [diff] [blame] | 3487 | // `value` must have been linked for this to work correctly. |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3488 | UPB_API_INLINE void upb_Message_SetMessage(struct upb_Message* msg, |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3489 | const upb_MiniTableField* f, |
Protobuf Team Bot | b51dc1b | 2024-05-09 21:34:06 +0000 | [diff] [blame] | 3490 | struct upb_Message* value) { |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3491 | UPB_PRIVATE(_upb_Message_SetTaggedMessagePtr) |
Protobuf Team Bot | b51dc1b | 2024-05-09 21:34:06 +0000 | [diff] [blame] | 3492 | (msg, f, UPB_PRIVATE(_upb_TaggedMessagePtr_Pack)(value, false)); |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3493 | } |
| 3494 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3495 | // 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. |
| 3499 | UPB_API_INLINE bool upb_Message_SetString(struct upb_Message* msg, |
| 3500 | const upb_MiniTableField* f, |
| 3501 | upb_StringView value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3502 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3506 | } |
| 3507 | |
| 3508 | UPB_API_INLINE bool upb_Message_SetUInt32(struct upb_Message* msg, |
| 3509 | const upb_MiniTableField* f, |
| 3510 | uint32_t value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3511 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3515 | } |
| 3516 | |
| 3517 | UPB_API_INLINE bool upb_Message_SetUInt64(struct upb_Message* msg, |
| 3518 | const upb_MiniTableField* f, |
| 3519 | uint64_t value, upb_Arena* a) { |
Protobuf Team Bot | 6afb130 | 2024-05-08 02:19:22 +0000 | [diff] [blame] | 3520 | 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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3524 | } |
| 3525 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3526 | UPB_API_INLINE void upb_Message_Clear(struct upb_Message* msg, |
| 3527 | const upb_MiniTable* m) { |
| 3528 | UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
Protobuf Team Bot | d813cc0 | 2024-04-08 19:12:29 +0000 | [diff] [blame] | 3529 | upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg); |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 3530 | memset(msg, 0, m->UPB_PRIVATE(size)); |
Protobuf Team Bot | d813cc0 | 2024-04-08 19:12:29 +0000 | [diff] [blame] | 3531 | 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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 3537 | } |
| 3538 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3539 | UPB_API_INLINE void upb_Message_ClearBaseField(struct upb_Message* msg, |
| 3540 | const upb_MiniTableField* f) { |
| 3541 | UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 3542 | 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 Bot | 9bee747 | 2024-01-10 18:09:23 +0000 | [diff] [blame] | 3551 | (f, UPB_PRIVATE(_upb_Message_MutableDataPtr)(msg, f), zeros); |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 3552 | } |
| 3553 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3554 | UPB_API_INLINE void upb_Message_ClearExtension( |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 3555 | struct upb_Message* msg, const upb_MiniTableExtension* e) { |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3556 | UPB_ASSERT(!upb_Message_IsFrozen(msg)); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 3557 | upb_Message_Internal* in = UPB_PRIVATE(_upb_Message_GetInternal)(msg); |
Protobuf Team Bot | 2b79738 | 2023-12-30 23:16:16 +0000 | [diff] [blame] | 3558 | if (!in) return; |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 3559 | 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 Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 3561 | if (ext) { |
| 3562 | *ext = *base; |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 3563 | in->ext_begin += sizeof(upb_Extension); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 3564 | } |
| 3565 | } |
| 3566 | |
Protobuf Team Bot | ae17e81 | 2024-05-07 16:59:23 +0000 | [diff] [blame] | 3567 | UPB_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 Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3582 | UPB_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 Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 3589 | } |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3590 | return upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 3591 | } |
| 3592 | |
Deanna Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 3593 | #ifdef __cplusplus |
| 3594 | } /* extern "C" */ |
| 3595 | #endif |
| 3596 | |
| 3597 | #if defined(__GNUC__) && !defined(__clang__) |
| 3598 | #pragma GCC diagnostic pop |
| 3599 | #endif |
| 3600 | |
| 3601 | |
Sandy Zhang | e3b0943 | 2023-08-07 09:30:02 -0700 | [diff] [blame] | 3602 | #endif // UPB_MESSAGE_INTERNAL_ACCESSORS_H_ |
Deanna Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 3603 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3604 | #ifndef UPB_MESSAGE_MAP_H_ |
| 3605 | #define UPB_MESSAGE_MAP_H_ |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3606 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3607 | #include <stddef.h> |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3608 | |
| 3609 | |
| 3610 | // Must be last. |
| 3611 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3612 | typedef struct upb_Map upb_Map; |
Protobuf Team Bot | c9a8b46 | 2023-11-18 01:30:26 +0000 | [diff] [blame] | 3613 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3614 | #ifdef __cplusplus |
| 3615 | extern "C" { |
| 3616 | #endif |
| 3617 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3618 | // Creates a new map on the given arena with the given key/value size. |
| 3619 | UPB_API upb_Map* upb_Map_New(upb_Arena* a, upb_CType key_type, |
| 3620 | upb_CType value_type); |
Protobuf Team Bot | c9a8b46 | 2023-11-18 01:30:26 +0000 | [diff] [blame] | 3621 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3622 | // Returns the number of entries in the map. |
| 3623 | UPB_API size_t upb_Map_Size(const upb_Map* map); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3624 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3625 | // 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. |
| 3628 | UPB_API bool upb_Map_Get(const upb_Map* map, upb_MessageValue key, |
| 3629 | upb_MessageValue* val); |
| 3630 | |
| 3631 | // Removes all entries in the map. |
| 3632 | UPB_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. |
| 3637 | UPB_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. |
| 3644 | UPB_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 Bot | c9a8b46 | 2023-11-18 01:30:26 +0000 | [diff] [blame] | 3648 | } |
| 3649 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3650 | // 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. |
| 3652 | UPB_API bool upb_Map_Delete(upb_Map* map, upb_MessageValue key, |
| 3653 | upb_MessageValue* val); |
| 3654 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3655 | // 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 Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3662 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3663 | #define kUpb_Map_Begin ((size_t) - 1) |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3664 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3665 | // Advances to the next entry. Returns false if no more entries are present. |
| 3666 | // Otherwise returns true and populates both *key and *value. |
| 3667 | UPB_API bool upb_Map_Next(const upb_Map* map, upb_MessageValue* key, |
| 3668 | upb_MessageValue* val, size_t* iter); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3669 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3670 | // Sets the value for the entry pointed to by iter. |
| 3671 | // WARNING: this does not currently work for string values! |
| 3672 | UPB_API void upb_Map_SetEntryValue(upb_Map* map, size_t iter, |
| 3673 | upb_MessageValue val); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3674 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3675 | // DEPRECATED iterator, slated for removal. |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3676 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3677 | /* 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 Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3685 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3686 | // Advances to the next entry. Returns false if no more entries are present. |
| 3687 | UPB_API bool upb_MapIterator_Next(const upb_Map* map, size_t* iter); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3688 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3689 | // 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). |
| 3692 | UPB_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. |
| 3695 | UPB_API upb_MessageValue upb_MapIterator_Key(const upb_Map* map, size_t iter); |
| 3696 | UPB_API upb_MessageValue upb_MapIterator_Value(const upb_Map* map, size_t iter); |
Protobuf Team Bot | 030ab8d | 2023-12-01 19:20:11 +0000 | [diff] [blame] | 3697 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 3698 | // 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. |
| 3701 | UPB_API void upb_Map_Freeze(upb_Map* map, const upb_MiniTable* m); |
| 3702 | |
| 3703 | // Returns whether a map has been frozen. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3704 | UPB_API_INLINE bool upb_Map_IsFrozen(const upb_Map* map); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 3705 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3706 | #ifdef __cplusplus |
| 3707 | } /* extern "C" */ |
| 3708 | #endif |
| 3709 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3710 | |
| 3711 | #endif /* UPB_MESSAGE_MAP_H_ */ |
| 3712 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3713 | // 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 Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3725 | typedef struct upb_Message upb_Message; |
| 3726 | |
| 3727 | #ifdef __cplusplus |
| 3728 | extern "C" { |
| 3729 | #endif |
| 3730 | |
| 3731 | // Creates a new message with the given mini_table on the given arena. |
| 3732 | UPB_API upb_Message* upb_Message_New(const upb_MiniTable* m, upb_Arena* arena); |
| 3733 | |
| 3734 | // Returns a reference to the message's unknown data. |
| 3735 | const char* upb_Message_GetUnknown(const upb_Message* msg, size_t* len); |
| 3736 | |
| 3737 | // Removes partial unknown data from message. |
| 3738 | void upb_Message_DeleteUnknown(upb_Message* msg, const char* data, size_t len); |
| 3739 | |
| 3740 | // Returns the number of extensions present in this message. |
| 3741 | size_t upb_Message_ExtensionCount(const upb_Message* msg); |
| 3742 | |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 3743 | // Mark a message and all of its descendents as frozen/immutable. |
| 3744 | UPB_API void upb_Message_Freeze(upb_Message* msg, const upb_MiniTable* m); |
| 3745 | |
| 3746 | // Returns whether a message has been frozen. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3747 | UPB_API_INLINE bool upb_Message_IsFrozen(const upb_Message* msg); |
Protobuf Team Bot | 886a0b1 | 2024-01-26 21:23:01 +0000 | [diff] [blame] | 3748 | |
Protobuf Team Bot | fb08bca | 2024-03-14 15:21:13 +0000 | [diff] [blame] | 3749 | #ifdef UPB_TRACING_ENABLED |
Protobuf Team Bot | 51cba7c | 2024-05-06 13:34:40 +0000 | [diff] [blame] | 3750 | UPB_API void upb_Message_LogNewMessage(const upb_MiniTable* m, |
| 3751 | const upb_Arena* arena); |
| 3752 | |
| 3753 | UPB_API void upb_Message_SetNewMessageTraceHandler( |
| 3754 | void (*handler)(const upb_MiniTable* m, const upb_Arena* arena)); |
| 3755 | #endif // UPB_TRACING_ENABLED |
Protobuf Team Bot | fb08bca | 2024-03-14 15:21:13 +0000 | [diff] [blame] | 3756 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3757 | #ifdef __cplusplus |
| 3758 | } /* extern "C" */ |
| 3759 | #endif |
| 3760 | |
| 3761 | |
| 3762 | #endif /* UPB_MESSAGE_MESSAGE_H_ */ |
| 3763 | |
Protobuf Team Bot | d1cf09a | 2024-04-19 22:43:34 +0000 | [diff] [blame] | 3764 | #ifndef UPB_MINI_TABLE_TAGGED_PTR_H_ |
| 3765 | #define UPB_MINI_TABLE_TAGGED_PTR_H_ |
| 3766 | |
| 3767 | #include <stdint.h> |
| 3768 | |
| 3769 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3770 | // 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 | |
| 3781 | typedef uintptr_t upb_TaggedMessagePtr; |
| 3782 | |
| 3783 | #ifdef __cplusplus |
| 3784 | extern "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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3790 | UPB_API_INLINE bool upb_TaggedMessagePtr_IsEmpty(upb_TaggedMessagePtr ptr); |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3791 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3792 | UPB_API_INLINE upb_Message* upb_TaggedMessagePtr_GetNonEmptyMessage( |
| 3793 | upb_TaggedMessagePtr ptr); |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 3794 | |
| 3795 | #ifdef __cplusplus |
| 3796 | } /* extern "C" */ |
| 3797 | #endif |
| 3798 | |
| 3799 | |
| 3800 | #endif /* UPB_MINI_TABLE_TAGGED_PTR_H_ */ |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 3801 | |
Deanna Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 3802 | // Must be last. |
| 3803 | |
| 3804 | #ifdef __cplusplus |
| 3805 | extern "C" { |
| 3806 | #endif |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 3807 | |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 3808 | // 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 Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 3813 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3814 | UPB_API_INLINE void upb_Message_Clear(upb_Message* msg, const upb_MiniTable* m); |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 3815 | |
| 3816 | UPB_API_INLINE void upb_Message_ClearBaseField(upb_Message* msg, |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3817 | const upb_MiniTableField* f); |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 3818 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3819 | UPB_API_INLINE void upb_Message_ClearExtension(upb_Message* msg, |
| 3820 | const upb_MiniTableExtension* e); |
Jie Luo | f36a5c6 | 2023-05-23 17:56:18 -0700 | [diff] [blame] | 3821 | |
Protobuf Team Bot | ae17e81 | 2024-05-07 16:59:23 +0000 | [diff] [blame] | 3822 | UPB_API_INLINE void upb_Message_ClearOneof(upb_Message* msg, |
| 3823 | const upb_MiniTable* m, |
| 3824 | const upb_MiniTableField* f); |
| 3825 | |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 3826 | UPB_API_INLINE bool upb_Message_HasBaseField(const upb_Message* msg, |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3827 | const upb_MiniTableField* f); |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 3828 | |
| 3829 | UPB_API_INLINE bool upb_Message_HasExtension(const upb_Message* msg, |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 3830 | const upb_MiniTableExtension* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3831 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3832 | UPB_API_INLINE upb_MessageValue |
| 3833 | upb_Message_GetField(const upb_Message* msg, const upb_MiniTableField* f, |
| 3834 | upb_MessageValue default_val); |
Eric Salo | b598b2d | 2022-12-22 23:14:27 -0800 | [diff] [blame] | 3835 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3836 | UPB_API_INLINE upb_TaggedMessagePtr upb_Message_GetTaggedMessagePtr( |
| 3837 | const upb_Message* msg, const upb_MiniTableField* field, |
| 3838 | upb_Message* default_val); |
| 3839 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3840 | UPB_API_INLINE const upb_Array* upb_Message_GetArray( |
| 3841 | const upb_Message* msg, const upb_MiniTableField* f); |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 3842 | |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 3843 | UPB_API_INLINE bool upb_Message_GetBool(const upb_Message* msg, |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3844 | const upb_MiniTableField* f, |
| 3845 | bool default_val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3846 | |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 3847 | UPB_API_INLINE double upb_Message_GetDouble(const upb_Message* msg, |
| 3848 | const upb_MiniTableField* field, |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3849 | double default_val); |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 3850 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3851 | UPB_API_INLINE float upb_Message_GetFloat(const upb_Message* msg, |
| 3852 | const upb_MiniTableField* f, |
| 3853 | float default_val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3854 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3855 | UPB_API_INLINE int32_t upb_Message_GetInt32(const upb_Message* msg, |
| 3856 | const upb_MiniTableField* f, |
| 3857 | int32_t default_val); |
| 3858 | |
| 3859 | UPB_API_INLINE int64_t upb_Message_GetInt64(const upb_Message* msg, |
| 3860 | const upb_MiniTableField* f, |
| 3861 | int64_t default_val); |
| 3862 | |
| 3863 | UPB_API_INLINE const upb_Map* upb_Message_GetMap(const upb_Message* msg, |
| 3864 | const upb_MiniTableField* f); |
| 3865 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3866 | UPB_API_INLINE const upb_Message* upb_Message_GetMessage( |
| 3867 | const upb_Message* msg, const upb_MiniTableField* f); |
| 3868 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3869 | UPB_API_INLINE upb_Array* upb_Message_GetMutableArray( |
| 3870 | upb_Message* msg, const upb_MiniTableField* f); |
| 3871 | |
| 3872 | UPB_API_INLINE upb_Map* upb_Message_GetMutableMap(upb_Message* msg, |
| 3873 | const upb_MiniTableField* f); |
| 3874 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 3875 | UPB_API_INLINE upb_Message* upb_Message_GetMutableMessage( |
| 3876 | upb_Message* msg, const upb_MiniTableField* f); |
| 3877 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3878 | UPB_API_INLINE upb_Array* upb_Message_GetOrCreateMutableArray( |
| 3879 | upb_Message* msg, const upb_MiniTableField* f, upb_Arena* arena); |
| 3880 | |
| 3881 | UPB_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 | |
| 3885 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3888 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 3889 | UPB_API_INLINE upb_StringView |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 3890 | upb_Message_GetString(const upb_Message* msg, const upb_MiniTableField* field, |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3891 | upb_StringView default_val); |
Protobuf Team Bot | 54573a4 | 2023-11-21 14:47:34 +0000 | [diff] [blame] | 3892 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3893 | UPB_API_INLINE uint32_t upb_Message_GetUInt32(const upb_Message* msg, |
| 3894 | const upb_MiniTableField* f, |
| 3895 | uint32_t default_val); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 3896 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3897 | UPB_API_INLINE uint64_t upb_Message_GetUInt64(const upb_Message* msg, |
| 3898 | const upb_MiniTableField* f, |
| 3899 | uint64_t default_val); |
| 3900 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3901 | UPB_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 Bot | ddc70b0 | 2024-05-11 02:21:06 +0000 | [diff] [blame] | 3905 | // BaseField Setters /////////////////////////////////////////////////////////// |
| 3906 | |
| 3907 | UPB_API_INLINE void upb_Message_SetBaseField(upb_Message* msg, |
| 3908 | const upb_MiniTableField* f, |
| 3909 | const void* val); |
| 3910 | |
| 3911 | UPB_API_INLINE void upb_Message_SetBaseFieldBool(struct upb_Message* msg, |
| 3912 | const upb_MiniTableField* f, |
| 3913 | bool value); |
| 3914 | |
| 3915 | UPB_API_INLINE void upb_Message_SetBaseFieldDouble(struct upb_Message* msg, |
| 3916 | const upb_MiniTableField* f, |
| 3917 | double value); |
| 3918 | |
| 3919 | UPB_API_INLINE void upb_Message_SetBaseFieldFloat(struct upb_Message* msg, |
| 3920 | const upb_MiniTableField* f, |
| 3921 | float value); |
| 3922 | |
| 3923 | UPB_API_INLINE void upb_Message_SetBaseFieldInt32(struct upb_Message* msg, |
| 3924 | const upb_MiniTableField* f, |
| 3925 | int32_t value); |
| 3926 | |
| 3927 | UPB_API_INLINE void upb_Message_SetBaseFieldInt64(struct upb_Message* msg, |
| 3928 | const upb_MiniTableField* f, |
| 3929 | int64_t value); |
| 3930 | |
| 3931 | UPB_API_INLINE void upb_Message_SetBaseFieldString(struct upb_Message* msg, |
| 3932 | const upb_MiniTableField* f, |
| 3933 | upb_StringView value); |
| 3934 | |
| 3935 | UPB_API_INLINE void upb_Message_SetBaseFieldUInt32(struct upb_Message* msg, |
| 3936 | const upb_MiniTableField* f, |
| 3937 | uint32_t value); |
| 3938 | |
| 3939 | UPB_API_INLINE void upb_Message_SetBaseFieldUInt64(struct upb_Message* msg, |
| 3940 | const upb_MiniTableField* f, |
| 3941 | uint64_t value); |
| 3942 | |
| 3943 | // Extension Setters /////////////////////////////////////////////////////////// |
| 3944 | |
| 3945 | UPB_API_INLINE bool upb_Message_SetExtension(upb_Message* msg, |
| 3946 | const upb_MiniTableExtension* e, |
| 3947 | const void* value, upb_Arena* a); |
| 3948 | |
| 3949 | UPB_API_INLINE bool upb_Message_SetExtensionBool( |
| 3950 | struct upb_Message* msg, const upb_MiniTableExtension* e, bool value, |
| 3951 | upb_Arena* a); |
| 3952 | |
| 3953 | UPB_API_INLINE bool upb_Message_SetExtensionDouble( |
| 3954 | struct upb_Message* msg, const upb_MiniTableExtension* e, double value, |
| 3955 | upb_Arena* a); |
| 3956 | |
| 3957 | UPB_API_INLINE bool upb_Message_SetExtensionFloat( |
| 3958 | struct upb_Message* msg, const upb_MiniTableExtension* e, float value, |
| 3959 | upb_Arena* a); |
| 3960 | |
| 3961 | UPB_API_INLINE bool upb_Message_SetExtensionInt32( |
| 3962 | struct upb_Message* msg, const upb_MiniTableExtension* e, int32_t value, |
| 3963 | upb_Arena* a); |
| 3964 | |
| 3965 | UPB_API_INLINE bool upb_Message_SetExtensionInt64( |
| 3966 | struct upb_Message* msg, const upb_MiniTableExtension* e, int64_t value, |
| 3967 | upb_Arena* a); |
| 3968 | |
| 3969 | UPB_API_INLINE bool upb_Message_SetExtensionString( |
| 3970 | struct upb_Message* msg, const upb_MiniTableExtension* e, |
| 3971 | upb_StringView value, upb_Arena* a); |
| 3972 | |
| 3973 | UPB_API_INLINE bool upb_Message_SetExtensionUInt32( |
| 3974 | struct upb_Message* msg, const upb_MiniTableExtension* e, uint32_t value, |
| 3975 | upb_Arena* a); |
| 3976 | |
| 3977 | UPB_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 | |
| 3983 | UPB_API_INLINE bool upb_Message_SetBool(upb_Message* msg, |
| 3984 | const upb_MiniTableField* f, bool value, |
| 3985 | upb_Arena* a); |
| 3986 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 3987 | UPB_API_INLINE bool upb_Message_SetDouble(upb_Message* msg, |
| 3988 | const upb_MiniTableField* f, |
| 3989 | double value, upb_Arena* a); |
| 3990 | |
| 3991 | UPB_API_INLINE bool upb_Message_SetFloat(upb_Message* msg, |
| 3992 | const upb_MiniTableField* f, |
| 3993 | float value, upb_Arena* a); |
| 3994 | |
| 3995 | UPB_API_INLINE bool upb_Message_SetInt32(upb_Message* msg, |
| 3996 | const upb_MiniTableField* f, |
| 3997 | int32_t value, upb_Arena* a); |
| 3998 | |
| 3999 | UPB_API_INLINE bool upb_Message_SetInt64(upb_Message* msg, |
| 4000 | const upb_MiniTableField* f, |
| 4001 | int64_t value, upb_Arena* a); |
| 4002 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 4003 | UPB_API_INLINE void upb_Message_SetMessage(upb_Message* msg, |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 4004 | const upb_MiniTableField* f, |
Protobuf Team Bot | b51dc1b | 2024-05-09 21:34:06 +0000 | [diff] [blame] | 4005 | upb_Message* value); |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 4006 | |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 4007 | UPB_API_INLINE bool upb_Message_SetString(upb_Message* msg, |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 4008 | const upb_MiniTableField* f, |
| 4009 | upb_StringView value, upb_Arena* a); |
| 4010 | |
| 4011 | UPB_API_INLINE bool upb_Message_SetUInt32(upb_Message* msg, |
| 4012 | const upb_MiniTableField* f, |
| 4013 | uint32_t value, upb_Arena* a); |
| 4014 | |
| 4015 | UPB_API_INLINE bool upb_Message_SetUInt64(upb_Message* msg, |
| 4016 | const upb_MiniTableField* f, |
| 4017 | uint64_t value, upb_Arena* a); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 4018 | |
Protobuf Team Bot | ddc70b0 | 2024-05-11 02:21:06 +0000 | [diff] [blame] | 4019 | //////////////////////////////////////////////////////////////////////////////// |
| 4020 | |
Jie Luo | f36a5c6 | 2023-05-23 17:56:18 -0700 | [diff] [blame] | 4021 | UPB_API_INLINE void* upb_Message_ResizeArrayUninitialized( |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 4022 | upb_Message* msg, const upb_MiniTableField* f, size_t size, |
| 4023 | upb_Arena* arena); |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 4024 | |
Protobuf Team Bot | 7646fbf | 2024-05-03 19:47:53 +0000 | [diff] [blame] | 4025 | UPB_API_INLINE uint32_t upb_Message_WhichOneofFieldNumber( |
| 4026 | const upb_Message* message, const upb_MiniTableField* oneof_field); |
Eric Salo | b598b2d | 2022-12-22 23:14:27 -0800 | [diff] [blame] | 4027 | |
Protobuf Team Bot | 6cce622 | 2024-05-28 17:15:46 +0000 | [diff] [blame] | 4028 | // For a field `f` which is in a oneof, return the field of that |
| 4029 | // oneof that is actually set (or NULL if none). |
| 4030 | UPB_API_INLINE const upb_MiniTableField* upb_Message_WhichOneof( |
| 4031 | const upb_Message* msg, const upb_MiniTable* m, |
| 4032 | const upb_MiniTableField* f); |
| 4033 | |
Eric Salo | b598b2d | 2022-12-22 23:14:27 -0800 | [diff] [blame] | 4034 | // Updates a map entry given an entry message. |
Protobuf Team Bot | 5b34337 | 2023-12-19 06:18:53 +0000 | [diff] [blame] | 4035 | bool 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 Salo | b598b2d | 2022-12-22 23:14:27 -0800 | [diff] [blame] | 4038 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 4039 | #ifdef __cplusplus |
| 4040 | } /* extern "C" */ |
| 4041 | #endif |
| 4042 | |
| 4043 | |
| 4044 | #endif // UPB_MESSAGE_ACCESSORS_H_ |
| 4045 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 4046 | // 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 |
| 4055 | extern "C" { |
| 4056 | #endif |
| 4057 | |
| 4058 | // Message map operations, these get the map from the message first. |
| 4059 | |
| 4060 | UPB_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 | |
| 4069 | UPB_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 | |
| 4075 | UPB_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 Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4095 | #ifndef UPB_MINI_TABLE_DECODE_H_ |
| 4096 | #define UPB_MINI_TABLE_DECODE_H_ |
| 4097 | |
| 4098 | |
Protobuf Team Bot | 4d3a98c | 2024-05-08 01:37:14 +0000 | [diff] [blame] | 4099 | #ifndef UPB_MINI_TABLE_SUB_H_ |
| 4100 | #define UPB_MINI_TABLE_SUB_H_ |
| 4101 | |
| 4102 | |
| 4103 | // Must be last. |
| 4104 | |
| 4105 | typedef union upb_MiniTableSub upb_MiniTableSub; |
| 4106 | |
| 4107 | #ifdef __cplusplus |
| 4108 | extern "C" { |
| 4109 | #endif |
| 4110 | |
| 4111 | // Constructors |
| 4112 | |
| 4113 | UPB_API_INLINE upb_MiniTableSub |
| 4114 | upb_MiniTableSub_FromEnum(const upb_MiniTableEnum* subenum); |
| 4115 | |
| 4116 | UPB_API_INLINE upb_MiniTableSub |
| 4117 | upb_MiniTableSub_FromMessage(const upb_MiniTable* submsg); |
| 4118 | |
| 4119 | // Getters |
| 4120 | |
| 4121 | UPB_API_INLINE const upb_MiniTableEnum* upb_MiniTableSub_Enum( |
| 4122 | upb_MiniTableSub sub); |
| 4123 | |
| 4124 | UPB_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 Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4134 | // Export the newer headers, for legacy users. New users should include the |
| 4135 | // more specific headers directly. |
| 4136 | // IWYU pragma: begin_exports |
Protobuf Team Bot | 59b938b | 2024-04-08 17:18:48 +0000 | [diff] [blame] | 4137 | |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4138 | #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 |
| 4145 | extern "C" { |
| 4146 | #endif |
| 4147 | |
Protobuf Team Bot | 59b938b | 2024-04-08 17:18:48 +0000 | [diff] [blame] | 4148 | // Builds a upb_MiniTableEnum from an enum mini descriptor. |
| 4149 | // The mini descriptor must be for an enum, not a message. |
| 4150 | UPB_API upb_MiniTableEnum* upb_MiniTableEnum_Build(const char* data, size_t len, |
| 4151 | upb_Arena* arena, |
| 4152 | upb_Status* status); |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4153 | |
| 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 |
| 4176 | extern "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. |
| 4186 | UPB_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. |
| 4193 | UPB_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; |
| 4208 | UPB_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. |
| 4218 | UPB_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 | |
| 4234 | typedef 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 |
| 4242 | extern "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. |
| 4249 | upb_MiniTable* _upb_MiniTable_Build(const char* data, size_t len, |
| 4250 | upb_MiniTablePlatform platform, |
| 4251 | upb_Arena* arena, upb_Status* status); |
| 4252 | |
| 4253 | UPB_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. |
| 4263 | const 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 | |
| 4270 | UPB_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 | |
| 4277 | UPB_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 | |
| 4282 | UPB_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 Bot | 842f56b | 2023-11-29 05:02:57 +0000 | [diff] [blame] | 4285 | upb_MiniTableSub sub = upb_MiniTableSub_FromMessage(NULL); |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4286 | return _upb_MiniTableExtension_Build( |
| 4287 | data, len, extendee, sub, kUpb_MiniTablePlatform_Native, arena, status); |
| 4288 | } |
| 4289 | |
| 4290 | UPB_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 Bot | 842f56b | 2023-11-29 05:02:57 +0000 | [diff] [blame] | 4293 | upb_MiniTableSub sub = upb_MiniTableSub_FromMessage(submsg); |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4294 | return _upb_MiniTableExtension_Build( |
| 4295 | data, len, extendee, sub, kUpb_MiniTablePlatform_Native, arena, status); |
| 4296 | } |
| 4297 | |
| 4298 | UPB_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 Bot | 842f56b | 2023-11-29 05:02:57 +0000 | [diff] [blame] | 4301 | upb_MiniTableSub sub = upb_MiniTableSub_FromEnum(subenum); |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4302 | 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. |
| 4312 | upb_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 Bot | 4eeaa22 | 2023-12-04 05:00:05 +0000 | [diff] [blame] | 4324 | #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 |
| 4331 | extern "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 | |
| 4368 | typedef 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. |
| 4372 | UPB_API upb_ExtensionRegistry* upb_ExtensionRegistry_New(upb_Arena* arena); |
| 4373 | |
| 4374 | UPB_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. |
| 4382 | bool upb_ExtensionRegistry_AddArray(upb_ExtensionRegistry* r, |
| 4383 | const upb_MiniTableExtension** e, |
| 4384 | size_t count); |
| 4385 | |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 4386 | #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). |
| 4398 | UPB_API bool upb_ExtensionRegistry_AddAllLinkedExtensions( |
| 4399 | upb_ExtensionRegistry* r); |
| 4400 | |
| 4401 | #endif // UPB_LINKARR_DECLARE |
| 4402 | |
Protobuf Team Bot | 4eeaa22 | 2023-12-04 05:00:05 +0000 | [diff] [blame] | 4403 | // Looks up the extension (if any) defined for message type |t| and field |
| 4404 | // number |num|. Returns the extension if found, otherwise NULL. |
| 4405 | UPB_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 Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4415 | #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 Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4422 | // Must be last. |
| 4423 | |
| 4424 | struct upb_MiniTableFile { |
Protobuf Team Bot | 4c74345 | 2023-12-26 22:55:49 +0000 | [diff] [blame] | 4425 | 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 Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4428 | int UPB_PRIVATE(msg_count); |
| 4429 | int UPB_PRIVATE(enum_count); |
| 4430 | int UPB_PRIVATE(ext_count); |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4431 | }; |
| 4432 | |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4433 | #ifdef __cplusplus |
| 4434 | extern "C" { |
| 4435 | #endif |
| 4436 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4437 | UPB_API_INLINE int upb_MiniTableFile_EnumCount( |
Protobuf Team Bot | 4c74345 | 2023-12-26 22:55:49 +0000 | [diff] [blame] | 4438 | const struct upb_MiniTableFile* f) { |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4439 | return f->UPB_PRIVATE(enum_count); |
| 4440 | } |
| 4441 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4442 | UPB_API_INLINE int upb_MiniTableFile_ExtensionCount( |
Protobuf Team Bot | 4c74345 | 2023-12-26 22:55:49 +0000 | [diff] [blame] | 4443 | const struct upb_MiniTableFile* f) { |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4444 | return f->UPB_PRIVATE(ext_count); |
| 4445 | } |
| 4446 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4447 | UPB_API_INLINE int upb_MiniTableFile_MessageCount( |
Protobuf Team Bot | 4c74345 | 2023-12-26 22:55:49 +0000 | [diff] [blame] | 4448 | const struct upb_MiniTableFile* f) { |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4449 | return f->UPB_PRIVATE(msg_count); |
| 4450 | } |
| 4451 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4452 | UPB_API_INLINE const struct upb_MiniTableEnum* upb_MiniTableFile_Enum( |
Protobuf Team Bot | 4c74345 | 2023-12-26 22:55:49 +0000 | [diff] [blame] | 4453 | const struct upb_MiniTableFile* f, int i) { |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4454 | UPB_ASSERT(i < f->UPB_PRIVATE(enum_count)); |
| 4455 | return f->UPB_PRIVATE(enums)[i]; |
| 4456 | } |
| 4457 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4458 | UPB_API_INLINE const struct upb_MiniTableExtension* upb_MiniTableFile_Extension( |
| 4459 | const struct upb_MiniTableFile* f, int i) { |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4460 | UPB_ASSERT(i < f->UPB_PRIVATE(ext_count)); |
| 4461 | return f->UPB_PRIVATE(exts)[i]; |
| 4462 | } |
| 4463 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4464 | UPB_API_INLINE const struct upb_MiniTable* upb_MiniTableFile_Message( |
Protobuf Team Bot | 4c74345 | 2023-12-26 22:55:49 +0000 | [diff] [blame] | 4465 | const struct upb_MiniTableFile* f, int i) { |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4466 | 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 Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4474 | |
| 4475 | #endif /* UPB_MINI_TABLE_INTERNAL_FILE_H_ */ |
| 4476 | |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4477 | // Must be last. |
| 4478 | |
Protobuf Team Bot | 9b4aff2 | 2023-12-27 21:35:01 +0000 | [diff] [blame] | 4479 | typedef struct upb_MiniTableFile upb_MiniTableFile; |
| 4480 | |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4481 | #ifdef __cplusplus |
| 4482 | extern "C" { |
| 4483 | #endif |
| 4484 | |
Protobuf Team Bot | 1db9465 | 2023-12-20 02:08:18 +0000 | [diff] [blame] | 4485 | UPB_API_INLINE const upb_MiniTableEnum* upb_MiniTableFile_Enum( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4486 | const upb_MiniTableFile* f, int i); |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4487 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4488 | UPB_API_INLINE int upb_MiniTableFile_EnumCount(const upb_MiniTableFile* f); |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4489 | |
Protobuf Team Bot | 1db9465 | 2023-12-20 02:08:18 +0000 | [diff] [blame] | 4490 | UPB_API_INLINE const upb_MiniTableExtension* upb_MiniTableFile_Extension( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4491 | const upb_MiniTableFile* f, int i); |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4492 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4493 | UPB_API_INLINE int upb_MiniTableFile_ExtensionCount(const upb_MiniTableFile* f); |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4494 | |
Protobuf Team Bot | 1db9465 | 2023-12-20 02:08:18 +0000 | [diff] [blame] | 4495 | UPB_API_INLINE const upb_MiniTable* upb_MiniTableFile_Message( |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4496 | const upb_MiniTableFile* f, int i); |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4497 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 4498 | UPB_API_INLINE int upb_MiniTableFile_MessageCount(const upb_MiniTableFile* f); |
Protobuf Team Bot | ff42200 | 2023-11-28 17:31:45 +0000 | [diff] [blame] | 4499 | |
| 4500 | #ifdef __cplusplus |
| 4501 | } /* extern "C" */ |
| 4502 | #endif |
| 4503 | |
| 4504 | |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4505 | #endif /* UPB_MINI_TABLE_FILE_H_ */ |
| 4506 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 4507 | // upb_decode: parsing into a upb_Message using a upb_MiniTable. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4508 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 4509 | #ifndef UPB_WIRE_DECODE_H_ |
| 4510 | #define UPB_WIRE_DECODE_H_ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4511 | |
Protobuf Team Bot | 743bf92 | 2023-09-14 01:12:11 +0000 | [diff] [blame] | 4512 | #include <stddef.h> |
| 4513 | #include <stdint.h> |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4514 | |
Adam Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 4515 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4516 | // Must be last. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4517 | |
| 4518 | #ifdef __cplusplus |
| 4519 | extern "C" { |
| 4520 | #endif |
| 4521 | |
| 4522 | enum { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4523 | /* 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4530 | * |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4531 | * 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 Luo | 3560e23 | 2023-06-12 00:33:50 -0700 | [diff] [blame] | 4545 | |
| 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 Bot | 1610bf1 | 2024-01-10 21:45:42 +0000 | [diff] [blame] | 4580 | |
| 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4590 | }; |
| 4591 | |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 4592 | UPB_INLINE uint32_t upb_DecodeOptions_MaxDepth(uint16_t depth) { |
| 4593 | return (uint32_t)depth << 16; |
| 4594 | } |
| 4595 | |
| 4596 | UPB_INLINE uint16_t upb_DecodeOptions_GetMaxDepth(uint32_t options) { |
| 4597 | return options >> 16; |
| 4598 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4599 | |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 4600 | // Enforce an upper bound on recursion depth. |
| 4601 | UPB_INLINE int upb_Decode_LimitDepth(uint32_t decode_options, uint32_t limit) { |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 4602 | uint32_t max_depth = upb_DecodeOptions_GetMaxDepth(decode_options); |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 4603 | if (max_depth > limit) max_depth = limit; |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 4604 | return upb_DecodeOptions_MaxDepth(max_depth) | (decode_options & 0xffff); |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 4605 | } |
| 4606 | |
Protobuf Team Bot | 762233d | 2024-04-10 13:38:37 +0000 | [diff] [blame] | 4607 | // LINT.IfChange |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4608 | typedef enum { |
| 4609 | kUpb_DecodeStatus_Ok = 0, |
Deanna Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 4610 | 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4615 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4616 | // kUpb_DecodeOption_CheckRequired failed (see above), but the parse otherwise |
| 4617 | // succeeded. |
| 4618 | kUpb_DecodeStatus_MissingRequired = 5, |
Jie Luo | 3560e23 | 2023-06-12 00:33:50 -0700 | [diff] [blame] | 4619 | |
| 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 Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4624 | } upb_DecodeStatus; |
Protobuf Team Bot | 762233d | 2024-04-10 13:38:37 +0000 | [diff] [blame] | 4625 | // LINT.ThenChange(//depot/google3/third_party/protobuf/rust/upb.rs:decode_status) |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4626 | |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 4627 | UPB_API upb_DecodeStatus upb_Decode(const char* buf, size_t size, |
Protobuf Team Bot | d86fe39 | 2024-04-03 14:19:48 +0000 | [diff] [blame] | 4628 | upb_Message* msg, const upb_MiniTable* mt, |
Eric Salo | 1050599 | 2022-12-12 12:16:36 -0800 | [diff] [blame] | 4629 | const upb_ExtensionRegistry* extreg, |
| 4630 | int options, upb_Arena* arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4631 | |
Protobuf Team Bot | d86fe39 | 2024-04-03 14:19:48 +0000 | [diff] [blame] | 4632 | // 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 Bot | b9bde6a | 2024-04-03 19:25:27 +0000 | [diff] [blame] | 4635 | UPB_API upb_DecodeStatus upb_DecodeLengthPrefixed( |
Protobuf Team Bot | d86fe39 | 2024-04-03 14:19:48 +0000 | [diff] [blame] | 4636 | 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 Bot | 5dfdd85 | 2024-05-17 15:56:35 +0000 | [diff] [blame] | 4640 | // Utility function for wrapper languages to get an error string from a |
| 4641 | // upb_DecodeStatus. |
| 4642 | UPB_API const char* upb_DecodeStatus_String(upb_DecodeStatus status); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4643 | #ifdef __cplusplus |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4644 | } /* extern "C" */ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4645 | #endif |
| 4646 | |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 4647 | |
Mike Kruskal | 9cf9db8 | 2022-11-04 21:22:31 -0700 | [diff] [blame] | 4648 | #endif /* UPB_WIRE_DECODE_H_ */ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4649 | |
Protobuf Team Bot | da56def | 2023-12-26 19:08:52 +0000 | [diff] [blame] | 4650 | // 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 |
| 4662 | extern "C" { |
| 4663 | #endif |
| 4664 | |
| 4665 | enum { |
| 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 Bot | e22539b | 2024-04-08 23:26:12 +0000 | [diff] [blame] | 4674 | // When set, unknown fields are not encoded. |
Protobuf Team Bot | da56def | 2023-12-26 19:08:52 +0000 | [diff] [blame] | 4675 | 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 Bot | 762233d | 2024-04-10 13:38:37 +0000 | [diff] [blame] | 4681 | // LINT.IfChange |
Protobuf Team Bot | da56def | 2023-12-26 19:08:52 +0000 | [diff] [blame] | 4682 | typedef 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 Bot | 762233d | 2024-04-10 13:38:37 +0000 | [diff] [blame] | 4690 | // LINT.ThenChange(//depot/google3/third_party/protobuf/rust/upb.rs:encode_status) |
Protobuf Team Bot | da56def | 2023-12-26 19:08:52 +0000 | [diff] [blame] | 4691 | |
| 4692 | UPB_INLINE uint32_t upb_EncodeOptions_MaxDepth(uint16_t depth) { |
| 4693 | return (uint32_t)depth << 16; |
| 4694 | } |
| 4695 | |
| 4696 | UPB_INLINE uint16_t upb_EncodeOptions_GetMaxDepth(uint32_t options) { |
| 4697 | return options >> 16; |
| 4698 | } |
| 4699 | |
| 4700 | // Enforce an upper bound on recursion depth. |
| 4701 | UPB_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 | |
| 4707 | UPB_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 Bot | d86fe39 | 2024-04-03 14:19:48 +0000 | [diff] [blame] | 4711 | // Encodes the message prepended by a varint of the serialized length. |
Protobuf Team Bot | b9bde6a | 2024-04-03 19:25:27 +0000 | [diff] [blame] | 4712 | UPB_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 Bot | 5dfdd85 | 2024-05-17 15:56:35 +0000 | [diff] [blame] | 4716 | // Utility function for wrapper languages to get an error string from a |
| 4717 | // upb_EncodeStatus. |
| 4718 | UPB_API const char* upb_EncodeStatus_String(upb_EncodeStatus status); |
Protobuf Team Bot | d86fe39 | 2024-04-03 14:19:48 +0000 | [diff] [blame] | 4719 | |
Protobuf Team Bot | da56def | 2023-12-26 19:08:52 +0000 | [diff] [blame] | 4720 | #ifdef __cplusplus |
| 4721 | } /* extern "C" */ |
| 4722 | #endif |
| 4723 | |
| 4724 | |
| 4725 | #endif /* UPB_WIRE_ENCODE_H_ */ |
| 4726 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4727 | // 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 Bot | de5ea1e | 2024-01-02 04:02:53 +0000 | [diff] [blame] | 4761 | #ifndef UPB_WIRE_INTERNAL_DECODE_FAST_H_ |
| 4762 | #define UPB_WIRE_INTERNAL_DECODE_FAST_H_ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4763 | |
| 4764 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4765 | // Must be last. |
| 4766 | |
| 4767 | #ifdef __cplusplus |
| 4768 | extern "C" { |
| 4769 | #endif |
| 4770 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4771 | struct upb_Decoder; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4772 | |
| 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 Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4775 | const 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4779 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4780 | #define UPB_PARSE_PARAMS \ |
| 4781 | struct upb_Decoder *d, const char *ptr, upb_Message *msg, intptr_t table, \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4782 | uint64_t hasbits, uint64_t data |
| 4783 | |
| 4784 | /* primitive fields ***********************************************************/ |
| 4785 | |
| 4786 | #define F(card, type, valbytes, tagbytes) \ |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4787 | const char* upb_p##card##type##valbytes##_##tagbytes##bt(UPB_PARSE_PARAMS); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4788 | |
| 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 | |
| 4802 | TAGBYTES(s) |
| 4803 | TAGBYTES(o) |
| 4804 | TAGBYTES(r) |
| 4805 | TAGBYTES(p) |
| 4806 | |
| 4807 | #undef F |
| 4808 | #undef TYPES |
| 4809 | #undef TAGBYTES |
| 4810 | |
| 4811 | /* string fields **************************************************************/ |
| 4812 | |
| 4813 | #define F(card, tagbytes, type) \ |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4814 | const char* upb_p##card##type##_##tagbytes##bt(UPB_PARSE_PARAMS); \ |
| 4815 | const char* upb_c##card##type##_##tagbytes##bt(UPB_PARSE_PARAMS); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4816 | |
| 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 | |
| 4825 | TAGBYTES(s) |
| 4826 | TAGBYTES(o) |
| 4827 | TAGBYTES(r) |
| 4828 | |
| 4829 | #undef F |
Protobuf Team Bot | de5ea1e | 2024-01-02 04:02:53 +0000 | [diff] [blame] | 4830 | #undef UTF8 |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4831 | #undef TAGBYTES |
| 4832 | |
| 4833 | /* sub-message fields *********************************************************/ |
| 4834 | |
| 4835 | #define F(card, tagbytes, size_ceil, ceil_arg) \ |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4836 | const char* upb_p##card##m_##tagbytes##bt_max##size_ceil##b(UPB_PARSE_PARAMS); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4837 | |
| 4838 | #define SIZES(card, tagbytes) \ |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4839 | F(card, tagbytes, 64, 64) \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4840 | 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 Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 4846 | SIZES(card, 1) \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4847 | SIZES(card, 2) |
| 4848 | |
| 4849 | TAGBYTES(s) |
| 4850 | TAGBYTES(o) |
| 4851 | TAGBYTES(r) |
| 4852 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4853 | #undef F |
Protobuf Team Bot | de5ea1e | 2024-01-02 04:02:53 +0000 | [diff] [blame] | 4854 | #undef SIZES |
| 4855 | #undef TAGBYTES |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 4856 | |
| 4857 | #undef UPB_PARSE_PARAMS |
| 4858 | |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 4859 | #ifdef __cplusplus |
| 4860 | } /* extern "C" */ |
| 4861 | #endif |
| 4862 | |
| 4863 | |
Protobuf Team Bot | de5ea1e | 2024-01-02 04:02:53 +0000 | [diff] [blame] | 4864 | #endif /* UPB_WIRE_INTERNAL_DECODE_FAST_H_ */ |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4865 | // IWYU pragma: end_exports |
| 4866 | |
| 4867 | #endif // UPB_GENERATED_CODE_SUPPORT_H_ |
Protobuf Team Bot | 0cb912c | 2023-09-28 20:14:04 +0000 | [diff] [blame] | 4868 | /* This file was generated by upb_generator from the input file: |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4869 | * |
| 4870 | * google/protobuf/descriptor.proto |
| 4871 | * |
| 4872 | * Do not edit -- your changes will be discarded when the file is |
Protobuf Team Bot | d3b2fc5 | 2024-05-02 17:02:37 +0000 | [diff] [blame] | 4873 | * regenerated. |
| 4874 | * NO CHECKED-IN PROTOBUF GENCODE */ |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 4875 | |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 4876 | #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 |
| 4883 | extern "C" { |
| 4884 | #endif |
| 4885 | |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4886 | extern const upb_MiniTable google__protobuf__FileDescriptorSet_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4887 | extern const upb_MiniTable* google__protobuf__FileDescriptorSet_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4888 | extern const upb_MiniTable google__protobuf__FileDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4889 | extern const upb_MiniTable* google__protobuf__FileDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4890 | extern const upb_MiniTable google__protobuf__DescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4891 | extern const upb_MiniTable* google__protobuf__DescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4892 | extern const upb_MiniTable google__protobuf__DescriptorProto__ExtensionRange_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4893 | extern const upb_MiniTable* google__protobuf__DescriptorProto__ExtensionRange_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4894 | extern const upb_MiniTable google__protobuf__DescriptorProto__ReservedRange_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4895 | extern const upb_MiniTable* google__protobuf__DescriptorProto__ReservedRange_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4896 | extern const upb_MiniTable google__protobuf__ExtensionRangeOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4897 | extern const upb_MiniTable* google__protobuf__ExtensionRangeOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4898 | extern const upb_MiniTable google__protobuf__ExtensionRangeOptions__Declaration_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4899 | extern const upb_MiniTable* google__protobuf__ExtensionRangeOptions__Declaration_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4900 | extern const upb_MiniTable google__protobuf__FieldDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4901 | extern const upb_MiniTable* google__protobuf__FieldDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4902 | extern const upb_MiniTable google__protobuf__OneofDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4903 | extern const upb_MiniTable* google__protobuf__OneofDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4904 | extern const upb_MiniTable google__protobuf__EnumDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4905 | extern const upb_MiniTable* google__protobuf__EnumDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4906 | extern const upb_MiniTable google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4907 | extern const upb_MiniTable* google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4908 | extern const upb_MiniTable google__protobuf__EnumValueDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4909 | extern const upb_MiniTable* google__protobuf__EnumValueDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4910 | extern const upb_MiniTable google__protobuf__ServiceDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4911 | extern const upb_MiniTable* google__protobuf__ServiceDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4912 | extern const upb_MiniTable google__protobuf__MethodDescriptorProto_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4913 | extern const upb_MiniTable* google__protobuf__MethodDescriptorProto_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4914 | extern const upb_MiniTable google__protobuf__FileOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4915 | extern const upb_MiniTable* google__protobuf__FileOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4916 | extern const upb_MiniTable google__protobuf__MessageOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4917 | extern const upb_MiniTable* google__protobuf__MessageOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4918 | extern const upb_MiniTable google__protobuf__FieldOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4919 | extern const upb_MiniTable* google__protobuf__FieldOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4920 | extern const upb_MiniTable google__protobuf__FieldOptions__EditionDefault_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4921 | extern const upb_MiniTable* google__protobuf__FieldOptions__EditionDefault_msg_init_ptr; |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 4922 | extern const upb_MiniTable google__protobuf__FieldOptions__FeatureSupport_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4923 | extern const upb_MiniTable* google__protobuf__FieldOptions__FeatureSupport_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4924 | extern const upb_MiniTable google__protobuf__OneofOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4925 | extern const upb_MiniTable* google__protobuf__OneofOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4926 | extern const upb_MiniTable google__protobuf__EnumOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4927 | extern const upb_MiniTable* google__protobuf__EnumOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4928 | extern const upb_MiniTable google__protobuf__EnumValueOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4929 | extern const upb_MiniTable* google__protobuf__EnumValueOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4930 | extern const upb_MiniTable google__protobuf__ServiceOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4931 | extern const upb_MiniTable* google__protobuf__ServiceOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4932 | extern const upb_MiniTable google__protobuf__MethodOptions_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4933 | extern const upb_MiniTable* google__protobuf__MethodOptions_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4934 | extern const upb_MiniTable google__protobuf__UninterpretedOption_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4935 | extern const upb_MiniTable* google__protobuf__UninterpretedOption_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4936 | extern const upb_MiniTable google__protobuf__UninterpretedOption__NamePart_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4937 | extern const upb_MiniTable* google__protobuf__UninterpretedOption__NamePart_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4938 | extern const upb_MiniTable google__protobuf__FeatureSet_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4939 | extern const upb_MiniTable* google__protobuf__FeatureSet_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4940 | extern const upb_MiniTable google__protobuf__FeatureSetDefaults_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4941 | extern const upb_MiniTable* google__protobuf__FeatureSetDefaults_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4942 | extern const upb_MiniTable google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4943 | extern const upb_MiniTable* google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4944 | extern const upb_MiniTable google__protobuf__SourceCodeInfo_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4945 | extern const upb_MiniTable* google__protobuf__SourceCodeInfo_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4946 | extern const upb_MiniTable google__protobuf__SourceCodeInfo__Location_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4947 | extern const upb_MiniTable* google__protobuf__SourceCodeInfo__Location_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4948 | extern const upb_MiniTable google__protobuf__GeneratedCodeInfo_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4949 | extern const upb_MiniTable* google__protobuf__GeneratedCodeInfo_msg_init_ptr; |
Protobuf Team Bot | d14a336 | 2023-10-07 23:51:34 +0000 | [diff] [blame] | 4950 | extern const upb_MiniTable google__protobuf__GeneratedCodeInfo__Annotation_msg_init; |
Protobuf Team Bot | 532f0c2 | 2024-06-05 03:21:24 +0000 | [diff] [blame] | 4951 | extern const upb_MiniTable* google__protobuf__GeneratedCodeInfo__Annotation_msg_init_ptr; |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 4952 | |
| 4953 | extern const upb_MiniTableEnum google_protobuf_Edition_enum_init; |
| 4954 | extern const upb_MiniTableEnum google_protobuf_ExtensionRangeOptions_VerificationState_enum_init; |
| 4955 | extern const upb_MiniTableEnum google_protobuf_FeatureSet_EnumType_enum_init; |
| 4956 | extern const upb_MiniTableEnum google_protobuf_FeatureSet_FieldPresence_enum_init; |
| 4957 | extern const upb_MiniTableEnum google_protobuf_FeatureSet_JsonFormat_enum_init; |
| 4958 | extern const upb_MiniTableEnum google_protobuf_FeatureSet_MessageEncoding_enum_init; |
| 4959 | extern const upb_MiniTableEnum google_protobuf_FeatureSet_RepeatedFieldEncoding_enum_init; |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 4960 | extern const upb_MiniTableEnum google_protobuf_FeatureSet_Utf8Validation_enum_init; |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 4961 | extern const upb_MiniTableEnum google_protobuf_FieldDescriptorProto_Label_enum_init; |
| 4962 | extern const upb_MiniTableEnum google_protobuf_FieldDescriptorProto_Type_enum_init; |
| 4963 | extern const upb_MiniTableEnum google_protobuf_FieldOptions_CType_enum_init; |
| 4964 | extern const upb_MiniTableEnum google_protobuf_FieldOptions_JSType_enum_init; |
| 4965 | extern const upb_MiniTableEnum google_protobuf_FieldOptions_OptionRetention_enum_init; |
| 4966 | extern const upb_MiniTableEnum google_protobuf_FieldOptions_OptionTargetType_enum_init; |
| 4967 | extern const upb_MiniTableEnum google_protobuf_FileOptions_OptimizeMode_enum_init; |
| 4968 | extern const upb_MiniTableEnum google_protobuf_GeneratedCodeInfo_Annotation_Semantic_enum_init; |
| 4969 | extern const upb_MiniTableEnum google_protobuf_MethodOptions_IdempotencyLevel_enum_init; |
| 4970 | extern 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 |
| 4988 | extern "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 | |
| 4999 | enum { |
| 5000 | kUpb_EpsCopyInputStream_NoAliasing = 0, |
| 5001 | kUpb_EpsCopyInputStream_OnPatch = 1, |
| 5002 | kUpb_EpsCopyInputStream_NoDelta = 2 |
| 5003 | }; |
| 5004 | |
| 5005 | typedef 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 Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 5009 | int limit; // Submessage limit relative to end |
| 5010 | bool error; // To distinguish between EOF and error. |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5011 | 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. |
| 5017 | UPB_INLINE bool upb_EpsCopyInputStream_IsError(upb_EpsCopyInputStream* e) { |
| 5018 | return e->error; |
| 5019 | } |
| 5020 | |
| 5021 | typedef const char* upb_EpsCopyInputStream_BufferFlipCallback( |
| 5022 | upb_EpsCopyInputStream* e, const char* old_end, const char* new_start); |
| 5023 | |
| 5024 | typedef 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. |
| 5030 | UPB_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 | |
| 5051 | typedef 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. |
| 5065 | UPB_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. |
| 5084 | UPB_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 | |
| 5100 | const 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. |
| 5109 | UPB_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). |
| 5123 | UPB_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. |
| 5134 | UPB_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 | |
| 5140 | UPB_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. |
| 5164 | UPB_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. |
| 5180 | UPB_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. |
| 5187 | UPB_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. |
| 5195 | UPB_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. |
| 5209 | UPB_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(). |
| 5224 | UPB_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. |
| 5235 | UPB_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. |
| 5243 | UPB_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. |
| 5258 | UPB_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 | |
| 5277 | UPB_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. |
| 5287 | UPB_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(). |
| 5302 | UPB_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 | |
| 5312 | UPB_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 | |
| 5339 | typedef 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 Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 5347 | UPB_FORCEINLINE bool upb_EpsCopyInputStream_TryParseDelimitedFast( |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5348 | 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 Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5375 | #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 Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 5384 | // IWYU pragma: private, include "upb/reflection/def.h" |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5385 | |
| 5386 | #ifndef UPB_REFLECTION_DEF_POOL_H_ |
| 5387 | #define UPB_REFLECTION_DEF_POOL_H_ |
| 5388 | |
| 5389 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 5390 | // IWYU pragma: private, include "upb/reflection/def.h" |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5391 | |
| 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 Bot | 0cb912c | 2023-09-28 20:14:04 +0000 | [diff] [blame] | 5406 | /* This file was generated by upb_generator from the input file: |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5407 | * |
| 5408 | * google/protobuf/descriptor.proto |
| 5409 | * |
| 5410 | * Do not edit -- your changes will be discarded when the file is |
Protobuf Team Bot | d3b2fc5 | 2024-05-02 17:02:37 +0000 | [diff] [blame] | 5411 | * regenerated. |
| 5412 | * NO CHECKED-IN PROTOBUF GENCODE */ |
Protobuf Team Bot | d11eb71 | 2023-09-15 00:25:33 +0000 | [diff] [blame] | 5413 | |
Mike Kruskal | 9d43502 | 2023-07-11 12:45:07 -0700 | [diff] [blame] | 5414 | #ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ |
| 5415 | #define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5416 | |
Protobuf Team Bot | 111d655 | 2023-09-15 21:07:08 +0000 | [diff] [blame] | 5417 | |
| 5418 | |
| 5419 | // Must be last. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5420 | |
| 5421 | #ifdef __cplusplus |
| 5422 | extern "C" { |
| 5423 | #endif |
| 5424 | |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5425 | typedef struct google_protobuf_FileDescriptorSet { upb_Message UPB_PRIVATE(base); } google_protobuf_FileDescriptorSet; |
| 5426 | typedef struct google_protobuf_FileDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_FileDescriptorProto; |
| 5427 | typedef struct google_protobuf_DescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_DescriptorProto; |
| 5428 | typedef struct google_protobuf_DescriptorProto_ExtensionRange { upb_Message UPB_PRIVATE(base); } google_protobuf_DescriptorProto_ExtensionRange; |
| 5429 | typedef struct google_protobuf_DescriptorProto_ReservedRange { upb_Message UPB_PRIVATE(base); } google_protobuf_DescriptorProto_ReservedRange; |
| 5430 | typedef struct google_protobuf_ExtensionRangeOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_ExtensionRangeOptions; |
| 5431 | typedef struct google_protobuf_ExtensionRangeOptions_Declaration { upb_Message UPB_PRIVATE(base); } google_protobuf_ExtensionRangeOptions_Declaration; |
| 5432 | typedef struct google_protobuf_FieldDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldDescriptorProto; |
| 5433 | typedef struct google_protobuf_OneofDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_OneofDescriptorProto; |
| 5434 | typedef struct google_protobuf_EnumDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumDescriptorProto; |
| 5435 | typedef struct google_protobuf_EnumDescriptorProto_EnumReservedRange { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumDescriptorProto_EnumReservedRange; |
| 5436 | typedef struct google_protobuf_EnumValueDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumValueDescriptorProto; |
| 5437 | typedef struct google_protobuf_ServiceDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_ServiceDescriptorProto; |
| 5438 | typedef struct google_protobuf_MethodDescriptorProto { upb_Message UPB_PRIVATE(base); } google_protobuf_MethodDescriptorProto; |
| 5439 | typedef struct google_protobuf_FileOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_FileOptions; |
| 5440 | typedef struct google_protobuf_MessageOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_MessageOptions; |
| 5441 | typedef struct google_protobuf_FieldOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions; |
| 5442 | typedef struct google_protobuf_FieldOptions_EditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_EditionDefault; |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 5443 | typedef struct google_protobuf_FieldOptions_FeatureSupport { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_FeatureSupport; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5444 | typedef struct google_protobuf_OneofOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_OneofOptions; |
| 5445 | typedef struct google_protobuf_EnumOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumOptions; |
| 5446 | typedef struct google_protobuf_EnumValueOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumValueOptions; |
| 5447 | typedef struct google_protobuf_ServiceOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_ServiceOptions; |
| 5448 | typedef struct google_protobuf_MethodOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_MethodOptions; |
| 5449 | typedef struct google_protobuf_UninterpretedOption { upb_Message UPB_PRIVATE(base); } google_protobuf_UninterpretedOption; |
| 5450 | typedef struct google_protobuf_UninterpretedOption_NamePart { upb_Message UPB_PRIVATE(base); } google_protobuf_UninterpretedOption_NamePart; |
| 5451 | typedef struct google_protobuf_FeatureSet { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSet; |
| 5452 | typedef struct google_protobuf_FeatureSetDefaults { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSetDefaults; |
| 5453 | typedef struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault; |
| 5454 | typedef struct google_protobuf_SourceCodeInfo { upb_Message UPB_PRIVATE(base); } google_protobuf_SourceCodeInfo; |
| 5455 | typedef struct google_protobuf_SourceCodeInfo_Location { upb_Message UPB_PRIVATE(base); } google_protobuf_SourceCodeInfo_Location; |
| 5456 | typedef struct google_protobuf_GeneratedCodeInfo { upb_Message UPB_PRIVATE(base); } google_protobuf_GeneratedCodeInfo; |
| 5457 | typedef struct google_protobuf_GeneratedCodeInfo_Annotation { upb_Message UPB_PRIVATE(base); } google_protobuf_GeneratedCodeInfo_Annotation; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5458 | |
| 5459 | typedef enum { |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 5460 | google_protobuf_EDITION_UNKNOWN = 0, |
| 5461 | google_protobuf_EDITION_1_TEST_ONLY = 1, |
| 5462 | google_protobuf_EDITION_2_TEST_ONLY = 2, |
Protobuf Team Bot | 2322a87 | 2024-04-10 17:23:17 +0000 | [diff] [blame] | 5463 | google_protobuf_EDITION_LEGACY = 900, |
Protobuf Team Bot | 6703802 | 2023-10-04 04:14:37 +0000 | [diff] [blame] | 5464 | google_protobuf_EDITION_PROTO2 = 998, |
| 5465 | google_protobuf_EDITION_PROTO3 = 999, |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 5466 | google_protobuf_EDITION_2023 = 1000, |
Protobuf Team Bot | 41c8f2a | 2024-01-11 00:10:17 +0000 | [diff] [blame] | 5467 | google_protobuf_EDITION_2024 = 1001, |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 5468 | google_protobuf_EDITION_99997_TEST_ONLY = 99997, |
| 5469 | google_protobuf_EDITION_99998_TEST_ONLY = 99998, |
Protobuf Team Bot | de57b67 | 2023-11-30 22:16:47 +0000 | [diff] [blame] | 5470 | google_protobuf_EDITION_99999_TEST_ONLY = 99999, |
| 5471 | google_protobuf_EDITION_MAX = 2147483647 |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 5472 | } google_protobuf_Edition; |
| 5473 | |
| 5474 | typedef enum { |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 5475 | google_protobuf_ExtensionRangeOptions_DECLARATION = 0, |
| 5476 | google_protobuf_ExtensionRangeOptions_UNVERIFIED = 1 |
| 5477 | } google_protobuf_ExtensionRangeOptions_VerificationState; |
| 5478 | |
| 5479 | typedef enum { |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 5480 | 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 | |
| 5485 | typedef 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 | |
| 5492 | typedef 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 | |
| 5498 | typedef 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 | |
| 5504 | typedef 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 | |
| 5510 | typedef enum { |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 5511 | google_protobuf_FeatureSet_UTF8_VALIDATION_UNKNOWN = 0, |
Protobuf Team Bot | 5b8b87f | 2023-11-30 05:12:08 +0000 | [diff] [blame] | 5512 | google_protobuf_FeatureSet_VERIFY = 2, |
| 5513 | google_protobuf_FeatureSet_NONE = 3 |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 5514 | } google_protobuf_FeatureSet_Utf8Validation; |
| 5515 | |
| 5516 | typedef enum { |
Mike Kruskal | ccbdaa7 | 2023-02-02 20:42:14 -0800 | [diff] [blame] | 5517 | 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 | |
| 5522 | typedef enum { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5523 | 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 | |
| 5543 | typedef 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 | |
| 5549 | typedef 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 | |
| 5555 | typedef enum { |
Adam Cozzette | 90ff32c | 2023-01-21 15:04:56 -0800 | [diff] [blame] | 5556 | 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 | |
| 5561 | typedef 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 | |
| 5574 | typedef enum { |
Mike Kruskal | ccbdaa7 | 2023-02-02 20:42:14 -0800 | [diff] [blame] | 5575 | 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5579 | |
| 5580 | typedef enum { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5581 | 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 Kruskal | ccbdaa7 | 2023-02-02 20:42:14 -0800 | [diff] [blame] | 5586 | typedef 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 Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5591 | |
Mike Kruskal | ccbdaa7 | 2023-02-02 20:42:14 -0800 | [diff] [blame] | 5592 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5593 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5594 | /* google.protobuf.FileDescriptorSet */ |
| 5595 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5596 | UPB_INLINE google_protobuf_FileDescriptorSet* google_protobuf_FileDescriptorSet_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 5597 | return (google_protobuf_FileDescriptorSet*)_upb_Message_New(&google__protobuf__FileDescriptorSet_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5598 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5599 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 5601 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5602 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorSet_msg_init, NULL, 0, arena) != |
| 5603 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 5604 | return NULL; |
| 5605 | } |
| 5606 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5607 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5608 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5613 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorSet_msg_init, extreg, options, |
| 5614 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5615 | return NULL; |
| 5616 | } |
| 5617 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5618 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5619 | UPB_INLINE char* google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5620 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5621 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorSet_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5622 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5623 | } |
| 5624 | UPB_INLINE char* google_protobuf_FileDescriptorSet_serialize_ex(const google_protobuf_FileDescriptorSet* msg, int options, |
| 5625 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5626 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5627 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorSet_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5628 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5629 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5630 | UPB_INLINE void google_protobuf_FileDescriptorSet_clear_file(google_protobuf_FileDescriptorSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5631 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5632 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5633 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5634 | UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5635 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5636 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5637 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5638 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5639 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5640 | return (const google_protobuf_FileDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5641 | } else { |
| 5642 | if (size) *size = 0; |
| 5643 | return NULL; |
| 5644 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5645 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5646 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(const google_protobuf_FileDescriptorSet* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5647 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5648 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5649 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5650 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5651 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5652 | } |
| 5653 | return arr; |
| 5654 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5655 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(google_protobuf_FileDescriptorSet* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5656 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5657 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5658 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5659 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5660 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5661 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5662 | } |
| 5663 | return arr; |
| 5664 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5665 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5666 | UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5667 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5668 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5669 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5670 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5671 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5672 | return (google_protobuf_FileDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5673 | } else { |
| 5674 | if (size) *size = 0; |
| 5675 | return NULL; |
| 5676 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5677 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5678 | UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5679 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5680 | return (google_protobuf_FileDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 5681 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5682 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5683 | UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5684 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5685 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5686 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 5687 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5688 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5689 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5690 | return NULL; |
| 5691 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 5692 | struct google_protobuf_FileDescriptorProto* sub = (struct google_protobuf_FileDescriptorProto*)_upb_Message_New(&google__protobuf__FileDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5693 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5694 | UPB_PRIVATE(_upb_Array_Set) |
| 5695 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5696 | return sub; |
| 5697 | } |
| 5698 | |
| 5699 | /* google.protobuf.FileDescriptorProto */ |
| 5700 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5701 | UPB_INLINE google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 5702 | return (google_protobuf_FileDescriptorProto*)_upb_Message_New(&google__protobuf__FileDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5703 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5704 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 5706 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5707 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorProto_msg_init, NULL, 0, arena) != |
| 5708 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 5709 | return NULL; |
| 5710 | } |
| 5711 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5712 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5713 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5718 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileDescriptorProto_msg_init, extreg, options, |
| 5719 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5720 | return NULL; |
| 5721 | } |
| 5722 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 5723 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5724 | UPB_INLINE char* google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5725 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5726 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5727 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5728 | } |
| 5729 | UPB_INLINE char* google_protobuf_FileDescriptorProto_serialize_ex(const google_protobuf_FileDescriptorProto* msg, int options, |
| 5730 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5731 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5732 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5733 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5734 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5735 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_name(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5736 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5737 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5738 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5739 | UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5740 | upb_StringView default_val = upb_StringView_FromString(""); |
| 5741 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5742 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5743 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 5744 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5745 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5746 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5747 | UPB_INLINE bool google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5748 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 5749 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5750 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5751 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_package(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5752 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5753 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5754 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5755 | UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5756 | upb_StringView default_val = upb_StringView_FromString(""); |
| 5757 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5758 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5759 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 5760 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5761 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5762 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5763 | UPB_INLINE bool google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5764 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 5765 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5766 | } |
| 5767 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_dependency(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5768 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5769 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5770 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5771 | UPB_INLINE upb_StringView const* google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5772 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5773 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5774 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5775 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5776 | return (upb_StringView const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5777 | } else { |
| 5778 | if (size) *size = 0; |
| 5779 | return NULL; |
| 5780 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5781 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5782 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5783 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5784 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5785 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5786 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5787 | } |
| 5788 | return arr; |
| 5789 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5790 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5791 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5792 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5793 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5794 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5795 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5796 | } |
| 5797 | return arr; |
| 5798 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5799 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_message_type(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5800 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5801 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5802 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5803 | UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5804 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5805 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5806 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5807 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5808 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5809 | return (const google_protobuf_DescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5810 | } else { |
| 5811 | if (size) *size = 0; |
| 5812 | return NULL; |
| 5813 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5814 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5815 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5816 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5817 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5818 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5819 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5820 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5821 | } |
| 5822 | return arr; |
| 5823 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5824 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5825 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5826 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5827 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5828 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5829 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5830 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5831 | } |
| 5832 | return arr; |
| 5833 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5834 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_enum_type(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5835 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5836 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5837 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5838 | UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5839 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5840 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5841 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5842 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5843 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5844 | return (const google_protobuf_EnumDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5845 | } else { |
| 5846 | if (size) *size = 0; |
| 5847 | return NULL; |
| 5848 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5849 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5850 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5851 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5852 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5853 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5854 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5855 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5856 | } |
| 5857 | return arr; |
| 5858 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5859 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5860 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5861 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5862 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5863 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5864 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5865 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5866 | } |
| 5867 | return arr; |
| 5868 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5869 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_service(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5870 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5871 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5872 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5873 | UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5874 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5875 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5876 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5877 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5878 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5879 | return (const google_protobuf_ServiceDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5880 | } else { |
| 5881 | if (size) *size = 0; |
| 5882 | return NULL; |
| 5883 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5884 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5885 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5886 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5887 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5888 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5889 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5890 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5891 | } |
| 5892 | return arr; |
| 5893 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5894 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5895 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5896 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5897 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5898 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5899 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5900 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5901 | } |
| 5902 | return arr; |
| 5903 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5904 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_extension(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5905 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5906 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5907 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5908 | UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5909 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5910 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5911 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5912 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5913 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5914 | return (const google_protobuf_FieldDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5915 | } else { |
| 5916 | if (size) *size = 0; |
| 5917 | return NULL; |
| 5918 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5919 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5920 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5921 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5922 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5923 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5924 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5925 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5926 | } |
| 5927 | return arr; |
| 5928 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5929 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5930 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5931 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5932 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5933 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5934 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5935 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5936 | } |
| 5937 | return arr; |
| 5938 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5939 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_options(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5940 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5941 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5942 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5943 | UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5944 | const google_protobuf_FileOptions* default_val = NULL; |
| 5945 | const google_protobuf_FileOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5946 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5947 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5948 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 5949 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5950 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5951 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5952 | UPB_INLINE bool google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5953 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 5954 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 5955 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5956 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_source_code_info(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5957 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5958 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5959 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5960 | UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5961 | const google_protobuf_SourceCodeInfo* default_val = NULL; |
| 5962 | const google_protobuf_SourceCodeInfo* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5963 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 5964 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5965 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 5966 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 5967 | return ret; |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5968 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5969 | UPB_INLINE bool google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5970 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 5971 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 5972 | } |
| 5973 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_public_dependency(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5974 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 5975 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 5976 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5977 | UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5978 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5979 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5980 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5981 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 5982 | return (int32_t const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 5983 | } else { |
| 5984 | if (size) *size = 0; |
| 5985 | return NULL; |
| 5986 | } |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 5987 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5988 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5989 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5990 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5991 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 5992 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 5993 | } |
| 5994 | return arr; |
| 5995 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5996 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 5997 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 5998 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 5999 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6000 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6001 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6002 | } |
| 6003 | return arr; |
| 6004 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6005 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_weak_dependency(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6006 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6007 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6008 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6009 | UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6010 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6011 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6012 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6013 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6014 | return (int32_t const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6015 | } else { |
| 6016 | if (size) *size = 0; |
| 6017 | return NULL; |
| 6018 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6019 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6020 | UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6021 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6022 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6023 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6024 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6025 | } |
| 6026 | return arr; |
| 6027 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6028 | UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6029 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6030 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6031 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6032 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6033 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6034 | } |
| 6035 | return arr; |
| 6036 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6037 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_syntax(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6038 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6039 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6040 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6041 | UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6042 | upb_StringView default_val = upb_StringView_FromString(""); |
| 6043 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6044 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6045 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 6046 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6047 | return ret; |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6048 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6049 | UPB_INLINE bool google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6050 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 6051 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6052 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6053 | UPB_INLINE void google_protobuf_FileDescriptorProto_clear_edition(google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6054 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6055 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6056 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 6057 | UPB_INLINE int32_t google_protobuf_FileDescriptorProto_edition(const google_protobuf_FileDescriptorProto* msg) { |
| 6058 | int32_t default_val = 0; |
| 6059 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6060 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6061 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 6062 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6063 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6064 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6065 | UPB_INLINE bool google_protobuf_FileDescriptorProto_has_edition(const google_protobuf_FileDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6066 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 6067 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6068 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6069 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6070 | UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6071 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6072 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6073 | } |
| 6074 | UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6075 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6076 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6077 | } |
| 6078 | UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6079 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6080 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6081 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6082 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6083 | return (upb_StringView*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6084 | } else { |
| 6085 | if (size) *size = 0; |
| 6086 | return NULL; |
| 6087 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6088 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6089 | UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6090 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6091 | return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6092 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6093 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6094 | UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto* msg, upb_StringView val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6095 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6096 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6097 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6098 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6099 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6100 | return false; |
| 6101 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6102 | UPB_PRIVATE(_upb_Array_Set) |
| 6103 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6104 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6105 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6106 | UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6107 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6108 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6109 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6110 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6111 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6112 | return (google_protobuf_DescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6113 | } else { |
| 6114 | if (size) *size = 0; |
| 6115 | return NULL; |
| 6116 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6117 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6118 | UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6119 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6120 | return (google_protobuf_DescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6121 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6122 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6123 | UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6124 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6125 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6126 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6127 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6128 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6129 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6130 | return NULL; |
| 6131 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6132 | struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)_upb_Message_New(&google__protobuf__DescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6133 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6134 | UPB_PRIVATE(_upb_Array_Set) |
| 6135 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6136 | return sub; |
| 6137 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6138 | UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6139 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6140 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6141 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6142 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6143 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6144 | return (google_protobuf_EnumDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6145 | } else { |
| 6146 | if (size) *size = 0; |
| 6147 | return NULL; |
| 6148 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6149 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6150 | UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6151 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6152 | return (google_protobuf_EnumDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6153 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6154 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6155 | UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6156 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6157 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6158 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6159 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6160 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6161 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6162 | return NULL; |
| 6163 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6164 | struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)_upb_Message_New(&google__protobuf__EnumDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6165 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6166 | UPB_PRIVATE(_upb_Array_Set) |
| 6167 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6168 | return sub; |
| 6169 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6170 | UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6171 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6172 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6173 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6174 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6175 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6176 | return (google_protobuf_ServiceDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6177 | } else { |
| 6178 | if (size) *size = 0; |
| 6179 | return NULL; |
| 6180 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6181 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6182 | UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6183 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6184 | return (google_protobuf_ServiceDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6185 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6186 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6187 | UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6188 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6189 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6190 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6191 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6192 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6193 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6194 | return NULL; |
| 6195 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6196 | struct google_protobuf_ServiceDescriptorProto* sub = (struct google_protobuf_ServiceDescriptorProto*)_upb_Message_New(&google__protobuf__ServiceDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6197 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6198 | UPB_PRIVATE(_upb_Array_Set) |
| 6199 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6200 | return sub; |
| 6201 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6202 | UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6203 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6204 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6205 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6206 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6207 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6208 | return (google_protobuf_FieldDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6209 | } else { |
| 6210 | if (size) *size = 0; |
| 6211 | return NULL; |
| 6212 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6213 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6214 | UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6215 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6216 | return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6217 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6218 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6219 | UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6220 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6221 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6222 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6223 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6224 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6225 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6226 | return NULL; |
| 6227 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6228 | struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6229 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6230 | UPB_PRIVATE(_upb_Array_Set) |
| 6231 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6232 | return sub; |
| 6233 | } |
| 6234 | UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6235 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6236 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6237 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6238 | } |
| 6239 | UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6240 | struct google_protobuf_FileOptions* sub = (struct google_protobuf_FileOptions*)google_protobuf_FileDescriptorProto_options(msg); |
| 6241 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6242 | sub = (struct google_protobuf_FileOptions*)_upb_Message_New(&google__protobuf__FileOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6243 | if (sub) google_protobuf_FileDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6244 | } |
| 6245 | return sub; |
| 6246 | } |
| 6247 | UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6248 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6249 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6250 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6251 | } |
| 6252 | UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6253 | struct google_protobuf_SourceCodeInfo* sub = (struct google_protobuf_SourceCodeInfo*)google_protobuf_FileDescriptorProto_source_code_info(msg); |
| 6254 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6255 | sub = (struct google_protobuf_SourceCodeInfo*)_upb_Message_New(&google__protobuf__SourceCodeInfo_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6256 | if (sub) google_protobuf_FileDescriptorProto_set_source_code_info(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6257 | } |
| 6258 | return sub; |
| 6259 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6260 | UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_public_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6261 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6262 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6263 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6264 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6265 | return (int32_t*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6266 | } else { |
| 6267 | if (size) *size = 0; |
| 6268 | return NULL; |
| 6269 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6270 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6271 | UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6272 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6273 | return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6274 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6275 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6276 | UPB_INLINE bool google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto* msg, int32_t val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6277 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6278 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6279 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6280 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6281 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6282 | return false; |
| 6283 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6284 | UPB_PRIVATE(_upb_Array_Set) |
| 6285 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6286 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6287 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6288 | UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6289 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6290 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6291 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6292 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6293 | return (int32_t*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6294 | } else { |
| 6295 | if (size) *size = 0; |
| 6296 | return NULL; |
| 6297 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6298 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6299 | UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6300 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6301 | return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6302 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6303 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6304 | UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto* msg, int32_t val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6305 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6306 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6307 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6308 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6309 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6310 | return false; |
| 6311 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6312 | UPB_PRIVATE(_upb_Array_Set) |
| 6313 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6314 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6315 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6316 | UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6317 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6318 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6319 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 6320 | UPB_INLINE void google_protobuf_FileDescriptorProto_set_edition(google_protobuf_FileDescriptorProto *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6321 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6322 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6323 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6324 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6325 | /* google.protobuf.DescriptorProto */ |
| 6326 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6327 | UPB_INLINE google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6328 | return (google_protobuf_DescriptorProto*)_upb_Message_New(&google__protobuf__DescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6329 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6330 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 6332 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6333 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto_msg_init, NULL, 0, arena) != |
| 6334 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 6335 | return NULL; |
| 6336 | } |
| 6337 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6338 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6339 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6344 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto_msg_init, extreg, options, |
| 6345 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6346 | return NULL; |
| 6347 | } |
| 6348 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6349 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6350 | UPB_INLINE char* google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6351 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6352 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6353 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6354 | } |
| 6355 | UPB_INLINE char* google_protobuf_DescriptorProto_serialize_ex(const google_protobuf_DescriptorProto* msg, int options, |
| 6356 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6357 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6358 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6359 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6360 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6361 | UPB_INLINE void google_protobuf_DescriptorProto_clear_name(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6362 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6363 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6364 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6365 | UPB_INLINE upb_StringView google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6366 | upb_StringView default_val = upb_StringView_FromString(""); |
| 6367 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6368 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6369 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 6370 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6371 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6372 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6373 | UPB_INLINE bool google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6374 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 6375 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6376 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6377 | UPB_INLINE void google_protobuf_DescriptorProto_clear_field(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6378 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6379 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6380 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6381 | UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6382 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6383 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6384 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6385 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6386 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6387 | return (const google_protobuf_FieldDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6388 | } else { |
| 6389 | if (size) *size = 0; |
| 6390 | return NULL; |
| 6391 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6392 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6393 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6394 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6395 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6396 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6397 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6398 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6399 | } |
| 6400 | return arr; |
| 6401 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6402 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_field_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6403 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6404 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6405 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6406 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6407 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6408 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6409 | } |
| 6410 | return arr; |
| 6411 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6412 | UPB_INLINE void google_protobuf_DescriptorProto_clear_nested_type(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6413 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6414 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6415 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6416 | UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6417 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6418 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6419 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6420 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6421 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6422 | return (const google_protobuf_DescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6423 | } else { |
| 6424 | if (size) *size = 0; |
| 6425 | return NULL; |
| 6426 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6427 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6428 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6429 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6430 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6431 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6432 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6433 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6434 | } |
| 6435 | return arr; |
| 6436 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6437 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_nested_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6438 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6439 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6440 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6441 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6442 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6443 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6444 | } |
| 6445 | return arr; |
| 6446 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6447 | UPB_INLINE void google_protobuf_DescriptorProto_clear_enum_type(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6448 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6449 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6450 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6451 | UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6452 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6453 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6454 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6455 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6456 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6457 | return (const google_protobuf_EnumDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6458 | } else { |
| 6459 | if (size) *size = 0; |
| 6460 | return NULL; |
| 6461 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6462 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6463 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6464 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6465 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6466 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6467 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6468 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6469 | } |
| 6470 | return arr; |
| 6471 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6472 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_enum_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6473 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6474 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6475 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6476 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6477 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6478 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6479 | } |
| 6480 | return arr; |
| 6481 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6482 | UPB_INLINE void google_protobuf_DescriptorProto_clear_extension_range(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6483 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6484 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6485 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6486 | UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6487 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6488 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6489 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6490 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6491 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6492 | return (const google_protobuf_DescriptorProto_ExtensionRange* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6493 | } else { |
| 6494 | if (size) *size = 0; |
| 6495 | return NULL; |
| 6496 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6497 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6498 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6499 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6500 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6501 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6502 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6503 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6504 | } |
| 6505 | return arr; |
| 6506 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6507 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6508 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6509 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6510 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6511 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6512 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6513 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6514 | } |
| 6515 | return arr; |
| 6516 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6517 | UPB_INLINE void google_protobuf_DescriptorProto_clear_extension(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6518 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6519 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6520 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6521 | UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6522 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6523 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6524 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6525 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6526 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6527 | return (const google_protobuf_FieldDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6528 | } else { |
| 6529 | if (size) *size = 0; |
| 6530 | return NULL; |
| 6531 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6532 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6533 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6534 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6535 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6536 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6537 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6538 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6539 | } |
| 6540 | return arr; |
| 6541 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6542 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6543 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6544 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6545 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6546 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6547 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6548 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6549 | } |
| 6550 | return arr; |
| 6551 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6552 | UPB_INLINE void google_protobuf_DescriptorProto_clear_options(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6553 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6554 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6555 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6556 | UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6557 | const google_protobuf_MessageOptions* default_val = NULL; |
| 6558 | const google_protobuf_MessageOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6559 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6560 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6561 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 6562 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6563 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6564 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6565 | UPB_INLINE bool google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6566 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 6567 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6568 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6569 | UPB_INLINE void google_protobuf_DescriptorProto_clear_oneof_decl(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6570 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6571 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6572 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6573 | UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6574 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6575 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6576 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6577 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6578 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6579 | return (const google_protobuf_OneofDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6580 | } else { |
| 6581 | if (size) *size = 0; |
| 6582 | return NULL; |
| 6583 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6584 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6585 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6586 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6587 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6588 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6589 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6590 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6591 | } |
| 6592 | return arr; |
| 6593 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6594 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_oneof_decl_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6595 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6596 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6597 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6598 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6599 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6600 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6601 | } |
| 6602 | return arr; |
| 6603 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6604 | UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_range(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6605 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6606 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6607 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6608 | UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6609 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6610 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6611 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6612 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6613 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6614 | return (const google_protobuf_DescriptorProto_ReservedRange* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6615 | } else { |
| 6616 | if (size) *size = 0; |
| 6617 | return NULL; |
| 6618 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6619 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6620 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6621 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6622 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6623 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6624 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6625 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6626 | } |
| 6627 | return arr; |
| 6628 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6629 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6630 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6631 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6632 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6633 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6634 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6635 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6636 | } |
| 6637 | return arr; |
| 6638 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6639 | UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_name(google_protobuf_DescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6640 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6641 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6642 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6643 | UPB_INLINE upb_StringView const* google_protobuf_DescriptorProto_reserved_name(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6644 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6645 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6646 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6647 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6648 | return (upb_StringView const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6649 | } else { |
| 6650 | if (size) *size = 0; |
| 6651 | return NULL; |
| 6652 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6653 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6654 | UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_name_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6655 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6656 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6657 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6658 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6659 | } |
| 6660 | return arr; |
| 6661 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6662 | UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_name_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6663 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6664 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 6665 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6666 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6667 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 6668 | } |
| 6669 | return arr; |
| 6670 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6671 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6672 | UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6673 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6674 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6675 | } |
| 6676 | UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6677 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6678 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6679 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6680 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6681 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6682 | return (google_protobuf_FieldDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6683 | } else { |
| 6684 | if (size) *size = 0; |
| 6685 | return NULL; |
| 6686 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6687 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6688 | UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6689 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6690 | return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6691 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6692 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6693 | UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6694 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6695 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6696 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6697 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6698 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6699 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6700 | return NULL; |
| 6701 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6702 | struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6703 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6704 | UPB_PRIVATE(_upb_Array_Set) |
| 6705 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6706 | return sub; |
| 6707 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6708 | UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6709 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6710 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6711 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6712 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6713 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6714 | return (google_protobuf_DescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6715 | } else { |
| 6716 | if (size) *size = 0; |
| 6717 | return NULL; |
| 6718 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6719 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6720 | UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6721 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6722 | return (google_protobuf_DescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6723 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6724 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6725 | UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6726 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6727 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6728 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6729 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6730 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6731 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6732 | return NULL; |
| 6733 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6734 | struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)_upb_Message_New(&google__protobuf__DescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6735 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6736 | UPB_PRIVATE(_upb_Array_Set) |
| 6737 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6738 | return sub; |
| 6739 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6740 | UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6741 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6742 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6743 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6744 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6745 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6746 | return (google_protobuf_EnumDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6747 | } else { |
| 6748 | if (size) *size = 0; |
| 6749 | return NULL; |
| 6750 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6751 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6752 | UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6753 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6754 | return (google_protobuf_EnumDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6755 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6756 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6757 | UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6758 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6759 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6760 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6761 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6762 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6763 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6764 | return NULL; |
| 6765 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6766 | struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)_upb_Message_New(&google__protobuf__EnumDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6767 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6768 | UPB_PRIVATE(_upb_Array_Set) |
| 6769 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6770 | return sub; |
| 6771 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6772 | UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6773 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6774 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6775 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6776 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6777 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6778 | return (google_protobuf_DescriptorProto_ExtensionRange**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6779 | } else { |
| 6780 | if (size) *size = 0; |
| 6781 | return NULL; |
| 6782 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6783 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6784 | UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6785 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6786 | return (google_protobuf_DescriptorProto_ExtensionRange**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6787 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6788 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6789 | UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6790 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6791 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6792 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6793 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6794 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6795 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6796 | return NULL; |
| 6797 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6798 | struct google_protobuf_DescriptorProto_ExtensionRange* sub = (struct google_protobuf_DescriptorProto_ExtensionRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ExtensionRange_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6799 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6800 | UPB_PRIVATE(_upb_Array_Set) |
| 6801 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6802 | return sub; |
| 6803 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6804 | UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6805 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6806 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6807 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6808 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6809 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6810 | return (google_protobuf_FieldDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6811 | } else { |
| 6812 | if (size) *size = 0; |
| 6813 | return NULL; |
| 6814 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6815 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6816 | UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6817 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6818 | return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6819 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6820 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6821 | UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6822 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6823 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6824 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6825 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6826 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6827 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6828 | return NULL; |
| 6829 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6830 | struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6831 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6832 | UPB_PRIVATE(_upb_Array_Set) |
| 6833 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6834 | return sub; |
| 6835 | } |
| 6836 | UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6837 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6838 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 6839 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 6840 | } |
| 6841 | UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6842 | struct google_protobuf_MessageOptions* sub = (struct google_protobuf_MessageOptions*)google_protobuf_DescriptorProto_options(msg); |
| 6843 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6844 | sub = (struct google_protobuf_MessageOptions*)_upb_Message_New(&google__protobuf__MessageOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6845 | if (sub) google_protobuf_DescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6846 | } |
| 6847 | return sub; |
| 6848 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6849 | UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6850 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6851 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6852 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6853 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6854 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6855 | return (google_protobuf_OneofDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6856 | } else { |
| 6857 | if (size) *size = 0; |
| 6858 | return NULL; |
| 6859 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6860 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6861 | UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6862 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6863 | return (google_protobuf_OneofDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6864 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6865 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6866 | UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6867 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6868 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6869 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6870 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6871 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6872 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6873 | return NULL; |
| 6874 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6875 | struct google_protobuf_OneofDescriptorProto* sub = (struct google_protobuf_OneofDescriptorProto*)_upb_Message_New(&google__protobuf__OneofDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6876 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6877 | UPB_PRIVATE(_upb_Array_Set) |
| 6878 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6879 | return sub; |
| 6880 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6881 | UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6882 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6883 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6884 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6885 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6886 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6887 | return (google_protobuf_DescriptorProto_ReservedRange**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6888 | } else { |
| 6889 | if (size) *size = 0; |
| 6890 | return NULL; |
| 6891 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6892 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6893 | UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6894 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6895 | return (google_protobuf_DescriptorProto_ReservedRange**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6896 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6897 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6898 | UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6899 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 6900 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6901 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6902 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6903 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6904 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6905 | return NULL; |
| 6906 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6907 | struct google_protobuf_DescriptorProto_ReservedRange* sub = (struct google_protobuf_DescriptorProto_ReservedRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ReservedRange_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6908 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6909 | UPB_PRIVATE(_upb_Array_Set) |
| 6910 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6911 | return sub; |
| 6912 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6913 | UPB_INLINE upb_StringView* google_protobuf_DescriptorProto_mutable_reserved_name(google_protobuf_DescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6914 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6915 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6916 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6917 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6918 | return (upb_StringView*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6919 | } else { |
| 6920 | if (size) *size = 0; |
| 6921 | return NULL; |
| 6922 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6923 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6924 | UPB_INLINE upb_StringView* google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6925 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6926 | return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 6927 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6928 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6929 | UPB_INLINE bool google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto* msg, upb_StringView val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6930 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6931 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 6932 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 6933 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6934 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6935 | return false; |
| 6936 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 6937 | UPB_PRIVATE(_upb_Array_Set) |
| 6938 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 6939 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6940 | } |
| 6941 | |
| 6942 | /* google.protobuf.DescriptorProto.ExtensionRange */ |
| 6943 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6944 | UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_ExtensionRange_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 6945 | return (google_protobuf_DescriptorProto_ExtensionRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ExtensionRange_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6946 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6947 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 6949 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6950 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, NULL, 0, arena) != |
| 6951 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 6952 | return NULL; |
| 6953 | } |
| 6954 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6955 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6956 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6961 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, extreg, options, |
| 6962 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6963 | return NULL; |
| 6964 | } |
| 6965 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 6966 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6967 | UPB_INLINE char* google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6968 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6969 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6970 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6971 | } |
| 6972 | UPB_INLINE char* google_protobuf_DescriptorProto_ExtensionRange_serialize_ex(const google_protobuf_DescriptorProto_ExtensionRange* msg, int options, |
| 6973 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6974 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6975 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ExtensionRange_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6976 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6977 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6978 | UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_clear_start(google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6979 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6980 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6981 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6982 | UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6983 | int32_t default_val = (int32_t)0; |
| 6984 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6985 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 6986 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 6987 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6988 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6989 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6990 | UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6991 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 6992 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 6993 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 6994 | UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_clear_end(google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 6995 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 6996 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 6997 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 6998 | UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 6999 | int32_t default_val = (int32_t)0; |
| 7000 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7001 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7002 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7003 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7004 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7005 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7006 | UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7007 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7008 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7009 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7010 | UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_clear_options(google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7011 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7012 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7013 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7014 | UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7015 | const google_protobuf_ExtensionRangeOptions* default_val = NULL; |
| 7016 | const google_protobuf_ExtensionRangeOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7017 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7018 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7019 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7020 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7021 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7022 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7023 | UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7024 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7025 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7026 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7027 | |
| 7028 | UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7029 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7030 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7031 | } |
| 7032 | UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7033 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7034 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7035 | } |
| 7036 | UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7037 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7038 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7039 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7040 | } |
| 7041 | UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7042 | struct google_protobuf_ExtensionRangeOptions* sub = (struct google_protobuf_ExtensionRangeOptions*)google_protobuf_DescriptorProto_ExtensionRange_options(msg); |
| 7043 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7044 | sub = (struct google_protobuf_ExtensionRangeOptions*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7045 | if (sub) google_protobuf_DescriptorProto_ExtensionRange_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7046 | } |
| 7047 | return sub; |
| 7048 | } |
| 7049 | |
| 7050 | /* google.protobuf.DescriptorProto.ReservedRange */ |
| 7051 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7052 | UPB_INLINE google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_ReservedRange_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7053 | return (google_protobuf_DescriptorProto_ReservedRange*)_upb_Message_New(&google__protobuf__DescriptorProto__ReservedRange_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7054 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7055 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7057 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7058 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ReservedRange_msg_init, NULL, 0, arena) != |
| 7059 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7060 | return NULL; |
| 7061 | } |
| 7062 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7063 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7064 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7069 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__DescriptorProto__ReservedRange_msg_init, extreg, options, |
| 7070 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7071 | return NULL; |
| 7072 | } |
| 7073 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7074 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7075 | UPB_INLINE char* google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7076 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7077 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ReservedRange_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7078 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7079 | } |
| 7080 | UPB_INLINE char* google_protobuf_DescriptorProto_ReservedRange_serialize_ex(const google_protobuf_DescriptorProto_ReservedRange* msg, int options, |
| 7081 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7082 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7083 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__DescriptorProto__ReservedRange_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7084 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7085 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7086 | UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_clear_start(google_protobuf_DescriptorProto_ReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7087 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7088 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7089 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7090 | UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7091 | int32_t default_val = (int32_t)0; |
| 7092 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7093 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7094 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7095 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7096 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7097 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7098 | UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7099 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7100 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7101 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7102 | UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_clear_end(google_protobuf_DescriptorProto_ReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7103 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7104 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7105 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7106 | UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7107 | int32_t default_val = (int32_t)0; |
| 7108 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7109 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7110 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7111 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7112 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7113 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7114 | UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7115 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7116 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7117 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7118 | |
| 7119 | UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7120 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7121 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7122 | } |
| 7123 | UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7124 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7125 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7126 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7127 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7128 | /* google.protobuf.ExtensionRangeOptions */ |
| 7129 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7130 | UPB_INLINE google_protobuf_ExtensionRangeOptions* google_protobuf_ExtensionRangeOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7131 | return (google_protobuf_ExtensionRangeOptions*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7132 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7133 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7135 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7136 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions_msg_init, NULL, 0, arena) != |
| 7137 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7138 | return NULL; |
| 7139 | } |
| 7140 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7141 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7142 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7147 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions_msg_init, extreg, options, |
| 7148 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7149 | return NULL; |
| 7150 | } |
| 7151 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7152 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7153 | UPB_INLINE char* google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7154 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7155 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7156 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7157 | } |
| 7158 | UPB_INLINE char* google_protobuf_ExtensionRangeOptions_serialize_ex(const google_protobuf_ExtensionRangeOptions* msg, int options, |
| 7159 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7160 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7161 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7162 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7163 | } |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7164 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_declaration(google_protobuf_ExtensionRangeOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7165 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7166 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7167 | } |
| 7168 | UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* google_protobuf_ExtensionRangeOptions_declaration(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7169 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7170 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7171 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7172 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7173 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7174 | return (const google_protobuf_ExtensionRangeOptions_Declaration* const*)upb_Array_DataPtr(arr); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7175 | } else { |
| 7176 | if (size) *size = 0; |
| 7177 | return NULL; |
| 7178 | } |
| 7179 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7180 | UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7181 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7182 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7183 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7184 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7185 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7186 | } |
| 7187 | return arr; |
| 7188 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7189 | UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7190 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7191 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7192 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 7193 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7194 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7195 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7196 | } |
| 7197 | return arr; |
| 7198 | } |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7199 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_verification(google_protobuf_ExtensionRangeOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7200 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7201 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7202 | } |
| 7203 | UPB_INLINE int32_t google_protobuf_ExtensionRangeOptions_verification(const google_protobuf_ExtensionRangeOptions* msg) { |
| 7204 | int32_t default_val = 1; |
| 7205 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7206 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7207 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7208 | &default_val, &ret); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7209 | return ret; |
| 7210 | } |
| 7211 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_has_verification(const google_protobuf_ExtensionRangeOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7212 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7213 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 7214 | } |
| 7215 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_features(google_protobuf_ExtensionRangeOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7216 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7217 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 7218 | } |
| 7219 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7222 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7223 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7224 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7225 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 7226 | return ret; |
| 7227 | } |
| 7228 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_has_features(const google_protobuf_ExtensionRangeOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7229 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7230 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7231 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7232 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7233 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7234 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7235 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7236 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7237 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7238 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7239 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7240 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7241 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7242 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7243 | } else { |
| 7244 | if (size) *size = 0; |
| 7245 | return NULL; |
| 7246 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7247 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7248 | UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7249 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7250 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7251 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7252 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7253 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7254 | } |
| 7255 | return arr; |
| 7256 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7257 | UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7258 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7259 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7260 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 7261 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7262 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7263 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7264 | } |
| 7265 | return arr; |
| 7266 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7267 | |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7268 | UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_mutable_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7269 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7270 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7271 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7272 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7273 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7274 | return (google_protobuf_ExtensionRangeOptions_Declaration**)upb_Array_MutableDataPtr(arr); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7275 | } else { |
| 7276 | if (size) *size = 0; |
| 7277 | return NULL; |
| 7278 | } |
| 7279 | } |
| 7280 | UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_resize_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7281 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7282 | return (google_protobuf_ExtensionRangeOptions_Declaration**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 7283 | &field, size, arena); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7284 | } |
| 7285 | UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_add_declaration(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7286 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7287 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7288 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 7289 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7290 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7291 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7292 | return NULL; |
| 7293 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7294 | struct google_protobuf_ExtensionRangeOptions_Declaration* sub = (struct google_protobuf_ExtensionRangeOptions_Declaration*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init, arena); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7295 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7296 | UPB_PRIVATE(_upb_Array_Set) |
| 7297 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7298 | return sub; |
| 7299 | } |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7300 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_verification(google_protobuf_ExtensionRangeOptions *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7301 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7302 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7303 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 7304 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_features(google_protobuf_ExtensionRangeOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7305 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7306 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7307 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 7308 | } |
| 7309 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7312 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 7313 | if (sub) google_protobuf_ExtensionRangeOptions_set_features(msg, sub); |
| 7314 | } |
| 7315 | return sub; |
| 7316 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7317 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7318 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7319 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7320 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7321 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7322 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7323 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7324 | } else { |
| 7325 | if (size) *size = 0; |
| 7326 | return NULL; |
| 7327 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7328 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7329 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7330 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7331 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 7332 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7333 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7334 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7335 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7336 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7337 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 7338 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7339 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7340 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7341 | return NULL; |
| 7342 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7343 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7344 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7345 | UPB_PRIVATE(_upb_Array_Set) |
| 7346 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7347 | return sub; |
| 7348 | } |
| 7349 | |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7350 | /* google.protobuf.ExtensionRangeOptions.Declaration */ |
| 7351 | |
| 7352 | UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_Declaration_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7353 | return (google_protobuf_ExtensionRangeOptions_Declaration*)_upb_Message_New(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init, arena); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7354 | } |
| 7355 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7358 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, NULL, 0, arena) != |
| 7359 | kUpb_DecodeStatus_Ok) { |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7360 | return NULL; |
| 7361 | } |
| 7362 | return ret; |
| 7363 | } |
| 7364 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7369 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, extreg, options, |
| 7370 | arena) != kUpb_DecodeStatus_Ok) { |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7371 | return NULL; |
| 7372 | } |
| 7373 | return ret; |
| 7374 | } |
| 7375 | UPB_INLINE char* google_protobuf_ExtensionRangeOptions_Declaration_serialize(const google_protobuf_ExtensionRangeOptions_Declaration* msg, upb_Arena* arena, size_t* len) { |
| 7376 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7377 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, 0, arena, &ptr, len); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7378 | return ptr; |
| 7379 | } |
| 7380 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7383 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ExtensionRangeOptions__Declaration_msg_init, options, arena, &ptr, len); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7384 | return ptr; |
| 7385 | } |
| 7386 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_number(google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7387 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7388 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7389 | } |
| 7390 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7393 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7394 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7395 | &default_val, &ret); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7396 | return ret; |
| 7397 | } |
| 7398 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_number(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7399 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7400 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7401 | } |
| 7402 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_full_name(google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7403 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7404 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7405 | } |
| 7406 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7409 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7410 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7411 | &default_val, &ret); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7412 | return ret; |
| 7413 | } |
| 7414 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_full_name(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7415 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7416 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7417 | } |
| 7418 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_type(google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7419 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7420 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7421 | } |
| 7422 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7425 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7426 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7427 | &default_val, &ret); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7428 | return ret; |
| 7429 | } |
| 7430 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_type(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7431 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7432 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7433 | } |
Protobuf Team Bot | 41287bd | 2023-04-10 18:57:14 -0700 | [diff] [blame] | 7434 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_reserved(google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7435 | const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7436 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 41287bd | 2023-04-10 18:57:14 -0700 | [diff] [blame] | 7437 | } |
| 7438 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_reserved(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
| 7439 | bool default_val = false; |
| 7440 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7441 | const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7442 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7443 | &default_val, &ret); |
Protobuf Team Bot | 41287bd | 2023-04-10 18:57:14 -0700 | [diff] [blame] | 7444 | return ret; |
| 7445 | } |
| 7446 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_reserved(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7447 | const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7448 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 41287bd | 2023-04-10 18:57:14 -0700 | [diff] [blame] | 7449 | } |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7450 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_repeated(google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7451 | const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7452 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7453 | } |
| 7454 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_repeated(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
| 7455 | bool default_val = false; |
| 7456 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7457 | const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7458 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7459 | &default_val, &ret); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7460 | return ret; |
| 7461 | } |
| 7462 | UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_repeated(const google_protobuf_ExtensionRangeOptions_Declaration* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7463 | const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7464 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7465 | } |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7466 | |
| 7467 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_number(google_protobuf_ExtensionRangeOptions_Declaration *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7468 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7469 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7470 | } |
| 7471 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_full_name(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7472 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7473 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7474 | } |
| 7475 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_type(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7476 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7477 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7478 | } |
Protobuf Team Bot | 41287bd | 2023-04-10 18:57:14 -0700 | [diff] [blame] | 7479 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_reserved(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7480 | const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7481 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 41287bd | 2023-04-10 18:57:14 -0700 | [diff] [blame] | 7482 | } |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7483 | UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_repeated(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7484 | const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7485 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 469f027 | 2023-04-21 18:12:45 -0700 | [diff] [blame] | 7486 | } |
Mike Kruskal | 145900f | 2023-03-27 09:55:52 -0700 | [diff] [blame] | 7487 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7488 | /* google.protobuf.FieldDescriptorProto */ |
| 7489 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7490 | UPB_INLINE google_protobuf_FieldDescriptorProto* google_protobuf_FieldDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7491 | return (google_protobuf_FieldDescriptorProto*)_upb_Message_New(&google__protobuf__FieldDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7492 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7493 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7495 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7496 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldDescriptorProto_msg_init, NULL, 0, arena) != |
| 7497 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7498 | return NULL; |
| 7499 | } |
| 7500 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7501 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7502 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7507 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldDescriptorProto_msg_init, extreg, options, |
| 7508 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7509 | return NULL; |
| 7510 | } |
| 7511 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7512 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7513 | UPB_INLINE char* google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7514 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7515 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7516 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7517 | } |
| 7518 | UPB_INLINE char* google_protobuf_FieldDescriptorProto_serialize_ex(const google_protobuf_FieldDescriptorProto* msg, int options, |
| 7519 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7520 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7521 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7522 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7523 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7524 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_name(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7525 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7526 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7527 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7528 | UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7529 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7530 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7531 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7532 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7533 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7534 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7535 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7536 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7537 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7538 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7539 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7540 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_extendee(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7541 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7542 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7543 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7544 | UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7545 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7546 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7547 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7548 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7549 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7550 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7551 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7552 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7553 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7554 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7555 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7556 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_number(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7557 | const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7558 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7559 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7560 | UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7561 | int32_t default_val = (int32_t)0; |
| 7562 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7563 | const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7564 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7565 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7566 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7567 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7568 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7569 | const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7570 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7571 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7572 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_label(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7573 | const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7574 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7575 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7576 | UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7577 | int32_t default_val = 1; |
| 7578 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7579 | const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7580 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7581 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7582 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7583 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7584 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7585 | const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7586 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7587 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7588 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_type(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7589 | const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7590 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7591 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7592 | UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7593 | int32_t default_val = 1; |
| 7594 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7595 | const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7596 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7597 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7598 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7599 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7600 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7601 | const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7602 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7603 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7604 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_type_name(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7605 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7606 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7607 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7608 | UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7609 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7610 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7611 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7612 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7613 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7614 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7615 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7616 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7617 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7618 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7619 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7620 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_default_value(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7621 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7622 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7623 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7624 | UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7625 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7626 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7627 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7628 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7629 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7630 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7631 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7632 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7633 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7634 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7635 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7636 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_options(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7637 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7638 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7639 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7640 | UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7641 | const google_protobuf_FieldOptions* default_val = NULL; |
| 7642 | const google_protobuf_FieldOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7643 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7644 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7645 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7646 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7647 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7648 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7649 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7650 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7651 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7652 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7653 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_oneof_index(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7654 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7655 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7656 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7657 | UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7658 | int32_t default_val = (int32_t)0; |
| 7659 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7660 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7661 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7662 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7663 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7664 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7665 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7666 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7667 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7668 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7669 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_json_name(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7670 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7671 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7672 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7673 | UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7674 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7675 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7676 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7677 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7678 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7679 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7680 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7681 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7682 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7683 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7684 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7685 | UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_proto3_optional(google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7686 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7687 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7688 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7689 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7690 | bool default_val = false; |
| 7691 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7692 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7693 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7694 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7695 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7696 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7697 | UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7698 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7699 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7700 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7701 | |
| 7702 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7703 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7704 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7705 | } |
| 7706 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7707 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7708 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7709 | } |
| 7710 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7711 | const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7712 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7713 | } |
| 7714 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7715 | const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7716 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7717 | } |
| 7718 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7719 | const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7720 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7721 | } |
| 7722 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7723 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7724 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7725 | } |
| 7726 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7727 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7728 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7729 | } |
| 7730 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7731 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7732 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7733 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7734 | } |
| 7735 | UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7736 | struct google_protobuf_FieldOptions* sub = (struct google_protobuf_FieldOptions*)google_protobuf_FieldDescriptorProto_options(msg); |
| 7737 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7738 | sub = (struct google_protobuf_FieldOptions*)_upb_Message_New(&google__protobuf__FieldOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7739 | if (sub) google_protobuf_FieldDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7740 | } |
| 7741 | return sub; |
| 7742 | } |
| 7743 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7744 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7745 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7746 | } |
| 7747 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7748 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7749 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7750 | } |
| 7751 | UPB_INLINE void google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7752 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7753 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7754 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7755 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7756 | /* google.protobuf.OneofDescriptorProto */ |
| 7757 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7758 | UPB_INLINE google_protobuf_OneofDescriptorProto* google_protobuf_OneofDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7759 | return (google_protobuf_OneofDescriptorProto*)_upb_Message_New(&google__protobuf__OneofDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7760 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7761 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7763 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7764 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofDescriptorProto_msg_init, NULL, 0, arena) != |
| 7765 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7766 | return NULL; |
| 7767 | } |
| 7768 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7769 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7770 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7775 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofDescriptorProto_msg_init, extreg, options, |
| 7776 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7777 | return NULL; |
| 7778 | } |
| 7779 | return ret; |
| 7780 | } |
| 7781 | UPB_INLINE char* google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7782 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7783 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7784 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7785 | } |
| 7786 | UPB_INLINE char* google_protobuf_OneofDescriptorProto_serialize_ex(const google_protobuf_OneofDescriptorProto* msg, int options, |
| 7787 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7788 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7789 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7790 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7791 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7792 | UPB_INLINE void google_protobuf_OneofDescriptorProto_clear_name(google_protobuf_OneofDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7793 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7794 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7795 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7796 | UPB_INLINE upb_StringView google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7797 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7798 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7799 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7800 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7801 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7802 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7803 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7804 | UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7805 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7806 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7807 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7808 | UPB_INLINE void google_protobuf_OneofDescriptorProto_clear_options(google_protobuf_OneofDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7809 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7810 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7811 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7812 | UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7813 | const google_protobuf_OneofOptions* default_val = NULL; |
| 7814 | const google_protobuf_OneofOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7815 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7816 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7817 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7818 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7819 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7820 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7821 | UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7822 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7823 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7824 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7825 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7826 | UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7827 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7828 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7829 | } |
| 7830 | UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7831 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7832 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 7833 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 7834 | } |
| 7835 | UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7836 | struct google_protobuf_OneofOptions* sub = (struct google_protobuf_OneofOptions*)google_protobuf_OneofDescriptorProto_options(msg); |
| 7837 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7838 | sub = (struct google_protobuf_OneofOptions*)_upb_Message_New(&google__protobuf__OneofOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7839 | if (sub) google_protobuf_OneofDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7840 | } |
| 7841 | return sub; |
| 7842 | } |
| 7843 | |
| 7844 | /* google.protobuf.EnumDescriptorProto */ |
| 7845 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7846 | UPB_INLINE google_protobuf_EnumDescriptorProto* google_protobuf_EnumDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 7847 | return (google_protobuf_EnumDescriptorProto*)_upb_Message_New(&google__protobuf__EnumDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7848 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7849 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7851 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7852 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto_msg_init, NULL, 0, arena) != |
| 7853 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 7854 | return NULL; |
| 7855 | } |
| 7856 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7857 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7858 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7863 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto_msg_init, extreg, options, |
| 7864 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7865 | return NULL; |
| 7866 | } |
| 7867 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 7868 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7869 | UPB_INLINE char* google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7870 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7871 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7872 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7873 | } |
| 7874 | UPB_INLINE char* google_protobuf_EnumDescriptorProto_serialize_ex(const google_protobuf_EnumDescriptorProto* msg, int options, |
| 7875 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7876 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7877 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7878 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7879 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7880 | UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_name(google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7881 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7882 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7883 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7884 | UPB_INLINE upb_StringView google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7885 | upb_StringView default_val = upb_StringView_FromString(""); |
| 7886 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7887 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7888 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7889 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7890 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7891 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7892 | UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7893 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7894 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7895 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7896 | UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_value(google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7897 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7898 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7899 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7900 | UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7901 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7902 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7903 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7904 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7905 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7906 | return (const google_protobuf_EnumValueDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7907 | } else { |
| 7908 | if (size) *size = 0; |
| 7909 | return NULL; |
| 7910 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7911 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7912 | UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7913 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7914 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7915 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7916 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7917 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7918 | } |
| 7919 | return arr; |
| 7920 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7921 | UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_value_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7922 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7923 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7924 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 7925 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7926 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7927 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7928 | } |
| 7929 | return arr; |
| 7930 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7931 | UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_options(google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7932 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7933 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7934 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7935 | UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7936 | const google_protobuf_EnumOptions* default_val = NULL; |
| 7937 | const google_protobuf_EnumOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7938 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7939 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7940 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 7941 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 7942 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 7943 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7944 | UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7945 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 7946 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7947 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7948 | UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_range(google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7949 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7950 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7951 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7952 | UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7953 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7954 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7955 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7956 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7957 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7958 | return (const google_protobuf_EnumDescriptorProto_EnumReservedRange* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7959 | } else { |
| 7960 | if (size) *size = 0; |
| 7961 | return NULL; |
| 7962 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7963 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7964 | UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7965 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7966 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7967 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7968 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7969 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7970 | } |
| 7971 | return arr; |
| 7972 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7973 | UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7974 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 7975 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7976 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 7977 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7978 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7979 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7980 | } |
| 7981 | return arr; |
| 7982 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 7983 | UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_name(google_protobuf_EnumDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7984 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 7985 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 7986 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7987 | UPB_INLINE upb_StringView const* google_protobuf_EnumDescriptorProto_reserved_name(const google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7988 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 7989 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7990 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 7991 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 7992 | return (upb_StringView const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 7993 | } else { |
| 7994 | if (size) *size = 0; |
| 7995 | return NULL; |
| 7996 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 7997 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 7998 | UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 7999 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8000 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8001 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8002 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8003 | } |
| 8004 | return arr; |
| 8005 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8006 | UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8007 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8008 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 8009 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8010 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8011 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8012 | } |
| 8013 | return arr; |
| 8014 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8015 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8016 | UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8017 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8018 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8019 | } |
| 8020 | UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8021 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8022 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8023 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8024 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8025 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8026 | return (google_protobuf_EnumValueDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8027 | } else { |
| 8028 | if (size) *size = 0; |
| 8029 | return NULL; |
| 8030 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8031 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8032 | UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8033 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8034 | return (google_protobuf_EnumValueDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 8035 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8036 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8037 | UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8038 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8039 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8040 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 8041 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8042 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8043 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8044 | return NULL; |
| 8045 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8046 | struct google_protobuf_EnumValueDescriptorProto* sub = (struct google_protobuf_EnumValueDescriptorProto*)_upb_Message_New(&google__protobuf__EnumValueDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8047 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8048 | UPB_PRIVATE(_upb_Array_Set) |
| 8049 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8050 | return sub; |
| 8051 | } |
| 8052 | UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8053 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8054 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8055 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8056 | } |
| 8057 | UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8058 | struct google_protobuf_EnumOptions* sub = (struct google_protobuf_EnumOptions*)google_protobuf_EnumDescriptorProto_options(msg); |
| 8059 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8060 | sub = (struct google_protobuf_EnumOptions*)_upb_Message_New(&google__protobuf__EnumOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8061 | if (sub) google_protobuf_EnumDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8062 | } |
| 8063 | return sub; |
| 8064 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8065 | UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8066 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8067 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8068 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8069 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8070 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8071 | return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8072 | } else { |
| 8073 | if (size) *size = 0; |
| 8074 | return NULL; |
| 8075 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8076 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8077 | UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8078 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8079 | return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 8080 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8081 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8082 | UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8083 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8084 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8085 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 8086 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8087 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8088 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8089 | return NULL; |
| 8090 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8091 | struct google_protobuf_EnumDescriptorProto_EnumReservedRange* sub = (struct google_protobuf_EnumDescriptorProto_EnumReservedRange*)_upb_Message_New(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8092 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8093 | UPB_PRIVATE(_upb_Array_Set) |
| 8094 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8095 | return sub; |
| 8096 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8097 | UPB_INLINE upb_StringView* google_protobuf_EnumDescriptorProto_mutable_reserved_name(google_protobuf_EnumDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8098 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8099 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8100 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8101 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8102 | return (upb_StringView*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8103 | } else { |
| 8104 | if (size) *size = 0; |
| 8105 | return NULL; |
| 8106 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8107 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8108 | UPB_INLINE upb_StringView* google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8109 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8110 | return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 8111 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8112 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8113 | UPB_INLINE bool google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto* msg, upb_StringView val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8114 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8115 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 8116 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8117 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8118 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8119 | return false; |
| 8120 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8121 | UPB_PRIVATE(_upb_Array_Set) |
| 8122 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8123 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8124 | } |
| 8125 | |
| 8126 | /* google.protobuf.EnumDescriptorProto.EnumReservedRange */ |
| 8127 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8128 | UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8129 | return (google_protobuf_EnumDescriptorProto_EnumReservedRange*)_upb_Message_New(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8130 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8131 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8133 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8134 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, NULL, 0, arena) != |
| 8135 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8136 | return NULL; |
| 8137 | } |
| 8138 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8139 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8140 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8145 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, extreg, options, |
| 8146 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8147 | return NULL; |
| 8148 | } |
| 8149 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8150 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8151 | UPB_INLINE char* google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8152 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8153 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8154 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8155 | } |
| 8156 | UPB_INLINE char* google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize_ex(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg, int options, |
| 8157 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8158 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8159 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8160 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8161 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8162 | UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_clear_start(google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8163 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8164 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8165 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8166 | UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8167 | int32_t default_val = (int32_t)0; |
| 8168 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8169 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8170 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8171 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8172 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8173 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8174 | UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8175 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8176 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8177 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8178 | UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_clear_end(google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8179 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8180 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8181 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8182 | UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8183 | int32_t default_val = (int32_t)0; |
| 8184 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8185 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8186 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8187 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8188 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8189 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8190 | UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8191 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8192 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8193 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8194 | |
| 8195 | UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8196 | const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8197 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8198 | } |
| 8199 | UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8200 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8201 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8202 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8203 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8204 | /* google.protobuf.EnumValueDescriptorProto */ |
| 8205 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8206 | UPB_INLINE google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumValueDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8207 | return (google_protobuf_EnumValueDescriptorProto*)_upb_Message_New(&google__protobuf__EnumValueDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8208 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8209 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8211 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8212 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueDescriptorProto_msg_init, NULL, 0, arena) != |
| 8213 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8214 | return NULL; |
| 8215 | } |
| 8216 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8217 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8218 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8223 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueDescriptorProto_msg_init, extreg, options, |
| 8224 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8225 | return NULL; |
| 8226 | } |
| 8227 | return ret; |
| 8228 | } |
| 8229 | UPB_INLINE char* google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8230 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8231 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8232 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8233 | } |
| 8234 | UPB_INLINE char* google_protobuf_EnumValueDescriptorProto_serialize_ex(const google_protobuf_EnumValueDescriptorProto* msg, int options, |
| 8235 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8236 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8237 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8238 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8239 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8240 | UPB_INLINE void google_protobuf_EnumValueDescriptorProto_clear_name(google_protobuf_EnumValueDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8241 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8242 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8243 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8244 | UPB_INLINE upb_StringView google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8245 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8246 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8247 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8248 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8249 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8250 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8251 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8252 | UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8253 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8254 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8255 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8256 | UPB_INLINE void google_protobuf_EnumValueDescriptorProto_clear_number(google_protobuf_EnumValueDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8257 | const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8258 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8259 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8260 | UPB_INLINE int32_t google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8261 | int32_t default_val = (int32_t)0; |
| 8262 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8263 | const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8264 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8265 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8266 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8267 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8268 | UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8269 | const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8270 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8271 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8272 | UPB_INLINE void google_protobuf_EnumValueDescriptorProto_clear_options(google_protobuf_EnumValueDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8273 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8274 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8275 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8276 | UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8277 | const google_protobuf_EnumValueOptions* default_val = NULL; |
| 8278 | const google_protobuf_EnumValueOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8279 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8280 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8281 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8282 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8283 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8284 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8285 | UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8286 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8287 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8288 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8289 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8290 | UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8291 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8292 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8293 | } |
| 8294 | UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8295 | const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8296 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8297 | } |
| 8298 | UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8299 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8300 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8301 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8302 | } |
| 8303 | UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8304 | struct google_protobuf_EnumValueOptions* sub = (struct google_protobuf_EnumValueOptions*)google_protobuf_EnumValueDescriptorProto_options(msg); |
| 8305 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8306 | sub = (struct google_protobuf_EnumValueOptions*)_upb_Message_New(&google__protobuf__EnumValueOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8307 | if (sub) google_protobuf_EnumValueDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8308 | } |
| 8309 | return sub; |
| 8310 | } |
| 8311 | |
| 8312 | /* google.protobuf.ServiceDescriptorProto */ |
| 8313 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8314 | UPB_INLINE google_protobuf_ServiceDescriptorProto* google_protobuf_ServiceDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8315 | return (google_protobuf_ServiceDescriptorProto*)_upb_Message_New(&google__protobuf__ServiceDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8316 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8317 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8319 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8320 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceDescriptorProto_msg_init, NULL, 0, arena) != |
| 8321 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8322 | return NULL; |
| 8323 | } |
| 8324 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8325 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8326 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8331 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceDescriptorProto_msg_init, extreg, options, |
| 8332 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8333 | return NULL; |
| 8334 | } |
| 8335 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8336 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8337 | UPB_INLINE char* google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8338 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8339 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8340 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8341 | } |
| 8342 | UPB_INLINE char* google_protobuf_ServiceDescriptorProto_serialize_ex(const google_protobuf_ServiceDescriptorProto* msg, int options, |
| 8343 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8344 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8345 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8346 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8347 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8348 | UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_name(google_protobuf_ServiceDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8349 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8350 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8351 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8352 | UPB_INLINE upb_StringView google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8353 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8354 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8355 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8356 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8357 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8358 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8359 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8360 | UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8361 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8362 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8363 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8364 | UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_method(google_protobuf_ServiceDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8365 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8366 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8367 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8368 | UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8369 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8370 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8371 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8372 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8373 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8374 | return (const google_protobuf_MethodDescriptorProto* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8375 | } else { |
| 8376 | if (size) *size = 0; |
| 8377 | return NULL; |
| 8378 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8379 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8380 | UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_array(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8381 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8382 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8383 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8384 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8385 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8386 | } |
| 8387 | return arr; |
| 8388 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8389 | UPB_INLINE upb_Array* _google_protobuf_ServiceDescriptorProto_method_mutable_upb_array(google_protobuf_ServiceDescriptorProto* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8390 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8391 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8392 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 8393 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8394 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8395 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 8396 | } |
| 8397 | return arr; |
| 8398 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8399 | UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_options(google_protobuf_ServiceDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8400 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8401 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8402 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8403 | UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8404 | const google_protobuf_ServiceOptions* default_val = NULL; |
| 8405 | const google_protobuf_ServiceOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8406 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8407 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8408 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8409 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8410 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8411 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8412 | UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8413 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8414 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8415 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8416 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8417 | UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8418 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8419 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8420 | } |
| 8421 | UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8422 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8423 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8424 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8425 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8426 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8427 | return (google_protobuf_MethodDescriptorProto**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8428 | } else { |
| 8429 | if (size) *size = 0; |
| 8430 | return NULL; |
| 8431 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8432 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8433 | UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8434 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8435 | return (google_protobuf_MethodDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 8436 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8437 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8438 | UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8439 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8440 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8441 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 8442 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 8443 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8444 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8445 | return NULL; |
| 8446 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8447 | struct google_protobuf_MethodDescriptorProto* sub = (struct google_protobuf_MethodDescriptorProto*)_upb_Message_New(&google__protobuf__MethodDescriptorProto_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8448 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 8449 | UPB_PRIVATE(_upb_Array_Set) |
| 8450 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8451 | return sub; |
| 8452 | } |
| 8453 | UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8454 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8455 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8456 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8457 | } |
| 8458 | UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8459 | struct google_protobuf_ServiceOptions* sub = (struct google_protobuf_ServiceOptions*)google_protobuf_ServiceDescriptorProto_options(msg); |
| 8460 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8461 | sub = (struct google_protobuf_ServiceOptions*)_upb_Message_New(&google__protobuf__ServiceOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8462 | if (sub) google_protobuf_ServiceDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8463 | } |
| 8464 | return sub; |
| 8465 | } |
| 8466 | |
| 8467 | /* google.protobuf.MethodDescriptorProto */ |
| 8468 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8469 | UPB_INLINE google_protobuf_MethodDescriptorProto* google_protobuf_MethodDescriptorProto_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8470 | return (google_protobuf_MethodDescriptorProto*)_upb_Message_New(&google__protobuf__MethodDescriptorProto_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8471 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8472 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8474 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8475 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodDescriptorProto_msg_init, NULL, 0, arena) != |
| 8476 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8477 | return NULL; |
| 8478 | } |
| 8479 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8480 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8481 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8486 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodDescriptorProto_msg_init, extreg, options, |
| 8487 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8488 | return NULL; |
| 8489 | } |
| 8490 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8491 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8492 | UPB_INLINE char* google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8493 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8494 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodDescriptorProto_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8495 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8496 | } |
| 8497 | UPB_INLINE char* google_protobuf_MethodDescriptorProto_serialize_ex(const google_protobuf_MethodDescriptorProto* msg, int options, |
| 8498 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8499 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8500 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodDescriptorProto_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8501 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8502 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8503 | UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_name(google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8504 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8505 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8506 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8507 | UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8508 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8509 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8510 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8511 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8512 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8513 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8514 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8515 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8516 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8517 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8518 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8519 | UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_input_type(google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8520 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8521 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8522 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8523 | UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8524 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8525 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8526 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8527 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8528 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8529 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8530 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8531 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8532 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8533 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8534 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8535 | UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_output_type(google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8536 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8537 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8538 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8539 | UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8540 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8541 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8542 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8543 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8544 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8545 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8546 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8547 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8548 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8549 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8550 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8551 | UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_options(google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8552 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8553 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8554 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8555 | UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8556 | const google_protobuf_MethodOptions* default_val = NULL; |
| 8557 | const google_protobuf_MethodOptions* ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8558 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8559 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8560 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8561 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8562 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8563 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8564 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8565 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8566 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8567 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8568 | UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_client_streaming(google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8569 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8570 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8571 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8572 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8573 | bool default_val = false; |
| 8574 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8575 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8576 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8577 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8578 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8579 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8580 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8581 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8582 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8583 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8584 | UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_server_streaming(google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8585 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8586 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8587 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8588 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8589 | bool default_val = false; |
| 8590 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8591 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8592 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8593 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8594 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8595 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8596 | UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8597 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8598 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8599 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8600 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8601 | UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8602 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8603 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8604 | } |
| 8605 | UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8606 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8607 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8608 | } |
| 8609 | UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8610 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8611 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8612 | } |
| 8613 | UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8614 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8615 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8616 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8617 | } |
| 8618 | UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena) { |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8619 | struct google_protobuf_MethodOptions* sub = (struct google_protobuf_MethodOptions*)google_protobuf_MethodDescriptorProto_options(msg); |
| 8620 | if (sub == NULL) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8621 | sub = (struct google_protobuf_MethodOptions*)_upb_Message_New(&google__protobuf__MethodOptions_msg_init, arena); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8622 | if (sub) google_protobuf_MethodDescriptorProto_set_options(msg, sub); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8623 | } |
| 8624 | return sub; |
| 8625 | } |
| 8626 | UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8627 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8628 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8629 | } |
| 8630 | UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8631 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 8632 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8633 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 8634 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8635 | /* google.protobuf.FileOptions */ |
| 8636 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8637 | UPB_INLINE google_protobuf_FileOptions* google_protobuf_FileOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 8638 | return (google_protobuf_FileOptions*)_upb_Message_New(&google__protobuf__FileOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8639 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8640 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8642 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8643 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileOptions_msg_init, NULL, 0, arena) != |
| 8644 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 8645 | return NULL; |
| 8646 | } |
| 8647 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8648 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8649 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8654 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FileOptions_msg_init, extreg, options, |
| 8655 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8656 | return NULL; |
| 8657 | } |
| 8658 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 8659 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8660 | UPB_INLINE char* google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8661 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8662 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8663 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8664 | } |
| 8665 | UPB_INLINE char* google_protobuf_FileOptions_serialize_ex(const google_protobuf_FileOptions* msg, int options, |
| 8666 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8667 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8668 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FileOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8669 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8670 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8671 | UPB_INLINE void google_protobuf_FileOptions_clear_java_package(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8672 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8673 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8674 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8675 | UPB_INLINE upb_StringView google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8676 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8677 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8678 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8679 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8680 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8681 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8682 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8683 | UPB_INLINE bool google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8684 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8685 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8686 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8687 | UPB_INLINE void google_protobuf_FileOptions_clear_java_outer_classname(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8688 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8689 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8690 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8691 | UPB_INLINE upb_StringView google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8692 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8693 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8694 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8695 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8696 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8697 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8698 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8699 | UPB_INLINE bool google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8700 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8701 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8702 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8703 | UPB_INLINE void google_protobuf_FileOptions_clear_optimize_for(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8704 | const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8705 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8706 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8707 | UPB_INLINE int32_t google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8708 | int32_t default_val = 1; |
| 8709 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8710 | const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8711 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8712 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8713 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8714 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8715 | UPB_INLINE bool google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8716 | const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8717 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8718 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8719 | UPB_INLINE void google_protobuf_FileOptions_clear_java_multiple_files(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8720 | const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8721 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8722 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8723 | UPB_INLINE bool google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8724 | bool default_val = false; |
| 8725 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8726 | const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8727 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8728 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8729 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8730 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8731 | UPB_INLINE bool google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8732 | const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8733 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8734 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8735 | UPB_INLINE void google_protobuf_FileOptions_clear_go_package(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8736 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8737 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8738 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8739 | UPB_INLINE upb_StringView google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8740 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8741 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8742 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8743 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8744 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8745 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8746 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8747 | UPB_INLINE bool google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8748 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8749 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8750 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8751 | UPB_INLINE void google_protobuf_FileOptions_clear_cc_generic_services(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8752 | const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8753 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8754 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8755 | UPB_INLINE bool google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8756 | bool default_val = false; |
| 8757 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8758 | const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8759 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8760 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8761 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8762 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8763 | UPB_INLINE bool google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8764 | const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8765 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8766 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8767 | UPB_INLINE void google_protobuf_FileOptions_clear_java_generic_services(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8768 | const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8769 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8770 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8771 | UPB_INLINE bool google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8772 | bool default_val = false; |
| 8773 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8774 | const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8775 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8776 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8777 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8778 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8779 | UPB_INLINE bool google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8780 | const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8781 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8782 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8783 | UPB_INLINE void google_protobuf_FileOptions_clear_py_generic_services(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8784 | const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8785 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8786 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8787 | UPB_INLINE bool google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8788 | bool default_val = false; |
| 8789 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8790 | const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8791 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8792 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8793 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8794 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8795 | UPB_INLINE bool google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8796 | const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8797 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8798 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8799 | UPB_INLINE void google_protobuf_FileOptions_clear_java_generate_equals_and_hash(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8800 | const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8801 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8802 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8803 | UPB_INLINE bool google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8804 | bool default_val = false; |
| 8805 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8806 | const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8807 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8808 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8809 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8810 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8811 | UPB_INLINE bool google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8812 | const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8813 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8814 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8815 | UPB_INLINE void google_protobuf_FileOptions_clear_deprecated(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8816 | const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8817 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8818 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8819 | UPB_INLINE bool google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8820 | bool default_val = false; |
| 8821 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8822 | const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8823 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8824 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8825 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8826 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8827 | UPB_INLINE bool google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8828 | const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8829 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8830 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8831 | UPB_INLINE void google_protobuf_FileOptions_clear_java_string_check_utf8(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8832 | const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8833 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8834 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8835 | UPB_INLINE bool google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8836 | bool default_val = false; |
| 8837 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8838 | const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8839 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8840 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8841 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8842 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8843 | UPB_INLINE bool google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8844 | const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8845 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8846 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8847 | UPB_INLINE void google_protobuf_FileOptions_clear_cc_enable_arenas(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8848 | const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8849 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8850 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8851 | UPB_INLINE bool google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8852 | bool default_val = true; |
| 8853 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8854 | const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8855 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8856 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8857 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8858 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8859 | UPB_INLINE bool google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8860 | const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8861 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8862 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8863 | UPB_INLINE void google_protobuf_FileOptions_clear_objc_class_prefix(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8864 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8865 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8866 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8867 | UPB_INLINE upb_StringView google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8868 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8869 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8870 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8871 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8872 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8873 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8874 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8875 | UPB_INLINE bool google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8876 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8877 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8878 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8879 | UPB_INLINE void google_protobuf_FileOptions_clear_csharp_namespace(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8880 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8881 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8882 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8883 | UPB_INLINE upb_StringView google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8884 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8885 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8886 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8887 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8888 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8889 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8890 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8891 | UPB_INLINE bool google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8892 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8893 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8894 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8895 | UPB_INLINE void google_protobuf_FileOptions_clear_swift_prefix(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8896 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8897 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8898 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8899 | UPB_INLINE upb_StringView google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8900 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8901 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8902 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8903 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8904 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8905 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8906 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8907 | UPB_INLINE bool google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8908 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8909 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8910 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8911 | UPB_INLINE void google_protobuf_FileOptions_clear_php_class_prefix(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8912 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8913 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8914 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8915 | UPB_INLINE upb_StringView google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8916 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8917 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8918 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8919 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8920 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8921 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8922 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8923 | UPB_INLINE bool google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8924 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8925 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8926 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8927 | UPB_INLINE void google_protobuf_FileOptions_clear_php_namespace(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8928 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8929 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8930 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8931 | UPB_INLINE upb_StringView google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8932 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8933 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8934 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8935 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8936 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8937 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8938 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8939 | UPB_INLINE bool google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8940 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8941 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8942 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8943 | UPB_INLINE void google_protobuf_FileOptions_clear_php_metadata_namespace(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8944 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8945 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8946 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8947 | UPB_INLINE upb_StringView google_protobuf_FileOptions_php_metadata_namespace(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8948 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8949 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8950 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8951 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8952 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8953 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8954 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8955 | UPB_INLINE bool google_protobuf_FileOptions_has_php_metadata_namespace(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8956 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8957 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8958 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8959 | UPB_INLINE void google_protobuf_FileOptions_clear_ruby_package(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8960 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8961 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8962 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8963 | UPB_INLINE upb_StringView google_protobuf_FileOptions_ruby_package(const google_protobuf_FileOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8964 | upb_StringView default_val = upb_StringView_FromString(""); |
| 8965 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8966 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8967 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8968 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 8969 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 8970 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8971 | UPB_INLINE bool google_protobuf_FileOptions_has_ruby_package(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8972 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8973 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 8974 | } |
| 8975 | UPB_INLINE void google_protobuf_FileOptions_clear_features(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8976 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8977 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 8978 | } |
| 8979 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8982 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8983 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8984 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 8985 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 8986 | return ret; |
| 8987 | } |
| 8988 | UPB_INLINE bool google_protobuf_FileOptions_has_features(const google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8989 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 8990 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 8991 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 8992 | UPB_INLINE void google_protobuf_FileOptions_clear_uninterpreted_option(google_protobuf_FileOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8993 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 8994 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 8995 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 8996 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 8997 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 8998 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 8999 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9000 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9001 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9002 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9003 | } else { |
| 9004 | if (size) *size = 0; |
| 9005 | return NULL; |
| 9006 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9007 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9008 | UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_upb_array(const google_protobuf_FileOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9009 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9010 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9011 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9012 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9013 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9014 | } |
| 9015 | return arr; |
| 9016 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9017 | UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FileOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9018 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9019 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9020 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 9021 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9022 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9023 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9024 | } |
| 9025 | return arr; |
| 9026 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9027 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9028 | UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9029 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9030 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9031 | } |
| 9032 | UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9033 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9034 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9035 | } |
| 9036 | UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9037 | const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9038 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9039 | } |
| 9040 | UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9041 | const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9042 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9043 | } |
| 9044 | UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9045 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9046 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9047 | } |
| 9048 | UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9049 | const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9050 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9051 | } |
| 9052 | UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9053 | const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9054 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9055 | } |
| 9056 | UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9057 | const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9058 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9059 | } |
| 9060 | UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9061 | const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9062 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9063 | } |
| 9064 | UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9065 | const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9066 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9067 | } |
| 9068 | UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9069 | const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9070 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9071 | } |
| 9072 | UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9073 | const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9074 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9075 | } |
| 9076 | UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9077 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9078 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9079 | } |
| 9080 | UPB_INLINE void google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9081 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9082 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9083 | } |
| 9084 | UPB_INLINE void google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9085 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9086 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9087 | } |
| 9088 | UPB_INLINE void google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9089 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9090 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9091 | } |
| 9092 | UPB_INLINE void google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9093 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9094 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9095 | } |
| 9096 | UPB_INLINE void google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9097 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9098 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9099 | } |
| 9100 | UPB_INLINE void google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9101 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9102 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9103 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9104 | UPB_INLINE void google_protobuf_FileOptions_set_features(google_protobuf_FileOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9105 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9106 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9107 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9108 | } |
| 9109 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9112 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9113 | if (sub) google_protobuf_FileOptions_set_features(msg, sub); |
| 9114 | } |
| 9115 | return sub; |
| 9116 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9117 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9118 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9119 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9120 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9121 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9122 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9123 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9124 | } else { |
| 9125 | if (size) *size = 0; |
| 9126 | return NULL; |
| 9127 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9128 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9129 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9130 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9131 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 9132 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9133 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9134 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9135 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9136 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9137 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 9138 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9139 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9140 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9141 | return NULL; |
| 9142 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9143 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9144 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9145 | UPB_PRIVATE(_upb_Array_Set) |
| 9146 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9147 | return sub; |
| 9148 | } |
| 9149 | |
| 9150 | /* google.protobuf.MessageOptions */ |
| 9151 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9152 | UPB_INLINE google_protobuf_MessageOptions* google_protobuf_MessageOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9153 | return (google_protobuf_MessageOptions*)_upb_Message_New(&google__protobuf__MessageOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9154 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9155 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 9157 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9158 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MessageOptions_msg_init, NULL, 0, arena) != |
| 9159 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 9160 | return NULL; |
| 9161 | } |
| 9162 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9163 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9164 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9169 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MessageOptions_msg_init, extreg, options, |
| 9170 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9171 | return NULL; |
| 9172 | } |
| 9173 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9174 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9175 | UPB_INLINE char* google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9176 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9177 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MessageOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9178 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9179 | } |
| 9180 | UPB_INLINE char* google_protobuf_MessageOptions_serialize_ex(const google_protobuf_MessageOptions* msg, int options, |
| 9181 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9182 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9183 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MessageOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9184 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9185 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9186 | UPB_INLINE void google_protobuf_MessageOptions_clear_message_set_wire_format(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9187 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9188 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9189 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9190 | UPB_INLINE bool google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9191 | bool default_val = false; |
| 9192 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9193 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9194 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9195 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9196 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9197 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9198 | UPB_INLINE bool google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9199 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9200 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9201 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9202 | UPB_INLINE void google_protobuf_MessageOptions_clear_no_standard_descriptor_accessor(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9203 | const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9204 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9205 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9206 | UPB_INLINE bool google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9207 | bool default_val = false; |
| 9208 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9209 | const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9210 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9211 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9212 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9213 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9214 | UPB_INLINE bool google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9215 | const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9216 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9217 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9218 | UPB_INLINE void google_protobuf_MessageOptions_clear_deprecated(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9219 | const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9220 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9221 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9222 | UPB_INLINE bool google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9223 | bool default_val = false; |
| 9224 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9225 | const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9226 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9227 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9228 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9229 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9230 | UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9231 | const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9232 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9233 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9234 | UPB_INLINE void google_protobuf_MessageOptions_clear_map_entry(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9235 | const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9236 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9237 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9238 | UPB_INLINE bool google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9239 | bool default_val = false; |
| 9240 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9241 | const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9242 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9243 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9244 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9245 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9246 | UPB_INLINE bool google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9247 | const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9248 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9249 | } |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 9250 | UPB_INLINE void google_protobuf_MessageOptions_clear_deprecated_legacy_json_field_conflicts(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9251 | const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9252 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 9253 | } |
| 9254 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9257 | const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9258 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9259 | &default_val, &ret); |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 9260 | return ret; |
| 9261 | } |
| 9262 | UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated_legacy_json_field_conflicts(const google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9263 | const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9264 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 9265 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9266 | UPB_INLINE void google_protobuf_MessageOptions_clear_features(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9267 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9268 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9269 | } |
| 9270 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9273 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9274 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9275 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9276 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9277 | return ret; |
| 9278 | } |
| 9279 | UPB_INLINE bool google_protobuf_MessageOptions_has_features(const google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9280 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9281 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9282 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9283 | UPB_INLINE void google_protobuf_MessageOptions_clear_uninterpreted_option(google_protobuf_MessageOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9284 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9285 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9286 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9287 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9288 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9289 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9290 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9291 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9292 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9293 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9294 | } else { |
| 9295 | if (size) *size = 0; |
| 9296 | return NULL; |
| 9297 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9298 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9299 | UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_upb_array(const google_protobuf_MessageOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9300 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9301 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9302 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9303 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9304 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9305 | } |
| 9306 | return arr; |
| 9307 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9308 | UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MessageOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9309 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9310 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9311 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 9312 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9313 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9314 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9315 | } |
| 9316 | return arr; |
| 9317 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9318 | |
| 9319 | UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9320 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9321 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9322 | } |
| 9323 | UPB_INLINE void google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9324 | const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9325 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9326 | } |
| 9327 | UPB_INLINE void google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9328 | const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9329 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9330 | } |
| 9331 | UPB_INLINE void google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9332 | const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9333 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9334 | } |
| 9335 | UPB_INLINE void google_protobuf_MessageOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_MessageOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9336 | const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9337 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9338 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9339 | UPB_INLINE void google_protobuf_MessageOptions_set_features(google_protobuf_MessageOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9340 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9341 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9342 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9343 | } |
| 9344 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9347 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9348 | if (sub) google_protobuf_MessageOptions_set_features(msg, sub); |
| 9349 | } |
| 9350 | return sub; |
| 9351 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9352 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9353 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9354 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9355 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9356 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9357 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9358 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9359 | } else { |
| 9360 | if (size) *size = 0; |
| 9361 | return NULL; |
| 9362 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9363 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9364 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9365 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9366 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 9367 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9368 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9369 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9370 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9371 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9372 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 9373 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9374 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9375 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9376 | return NULL; |
| 9377 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9378 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9379 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9380 | UPB_PRIVATE(_upb_Array_Set) |
| 9381 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9382 | return sub; |
| 9383 | } |
| 9384 | |
| 9385 | /* google.protobuf.FieldOptions */ |
| 9386 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9387 | UPB_INLINE google_protobuf_FieldOptions* google_protobuf_FieldOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9388 | return (google_protobuf_FieldOptions*)_upb_Message_New(&google__protobuf__FieldOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9389 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9390 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 9392 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9393 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions_msg_init, NULL, 0, arena) != |
| 9394 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 9395 | return NULL; |
| 9396 | } |
| 9397 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9398 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9399 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9404 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions_msg_init, extreg, options, |
| 9405 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9406 | return NULL; |
| 9407 | } |
| 9408 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9409 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9410 | UPB_INLINE char* google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9411 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9412 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9413 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9414 | } |
| 9415 | UPB_INLINE char* google_protobuf_FieldOptions_serialize_ex(const google_protobuf_FieldOptions* msg, int options, |
| 9416 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9417 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9418 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9419 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9420 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9421 | UPB_INLINE void google_protobuf_FieldOptions_clear_ctype(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9422 | const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9423 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9424 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9425 | UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9426 | int32_t default_val = 0; |
| 9427 | int32_t ret; |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9428 | const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9429 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9430 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9431 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9432 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9433 | UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9434 | const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9435 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9436 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9437 | UPB_INLINE void google_protobuf_FieldOptions_clear_packed(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9438 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9439 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9440 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9441 | UPB_INLINE bool google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9442 | bool default_val = false; |
| 9443 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9444 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9445 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9446 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9447 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9448 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9449 | UPB_INLINE bool google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9450 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9451 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9452 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9453 | UPB_INLINE void google_protobuf_FieldOptions_clear_deprecated(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9454 | const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9455 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9456 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9457 | UPB_INLINE bool google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9458 | bool default_val = false; |
| 9459 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9460 | const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9461 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9462 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9463 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9464 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9465 | UPB_INLINE bool google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9466 | const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9467 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9468 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9469 | UPB_INLINE void google_protobuf_FieldOptions_clear_lazy(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9470 | const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9471 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9472 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9473 | UPB_INLINE bool google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9474 | bool default_val = false; |
| 9475 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9476 | const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9477 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9478 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9479 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9480 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9481 | UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9482 | const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9483 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9484 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9485 | UPB_INLINE void google_protobuf_FieldOptions_clear_jstype(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9486 | const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9487 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9488 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9489 | UPB_INLINE int32_t google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9490 | int32_t default_val = 0; |
| 9491 | int32_t ret; |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9492 | const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9493 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9494 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9495 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9496 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9497 | UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9498 | const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9499 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9500 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9501 | UPB_INLINE void google_protobuf_FieldOptions_clear_weak(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9502 | const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9503 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9504 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9505 | UPB_INLINE bool google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9506 | bool default_val = false; |
| 9507 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9508 | const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9509 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9510 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9511 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 9512 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9513 | UPB_INLINE bool google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9514 | const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9515 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9516 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9517 | UPB_INLINE void google_protobuf_FieldOptions_clear_unverified_lazy(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9518 | const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9519 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9520 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9521 | UPB_INLINE bool google_protobuf_FieldOptions_unverified_lazy(const google_protobuf_FieldOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9522 | bool default_val = false; |
| 9523 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9524 | const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9525 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9526 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 9527 | return ret; |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9528 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9529 | UPB_INLINE bool google_protobuf_FieldOptions_has_unverified_lazy(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9530 | const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9531 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9532 | } |
Protobuf Team Bot | 9238c48 | 2022-12-16 20:01:55 -0800 | [diff] [blame] | 9533 | UPB_INLINE void google_protobuf_FieldOptions_clear_debug_redact(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9534 | const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9535 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 9238c48 | 2022-12-16 20:01:55 -0800 | [diff] [blame] | 9536 | } |
| 9537 | UPB_INLINE bool google_protobuf_FieldOptions_debug_redact(const google_protobuf_FieldOptions* msg) { |
| 9538 | bool default_val = false; |
| 9539 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9540 | const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9541 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9542 | &default_val, &ret); |
Protobuf Team Bot | 9238c48 | 2022-12-16 20:01:55 -0800 | [diff] [blame] | 9543 | return ret; |
| 9544 | } |
| 9545 | UPB_INLINE bool google_protobuf_FieldOptions_has_debug_redact(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9546 | const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9547 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 9238c48 | 2022-12-16 20:01:55 -0800 | [diff] [blame] | 9548 | } |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9549 | UPB_INLINE void google_protobuf_FieldOptions_clear_retention(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9550 | const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9551 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9552 | } |
| 9553 | UPB_INLINE int32_t google_protobuf_FieldOptions_retention(const google_protobuf_FieldOptions* msg) { |
| 9554 | int32_t default_val = 0; |
| 9555 | int32_t ret; |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9556 | const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9557 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9558 | &default_val, &ret); |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9559 | return ret; |
| 9560 | } |
| 9561 | UPB_INLINE bool google_protobuf_FieldOptions_has_retention(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9562 | const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9563 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9564 | } |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9565 | UPB_INLINE void google_protobuf_FieldOptions_clear_targets(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9566 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9567 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9568 | } |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9569 | UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9570 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9571 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9572 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9573 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9574 | return (int32_t const*)upb_Array_DataPtr(arr); |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9575 | } else { |
| 9576 | if (size) *size = 0; |
| 9577 | return NULL; |
| 9578 | } |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9579 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9580 | UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9581 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9582 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9583 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9584 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9585 | } |
| 9586 | return arr; |
| 9587 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9588 | UPB_INLINE upb_Array* _google_protobuf_FieldOptions_targets_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9589 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9590 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 9591 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9592 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9593 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9594 | } |
| 9595 | return arr; |
| 9596 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9597 | UPB_INLINE void google_protobuf_FieldOptions_clear_edition_defaults(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9598 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9599 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9600 | } |
| 9601 | UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_protobuf_FieldOptions_edition_defaults(const google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9602 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9603 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9604 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9605 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9606 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9607 | return (const google_protobuf_FieldOptions_EditionDefault* const*)upb_Array_DataPtr(arr); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9608 | } else { |
| 9609 | if (size) *size = 0; |
| 9610 | return NULL; |
| 9611 | } |
| 9612 | } |
| 9613 | UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9614 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9615 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9616 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9617 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9618 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9619 | } |
| 9620 | return arr; |
| 9621 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9622 | UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9623 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9624 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9625 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 9626 | &field, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9627 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9628 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9629 | } |
| 9630 | return arr; |
| 9631 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9632 | UPB_INLINE void google_protobuf_FieldOptions_clear_features(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9633 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9634 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9635 | } |
| 9636 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9639 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9640 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9641 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9642 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9643 | return ret; |
| 9644 | } |
| 9645 | UPB_INLINE bool google_protobuf_FieldOptions_has_features(const google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9646 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9647 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9648 | } |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9649 | UPB_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 | } |
| 9653 | UPB_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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9657 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9658 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9659 | &default_val, &ret); |
| 9660 | return ret; |
| 9661 | } |
| 9662 | UPB_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 Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 9666 | UPB_INLINE void google_protobuf_FieldOptions_clear_uninterpreted_option(google_protobuf_FieldOptions* msg) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9667 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9668 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 9669 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9670 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9671 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9672 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9673 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9674 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9675 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9676 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9677 | } else { |
| 9678 | if (size) *size = 0; |
| 9679 | return NULL; |
| 9680 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9681 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9682 | UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9683 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9684 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9685 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9686 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9687 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9688 | } |
| 9689 | return arr; |
| 9690 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9691 | UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9692 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9693 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9694 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 9695 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9696 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9697 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 9698 | } |
| 9699 | return arr; |
| 9700 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9701 | |
| 9702 | UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9703 | const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9704 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9705 | } |
| 9706 | UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9707 | const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9708 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9709 | } |
| 9710 | UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9711 | const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9712 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9713 | } |
| 9714 | UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9715 | const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9716 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9717 | } |
| 9718 | UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9719 | const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9720 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9721 | } |
| 9722 | UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9723 | const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9724 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9725 | } |
| 9726 | UPB_INLINE void google_protobuf_FieldOptions_set_unverified_lazy(google_protobuf_FieldOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9727 | const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9728 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9729 | } |
| 9730 | UPB_INLINE void google_protobuf_FieldOptions_set_debug_redact(google_protobuf_FieldOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9731 | const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9732 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9733 | } |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9734 | UPB_INLINE void google_protobuf_FieldOptions_set_retention(google_protobuf_FieldOptions *msg, int32_t value) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9735 | const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9736 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9737 | } |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9738 | UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9739 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9740 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9741 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9742 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9743 | return (int32_t*)upb_Array_MutableDataPtr(arr); |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9744 | } else { |
| 9745 | if (size) *size = 0; |
| 9746 | return NULL; |
| 9747 | } |
| 9748 | } |
| 9749 | UPB_INLINE int32_t* google_protobuf_FieldOptions_resize_targets(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9750 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9751 | return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 9752 | &field, size, arena); |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9753 | } |
| 9754 | UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOptions* msg, int32_t val, upb_Arena* arena) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9755 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9756 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 9757 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9758 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9759 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9760 | return false; |
| 9761 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9762 | UPB_PRIVATE(_upb_Array_Set) |
| 9763 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Mike Kruskal | 0c12139 | 2023-03-18 00:05:41 -0700 | [diff] [blame] | 9764 | return true; |
Adam Cozzette | 5a56837 | 2023-01-24 20:35:59 -0800 | [diff] [blame] | 9765 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9766 | UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_mutable_edition_defaults(google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9767 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9768 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9769 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9770 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9771 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9772 | return (google_protobuf_FieldOptions_EditionDefault**)upb_Array_MutableDataPtr(arr); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9773 | } else { |
| 9774 | if (size) *size = 0; |
| 9775 | return NULL; |
| 9776 | } |
| 9777 | } |
| 9778 | UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_resize_edition_defaults(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9779 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9780 | return (google_protobuf_FieldOptions_EditionDefault**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 9781 | &field, size, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9782 | } |
| 9783 | UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_add_edition_defaults(google_protobuf_FieldOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9784 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9785 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9786 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 9787 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9788 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9789 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9790 | return NULL; |
| 9791 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9792 | struct google_protobuf_FieldOptions_EditionDefault* sub = (struct google_protobuf_FieldOptions_EditionDefault*)_upb_Message_New(&google__protobuf__FieldOptions__EditionDefault_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9793 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9794 | UPB_PRIVATE(_upb_Array_Set) |
| 9795 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9796 | return sub; |
| 9797 | } |
| 9798 | UPB_INLINE void google_protobuf_FieldOptions_set_features(google_protobuf_FieldOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9799 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9800 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9801 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9802 | } |
| 9803 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9806 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9807 | if (sub) google_protobuf_FieldOptions_set_features(msg, sub); |
| 9808 | } |
| 9809 | return sub; |
| 9810 | } |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9811 | UPB_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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9813 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9814 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9815 | } |
| 9816 | UPB_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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 9824 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t* size) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9825 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9826 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9827 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9828 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9829 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9830 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9831 | } else { |
| 9832 | if (size) *size = 0; |
| 9833 | return NULL; |
| 9834 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9835 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9836 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9837 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9838 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 9839 | &field, size, arena); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 9840 | } |
| 9841 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9842 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 9843 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9844 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 9845 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 9846 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9847 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9848 | return NULL; |
| 9849 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9850 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 9851 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 9852 | UPB_PRIVATE(_upb_Array_Set) |
| 9853 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 9854 | return sub; |
| 9855 | } |
| 9856 | |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9857 | /* google.protobuf.FieldOptions.EditionDefault */ |
| 9858 | |
| 9859 | UPB_INLINE google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_EditionDefault_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 9860 | return (google_protobuf_FieldOptions_EditionDefault*)_upb_Message_New(&google__protobuf__FieldOptions__EditionDefault_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9861 | } |
| 9862 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9865 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__EditionDefault_msg_init, NULL, 0, arena) != |
| 9866 | kUpb_DecodeStatus_Ok) { |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9867 | return NULL; |
| 9868 | } |
| 9869 | return ret; |
| 9870 | } |
| 9871 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9876 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__EditionDefault_msg_init, extreg, options, |
| 9877 | arena) != kUpb_DecodeStatus_Ok) { |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9878 | return NULL; |
| 9879 | } |
| 9880 | return ret; |
| 9881 | } |
| 9882 | UPB_INLINE char* google_protobuf_FieldOptions_EditionDefault_serialize(const google_protobuf_FieldOptions_EditionDefault* msg, upb_Arena* arena, size_t* len) { |
| 9883 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9884 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__EditionDefault_msg_init, 0, arena, &ptr, len); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9885 | return ptr; |
| 9886 | } |
| 9887 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9890 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__EditionDefault_msg_init, options, arena, &ptr, len); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9891 | return ptr; |
| 9892 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9893 | UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_clear_value(google_protobuf_FieldOptions_EditionDefault* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9894 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9895 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9896 | } |
| 9897 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9900 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9901 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9902 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9903 | return ret; |
| 9904 | } |
| 9905 | UPB_INLINE bool google_protobuf_FieldOptions_EditionDefault_has_value(const google_protobuf_FieldOptions_EditionDefault* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9906 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9907 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 9908 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 9909 | UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_clear_edition(google_protobuf_FieldOptions_EditionDefault* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9910 | const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 9911 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 9912 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 9913 | UPB_INLINE int32_t google_protobuf_FieldOptions_EditionDefault_edition(const google_protobuf_FieldOptions_EditionDefault* msg) { |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 9914 | int32_t default_val = 0; |
| 9915 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9916 | const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 9917 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 9918 | &default_val, &ret); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 9919 | return ret; |
| 9920 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 9921 | UPB_INLINE bool google_protobuf_FieldOptions_EditionDefault_has_edition(const google_protobuf_FieldOptions_EditionDefault* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9922 | const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 9923 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9924 | } |
| 9925 | |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9926 | UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_value(google_protobuf_FieldOptions_EditionDefault *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9927 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9928 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 9929 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 9930 | UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_edition(google_protobuf_FieldOptions_EditionDefault *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 9931 | const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 9932 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 9933 | } |
| 9934 | |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 9935 | /* google.protobuf.FieldOptions.FeatureSupport */ |
| 9936 | |
| 9937 | UPB_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 | } |
| 9940 | UPB_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 | } |
| 9949 | UPB_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 | } |
| 9960 | UPB_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 | } |
| 9965 | UPB_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 | } |
| 9971 | UPB_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 | } |
| 9975 | UPB_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 | } |
| 9983 | UPB_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 | } |
| 9987 | UPB_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 | } |
| 9991 | UPB_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 | } |
| 9999 | UPB_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 | } |
| 10003 | UPB_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 | } |
| 10007 | UPB_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 | } |
| 10015 | UPB_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 | } |
| 10019 | UPB_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 | } |
| 10023 | UPB_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 | } |
| 10031 | UPB_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 | |
| 10036 | UPB_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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10038 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 10039 | } |
| 10040 | UPB_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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10042 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 10043 | } |
| 10044 | UPB_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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10046 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 10047 | } |
| 10048 | UPB_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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10050 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 10051 | } |
| 10052 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10053 | /* google.protobuf.OneofOptions */ |
| 10054 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10055 | UPB_INLINE google_protobuf_OneofOptions* google_protobuf_OneofOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10056 | return (google_protobuf_OneofOptions*)_upb_Message_New(&google__protobuf__OneofOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10057 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10058 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10060 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10061 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofOptions_msg_init, NULL, 0, arena) != |
| 10062 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10063 | return NULL; |
| 10064 | } |
| 10065 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10066 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10067 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10072 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__OneofOptions_msg_init, extreg, options, |
| 10073 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10074 | return NULL; |
| 10075 | } |
| 10076 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10077 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10078 | UPB_INLINE char* google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10079 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10080 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10081 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10082 | } |
| 10083 | UPB_INLINE char* google_protobuf_OneofOptions_serialize_ex(const google_protobuf_OneofOptions* msg, int options, |
| 10084 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10085 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10086 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__OneofOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10087 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10088 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10089 | UPB_INLINE void google_protobuf_OneofOptions_clear_features(google_protobuf_OneofOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10090 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10091 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10092 | } |
| 10093 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10096 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10097 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10098 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10099 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10100 | return ret; |
| 10101 | } |
| 10102 | UPB_INLINE bool google_protobuf_OneofOptions_has_features(const google_protobuf_OneofOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10103 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10104 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10105 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10106 | UPB_INLINE void google_protobuf_OneofOptions_clear_uninterpreted_option(google_protobuf_OneofOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10107 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10108 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10109 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10110 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10111 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10112 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10113 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10114 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10115 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10116 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10117 | } else { |
| 10118 | if (size) *size = 0; |
| 10119 | return NULL; |
| 10120 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10121 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10122 | UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_upb_array(const google_protobuf_OneofOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10123 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10124 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10125 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10126 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10127 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10128 | } |
| 10129 | return arr; |
| 10130 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10131 | UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable_upb_array(google_protobuf_OneofOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10132 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10133 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10134 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 10135 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10136 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10137 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10138 | } |
| 10139 | return arr; |
| 10140 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10141 | |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10142 | UPB_INLINE void google_protobuf_OneofOptions_set_features(google_protobuf_OneofOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10143 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10144 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10145 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10146 | } |
| 10147 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10150 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10151 | if (sub) google_protobuf_OneofOptions_set_features(msg, sub); |
| 10152 | } |
| 10153 | return sub; |
| 10154 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10155 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10156 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10157 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10158 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10159 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10160 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10161 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10162 | } else { |
| 10163 | if (size) *size = 0; |
| 10164 | return NULL; |
| 10165 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10166 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10167 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10168 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10169 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 10170 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10171 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10172 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10173 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10174 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10175 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 10176 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10177 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10178 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10179 | return NULL; |
| 10180 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10181 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10182 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10183 | UPB_PRIVATE(_upb_Array_Set) |
| 10184 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10185 | return sub; |
| 10186 | } |
| 10187 | |
| 10188 | /* google.protobuf.EnumOptions */ |
| 10189 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10190 | UPB_INLINE google_protobuf_EnumOptions* google_protobuf_EnumOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10191 | return (google_protobuf_EnumOptions*)_upb_Message_New(&google__protobuf__EnumOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10192 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10193 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10195 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10196 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumOptions_msg_init, NULL, 0, arena) != |
| 10197 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10198 | return NULL; |
| 10199 | } |
| 10200 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10201 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10202 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10207 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumOptions_msg_init, extreg, options, |
| 10208 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10209 | return NULL; |
| 10210 | } |
| 10211 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10212 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10213 | UPB_INLINE char* google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10214 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10215 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10216 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10217 | } |
| 10218 | UPB_INLINE char* google_protobuf_EnumOptions_serialize_ex(const google_protobuf_EnumOptions* msg, int options, |
| 10219 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10220 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10221 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10222 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10223 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10224 | UPB_INLINE void google_protobuf_EnumOptions_clear_allow_alias(google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10225 | const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10226 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10227 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10228 | UPB_INLINE bool google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10229 | bool default_val = false; |
| 10230 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10231 | const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10232 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10233 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10234 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10235 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10236 | UPB_INLINE bool google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10237 | const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10238 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10239 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10240 | UPB_INLINE void google_protobuf_EnumOptions_clear_deprecated(google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10241 | const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10242 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10243 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10244 | UPB_INLINE bool google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10245 | bool default_val = false; |
| 10246 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10247 | const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10248 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10249 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10250 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10251 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10252 | UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10253 | const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10254 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10255 | } |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 10256 | UPB_INLINE void google_protobuf_EnumOptions_clear_deprecated_legacy_json_field_conflicts(google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10257 | const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10258 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 10259 | } |
| 10260 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10263 | const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10264 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10265 | &default_val, &ret); |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 10266 | return ret; |
| 10267 | } |
| 10268 | UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated_legacy_json_field_conflicts(const google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10269 | const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10270 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 6b87d6f | 2022-12-14 10:36:53 -0800 | [diff] [blame] | 10271 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10272 | UPB_INLINE void google_protobuf_EnumOptions_clear_features(google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10273 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10274 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10275 | } |
| 10276 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10279 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10280 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10281 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10282 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10283 | return ret; |
| 10284 | } |
| 10285 | UPB_INLINE bool google_protobuf_EnumOptions_has_features(const google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10286 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10287 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10288 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10289 | UPB_INLINE void google_protobuf_EnumOptions_clear_uninterpreted_option(google_protobuf_EnumOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10290 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10291 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10292 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10293 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10294 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10295 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10296 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10297 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10298 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10299 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10300 | } else { |
| 10301 | if (size) *size = 0; |
| 10302 | return NULL; |
| 10303 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10304 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10305 | UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_upb_array(const google_protobuf_EnumOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10306 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10307 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10308 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10309 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10310 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10311 | } |
| 10312 | return arr; |
| 10313 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10314 | UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10315 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10316 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10317 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 10318 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10319 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10320 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10321 | } |
| 10322 | return arr; |
| 10323 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10324 | |
| 10325 | UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10326 | const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10327 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10328 | } |
| 10329 | UPB_INLINE void google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10330 | const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10331 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10332 | } |
| 10333 | UPB_INLINE void google_protobuf_EnumOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_EnumOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10334 | const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10335 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10336 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10337 | UPB_INLINE void google_protobuf_EnumOptions_set_features(google_protobuf_EnumOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10338 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10339 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10340 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10341 | } |
| 10342 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10345 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10346 | if (sub) google_protobuf_EnumOptions_set_features(msg, sub); |
| 10347 | } |
| 10348 | return sub; |
| 10349 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10350 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10351 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10352 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10353 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10354 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10355 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10356 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10357 | } else { |
| 10358 | if (size) *size = 0; |
| 10359 | return NULL; |
| 10360 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10361 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10362 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10363 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10364 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 10365 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10366 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10367 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10368 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10369 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10370 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 10371 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10372 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10373 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10374 | return NULL; |
| 10375 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10376 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10377 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10378 | UPB_PRIVATE(_upb_Array_Set) |
| 10379 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10380 | return sub; |
| 10381 | } |
| 10382 | |
| 10383 | /* google.protobuf.EnumValueOptions */ |
| 10384 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10385 | UPB_INLINE google_protobuf_EnumValueOptions* google_protobuf_EnumValueOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10386 | return (google_protobuf_EnumValueOptions*)_upb_Message_New(&google__protobuf__EnumValueOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10387 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10388 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10390 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10391 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueOptions_msg_init, NULL, 0, arena) != |
| 10392 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10393 | return NULL; |
| 10394 | } |
| 10395 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10396 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10397 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10402 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__EnumValueOptions_msg_init, extreg, options, |
| 10403 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10404 | return NULL; |
| 10405 | } |
| 10406 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10407 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10408 | UPB_INLINE char* google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10409 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10410 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10411 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10412 | } |
| 10413 | UPB_INLINE char* google_protobuf_EnumValueOptions_serialize_ex(const google_protobuf_EnumValueOptions* msg, int options, |
| 10414 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10415 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10416 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__EnumValueOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10417 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10418 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10419 | UPB_INLINE void google_protobuf_EnumValueOptions_clear_deprecated(google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10420 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10421 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10422 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10423 | UPB_INLINE bool google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10424 | bool default_val = false; |
| 10425 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10426 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10427 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10428 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10429 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10430 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10431 | UPB_INLINE bool google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10432 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10433 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10434 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10435 | UPB_INLINE void google_protobuf_EnumValueOptions_clear_features(google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10436 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10437 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10438 | } |
| 10439 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10442 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10443 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10444 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10445 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10446 | return ret; |
| 10447 | } |
| 10448 | UPB_INLINE bool google_protobuf_EnumValueOptions_has_features(const google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10449 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10450 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10451 | } |
Mike Kruskal | 12e0f1d | 2023-05-31 15:40:54 -0700 | [diff] [blame] | 10452 | UPB_INLINE void google_protobuf_EnumValueOptions_clear_debug_redact(google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10453 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10454 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 12e0f1d | 2023-05-31 15:40:54 -0700 | [diff] [blame] | 10455 | } |
| 10456 | UPB_INLINE bool google_protobuf_EnumValueOptions_debug_redact(const google_protobuf_EnumValueOptions* msg) { |
| 10457 | bool default_val = false; |
| 10458 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10459 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10460 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10461 | &default_val, &ret); |
Mike Kruskal | 12e0f1d | 2023-05-31 15:40:54 -0700 | [diff] [blame] | 10462 | return ret; |
| 10463 | } |
| 10464 | UPB_INLINE bool google_protobuf_EnumValueOptions_has_debug_redact(const google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10465 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10466 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 12e0f1d | 2023-05-31 15:40:54 -0700 | [diff] [blame] | 10467 | } |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10468 | UPB_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 | } |
| 10472 | UPB_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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10476 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init); |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10477 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10478 | &default_val, &ret); |
| 10479 | return ret; |
| 10480 | } |
| 10481 | UPB_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 Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10485 | UPB_INLINE void google_protobuf_EnumValueOptions_clear_uninterpreted_option(google_protobuf_EnumValueOptions* msg) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10486 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10487 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10488 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10489 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions* msg, size_t* size) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10490 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10491 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10492 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10493 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10494 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10495 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10496 | } else { |
| 10497 | if (size) *size = 0; |
| 10498 | return NULL; |
| 10499 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10500 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10501 | UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_upb_array(const google_protobuf_EnumValueOptions* msg, size_t* size) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10502 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10503 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10504 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10505 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10506 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10507 | } |
| 10508 | return arr; |
| 10509 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10510 | UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumValueOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10511 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10512 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10513 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 10514 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10515 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10516 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10517 | } |
| 10518 | return arr; |
| 10519 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10520 | |
| 10521 | UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10522 | const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10523 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10524 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10525 | UPB_INLINE void google_protobuf_EnumValueOptions_set_features(google_protobuf_EnumValueOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10526 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10527 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10528 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10529 | } |
| 10530 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10533 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10534 | if (sub) google_protobuf_EnumValueOptions_set_features(msg, sub); |
| 10535 | } |
| 10536 | return sub; |
| 10537 | } |
Mike Kruskal | 12e0f1d | 2023-05-31 15:40:54 -0700 | [diff] [blame] | 10538 | UPB_INLINE void google_protobuf_EnumValueOptions_set_debug_redact(google_protobuf_EnumValueOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10539 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10540 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 12e0f1d | 2023-05-31 15:40:54 -0700 | [diff] [blame] | 10541 | } |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10542 | UPB_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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10544 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init); |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10545 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
| 10546 | } |
| 10547 | UPB_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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10555 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t* size) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10556 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10557 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10558 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10559 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10560 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10561 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10562 | } else { |
| 10563 | if (size) *size = 0; |
| 10564 | return NULL; |
| 10565 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10566 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10567 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10568 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10569 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 10570 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10571 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10572 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 2e9c0a7 | 2024-05-21 23:17:21 +0000 | [diff] [blame] | 10573 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10574 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10575 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 10576 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10577 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10578 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10579 | return NULL; |
| 10580 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10581 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10582 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10583 | UPB_PRIVATE(_upb_Array_Set) |
| 10584 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10585 | return sub; |
| 10586 | } |
| 10587 | |
| 10588 | /* google.protobuf.ServiceOptions */ |
| 10589 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10590 | UPB_INLINE google_protobuf_ServiceOptions* google_protobuf_ServiceOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10591 | return (google_protobuf_ServiceOptions*)_upb_Message_New(&google__protobuf__ServiceOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10592 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10593 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10595 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10596 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceOptions_msg_init, NULL, 0, arena) != |
| 10597 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10598 | return NULL; |
| 10599 | } |
| 10600 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10601 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10602 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10607 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__ServiceOptions_msg_init, extreg, options, |
| 10608 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10609 | return NULL; |
| 10610 | } |
| 10611 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10612 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10613 | UPB_INLINE char* google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10614 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10615 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10616 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10617 | } |
| 10618 | UPB_INLINE char* google_protobuf_ServiceOptions_serialize_ex(const google_protobuf_ServiceOptions* msg, int options, |
| 10619 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10620 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10621 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__ServiceOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10622 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10623 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10624 | UPB_INLINE void google_protobuf_ServiceOptions_clear_deprecated(google_protobuf_ServiceOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10625 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10626 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10627 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10628 | UPB_INLINE bool google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10629 | bool default_val = false; |
| 10630 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10631 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10632 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10633 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10634 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10635 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10636 | UPB_INLINE bool google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10637 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10638 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10639 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10640 | UPB_INLINE void google_protobuf_ServiceOptions_clear_features(google_protobuf_ServiceOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10641 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10642 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10643 | } |
| 10644 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10647 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10648 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10649 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10650 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10651 | return ret; |
| 10652 | } |
| 10653 | UPB_INLINE bool google_protobuf_ServiceOptions_has_features(const google_protobuf_ServiceOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10654 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10655 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10656 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10657 | UPB_INLINE void google_protobuf_ServiceOptions_clear_uninterpreted_option(google_protobuf_ServiceOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10658 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10659 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10660 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10661 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10662 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10663 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10664 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10665 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10666 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10667 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10668 | } else { |
| 10669 | if (size) *size = 0; |
| 10670 | return NULL; |
| 10671 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10672 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10673 | UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_upb_array(const google_protobuf_ServiceOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10674 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10675 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10676 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10677 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10678 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10679 | } |
| 10680 | return arr; |
| 10681 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10682 | UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ServiceOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10683 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10684 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10685 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 10686 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10687 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10688 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10689 | } |
| 10690 | return arr; |
| 10691 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10692 | |
| 10693 | UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10694 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10695 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10696 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10697 | UPB_INLINE void google_protobuf_ServiceOptions_set_features(google_protobuf_ServiceOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10698 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10699 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10700 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10701 | } |
| 10702 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10705 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10706 | if (sub) google_protobuf_ServiceOptions_set_features(msg, sub); |
| 10707 | } |
| 10708 | return sub; |
| 10709 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10710 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10711 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10712 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10713 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10714 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10715 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10716 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10717 | } else { |
| 10718 | if (size) *size = 0; |
| 10719 | return NULL; |
| 10720 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10721 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10722 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10723 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10724 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 10725 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10726 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10727 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10728 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10729 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10730 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 10731 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10732 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10733 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10734 | return NULL; |
| 10735 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10736 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10737 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10738 | UPB_PRIVATE(_upb_Array_Set) |
| 10739 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10740 | return sub; |
| 10741 | } |
| 10742 | |
| 10743 | /* google.protobuf.MethodOptions */ |
| 10744 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10745 | UPB_INLINE google_protobuf_MethodOptions* google_protobuf_MethodOptions_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10746 | return (google_protobuf_MethodOptions*)_upb_Message_New(&google__protobuf__MethodOptions_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10747 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10748 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10750 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10751 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodOptions_msg_init, NULL, 0, arena) != |
| 10752 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10753 | return NULL; |
| 10754 | } |
| 10755 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10756 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10757 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10762 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__MethodOptions_msg_init, extreg, options, |
| 10763 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10764 | return NULL; |
| 10765 | } |
| 10766 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10767 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10768 | UPB_INLINE char* google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10769 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10770 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodOptions_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10771 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10772 | } |
| 10773 | UPB_INLINE char* google_protobuf_MethodOptions_serialize_ex(const google_protobuf_MethodOptions* msg, int options, |
| 10774 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10775 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10776 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__MethodOptions_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10777 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10778 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10779 | UPB_INLINE void google_protobuf_MethodOptions_clear_deprecated(google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10780 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10781 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10782 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10783 | UPB_INLINE bool google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10784 | bool default_val = false; |
| 10785 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10786 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10787 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10788 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10789 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10790 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10791 | UPB_INLINE bool google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10792 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10793 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10794 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10795 | UPB_INLINE void google_protobuf_MethodOptions_clear_idempotency_level(google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10796 | const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10797 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10798 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10799 | UPB_INLINE int32_t google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10800 | int32_t default_val = 0; |
| 10801 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10802 | const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10803 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10804 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10805 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10806 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10807 | UPB_INLINE bool google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10808 | const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10809 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10810 | } |
| 10811 | UPB_INLINE void google_protobuf_MethodOptions_clear_features(google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10812 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10813 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10814 | } |
| 10815 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10818 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10819 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10820 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10821 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10822 | return ret; |
| 10823 | } |
| 10824 | UPB_INLINE bool google_protobuf_MethodOptions_has_features(const google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10825 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 10826 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10827 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10828 | UPB_INLINE void google_protobuf_MethodOptions_clear_uninterpreted_option(google_protobuf_MethodOptions* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10829 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10830 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10831 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10832 | UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10833 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10834 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10835 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10836 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10837 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10838 | return (const google_protobuf_UninterpretedOption* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10839 | } else { |
| 10840 | if (size) *size = 0; |
| 10841 | return NULL; |
| 10842 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10843 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10844 | UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_upb_array(const google_protobuf_MethodOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10845 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10846 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10847 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10848 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10849 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10850 | } |
| 10851 | return arr; |
| 10852 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10853 | UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MethodOptions* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10854 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10855 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10856 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 10857 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10858 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10859 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10860 | } |
| 10861 | return arr; |
| 10862 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10863 | |
| 10864 | UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10865 | const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10866 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10867 | } |
| 10868 | UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10869 | const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10870 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10871 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10872 | UPB_INLINE void google_protobuf_MethodOptions_set_features(google_protobuf_MethodOptions *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10873 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10874 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 10875 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10876 | } |
| 10877 | UPB_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 Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10880 | sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 10881 | if (sub) google_protobuf_MethodOptions_set_features(msg, sub); |
| 10882 | } |
| 10883 | return sub; |
| 10884 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 10885 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10886 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10887 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10888 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10889 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10890 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10891 | return (google_protobuf_UninterpretedOption**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10892 | } else { |
| 10893 | if (size) *size = 0; |
| 10894 | return NULL; |
| 10895 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10896 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10897 | UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10898 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10899 | return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 10900 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10901 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10902 | UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10903 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10904 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10905 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 10906 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10907 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10908 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10909 | return NULL; |
| 10910 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10911 | struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10912 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10913 | UPB_PRIVATE(_upb_Array_Set) |
| 10914 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10915 | return sub; |
| 10916 | } |
| 10917 | |
| 10918 | /* google.protobuf.UninterpretedOption */ |
| 10919 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10920 | UPB_INLINE google_protobuf_UninterpretedOption* google_protobuf_UninterpretedOption_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 10921 | return (google_protobuf_UninterpretedOption*)_upb_Message_New(&google__protobuf__UninterpretedOption_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10922 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10923 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10925 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10926 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption_msg_init, NULL, 0, arena) != |
| 10927 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 10928 | return NULL; |
| 10929 | } |
| 10930 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10931 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10932 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10937 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption_msg_init, extreg, options, |
| 10938 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10939 | return NULL; |
| 10940 | } |
| 10941 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 10942 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10943 | UPB_INLINE char* google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10944 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10945 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10946 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10947 | } |
| 10948 | UPB_INLINE char* google_protobuf_UninterpretedOption_serialize_ex(const google_protobuf_UninterpretedOption* msg, int options, |
| 10949 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10950 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10951 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10952 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10953 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10954 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_name(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10955 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10956 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10957 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10958 | UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10959 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10960 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10961 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10962 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10963 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 10964 | return (const google_protobuf_UninterpretedOption_NamePart* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 10965 | } else { |
| 10966 | if (size) *size = 0; |
| 10967 | return NULL; |
| 10968 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 10969 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10970 | UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(const google_protobuf_UninterpretedOption* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10971 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10972 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10973 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10974 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10975 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10976 | } |
| 10977 | return arr; |
| 10978 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10979 | UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_array(google_protobuf_UninterpretedOption* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10980 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 10981 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10982 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 10983 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10984 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 10985 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 10986 | } |
| 10987 | return arr; |
| 10988 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 10989 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_identifier_value(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10990 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 10991 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 10992 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 10993 | UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10994 | upb_StringView default_val = upb_StringView_FromString(""); |
| 10995 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 10996 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 10997 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 10998 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 10999 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11000 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11001 | UPB_INLINE bool google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11002 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11003 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11004 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11005 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_positive_int_value(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11006 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11007 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11008 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11009 | UPB_INLINE uint64_t google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11010 | uint64_t default_val = (uint64_t)0ull; |
| 11011 | uint64_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11012 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11013 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11014 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11015 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11016 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11017 | UPB_INLINE bool google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11018 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11019 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11020 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11021 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_negative_int_value(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11022 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11023 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11024 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11025 | UPB_INLINE int64_t google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11026 | int64_t default_val = (int64_t)0ll; |
| 11027 | int64_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11028 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11029 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11030 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11031 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11032 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11033 | UPB_INLINE bool google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11034 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11035 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11036 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11037 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_double_value(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11038 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11039 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11040 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11041 | UPB_INLINE double google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11042 | double default_val = 0; |
| 11043 | double ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11044 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11045 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11046 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11047 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11048 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11049 | UPB_INLINE bool google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11050 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11051 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11052 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11053 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_string_value(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11054 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11055 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11056 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11057 | UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11058 | upb_StringView default_val = upb_StringView_FromString(""); |
| 11059 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11060 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11061 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11062 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11063 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11064 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11065 | UPB_INLINE bool google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11066 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11067 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11068 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11069 | UPB_INLINE void google_protobuf_UninterpretedOption_clear_aggregate_value(google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11070 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11071 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11072 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11073 | UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11074 | upb_StringView default_val = upb_StringView_FromString(""); |
| 11075 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11076 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11077 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11078 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11079 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11080 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11081 | UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11082 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11083 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11084 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11085 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11086 | UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11087 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11088 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11089 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11090 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11091 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11092 | return (google_protobuf_UninterpretedOption_NamePart**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11093 | } else { |
| 11094 | if (size) *size = 0; |
| 11095 | return NULL; |
| 11096 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11097 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11098 | UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11099 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11100 | return (google_protobuf_UninterpretedOption_NamePart**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 11101 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11102 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11103 | UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11104 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11105 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11106 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 11107 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11108 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11109 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11110 | return NULL; |
| 11111 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11112 | struct google_protobuf_UninterpretedOption_NamePart* sub = (struct google_protobuf_UninterpretedOption_NamePart*)_upb_Message_New(&google__protobuf__UninterpretedOption__NamePart_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11113 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11114 | UPB_PRIVATE(_upb_Array_Set) |
| 11115 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11116 | return sub; |
| 11117 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11118 | UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11119 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11120 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11121 | } |
| 11122 | UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11123 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11124 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11125 | } |
| 11126 | UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11127 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11128 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11129 | } |
| 11130 | UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11131 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11132 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11133 | } |
| 11134 | UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11135 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11136 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11137 | } |
| 11138 | UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11139 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11140 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11141 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11142 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11143 | /* google.protobuf.UninterpretedOption.NamePart */ |
| 11144 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11145 | UPB_INLINE google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_NamePart_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11146 | return (google_protobuf_UninterpretedOption_NamePart*)_upb_Message_New(&google__protobuf__UninterpretedOption__NamePart_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11147 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11148 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 11150 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11151 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption__NamePart_msg_init, NULL, 0, arena) != |
| 11152 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 11153 | return NULL; |
| 11154 | } |
| 11155 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11156 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11157 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11162 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__UninterpretedOption__NamePart_msg_init, extreg, options, |
| 11163 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11164 | return NULL; |
| 11165 | } |
| 11166 | return ret; |
| 11167 | } |
| 11168 | UPB_INLINE char* google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11169 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11170 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption__NamePart_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11171 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11172 | } |
| 11173 | UPB_INLINE char* google_protobuf_UninterpretedOption_NamePart_serialize_ex(const google_protobuf_UninterpretedOption_NamePart* msg, int options, |
| 11174 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11175 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11176 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__UninterpretedOption__NamePart_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11177 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11178 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11179 | UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_clear_name_part(google_protobuf_UninterpretedOption_NamePart* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11180 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11181 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11182 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11183 | UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11184 | upb_StringView default_val = upb_StringView_FromString(""); |
| 11185 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11186 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11187 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11188 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11189 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11190 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11191 | UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11192 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11193 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11194 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11195 | UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_clear_is_extension(google_protobuf_UninterpretedOption_NamePart* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11196 | const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11197 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11198 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11199 | UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11200 | bool default_val = false; |
| 11201 | bool ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11202 | const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11203 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11204 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11205 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11206 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11207 | UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11208 | const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11209 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11210 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11211 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11212 | UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11213 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11214 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11215 | } |
| 11216 | UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11217 | const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11218 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11219 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11220 | |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11221 | /* google.protobuf.FeatureSet */ |
| 11222 | |
| 11223 | UPB_INLINE google_protobuf_FeatureSet* google_protobuf_FeatureSet_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11224 | return (google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11225 | } |
| 11226 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11229 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSet_msg_init, NULL, 0, arena) != |
| 11230 | kUpb_DecodeStatus_Ok) { |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11231 | return NULL; |
| 11232 | } |
| 11233 | return ret; |
| 11234 | } |
| 11235 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11240 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSet_msg_init, extreg, options, |
| 11241 | arena) != kUpb_DecodeStatus_Ok) { |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11242 | return NULL; |
| 11243 | } |
| 11244 | return ret; |
| 11245 | } |
| 11246 | UPB_INLINE char* google_protobuf_FeatureSet_serialize(const google_protobuf_FeatureSet* msg, upb_Arena* arena, size_t* len) { |
| 11247 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11248 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSet_msg_init, 0, arena, &ptr, len); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11249 | return ptr; |
| 11250 | } |
| 11251 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11254 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSet_msg_init, options, arena, &ptr, len); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11255 | return ptr; |
| 11256 | } |
| 11257 | UPB_INLINE void google_protobuf_FeatureSet_clear_field_presence(google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11258 | const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11259 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11260 | } |
| 11261 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11264 | const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11265 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11266 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11267 | return ret; |
| 11268 | } |
| 11269 | UPB_INLINE bool google_protobuf_FeatureSet_has_field_presence(const google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11270 | const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11271 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11272 | } |
| 11273 | UPB_INLINE void google_protobuf_FeatureSet_clear_enum_type(google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11274 | const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11275 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11276 | } |
| 11277 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11280 | const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11281 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11282 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11283 | return ret; |
| 11284 | } |
| 11285 | UPB_INLINE bool google_protobuf_FeatureSet_has_enum_type(const google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11286 | const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11287 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11288 | } |
| 11289 | UPB_INLINE void google_protobuf_FeatureSet_clear_repeated_field_encoding(google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11290 | const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11291 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11292 | } |
| 11293 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11296 | const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11297 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11298 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11299 | return ret; |
| 11300 | } |
| 11301 | UPB_INLINE bool google_protobuf_FeatureSet_has_repeated_field_encoding(const google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11302 | const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11303 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11304 | } |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 11305 | UPB_INLINE void google_protobuf_FeatureSet_clear_utf8_validation(google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11306 | const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11307 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 11308 | } |
| 11309 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11312 | const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11313 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11314 | &default_val, &ret); |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 11315 | return ret; |
| 11316 | } |
| 11317 | UPB_INLINE bool google_protobuf_FeatureSet_has_utf8_validation(const google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11318 | const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11319 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 11320 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11321 | UPB_INLINE void google_protobuf_FeatureSet_clear_message_encoding(google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11322 | const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11323 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11324 | } |
| 11325 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11328 | const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11329 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11330 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11331 | return ret; |
| 11332 | } |
| 11333 | UPB_INLINE bool google_protobuf_FeatureSet_has_message_encoding(const google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11334 | const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11335 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11336 | } |
| 11337 | UPB_INLINE void google_protobuf_FeatureSet_clear_json_format(google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11338 | const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11339 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11340 | } |
| 11341 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11344 | const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11345 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11346 | &default_val, &ret); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11347 | return ret; |
| 11348 | } |
| 11349 | UPB_INLINE bool google_protobuf_FeatureSet_has_json_format(const google_protobuf_FeatureSet* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11350 | const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11351 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11352 | } |
| 11353 | |
| 11354 | UPB_INLINE void google_protobuf_FeatureSet_set_field_presence(google_protobuf_FeatureSet *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11355 | const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11356 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11357 | } |
| 11358 | UPB_INLINE void google_protobuf_FeatureSet_set_enum_type(google_protobuf_FeatureSet *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11359 | const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11360 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11361 | } |
| 11362 | UPB_INLINE void google_protobuf_FeatureSet_set_repeated_field_encoding(google_protobuf_FeatureSet *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11363 | const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11364 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11365 | } |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 11366 | UPB_INLINE void google_protobuf_FeatureSet_set_utf8_validation(google_protobuf_FeatureSet *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11367 | const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11368 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 6112795 | 2023-09-26 20:07:33 +0000 | [diff] [blame] | 11369 | } |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11370 | UPB_INLINE void google_protobuf_FeatureSet_set_message_encoding(google_protobuf_FeatureSet *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11371 | const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11372 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11373 | } |
| 11374 | UPB_INLINE void google_protobuf_FeatureSet_set_json_format(google_protobuf_FeatureSet *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11375 | const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11376 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 4f9e417 | 2023-06-30 20:14:50 -0700 | [diff] [blame] | 11377 | } |
| 11378 | |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11379 | /* google.protobuf.FeatureSetDefaults */ |
| 11380 | |
| 11381 | UPB_INLINE google_protobuf_FeatureSetDefaults* google_protobuf_FeatureSetDefaults_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11382 | return (google_protobuf_FeatureSetDefaults*)_upb_Message_New(&google__protobuf__FeatureSetDefaults_msg_init, arena); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11383 | } |
| 11384 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11387 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults_msg_init, NULL, 0, arena) != |
| 11388 | kUpb_DecodeStatus_Ok) { |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11389 | return NULL; |
| 11390 | } |
| 11391 | return ret; |
| 11392 | } |
| 11393 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11398 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults_msg_init, extreg, options, |
| 11399 | arena) != kUpb_DecodeStatus_Ok) { |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11400 | return NULL; |
| 11401 | } |
| 11402 | return ret; |
| 11403 | } |
| 11404 | UPB_INLINE char* google_protobuf_FeatureSetDefaults_serialize(const google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena, size_t* len) { |
| 11405 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11406 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults_msg_init, 0, arena, &ptr, len); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11407 | return ptr; |
| 11408 | } |
| 11409 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11412 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults_msg_init, options, arena, &ptr, len); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11413 | return ptr; |
| 11414 | } |
| 11415 | UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_defaults(google_protobuf_FeatureSetDefaults* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11416 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11417 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11418 | } |
| 11419 | UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const* google_protobuf_FeatureSetDefaults_defaults(const google_protobuf_FeatureSetDefaults* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11420 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11421 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11422 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11423 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11424 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11425 | return (const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const*)upb_Array_DataPtr(arr); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11426 | } else { |
| 11427 | if (size) *size = 0; |
| 11428 | return NULL; |
| 11429 | } |
| 11430 | } |
| 11431 | UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_array(const google_protobuf_FeatureSetDefaults* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11432 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11433 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11434 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11435 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11436 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11437 | } |
| 11438 | return arr; |
| 11439 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11440 | UPB_INLINE upb_Array* _google_protobuf_FeatureSetDefaults_defaults_mutable_upb_array(google_protobuf_FeatureSetDefaults* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11441 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11442 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11443 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 11444 | &field, arena); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11445 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11446 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11447 | } |
| 11448 | return arr; |
| 11449 | } |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11450 | UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_minimum_edition(google_protobuf_FeatureSetDefaults* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11451 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11452 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11453 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11454 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11457 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11458 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11459 | &default_val, &ret); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11460 | return ret; |
| 11461 | } |
| 11462 | UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_minimum_edition(const google_protobuf_FeatureSetDefaults* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11463 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11464 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11465 | } |
| 11466 | UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_maximum_edition(google_protobuf_FeatureSetDefaults* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11467 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11468 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11469 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11470 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11473 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11474 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11475 | &default_val, &ret); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11476 | return ret; |
| 11477 | } |
| 11478 | UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_maximum_edition(const google_protobuf_FeatureSetDefaults* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11479 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11480 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11481 | } |
| 11482 | |
| 11483 | UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_mutable_defaults(google_protobuf_FeatureSetDefaults* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11484 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11485 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11486 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11487 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11488 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11489 | return (google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault**)upb_Array_MutableDataPtr(arr); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11490 | } else { |
| 11491 | if (size) *size = 0; |
| 11492 | return NULL; |
| 11493 | } |
| 11494 | } |
| 11495 | UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_resize_defaults(google_protobuf_FeatureSetDefaults* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11496 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11497 | return (google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 11498 | &field, size, arena); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11499 | } |
| 11500 | UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_add_defaults(google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11501 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11502 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11503 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 11504 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11505 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11506 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11507 | return NULL; |
| 11508 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11509 | struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* sub = (struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault*)_upb_Message_New(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, arena); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11510 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11511 | UPB_PRIVATE(_upb_Array_Set) |
| 11512 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11513 | return sub; |
| 11514 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11515 | UPB_INLINE void google_protobuf_FeatureSetDefaults_set_minimum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11516 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11517 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11518 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11519 | UPB_INLINE void google_protobuf_FeatureSetDefaults_set_maximum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11520 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11521 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11522 | } |
| 11523 | |
| 11524 | /* google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault */ |
| 11525 | |
| 11526 | UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11527 | return (google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault*)_upb_Message_New(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, arena); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11528 | } |
| 11529 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11532 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, NULL, 0, arena) != |
| 11533 | kUpb_DecodeStatus_Ok) { |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11534 | return NULL; |
| 11535 | } |
| 11536 | return ret; |
| 11537 | } |
| 11538 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11543 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, extreg, options, |
| 11544 | arena) != kUpb_DecodeStatus_Ok) { |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11545 | return NULL; |
| 11546 | } |
| 11547 | return ret; |
| 11548 | } |
| 11549 | UPB_INLINE char* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_serialize(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena, size_t* len) { |
| 11550 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11551 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, 0, arena, &ptr, len); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11552 | return ptr; |
| 11553 | } |
| 11554 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11557 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, options, arena, &ptr, len); |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11558 | return ptr; |
| 11559 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11560 | UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11561 | const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11562 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 11563 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11564 | UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 11565 | int32_t default_val = 0; |
| 11566 | int32_t ret; |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11567 | const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11568 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11569 | &default_val, &ret); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 11570 | return ret; |
| 11571 | } |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11572 | UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11573 | const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11574 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
| 11575 | } |
| 11576 | UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11577 | 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 Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11578 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
| 11579 | } |
| 11580 | UPB_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 Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11583 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11584 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11585 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11586 | &default_val, &ret); |
| 11587 | return ret; |
| 11588 | } |
| 11589 | UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11590 | 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 Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11591 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
| 11592 | } |
| 11593 | UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11594 | 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 Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11595 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
| 11596 | } |
| 11597 | UPB_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 Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11600 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11601 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11602 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11603 | &default_val, &ret); |
| 11604 | return ret; |
| 11605 | } |
| 11606 | UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11607 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11608 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 11609 | } |
Mike Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11610 | |
Protobuf Team Bot | ab58f8f | 2023-09-26 16:14:19 +0000 | [diff] [blame] | 11611 | UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, int32_t value) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11612 | const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)}; |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11613 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | fa98bb3 | 2023-09-01 18:11:09 +0000 | [diff] [blame] | 11614 | } |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11615 | UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11616 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11617 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11618 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11619 | } |
| 11620 | UPB_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 | } |
| 11628 | UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) { |
Protobuf Team Bot | 6afdd5a | 2024-04-17 22:09:39 +0000 | [diff] [blame] | 11629 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11630 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init); |
Protobuf Team Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11631 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Protobuf Team Bot | 85edb7e | 2024-04-03 02:43:54 +0000 | [diff] [blame] | 11632 | } |
| 11633 | UPB_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 Kruskal | ba96470 | 2023-08-22 17:37:48 -0700 | [diff] [blame] | 11641 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11642 | /* google.protobuf.SourceCodeInfo */ |
| 11643 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11644 | UPB_INLINE google_protobuf_SourceCodeInfo* google_protobuf_SourceCodeInfo_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11645 | return (google_protobuf_SourceCodeInfo*)_upb_Message_New(&google__protobuf__SourceCodeInfo_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11646 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11647 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 11649 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11650 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo_msg_init, NULL, 0, arena) != |
| 11651 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 11652 | return NULL; |
| 11653 | } |
| 11654 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11655 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11656 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11661 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo_msg_init, extreg, options, |
| 11662 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11663 | return NULL; |
| 11664 | } |
| 11665 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11666 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11667 | UPB_INLINE char* google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11668 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11669 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11670 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11671 | } |
| 11672 | UPB_INLINE char* google_protobuf_SourceCodeInfo_serialize_ex(const google_protobuf_SourceCodeInfo* msg, int options, |
| 11673 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11674 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11675 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11676 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11677 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11678 | UPB_INLINE void google_protobuf_SourceCodeInfo_clear_location(google_protobuf_SourceCodeInfo* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11679 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11680 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11681 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11682 | UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11683 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11684 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11685 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11686 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11687 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11688 | return (const google_protobuf_SourceCodeInfo_Location* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11689 | } else { |
| 11690 | if (size) *size = 0; |
| 11691 | return NULL; |
| 11692 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11693 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11694 | UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(const google_protobuf_SourceCodeInfo* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11695 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11696 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11697 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11698 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11699 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11700 | } |
| 11701 | return arr; |
| 11702 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11703 | UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array(google_protobuf_SourceCodeInfo* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11704 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11705 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11706 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 11707 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11708 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11709 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11710 | } |
| 11711 | return arr; |
| 11712 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11713 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11714 | UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11715 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11716 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11717 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11718 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11719 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11720 | return (google_protobuf_SourceCodeInfo_Location**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11721 | } else { |
| 11722 | if (size) *size = 0; |
| 11723 | return NULL; |
| 11724 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11725 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11726 | UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11727 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11728 | return (google_protobuf_SourceCodeInfo_Location**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 11729 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11730 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11731 | UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11732 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 11733 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11734 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 11735 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11736 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11737 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11738 | return NULL; |
| 11739 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11740 | struct google_protobuf_SourceCodeInfo_Location* sub = (struct google_protobuf_SourceCodeInfo_Location*)_upb_Message_New(&google__protobuf__SourceCodeInfo__Location_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11741 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11742 | UPB_PRIVATE(_upb_Array_Set) |
| 11743 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11744 | return sub; |
| 11745 | } |
| 11746 | |
| 11747 | /* google.protobuf.SourceCodeInfo.Location */ |
| 11748 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11749 | UPB_INLINE google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_Location_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 11750 | return (google_protobuf_SourceCodeInfo_Location*)_upb_Message_New(&google__protobuf__SourceCodeInfo__Location_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11751 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11752 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 11754 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11755 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo__Location_msg_init, NULL, 0, arena) != |
| 11756 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 11757 | return NULL; |
| 11758 | } |
| 11759 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11760 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11761 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11766 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__SourceCodeInfo__Location_msg_init, extreg, options, |
| 11767 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11768 | return NULL; |
| 11769 | } |
| 11770 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11771 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11772 | UPB_INLINE char* google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11773 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11774 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo__Location_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11775 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11776 | } |
| 11777 | UPB_INLINE char* google_protobuf_SourceCodeInfo_Location_serialize_ex(const google_protobuf_SourceCodeInfo_Location* msg, int options, |
| 11778 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11779 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11780 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__SourceCodeInfo__Location_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11781 | return ptr; |
| 11782 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11783 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_path(google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11784 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11785 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11786 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11787 | UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11788 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11789 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11790 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11791 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11792 | return (int32_t const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11793 | } else { |
| 11794 | if (size) *size = 0; |
| 11795 | return NULL; |
| 11796 | } |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11797 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11798 | UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_path_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11799 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11800 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11801 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11802 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11803 | } |
| 11804 | return arr; |
| 11805 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11806 | UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_path_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11807 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11808 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 11809 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11810 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11811 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11812 | } |
| 11813 | return arr; |
| 11814 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11815 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_span(google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11816 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11817 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11818 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11819 | UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11820 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11821 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11822 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11823 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11824 | return (int32_t const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11825 | } else { |
| 11826 | if (size) *size = 0; |
| 11827 | return NULL; |
| 11828 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11829 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11830 | UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_span_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11831 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11832 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11833 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11834 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11835 | } |
| 11836 | return arr; |
| 11837 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11838 | UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_span_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11839 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11840 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 11841 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11842 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11843 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11844 | } |
| 11845 | return arr; |
| 11846 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11847 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_leading_comments(google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11848 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11849 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11850 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11851 | UPB_INLINE upb_StringView google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11852 | upb_StringView default_val = upb_StringView_FromString(""); |
| 11853 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11854 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11855 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11856 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11857 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11858 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11859 | UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11860 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11861 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11862 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11863 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_trailing_comments(google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11864 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11865 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11866 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11867 | UPB_INLINE upb_StringView google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11868 | upb_StringView default_val = upb_StringView_FromString(""); |
| 11869 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11870 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11871 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 11872 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 11873 | return ret; |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 11874 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11875 | UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11876 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 11877 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 11878 | } |
| 11879 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11880 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 11881 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11882 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11883 | UPB_INLINE upb_StringView const* google_protobuf_SourceCodeInfo_Location_leading_detached_comments(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11884 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11885 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11886 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11887 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11888 | return (upb_StringView const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11889 | } else { |
| 11890 | if (size) *size = 0; |
| 11891 | return NULL; |
| 11892 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11893 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11894 | UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_leading_detached_comments_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11895 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11896 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11897 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11898 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11899 | } |
| 11900 | return arr; |
| 11901 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11902 | UPB_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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11903 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11904 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 11905 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11906 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11907 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 11908 | } |
| 11909 | return arr; |
| 11910 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11911 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11912 | UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11913 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11914 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11915 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11916 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11917 | return (int32_t*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11918 | } else { |
| 11919 | if (size) *size = 0; |
| 11920 | return NULL; |
| 11921 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11922 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11923 | UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11924 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11925 | return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 11926 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11927 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11928 | UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location* msg, int32_t val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11929 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11930 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 11931 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11932 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11933 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11934 | return false; |
| 11935 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11936 | UPB_PRIVATE(_upb_Array_Set) |
| 11937 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11938 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11939 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11940 | UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11941 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11942 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11943 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11944 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11945 | return (int32_t*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11946 | } else { |
| 11947 | if (size) *size = 0; |
| 11948 | return NULL; |
| 11949 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11950 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11951 | UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11952 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11953 | return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 11954 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11955 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11956 | UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location* msg, int32_t val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11957 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11958 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 11959 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11960 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11961 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11962 | return false; |
| 11963 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11964 | UPB_PRIVATE(_upb_Array_Set) |
| 11965 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11966 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11967 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 11968 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11969 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11970 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11971 | } |
| 11972 | UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11973 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 11974 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 11975 | } |
| 11976 | UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11977 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11978 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11979 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11980 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11981 | return (upb_StringView*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11982 | } else { |
| 11983 | if (size) *size = 0; |
| 11984 | return NULL; |
| 11985 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11986 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11987 | UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11988 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11989 | return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 11990 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 11991 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 11992 | UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, upb_StringView val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 11993 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 11994 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 11995 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 11996 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 11997 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 11998 | return false; |
| 11999 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12000 | UPB_PRIVATE(_upb_Array_Set) |
| 12001 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12002 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12003 | } |
| 12004 | |
| 12005 | /* google.protobuf.GeneratedCodeInfo */ |
| 12006 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12007 | UPB_INLINE google_protobuf_GeneratedCodeInfo* google_protobuf_GeneratedCodeInfo_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 12008 | return (google_protobuf_GeneratedCodeInfo*)_upb_Message_New(&google__protobuf__GeneratedCodeInfo_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12009 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12010 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 12012 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12013 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo_msg_init, NULL, 0, arena) != |
| 12014 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 12015 | return NULL; |
| 12016 | } |
| 12017 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12018 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12019 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12024 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo_msg_init, extreg, options, |
| 12025 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12026 | return NULL; |
| 12027 | } |
| 12028 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12029 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12030 | UPB_INLINE char* google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12031 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12032 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12033 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12034 | } |
| 12035 | UPB_INLINE char* google_protobuf_GeneratedCodeInfo_serialize_ex(const google_protobuf_GeneratedCodeInfo* msg, int options, |
| 12036 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12037 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12038 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12039 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12040 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12041 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_clear_annotation(google_protobuf_GeneratedCodeInfo* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12042 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12043 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12044 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12045 | UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12046 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 12047 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12048 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12049 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12050 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 12051 | return (const google_protobuf_GeneratedCodeInfo_Annotation* const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12052 | } else { |
| 12053 | if (size) *size = 0; |
| 12054 | return NULL; |
| 12055 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 12056 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12057 | UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_array(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12058 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 12059 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12060 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12061 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12062 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12063 | } |
| 12064 | return arr; |
| 12065 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12066 | UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_array(google_protobuf_GeneratedCodeInfo* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12067 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 12068 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12069 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 12070 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12071 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12072 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12073 | } |
| 12074 | return arr; |
| 12075 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12076 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12077 | UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12078 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 12079 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12080 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12081 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12082 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 12083 | return (google_protobuf_GeneratedCodeInfo_Annotation**)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12084 | } else { |
| 12085 | if (size) *size = 0; |
| 12086 | return NULL; |
| 12087 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12088 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12089 | UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12090 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12091 | return (google_protobuf_GeneratedCodeInfo_Annotation**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 12092 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12093 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 12094 | UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12095 | 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 Bot | a9387b5 | 2024-06-12 15:17:52 +0000 | [diff] [blame] | 12096 | UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init); |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12097 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 12098 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 12099 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12100 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12101 | return NULL; |
| 12102 | } |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 12103 | struct google_protobuf_GeneratedCodeInfo_Annotation* sub = (struct google_protobuf_GeneratedCodeInfo_Annotation*)_upb_Message_New(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init, arena); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12104 | if (!arr || !sub) return NULL; |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12105 | UPB_PRIVATE(_upb_Array_Set) |
| 12106 | (arr, arr->UPB_PRIVATE(size) - 1, &sub, sizeof(sub)); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12107 | return sub; |
| 12108 | } |
| 12109 | |
| 12110 | /* google.protobuf.GeneratedCodeInfo.Annotation */ |
| 12111 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12112 | UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_Annotation_new(upb_Arena* arena) { |
Protobuf Team Bot | 4ffe086 | 2023-12-06 02:02:36 +0000 | [diff] [blame] | 12113 | return (google_protobuf_GeneratedCodeInfo_Annotation*)_upb_Message_New(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12114 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12115 | UPB_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 Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 12117 | if (!ret) return NULL; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12118 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, NULL, 0, arena) != |
| 12119 | kUpb_DecodeStatus_Ok) { |
Joshua Haberman | 9d578a3 | 2021-08-02 15:32:01 -0700 | [diff] [blame] | 12120 | return NULL; |
| 12121 | } |
| 12122 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12123 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12124 | UPB_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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12129 | if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, extreg, options, |
| 12130 | arena) != kUpb_DecodeStatus_Ok) { |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12131 | return NULL; |
| 12132 | } |
| 12133 | return ret; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12134 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12135 | UPB_INLINE char* google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation* msg, upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12136 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12137 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, 0, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12138 | return ptr; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12139 | } |
| 12140 | UPB_INLINE char* google_protobuf_GeneratedCodeInfo_Annotation_serialize_ex(const google_protobuf_GeneratedCodeInfo_Annotation* msg, int options, |
| 12141 | upb_Arena* arena, size_t* len) { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12142 | char* ptr; |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12143 | (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__GeneratedCodeInfo__Annotation_msg_init, options, arena, &ptr, len); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12144 | return ptr; |
| 12145 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12146 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_path(google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12147 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12148 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12149 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12150 | UPB_INLINE int32_t const* google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12151 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12152 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12153 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12154 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 12155 | return (int32_t const*)upb_Array_DataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12156 | } else { |
| 12157 | if (size) *size = 0; |
| 12158 | return NULL; |
| 12159 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 12160 | } |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12161 | UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_upb_array(const google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12162 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12163 | const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12164 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12165 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12166 | } |
| 12167 | return arr; |
| 12168 | } |
Protobuf Team Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12169 | UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_mutable_upb_array(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12170 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12171 | upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg), |
| 12172 | &field, arena); |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12173 | if (size) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12174 | *size = arr ? arr->UPB_PRIVATE(size) : 0; |
Deanna Garcia | b26afb5 | 2023-04-25 13:37:18 -0700 | [diff] [blame] | 12175 | } |
| 12176 | return arr; |
| 12177 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12178 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_source_file(google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12179 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12180 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12181 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12182 | UPB_INLINE upb_StringView google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12183 | upb_StringView default_val = upb_StringView_FromString(""); |
| 12184 | upb_StringView ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12185 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12186 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 12187 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12188 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12189 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12190 | UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12191 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 12192 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 12193 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12194 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_begin(google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12195 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12196 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12197 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12198 | UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12199 | int32_t default_val = (int32_t)0; |
| 12200 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12201 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12202 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 12203 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12204 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12205 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12206 | UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12207 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 12208 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 12209 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12210 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_end(google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12211 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12212 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12213 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12214 | UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12215 | int32_t default_val = (int32_t)0; |
| 12216 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12217 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12218 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 12219 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12220 | return ret; |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12221 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12222 | UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12223 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 12224 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12225 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12226 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_semantic(google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12227 | 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 Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12228 | upb_Message_ClearBaseField(UPB_UPCAST(msg), &field); |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12229 | } |
| 12230 | UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_semantic(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12231 | int32_t default_val = 0; |
| 12232 | int32_t ret; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12233 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12234 | _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field, |
| 12235 | &default_val, &ret); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12236 | return ret; |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12237 | } |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12238 | UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_semantic(const google_protobuf_GeneratedCodeInfo_Annotation* msg) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12239 | 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 Bot | 8c1f635 | 2024-01-10 05:18:15 +0000 | [diff] [blame] | 12240 | return upb_Message_HasBaseField(UPB_UPCAST(msg), &field); |
Mike Kruskal | 3bc5049 | 2022-12-01 13:34:12 -0800 | [diff] [blame] | 12241 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12242 | |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12243 | UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12244 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12245 | upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12246 | if (arr) { |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12247 | if (size) *size = arr->UPB_PRIVATE(size); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 12248 | return (int32_t*)upb_Array_MutableDataPtr(arr); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12249 | } else { |
| 12250 | if (size) *size = 0; |
| 12251 | return NULL; |
| 12252 | } |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12253 | } |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12254 | UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t size, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12255 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12256 | return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg), |
| 12257 | &field, size, arena); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12258 | } |
Joshua Haberman | 7ecf43f | 2022-03-14 13:11:29 -0700 | [diff] [blame] | 12259 | UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, int32_t val, upb_Arena* arena) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12260 | 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 Bot | 4a8f21e | 2023-12-21 16:23:10 +0000 | [diff] [blame] | 12261 | upb_Array* arr = upb_Message_GetOrCreateMutableArray( |
| 12262 | UPB_UPCAST(msg), &field, arena); |
Protobuf Team Bot | 81e5433 | 2024-01-11 21:04:07 +0000 | [diff] [blame] | 12263 | if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)( |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12264 | arr, arr->UPB_PRIVATE(size) + 1, arena)) { |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12265 | return false; |
| 12266 | } |
Protobuf Team Bot | f73985a | 2023-12-19 00:14:19 +0000 | [diff] [blame] | 12267 | UPB_PRIVATE(_upb_Array_Set) |
| 12268 | (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val)); |
Eric Salo | b7d54ac | 2022-12-29 11:59:42 -0800 | [diff] [blame] | 12269 | return true; |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12270 | } |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12271 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_StringView value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12272 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 12273 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12274 | } |
| 12275 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12276 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 12277 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12278 | } |
| 12279 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12280 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 12281 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12282 | } |
| 12283 | UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_semantic(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12284 | 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 Bot | ac32c97 | 2024-04-10 03:30:05 +0000 | [diff] [blame] | 12285 | upb_Message_SetBaseField((upb_Message *)msg, &field, &value); |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12286 | } |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12287 | |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12288 | /* Max size 32 is google.protobuf.FileOptions */ |
| 12289 | /* Max size 64 is google.protobuf.FileOptions */ |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 12290 | #define _UPB_MAXOPT_SIZE UPB_SIZE(112, 200) |
Joshua Haberman | f41049a | 2022-01-21 14:41:25 -0800 | [diff] [blame] | 12291 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12292 | #ifdef __cplusplus |
| 12293 | } /* extern "C" */ |
| 12294 | #endif |
| 12295 | |
| 12296 | |
| 12297 | #endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ */ |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12298 | // end:github_only |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12299 | |
Protobuf Team Bot | 7dabac9 | 2023-09-07 18:35:50 +0000 | [diff] [blame] | 12300 | typedef enum { |
| 12301 | kUpb_Syntax_Proto2 = 2, |
| 12302 | kUpb_Syntax_Proto3 = 3, |
| 12303 | kUpb_Syntax_Editions = 99 |
| 12304 | } upb_Syntax; |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12305 | |
| 12306 | // Forward declarations for circular references. |
| 12307 | typedef struct upb_DefPool upb_DefPool; |
| 12308 | typedef struct upb_EnumDef upb_EnumDef; |
| 12309 | typedef struct upb_EnumReservedRange upb_EnumReservedRange; |
| 12310 | typedef struct upb_EnumValueDef upb_EnumValueDef; |
| 12311 | typedef struct upb_ExtensionRange upb_ExtensionRange; |
| 12312 | typedef struct upb_FieldDef upb_FieldDef; |
| 12313 | typedef struct upb_FileDef upb_FileDef; |
| 12314 | typedef struct upb_MessageDef upb_MessageDef; |
| 12315 | typedef struct upb_MessageReservedRange upb_MessageReservedRange; |
| 12316 | typedef struct upb_MethodDef upb_MethodDef; |
| 12317 | typedef struct upb_OneofDef upb_OneofDef; |
| 12318 | typedef struct upb_ServiceDef upb_ServiceDef; |
| 12319 | |
| 12320 | // EVERYTHING BELOW THIS LINE IS INTERNAL - DO NOT USE ///////////////////////// |
| 12321 | |
| 12322 | typedef 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. |
| 12333 | typedef 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12346 | } upb_deftype_t; |
| 12347 | |
| 12348 | #ifdef __cplusplus |
| 12349 | extern "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). |
| 12360 | UPB_INLINE void _upb_DefType_CheckPadding(size_t size) { |
| 12361 | UPB_ASSERT((size & UPB_DEFTYPE_MASK) == 0); |
| 12362 | } |
| 12363 | |
| 12364 | upb_deftype_t _upb_DefType_Type(upb_value v); |
| 12365 | |
| 12366 | upb_value _upb_DefType_Pack(const void* ptr, upb_deftype_t type); |
| 12367 | |
| 12368 | const 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 |
| 12380 | extern "C" { |
| 12381 | #endif |
| 12382 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12383 | UPB_API void upb_DefPool_Free(upb_DefPool* s); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12384 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12385 | UPB_API upb_DefPool* upb_DefPool_New(void); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12386 | |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12387 | UPB_API const UPB_DESC(FeatureSetDefaults) * |
| 12388 | upb_DefPool_FeatureSetDefaults(const upb_DefPool* s); |
| 12389 | |
Protobuf Team Bot | c6b149c | 2023-11-10 23:37:46 +0000 | [diff] [blame] | 12390 | UPB_API bool upb_DefPool_SetFeatureSetDefaults(upb_DefPool* s, |
| 12391 | const char* serialized_defaults, |
| 12392 | size_t serialized_len, |
| 12393 | upb_Status* status); |
| 12394 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12395 | UPB_API const upb_MessageDef* upb_DefPool_FindMessageByName( |
| 12396 | const upb_DefPool* s, const char* sym); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12397 | |
| 12398 | const upb_MessageDef* upb_DefPool_FindMessageByNameWithSize( |
| 12399 | const upb_DefPool* s, const char* sym, size_t len); |
| 12400 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12401 | UPB_API const upb_EnumDef* upb_DefPool_FindEnumByName(const upb_DefPool* s, |
| 12402 | const char* sym); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12403 | |
| 12404 | const upb_EnumValueDef* upb_DefPool_FindEnumByNameval(const upb_DefPool* s, |
| 12405 | const char* sym); |
| 12406 | |
| 12407 | const upb_FileDef* upb_DefPool_FindFileByName(const upb_DefPool* s, |
| 12408 | const char* name); |
| 12409 | |
| 12410 | const upb_FileDef* upb_DefPool_FindFileByNameWithSize(const upb_DefPool* s, |
| 12411 | const char* name, |
| 12412 | size_t len); |
| 12413 | |
| 12414 | const upb_FieldDef* upb_DefPool_FindExtensionByMiniTable( |
| 12415 | const upb_DefPool* s, const upb_MiniTableExtension* ext); |
| 12416 | |
Protobuf Team Bot | 8aad058 | 2023-11-14 23:47:47 +0000 | [diff] [blame] | 12417 | UPB_API const upb_FieldDef* upb_DefPool_FindExtensionByName(const upb_DefPool* s, |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12418 | const char* sym); |
| 12419 | |
| 12420 | const upb_FieldDef* upb_DefPool_FindExtensionByNameWithSize( |
| 12421 | const upb_DefPool* s, const char* name, size_t size); |
| 12422 | |
| 12423 | const upb_FieldDef* upb_DefPool_FindExtensionByNumber(const upb_DefPool* s, |
| 12424 | const upb_MessageDef* m, |
| 12425 | int32_t fieldnum); |
| 12426 | |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12427 | UPB_API const upb_ServiceDef* upb_DefPool_FindServiceByName( |
| 12428 | const upb_DefPool* s, const char* name); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12429 | |
| 12430 | const upb_ServiceDef* upb_DefPool_FindServiceByNameWithSize( |
| 12431 | const upb_DefPool* s, const char* name, size_t size); |
| 12432 | |
| 12433 | const upb_FileDef* upb_DefPool_FindFileContainingSymbol(const upb_DefPool* s, |
| 12434 | const char* name); |
| 12435 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12436 | UPB_API const upb_FileDef* upb_DefPool_AddFile( |
| 12437 | upb_DefPool* s, const UPB_DESC(FileDescriptorProto) * file_proto, |
| 12438 | upb_Status* status); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12439 | |
Protobuf Team Bot | 8aad058 | 2023-11-14 23:47:47 +0000 | [diff] [blame] | 12440 | UPB_API const upb_ExtensionRegistry* upb_DefPool_ExtensionRegistry( |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12441 | const upb_DefPool* s); |
| 12442 | |
| 12443 | const 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 Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12454 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12455 | |
| 12456 | #ifndef UPB_REFLECTION_ENUM_DEF_H_ |
| 12457 | #define UPB_REFLECTION_ENUM_DEF_H_ |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12458 | |
| 12459 | |
| 12460 | // Must be last. |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12461 | |
| 12462 | #ifdef __cplusplus |
| 12463 | extern "C" { |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 12464 | #endif |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 12465 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12466 | bool upb_EnumDef_CheckNumber(const upb_EnumDef* e, int32_t num); |
| 12467 | const upb_MessageDef* upb_EnumDef_ContainingType(const upb_EnumDef* e); |
| 12468 | int32_t upb_EnumDef_Default(const upb_EnumDef* e); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12469 | UPB_API const upb_FileDef* upb_EnumDef_File(const upb_EnumDef* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12470 | const upb_EnumValueDef* upb_EnumDef_FindValueByName(const upb_EnumDef* e, |
| 12471 | const char* name); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12472 | UPB_API const upb_EnumValueDef* upb_EnumDef_FindValueByNameWithSize( |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12473 | const upb_EnumDef* e, const char* name, size_t size); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12474 | UPB_API const upb_EnumValueDef* upb_EnumDef_FindValueByNumber( |
| 12475 | const upb_EnumDef* e, int32_t num); |
| 12476 | UPB_API const char* upb_EnumDef_FullName(const upb_EnumDef* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12477 | bool upb_EnumDef_HasOptions(const upb_EnumDef* e); |
| 12478 | bool upb_EnumDef_IsClosed(const upb_EnumDef* e); |
Protobuf Team Bot | 5e8d7e5 | 2024-03-15 22:28:30 +0000 | [diff] [blame] | 12479 | bool upb_EnumDef_IsSpecifiedAsClosed(const upb_EnumDef* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12480 | |
| 12481 | // Creates a mini descriptor string for an enum, returns true on success. |
| 12482 | bool upb_EnumDef_MiniDescriptorEncode(const upb_EnumDef* e, upb_Arena* a, |
| 12483 | upb_StringView* out); |
| 12484 | |
| 12485 | const char* upb_EnumDef_Name(const upb_EnumDef* e); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12486 | const UPB_DESC(EnumOptions) * upb_EnumDef_Options(const upb_EnumDef* e); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12487 | const UPB_DESC(FeatureSet) * upb_EnumDef_ResolvedFeatures(const upb_EnumDef* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12488 | |
| 12489 | upb_StringView upb_EnumDef_ReservedName(const upb_EnumDef* e, int i); |
| 12490 | int upb_EnumDef_ReservedNameCount(const upb_EnumDef* e); |
| 12491 | |
| 12492 | const upb_EnumReservedRange* upb_EnumDef_ReservedRange(const upb_EnumDef* e, |
| 12493 | int i); |
| 12494 | int upb_EnumDef_ReservedRangeCount(const upb_EnumDef* e); |
| 12495 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12496 | UPB_API const upb_EnumValueDef* upb_EnumDef_Value(const upb_EnumDef* e, int i); |
| 12497 | UPB_API int upb_EnumDef_ValueCount(const upb_EnumDef* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12498 | |
| 12499 | #ifdef __cplusplus |
| 12500 | } /* extern "C" */ |
| 12501 | #endif |
| 12502 | |
| 12503 | |
| 12504 | #endif /* UPB_REFLECTION_ENUM_DEF_H_ */ |
| 12505 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12506 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12507 | |
| 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 |
| 12515 | extern "C" { |
| 12516 | #endif |
| 12517 | |
| 12518 | const upb_EnumDef* upb_EnumValueDef_Enum(const upb_EnumValueDef* v); |
| 12519 | const char* upb_EnumValueDef_FullName(const upb_EnumValueDef* v); |
| 12520 | bool upb_EnumValueDef_HasOptions(const upb_EnumValueDef* v); |
| 12521 | uint32_t upb_EnumValueDef_Index(const upb_EnumValueDef* v); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12522 | UPB_API const char* upb_EnumValueDef_Name(const upb_EnumValueDef* v); |
| 12523 | UPB_API int32_t upb_EnumValueDef_Number(const upb_EnumValueDef* v); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12524 | const UPB_DESC(EnumValueOptions) * |
| 12525 | upb_EnumValueDef_Options(const upb_EnumValueDef* v); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12526 | const UPB_DESC(FeatureSet) * |
| 12527 | upb_EnumValueDef_ResolvedFeatures(const upb_EnumValueDef* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12528 | |
| 12529 | #ifdef __cplusplus |
| 12530 | } /* extern "C" */ |
| 12531 | #endif |
| 12532 | |
| 12533 | |
| 12534 | #endif /* UPB_REFLECTION_ENUM_VALUE_DEF_H_ */ |
| 12535 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12536 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12537 | |
| 12538 | #ifndef UPB_REFLECTION_EXTENSION_RANGE_H_ |
| 12539 | #define UPB_REFLECTION_EXTENSION_RANGE_H_ |
| 12540 | |
| 12541 | |
| 12542 | // Must be last. |
| 12543 | |
| 12544 | #ifdef __cplusplus |
| 12545 | extern "C" { |
| 12546 | #endif |
| 12547 | |
| 12548 | int32_t upb_ExtensionRange_Start(const upb_ExtensionRange* r); |
| 12549 | int32_t upb_ExtensionRange_End(const upb_ExtensionRange* r); |
| 12550 | |
| 12551 | bool upb_ExtensionRange_HasOptions(const upb_ExtensionRange* r); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12552 | const UPB_DESC(ExtensionRangeOptions) * |
| 12553 | upb_ExtensionRange_Options(const upb_ExtensionRange* r); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12554 | const UPB_DESC(FeatureSet) * |
| 12555 | upb_ExtensionRange_ResolvedFeatures(const upb_ExtensionRange* e); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12556 | |
| 12557 | #ifdef __cplusplus |
| 12558 | } /* extern "C" */ |
| 12559 | #endif |
| 12560 | |
| 12561 | |
| 12562 | #endif /* UPB_REFLECTION_EXTENSION_RANGE_H_ */ |
| 12563 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12564 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12565 | |
| 12566 | #ifndef UPB_REFLECTION_FIELD_DEF_H_ |
| 12567 | #define UPB_REFLECTION_FIELD_DEF_H_ |
| 12568 | |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12569 | #include <stdint.h> |
| 12570 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12571 | |
| 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 |
| 12579 | extern "C" { |
| 12580 | #endif |
| 12581 | |
| 12582 | const upb_OneofDef* upb_FieldDef_ContainingOneof(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12583 | UPB_API const upb_MessageDef* upb_FieldDef_ContainingType( |
| 12584 | const upb_FieldDef* f); |
| 12585 | UPB_API upb_CType upb_FieldDef_CType(const upb_FieldDef* f); |
| 12586 | UPB_API upb_MessageValue upb_FieldDef_Default(const upb_FieldDef* f); |
| 12587 | UPB_API const upb_EnumDef* upb_FieldDef_EnumSubDef(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12588 | const upb_MessageDef* upb_FieldDef_ExtensionScope(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12589 | UPB_API const upb_FileDef* upb_FieldDef_File(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12590 | const char* upb_FieldDef_FullName(const upb_FieldDef* f); |
| 12591 | bool upb_FieldDef_HasDefault(const upb_FieldDef* f); |
| 12592 | bool upb_FieldDef_HasJsonName(const upb_FieldDef* f); |
| 12593 | bool upb_FieldDef_HasOptions(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12594 | UPB_API bool upb_FieldDef_HasPresence(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12595 | bool upb_FieldDef_HasSubDef(const upb_FieldDef* f); |
| 12596 | uint32_t upb_FieldDef_Index(const upb_FieldDef* f); |
Protobuf Team Bot | ef02087 | 2024-04-24 18:42:18 +0000 | [diff] [blame] | 12597 | UPB_API bool upb_FieldDef_IsEnum(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12598 | bool upb_FieldDef_IsExtension(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12599 | UPB_API bool upb_FieldDef_IsMap(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12600 | bool upb_FieldDef_IsOptional(const upb_FieldDef* f); |
Protobuf Team Bot | f2c187d | 2024-01-09 17:58:04 +0000 | [diff] [blame] | 12601 | UPB_API bool upb_FieldDef_IsPacked(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12602 | bool upb_FieldDef_IsPrimitive(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12603 | UPB_API bool upb_FieldDef_IsRepeated(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12604 | bool upb_FieldDef_IsRequired(const upb_FieldDef* f); |
| 12605 | bool upb_FieldDef_IsString(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12606 | UPB_API bool upb_FieldDef_IsSubMessage(const upb_FieldDef* f); |
| 12607 | UPB_API const char* upb_FieldDef_JsonName(const upb_FieldDef* f); |
| 12608 | UPB_API upb_Label upb_FieldDef_Label(const upb_FieldDef* f); |
Protobuf Team Bot | b361c9c | 2024-03-22 00:27:43 +0000 | [diff] [blame] | 12609 | uint32_t upb_FieldDef_LayoutIndex(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12610 | UPB_API const upb_MessageDef* upb_FieldDef_MessageSubDef(const upb_FieldDef* f); |
Protobuf Team Bot | b58bd40 | 2023-09-19 15:42:34 +0000 | [diff] [blame] | 12611 | bool _upb_FieldDef_ValidateUtf8(const upb_FieldDef* f); |
Protobuf Team Bot | 8ce5c9f | 2024-04-05 20:20:09 +0000 | [diff] [blame] | 12612 | bool _upb_FieldDef_IsGroupLike(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12613 | |
| 12614 | // Creates a mini descriptor string for a field, returns true on success. |
| 12615 | bool upb_FieldDef_MiniDescriptorEncode(const upb_FieldDef* f, upb_Arena* a, |
| 12616 | upb_StringView* out); |
| 12617 | |
| 12618 | const upb_MiniTableField* upb_FieldDef_MiniTable(const upb_FieldDef* f); |
Protobuf Team Bot | 4e90ead | 2024-01-08 15:46:34 +0000 | [diff] [blame] | 12619 | const upb_MiniTableExtension* upb_FieldDef_MiniTableExtension( |
| 12620 | const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12621 | UPB_API const char* upb_FieldDef_Name(const upb_FieldDef* f); |
| 12622 | UPB_API uint32_t upb_FieldDef_Number(const upb_FieldDef* f); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12623 | const UPB_DESC(FieldOptions) * upb_FieldDef_Options(const upb_FieldDef* f); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12624 | const UPB_DESC(FeatureSet) * |
| 12625 | upb_FieldDef_ResolvedFeatures(const upb_FieldDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12626 | UPB_API const upb_OneofDef* upb_FieldDef_RealContainingOneof( |
| 12627 | const upb_FieldDef* f); |
| 12628 | UPB_API upb_FieldType upb_FieldDef_Type(const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12629 | |
| 12630 | #ifdef __cplusplus |
| 12631 | } /* extern "C" */ |
| 12632 | #endif |
| 12633 | |
| 12634 | |
| 12635 | #endif /* UPB_REFLECTION_FIELD_DEF_H_ */ |
| 12636 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12637 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12638 | |
| 12639 | #ifndef UPB_REFLECTION_FILE_DEF_H_ |
| 12640 | #define UPB_REFLECTION_FILE_DEF_H_ |
| 12641 | |
| 12642 | |
| 12643 | // Must be last. |
| 12644 | |
| 12645 | #ifdef __cplusplus |
| 12646 | extern "C" { |
| 12647 | #endif |
| 12648 | |
Protobuf Team Bot | c6b149c | 2023-11-10 23:37:46 +0000 | [diff] [blame] | 12649 | UPB_API const char* upb_FileDef_EditionName(int edition); |
| 12650 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12651 | const upb_FileDef* upb_FileDef_Dependency(const upb_FileDef* f, int i); |
| 12652 | int upb_FileDef_DependencyCount(const upb_FileDef* f); |
| 12653 | bool upb_FileDef_HasOptions(const upb_FileDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12654 | UPB_API const char* upb_FileDef_Name(const upb_FileDef* f); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12655 | const UPB_DESC(FileOptions) * upb_FileDef_Options(const upb_FileDef* f); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12656 | const UPB_DESC(FeatureSet) * upb_FileDef_ResolvedFeatures(const upb_FileDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12657 | const char* upb_FileDef_Package(const upb_FileDef* f); |
Protobuf Team Bot | 7dabac9 | 2023-09-07 18:35:50 +0000 | [diff] [blame] | 12658 | UPB_DESC(Edition) upb_FileDef_Edition(const upb_FileDef* f); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12659 | UPB_API const upb_DefPool* upb_FileDef_Pool(const upb_FileDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12660 | |
| 12661 | const upb_FileDef* upb_FileDef_PublicDependency(const upb_FileDef* f, int i); |
| 12662 | int upb_FileDef_PublicDependencyCount(const upb_FileDef* f); |
| 12663 | |
| 12664 | const upb_ServiceDef* upb_FileDef_Service(const upb_FileDef* f, int i); |
| 12665 | int upb_FileDef_ServiceCount(const upb_FileDef* f); |
| 12666 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12667 | UPB_API upb_Syntax upb_FileDef_Syntax(const upb_FileDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12668 | |
| 12669 | const upb_EnumDef* upb_FileDef_TopLevelEnum(const upb_FileDef* f, int i); |
| 12670 | int upb_FileDef_TopLevelEnumCount(const upb_FileDef* f); |
| 12671 | |
| 12672 | const upb_FieldDef* upb_FileDef_TopLevelExtension(const upb_FileDef* f, int i); |
| 12673 | int upb_FileDef_TopLevelExtensionCount(const upb_FileDef* f); |
| 12674 | |
| 12675 | const upb_MessageDef* upb_FileDef_TopLevelMessage(const upb_FileDef* f, int i); |
| 12676 | int upb_FileDef_TopLevelMessageCount(const upb_FileDef* f); |
| 12677 | |
| 12678 | const upb_FileDef* upb_FileDef_WeakDependency(const upb_FileDef* f, int i); |
| 12679 | int upb_FileDef_WeakDependencyCount(const upb_FileDef* f); |
| 12680 | |
Protobuf Team Bot | 55696ad | 2024-04-16 14:44:23 +0000 | [diff] [blame] | 12681 | // Returns whether |symbol| is transitively included by |f| |
| 12682 | bool upb_FileDef_Resolves(const upb_FileDef* f, const char* symbol); |
| 12683 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12684 | #ifdef __cplusplus |
| 12685 | } /* extern "C" */ |
| 12686 | #endif |
| 12687 | |
| 12688 | |
| 12689 | #endif /* UPB_REFLECTION_FILE_DEF_H_ */ |
| 12690 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12691 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12692 | |
| 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. |
| 12718 | typedef 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 |
| 12743 | extern "C" { |
| 12744 | #endif |
| 12745 | |
| 12746 | const upb_MessageDef* upb_MessageDef_ContainingType(const upb_MessageDef* m); |
| 12747 | |
| 12748 | const upb_ExtensionRange* upb_MessageDef_ExtensionRange(const upb_MessageDef* m, |
| 12749 | int i); |
| 12750 | int upb_MessageDef_ExtensionRangeCount(const upb_MessageDef* m); |
| 12751 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12752 | UPB_API const upb_FieldDef* upb_MessageDef_Field(const upb_MessageDef* m, |
| 12753 | int i); |
| 12754 | UPB_API int upb_MessageDef_FieldCount(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12755 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12756 | UPB_API const upb_FileDef* upb_MessageDef_File(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12757 | |
| 12758 | // Returns a field by either JSON name or regular proto name. |
| 12759 | const upb_FieldDef* upb_MessageDef_FindByJsonNameWithSize( |
| 12760 | const upb_MessageDef* m, const char* name, size_t size); |
| 12761 | UPB_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 Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12769 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12773 | UPB_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 | |
| 12780 | const upb_FieldDef* upb_MessageDef_FindFieldByName(const upb_MessageDef* m, |
| 12781 | const char* name); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12782 | UPB_API const upb_FieldDef* upb_MessageDef_FindFieldByNameWithSize( |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12783 | const upb_MessageDef* m, const char* name, size_t size); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12784 | UPB_API const upb_FieldDef* upb_MessageDef_FindFieldByNumber( |
| 12785 | const upb_MessageDef* m, uint32_t i); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12786 | const upb_OneofDef* upb_MessageDef_FindOneofByName(const upb_MessageDef* m, |
| 12787 | const char* name); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12788 | UPB_API const upb_OneofDef* upb_MessageDef_FindOneofByNameWithSize( |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12789 | const upb_MessageDef* m, const char* name, size_t size); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12790 | UPB_API const char* upb_MessageDef_FullName(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12791 | bool upb_MessageDef_HasOptions(const upb_MessageDef* m); |
| 12792 | bool upb_MessageDef_IsMapEntry(const upb_MessageDef* m); |
| 12793 | bool upb_MessageDef_IsMessageSet(const upb_MessageDef* m); |
| 12794 | |
| 12795 | // Creates a mini descriptor string for a message, returns true on success. |
| 12796 | bool upb_MessageDef_MiniDescriptorEncode(const upb_MessageDef* m, upb_Arena* a, |
| 12797 | upb_StringView* out); |
| 12798 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12799 | UPB_API const upb_MiniTable* upb_MessageDef_MiniTable(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12800 | const char* upb_MessageDef_Name(const upb_MessageDef* m); |
| 12801 | |
| 12802 | const upb_EnumDef* upb_MessageDef_NestedEnum(const upb_MessageDef* m, int i); |
| 12803 | const upb_FieldDef* upb_MessageDef_NestedExtension(const upb_MessageDef* m, |
| 12804 | int i); |
| 12805 | const upb_MessageDef* upb_MessageDef_NestedMessage(const upb_MessageDef* m, |
| 12806 | int i); |
| 12807 | |
| 12808 | int upb_MessageDef_NestedEnumCount(const upb_MessageDef* m); |
| 12809 | int upb_MessageDef_NestedExtensionCount(const upb_MessageDef* m); |
| 12810 | int upb_MessageDef_NestedMessageCount(const upb_MessageDef* m); |
| 12811 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12812 | UPB_API const upb_OneofDef* upb_MessageDef_Oneof(const upb_MessageDef* m, |
| 12813 | int i); |
| 12814 | UPB_API int upb_MessageDef_OneofCount(const upb_MessageDef* m); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12815 | int upb_MessageDef_RealOneofCount(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12816 | |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12817 | const UPB_DESC(MessageOptions) * |
| 12818 | upb_MessageDef_Options(const upb_MessageDef* m); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12819 | const UPB_DESC(FeatureSet) * |
| 12820 | upb_MessageDef_ResolvedFeatures(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12821 | |
| 12822 | upb_StringView upb_MessageDef_ReservedName(const upb_MessageDef* m, int i); |
| 12823 | int upb_MessageDef_ReservedNameCount(const upb_MessageDef* m); |
| 12824 | |
| 12825 | const upb_MessageReservedRange* upb_MessageDef_ReservedRange( |
| 12826 | const upb_MessageDef* m, int i); |
| 12827 | int upb_MessageDef_ReservedRangeCount(const upb_MessageDef* m); |
| 12828 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12829 | UPB_API upb_Syntax upb_MessageDef_Syntax(const upb_MessageDef* m); |
| 12830 | UPB_API upb_WellKnown upb_MessageDef_WellKnownType(const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12831 | |
| 12832 | #ifdef __cplusplus |
| 12833 | } /* extern "C" */ |
| 12834 | #endif |
| 12835 | |
| 12836 | |
| 12837 | #endif /* UPB_REFLECTION_MESSAGE_DEF_H_ */ |
| 12838 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12839 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12840 | |
| 12841 | #ifndef UPB_REFLECTION_METHOD_DEF_H_ |
| 12842 | #define UPB_REFLECTION_METHOD_DEF_H_ |
| 12843 | |
| 12844 | |
| 12845 | // Must be last. |
| 12846 | |
| 12847 | #ifdef __cplusplus |
| 12848 | extern "C" { |
| 12849 | #endif |
| 12850 | |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12851 | UPB_API bool upb_MethodDef_ClientStreaming(const upb_MethodDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12852 | const char* upb_MethodDef_FullName(const upb_MethodDef* m); |
| 12853 | bool upb_MethodDef_HasOptions(const upb_MethodDef* m); |
| 12854 | int upb_MethodDef_Index(const upb_MethodDef* m); |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12855 | UPB_API const upb_MessageDef* upb_MethodDef_InputType(const upb_MethodDef* m); |
| 12856 | UPB_API const char* upb_MethodDef_Name(const upb_MethodDef* m); |
| 12857 | UPB_API const UPB_DESC(MethodOptions) * |
| 12858 | upb_MethodDef_Options(const upb_MethodDef* m); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12859 | const UPB_DESC(FeatureSet) * |
| 12860 | upb_MethodDef_ResolvedFeatures(const upb_MethodDef* m); |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12861 | UPB_API const upb_MessageDef* upb_MethodDef_OutputType(const upb_MethodDef* m); |
| 12862 | UPB_API bool upb_MethodDef_ServerStreaming(const upb_MethodDef* m); |
| 12863 | UPB_API const upb_ServiceDef* upb_MethodDef_Service(const upb_MethodDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12864 | |
| 12865 | #ifdef __cplusplus |
| 12866 | } /* extern "C" */ |
| 12867 | #endif |
| 12868 | |
| 12869 | |
| 12870 | #endif /* UPB_REFLECTION_METHOD_DEF_H_ */ |
| 12871 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12872 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12873 | |
| 12874 | #ifndef UPB_REFLECTION_ONEOF_DEF_H_ |
| 12875 | #define UPB_REFLECTION_ONEOF_DEF_H_ |
| 12876 | |
| 12877 | |
| 12878 | // Must be last. |
| 12879 | |
| 12880 | #ifdef __cplusplus |
| 12881 | extern "C" { |
| 12882 | #endif |
| 12883 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12884 | UPB_API const upb_MessageDef* upb_OneofDef_ContainingType( |
| 12885 | const upb_OneofDef* o); |
| 12886 | UPB_API const upb_FieldDef* upb_OneofDef_Field(const upb_OneofDef* o, int i); |
| 12887 | UPB_API int upb_OneofDef_FieldCount(const upb_OneofDef* o); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12888 | const char* upb_OneofDef_FullName(const upb_OneofDef* o); |
| 12889 | bool upb_OneofDef_HasOptions(const upb_OneofDef* o); |
| 12890 | uint32_t upb_OneofDef_Index(const upb_OneofDef* o); |
| 12891 | bool upb_OneofDef_IsSynthetic(const upb_OneofDef* o); |
| 12892 | const upb_FieldDef* upb_OneofDef_LookupName(const upb_OneofDef* o, |
| 12893 | const char* name); |
| 12894 | const upb_FieldDef* upb_OneofDef_LookupNameWithSize(const upb_OneofDef* o, |
| 12895 | const char* name, |
| 12896 | size_t size); |
| 12897 | const upb_FieldDef* upb_OneofDef_LookupNumber(const upb_OneofDef* o, |
| 12898 | uint32_t num); |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12899 | UPB_API const char* upb_OneofDef_Name(const upb_OneofDef* o); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12900 | int upb_OneofDef_numfields(const upb_OneofDef* o); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12901 | const UPB_DESC(OneofOptions*) upb_OneofDef_Options(const upb_OneofDef* o); |
| 12902 | const UPB_DESC(FeatureSet*) |
| 12903 | upb_OneofDef_ResolvedFeatures(const upb_OneofDef* o); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12904 | |
| 12905 | #ifdef __cplusplus |
| 12906 | } /* extern "C" */ |
| 12907 | #endif |
| 12908 | |
| 12909 | |
| 12910 | #endif /* UPB_REFLECTION_ONEOF_DEF_H_ */ |
| 12911 | |
Protobuf Team Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 12912 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12913 | |
| 12914 | #ifndef UPB_REFLECTION_SERVICE_DEF_H_ |
| 12915 | #define UPB_REFLECTION_SERVICE_DEF_H_ |
| 12916 | |
| 12917 | |
| 12918 | // Must be last. |
| 12919 | |
| 12920 | #ifdef __cplusplus |
| 12921 | extern "C" { |
| 12922 | #endif |
| 12923 | |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12924 | UPB_API const upb_FileDef* upb_ServiceDef_File(const upb_ServiceDef* s); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12925 | const upb_MethodDef* upb_ServiceDef_FindMethodByName(const upb_ServiceDef* s, |
| 12926 | const char* name); |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12927 | UPB_API const char* upb_ServiceDef_FullName(const upb_ServiceDef* s); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12928 | bool upb_ServiceDef_HasOptions(const upb_ServiceDef* s); |
| 12929 | int upb_ServiceDef_Index(const upb_ServiceDef* s); |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12930 | UPB_API const upb_MethodDef* upb_ServiceDef_Method(const upb_ServiceDef* s, |
| 12931 | int i); |
| 12932 | UPB_API int upb_ServiceDef_MethodCount(const upb_ServiceDef* s); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12933 | const char* upb_ServiceDef_Name(const upb_ServiceDef* s); |
Protobuf Team Bot | 312240c | 2024-03-22 17:47:13 +0000 | [diff] [blame] | 12934 | UPB_API const UPB_DESC(ServiceOptions) * |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 12935 | upb_ServiceDef_Options(const upb_ServiceDef* s); |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 12936 | const UPB_DESC(FeatureSet) * |
| 12937 | upb_ServiceDef_ResolvedFeatures(const upb_ServiceDef* s); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12938 | |
| 12939 | #ifdef __cplusplus |
| 12940 | } /* extern "C" */ |
| 12941 | #endif |
| 12942 | |
| 12943 | |
| 12944 | #endif /* UPB_REFLECTION_SERVICE_DEF_H_ */ |
Protobuf Team Bot | ffc56ba | 2023-09-08 15:29:06 +0000 | [diff] [blame] | 12945 | // IWYU pragma: end_exports |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12946 | |
| 12947 | #endif /* UPB_REFLECTION_DEF_H_ */ |
| 12948 | |
| 12949 | // Must be last. |
| 12950 | |
| 12951 | #ifdef __cplusplus |
| 12952 | extern "C" { |
| 12953 | #endif |
| 12954 | |
| 12955 | enum { upb_JsonDecode_IgnoreUnknown = 1 }; |
| 12956 | |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 12957 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12960 | |
| 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 Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 12971 | #include <stdint.h> |
| 12972 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 12973 | // Must be last. |
| 12974 | |
| 12975 | #ifdef __cplusplus |
| 12976 | extern "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 | |
| 12984 | const char* upb_BufToUint64(const char* ptr, const char* end, uint64_t* val); |
| 12985 | const 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 Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 12998 | #include <stdint.h> |
| 12999 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13000 | // Must be last. |
| 13001 | |
| 13002 | #ifdef __cplusplus |
| 13003 | extern "C" { |
| 13004 | #endif |
| 13005 | |
| 13006 | // Returns true iff a codepoint is the value for a high surrogate. |
| 13007 | UPB_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. |
| 13012 | UPB_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. |
| 13018 | UPB_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. |
| 13024 | UPB_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. |
| 13030 | UPB_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. |
| 13037 | int 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 Bot | 473d20d | 2023-09-15 22:27:16 +0000 | [diff] [blame] | 13049 | #include <stddef.h> |
| 13050 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13051 | |
| 13052 | // Must be last. |
| 13053 | |
| 13054 | #ifdef __cplusplus |
| 13055 | extern "C" { |
| 13056 | #endif |
| 13057 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13058 | // 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 Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13061 | UPB_API upb_MutableMessageValue upb_Message_Mutable(upb_Message* msg, |
| 13062 | const upb_FieldDef* f, |
| 13063 | upb_Arena* a); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13064 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13065 | // Returns the field that is set in the oneof, or NULL if none are set. |
Protobuf Team Bot | 6cce622 | 2024-05-28 17:15:46 +0000 | [diff] [blame] | 13066 | UPB_API const upb_FieldDef* upb_Message_WhichOneofByDef(const upb_Message* msg, |
| 13067 | const upb_OneofDef* o); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13068 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13069 | // Clear all data and unknown fields. |
| 13070 | void upb_Message_ClearByDef(upb_Message* msg, const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13071 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13072 | // Clears any field presence and sets the value back to its default. |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13073 | UPB_API void upb_Message_ClearFieldByDef(upb_Message* msg, |
| 13074 | const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13075 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13076 | // May only be called for fields where upb_FieldDef_HasPresence(f) == true. |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13077 | UPB_API bool upb_Message_HasFieldByDef(const upb_Message* msg, |
| 13078 | const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13079 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13080 | // Returns the value in the message associated with this field def. |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13081 | UPB_API upb_MessageValue upb_Message_GetFieldByDef(const upb_Message* msg, |
| 13082 | const upb_FieldDef* f); |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13083 | |
| 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 Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13089 | UPB_API bool upb_Message_SetFieldByDef(upb_Message* msg, const upb_FieldDef* f, |
| 13090 | upb_MessageValue val, upb_Arena* a); |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13091 | |
| 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13104 | |
| 13105 | #define kUpb_Message_Begin -1 |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13106 | |
Protobuf Team Bot | 7e32450 | 2024-01-04 18:12:49 +0000 | [diff] [blame] | 13107 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13111 | |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 13112 | // Clears all unknown field data from this message and all submessages. |
Jason Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13113 | UPB_API bool upb_Message_DiscardUnknown(upb_Message* msg, |
| 13114 | const upb_MessageDef* m, int maxdepth); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13115 | |
| 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 |
| 13130 | extern "C" { |
| 13131 | #endif |
| 13132 | |
| 13133 | enum { |
Protobuf Team Bot | 986cbb6 | 2023-09-19 15:03:51 +0000 | [diff] [blame] | 13134 | /* When set, emits 0/default values. TODO: proto3 only? */ |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13135 | 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 Bot | ad88453 | 2023-09-05 18:31:02 +0000 | [diff] [blame] | 13146 | * |m|. The DefPool in |ext_pool| is used to find extensions (if NULL, |
| 13147 | * extensions will not be printed). |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13148 | * |
| 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 Lunn | 67dee29 | 2023-07-13 13:15:26 -0700 | [diff] [blame] | 13153 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 13156 | |
| 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. |
| 13175 | enum { kUpb_RoundTripBufferSize = 32 }; |
| 13176 | |
| 13177 | #ifdef __cplusplus |
| 13178 | extern "C" { |
| 13179 | #endif |
| 13180 | |
| 13181 | void _upb_EncodeRoundTripDouble(double val, char* buf, size_t size); |
| 13182 | void _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 | |
| 13196 | UPB_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 Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13213 | #ifndef UPB_PORT_ATOMIC_H_ |
| 13214 | #define UPB_PORT_ATOMIC_H_ |
| 13215 | |
| 13216 | |
| 13217 | #ifdef UPB_USE_C11_ATOMICS |
| 13218 | |
Protobuf Team Bot | 743bf92 | 2023-09-14 01:12:11 +0000 | [diff] [blame] | 13219 | // IWYU pragma: begin_exports |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13220 | #include <stdatomic.h> |
| 13221 | #include <stdbool.h> |
Protobuf Team Bot | 743bf92 | 2023-09-14 01:12:11 +0000 | [diff] [blame] | 13222 | // IWYU pragma: end_exports |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13223 | |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13224 | #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 Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 13231 | atomic_fetch_sub_explicit(addr, val, order) |
| 13232 | #define upb_Atomic_Exchange(addr, val, order) \ |
| 13233 | atomic_exchange_explicit(addr, val, order) |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13234 | #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 Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13242 | |
| 13243 | #else // !UPB_USE_C11_ATOMICS |
| 13244 | |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13245 | #include <string.h> |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13246 | |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13247 | #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 Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13252 | |
Deanna Garcia | bd6a0cf | 2023-04-20 10:30:44 -0700 | [diff] [blame] | 13253 | UPB_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 Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13262 | // `addr` and `expected` are logically double pointers. |
| 13263 | UPB_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 Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13268 | return true; |
| 13269 | } else { |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13270 | memcpy(expected, addr, sizeof(desired)); |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13271 | return false; |
| 13272 | } |
| 13273 | } |
| 13274 | |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 13275 | #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 Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 13283 | #endif |
| 13284 | |
| 13285 | |
| 13286 | #endif // UPB_PORT_ATOMIC_H_ |
| 13287 | |
Protobuf Team Bot | 95d7dc0 | 2023-12-13 04:09:17 +0000 | [diff] [blame] | 13288 | #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 |
| 13302 | extern "C" { |
| 13303 | #endif |
| 13304 | |
Protobuf Team Bot | 64441a2 | 2024-01-23 23:46:32 +0000 | [diff] [blame] | 13305 | const upb_MiniTableExtension* upb_Message_ExtensionByIndex( |
| 13306 | const upb_Message* msg, size_t index); |
Protobuf Team Bot | f284522 | 2023-12-19 04:57:32 +0000 | [diff] [blame] | 13307 | |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13308 | // Returns the minitable with the given field number, or NULL on failure. |
| 13309 | const upb_MiniTableExtension* upb_Message_FindExtensionByNumber( |
| 13310 | const upb_Message* msg, uint32_t field_number); |
Protobuf Team Bot | 95d7dc0 | 2023-12-13 04:09:17 +0000 | [diff] [blame] | 13311 | |
| 13312 | #ifdef __cplusplus |
| 13313 | } /* extern "C" */ |
| 13314 | #endif |
| 13315 | |
| 13316 | |
| 13317 | #endif /* UPB_MESSAGE_COMPAT_H_ */ |
| 13318 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13319 | // EVERYTHING BELOW THIS LINE IS INTERNAL - DO NOT USE ///////////////////////// |
| 13320 | |
Protobuf Team Bot | 5b34337 | 2023-12-19 06:18:53 +0000 | [diff] [blame] | 13321 | #ifndef UPB_MESSAGE_INTERNAL_MAP_SORTER_H_ |
| 13322 | #define UPB_MESSAGE_INTERNAL_MAP_SORTER_H_ |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13323 | |
| 13324 | #include <stdlib.h> |
| 13325 | |
| 13326 | |
Protobuf Team Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 13327 | #ifndef UPB_MESSAGE_INTERNAL_MAP_ENTRY_H_ |
| 13328 | #define UPB_MESSAGE_INTERNAL_MAP_ENTRY_H_ |
Protobuf Team Bot | 5b34337 | 2023-12-19 06:18:53 +0000 | [diff] [blame] | 13329 | |
| 13330 | #include <stdint.h> |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13331 | |
| 13332 | |
| 13333 | // Map entries aren't actually stored for map fields, they are only used during |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13334 | // 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 Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13336 | // |
| 13337 | // Note that users can and do create map entries directly, which will also use |
| 13338 | // this layout. |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13339 | |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13340 | typedef struct { |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13341 | struct upb_Message message; |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13342 | // 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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13348 | double d[2]; // Padding for 32-bit builds. |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13349 | } k; |
| 13350 | union { |
| 13351 | upb_StringView str; // For str/bytes. |
| 13352 | upb_value val; // For all other types. |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13353 | double d[2]; // Padding for 32-bit builds. |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13354 | } v; |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13355 | } upb_MapEntry; |
| 13356 | |
Protobuf Team Bot | c12c96e | 2024-01-16 07:41:08 +0000 | [diff] [blame] | 13357 | #endif // UPB_MESSAGE_INTERNAL_MAP_ENTRY_H_ |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13358 | |
| 13359 | // Must be last. |
| 13360 | |
| 13361 | #ifdef __cplusplus |
| 13362 | extern "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 | |
| 13369 | typedef struct { |
| 13370 | void const** entries; |
| 13371 | int size; |
| 13372 | int cap; |
| 13373 | } _upb_mapsorter; |
| 13374 | |
| 13375 | typedef struct { |
| 13376 | int start; |
| 13377 | int pos; |
| 13378 | int end; |
| 13379 | } _upb_sortedmap; |
| 13380 | |
| 13381 | UPB_INLINE void _upb_mapsorter_init(_upb_mapsorter* s) { |
| 13382 | s->entries = NULL; |
| 13383 | s->size = 0; |
| 13384 | s->cap = 0; |
| 13385 | } |
| 13386 | |
| 13387 | UPB_INLINE void _upb_mapsorter_destroy(_upb_mapsorter* s) { |
Protobuf Team Bot | ddc5406 | 2023-12-12 20:03:38 +0000 | [diff] [blame] | 13388 | if (s->entries) upb_gfree(s->entries); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13389 | } |
| 13390 | |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 13391 | UPB_INLINE bool _upb_sortedmap_next(_upb_mapsorter* s, |
| 13392 | const struct upb_Map* map, |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13393 | _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 Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13397 | _upb_map_fromkey(key, &ent->k, map->key_size); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13398 | upb_value val = {tabent->val.val}; |
Protobuf Team Bot | 03440ec | 2024-01-11 23:13:19 +0000 | [diff] [blame] | 13399 | _upb_map_fromvalue(val, &ent->v, map->val_size); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13400 | return true; |
| 13401 | } |
| 13402 | |
| 13403 | UPB_INLINE bool _upb_sortedmap_nextext(_upb_mapsorter* s, |
| 13404 | _upb_sortedmap* sorted, |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13405 | const upb_Extension** ext) { |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13406 | if (sorted->pos == sorted->end) return false; |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13407 | *ext = (const upb_Extension*)s->entries[sorted->pos++]; |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13408 | return true; |
| 13409 | } |
| 13410 | |
| 13411 | UPB_INLINE void _upb_mapsorter_popmap(_upb_mapsorter* s, |
| 13412 | _upb_sortedmap* sorted) { |
| 13413 | s->size = sorted->start; |
| 13414 | } |
| 13415 | |
| 13416 | bool _upb_mapsorter_pushmap(_upb_mapsorter* s, upb_FieldType key_type, |
Protobuf Team Bot | 499c748 | 2023-12-30 01:42:17 +0000 | [diff] [blame] | 13417 | const struct upb_Map* map, _upb_sortedmap* sorted); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13418 | |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13419 | bool _upb_mapsorter_pushexts(_upb_mapsorter* s, const upb_Extension* exts, |
| 13420 | size_t count, _upb_sortedmap* sorted); |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13421 | |
| 13422 | #ifdef __cplusplus |
| 13423 | } /* extern "C" */ |
| 13424 | #endif |
| 13425 | |
| 13426 | |
Protobuf Team Bot | 5b34337 | 2023-12-19 06:18:53 +0000 | [diff] [blame] | 13427 | #endif /* UPB_MESSAGE_INTERNAL_MAP_SORTER_H_ */ |
Protobuf Team Bot | 376ba2f | 2023-09-29 22:17:43 +0000 | [diff] [blame] | 13428 | |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 13429 | #ifndef UPB_BASE_INTERNAL_LOG2_H_ |
| 13430 | #define UPB_BASE_INTERNAL_LOG2_H_ |
| 13431 | |
| 13432 | // Must be last. |
| 13433 | |
| 13434 | #ifdef __cplusplus |
| 13435 | extern "C" { |
| 13436 | #endif |
| 13437 | |
| 13438 | UPB_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 | |
| 13449 | UPB_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 Bot | 80b5fe4 | 2023-12-27 20:08:36 +0000 | [diff] [blame] | 13458 | #ifndef UPB_MESSAGE_COMPARE_H_ |
| 13459 | #define UPB_MESSAGE_COMPARE_H_ |
| 13460 | |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13461 | #include <stddef.h> |
| 13462 | |
Protobuf Team Bot | 80b5fe4 | 2023-12-27 20:08:36 +0000 | [diff] [blame] | 13463 | |
| 13464 | // Must be last. |
| 13465 | |
Protobuf Team Bot | a8543e8 | 2024-04-06 01:56:37 +0000 | [diff] [blame] | 13466 | enum { |
| 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 Bot | 80b5fe4 | 2023-12-27 20:08:36 +0000 | [diff] [blame] | 13472 | #ifdef __cplusplus |
| 13473 | extern "C" { |
| 13474 | #endif |
| 13475 | |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13476 | // Returns true if no known fields or extensions are set in the message. |
| 13477 | UPB_API bool upb_Message_IsEmpty(const upb_Message* msg, |
| 13478 | const upb_MiniTable* m); |
| 13479 | |
| 13480 | UPB_API bool upb_Message_IsEqual(const upb_Message* msg1, |
| 13481 | const upb_Message* msg2, |
Protobuf Team Bot | db9cc39 | 2024-03-11 17:27:18 +0000 | [diff] [blame] | 13482 | const upb_MiniTable* m, int options); |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13483 | |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13484 | // If |ctype| is a message then |m| must point to its minitable. |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13485 | UPB_API_INLINE bool upb_MessageValue_IsEqual(upb_MessageValue val1, |
| 13486 | upb_MessageValue val2, |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13487 | upb_CType ctype, |
Protobuf Team Bot | db9cc39 | 2024-03-11 17:27:18 +0000 | [diff] [blame] | 13488 | const upb_MiniTable* m, |
| 13489 | int options) { |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13490 | 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 Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13509 | case kUpb_CType_Message: |
Protobuf Team Bot | db9cc39 | 2024-03-11 17:27:18 +0000 | [diff] [blame] | 13510 | return upb_Message_IsEqual(val1.msg_val, val2.msg_val, m, options); |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13511 | |
| 13512 | default: |
| 13513 | UPB_UNREACHABLE(); |
Protobuf Team Bot | c13512a | 2024-01-25 18:53:49 +0000 | [diff] [blame] | 13514 | return false; |
| 13515 | } |
| 13516 | } |
| 13517 | |
Protobuf Team Bot | 80b5fe4 | 2023-12-27 20:08:36 +0000 | [diff] [blame] | 13518 | #ifdef __cplusplus |
| 13519 | } /* extern "C" */ |
| 13520 | #endif |
| 13521 | |
| 13522 | |
| 13523 | #endif // UPB_MESSAGE_COMPARE_H_ |
| 13524 | |
Protobuf Team Bot | e3dcdfd | 2024-02-09 21:49:54 +0000 | [diff] [blame] | 13525 | #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 |
| 13533 | extern "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 | |
| 13548 | typedef 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 | |
| 13555 | upb_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 Bot | 80b5fe4 | 2023-12-27 20:08:36 +0000 | [diff] [blame] | 13566 | #ifndef UPB_MESSAGE_COPY_H_ |
| 13567 | #define UPB_MESSAGE_COPY_H_ |
| 13568 | |
| 13569 | |
| 13570 | // Must be last. |
| 13571 | |
| 13572 | #ifdef __cplusplus |
| 13573 | extern "C" { |
| 13574 | #endif |
| 13575 | |
| 13576 | // Deep clones a message using the provided target arena. |
| 13577 | upb_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. |
| 13581 | upb_Message* upb_Message_ShallowClone(const upb_Message* msg, |
| 13582 | const upb_MiniTable* m, upb_Arena* arena); |
| 13583 | |
| 13584 | // Deep clones array contents. |
| 13585 | upb_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. |
| 13589 | upb_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. |
| 13595 | bool 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. |
| 13599 | void 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 Bot | f4b57b9 | 2024-06-25 14:56:05 +0000 | [diff] [blame] | 13608 | #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 |
| 13615 | extern "C" { |
| 13616 | #endif |
| 13617 | |
| 13618 | UPB_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 Bot | 80b5fe4 | 2023-12-27 20:08:36 +0000 | [diff] [blame] | 13628 | |
Adam Cozzette | 8059da2 | 2023-08-16 07:57:14 -0700 | [diff] [blame] | 13629 | #ifndef UPB_MINI_DESCRIPTOR_INTERNAL_BASE92_H_ |
| 13630 | #define UPB_MINI_DESCRIPTOR_INTERNAL_BASE92_H_ |
| 13631 | |
Adam Cozzette | 7d5592e | 2023-08-23 12:15:26 -0700 | [diff] [blame] | 13632 | #include <stdint.h> |
| 13633 | |
Adam Cozzette | 8059da2 | 2023-08-16 07:57:14 -0700 | [diff] [blame] | 13634 | |
| 13635 | // Must be last. |
| 13636 | |
| 13637 | #ifdef __cplusplus |
| 13638 | extern "C" { |
| 13639 | #endif |
| 13640 | |
| 13641 | UPB_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 | |
| 13647 | UPB_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 | |
| 13653 | UPB_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 Bot | 91cfce9 | 2023-11-27 21:05:28 +0000 | [diff] [blame] | 13683 | #ifndef UPB_MINI_DESCRIPTOR_INTERNAL_DECODER_H_ |
| 13684 | #define UPB_MINI_DESCRIPTOR_INTERNAL_DECODER_H_ |
| 13685 | |
| 13686 | |
Adam Cozzette | 8059da2 | 2023-08-16 07:57:14 -0700 | [diff] [blame] | 13687 | // Must be last. |
| 13688 | |
| 13689 | // upb_MdDecoder: used internally for decoding MiniDescriptors for messages, |
| 13690 | // extensions, and enums. |
| 13691 | typedef struct { |
| 13692 | const char* end; |
| 13693 | upb_Status* status; |
| 13694 | jmp_buf err; |
| 13695 | } upb_MdDecoder; |
| 13696 | |
| 13697 | UPB_PRINTF(2, 3) |
| 13698 | UPB_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 | |
| 13710 | UPB_INLINE void upb_MdDecoder_CheckOutOfMemory(upb_MdDecoder* d, |
| 13711 | const void* ptr) { |
| 13712 | if (!ptr) upb_MdDecoder_ErrorJmp(d, "Out of memory"); |
| 13713 | } |
| 13714 | |
| 13715 | UPB_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 | |
| 13732 | typedef 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 | |
| 13756 | typedef enum { |
| 13757 | kUpb_EncodedFieldModifier_FlipPacked = 1 << 0, |
| 13758 | kUpb_EncodedFieldModifier_IsRequired = 1 << 1, |
| 13759 | kUpb_EncodedFieldModifier_IsProto3Singular = 1 << 2, |
Protobuf Team Bot | b58bd40 | 2023-09-19 15:42:34 +0000 | [diff] [blame] | 13760 | kUpb_EncodedFieldModifier_FlipValidateUtf8 = 1 << 3, |
Adam Cozzette | 8059da2 | 2023-08-16 07:57:14 -0700 | [diff] [blame] | 13761 | } upb_EncodedFieldModifier; |
| 13762 | |
| 13763 | enum { |
| 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 | |
| 13778 | enum { |
| 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 | |
| 13794 | typedef 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 Bot | b58bd40 | 2023-09-19 15:42:34 +0000 | [diff] [blame] | 13800 | kUpb_FieldModifier_ValidateUtf8 = 1 << 5, |
Adam Cozzette | 8059da2 | 2023-08-16 07:57:14 -0700 | [diff] [blame] | 13801 | } kUpb_FieldModifier; |
| 13802 | |
Protobuf Team Bot | b58bd40 | 2023-09-19 15:42:34 +0000 | [diff] [blame] | 13803 | // These modifiers are also used on the wire. |
Adam Cozzette | 8059da2 | 2023-08-16 07:57:14 -0700 | [diff] [blame] | 13804 | typedef 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 Bot | c4a7b03 | 2023-12-27 00:12:48 +0000 | [diff] [blame] | 13813 | #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 |
| 13825 | extern "C" { |
| 13826 | #endif |
| 13827 | |
| 13828 | // Checks if memory layout of src is compatible with dst. |
| 13829 | bool upb_MiniTable_Compatible(const upb_MiniTable* src, |
| 13830 | const upb_MiniTable* dst); |
| 13831 | |
| 13832 | typedef 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. |
| 13839 | upb_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 Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 13849 | #ifndef UPB_HASH_INT_TABLE_H_ |
| 13850 | #define UPB_HASH_INT_TABLE_H_ |
| 13851 | |
| 13852 | |
| 13853 | // Must be last. |
| 13854 | |
| 13855 | typedef 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 |
| 13863 | extern "C" { |
| 13864 | #endif |
| 13865 | |
| 13866 | // Initialize a table. If memory allocation failed, false is returned and |
| 13867 | // the table is uninitialized. |
| 13868 | bool upb_inttable_init(upb_inttable* table, upb_Arena* a); |
| 13869 | |
| 13870 | // Returns the number of values in the table. |
| 13871 | size_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. |
| 13879 | bool 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. |
| 13884 | bool 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. |
| 13888 | bool 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. |
| 13893 | bool 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. |
| 13898 | void 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 | |
| 13911 | bool upb_inttable_next(const upb_inttable* t, uintptr_t* key, upb_value* val, |
| 13912 | intptr_t* iter); |
| 13913 | void 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 | |
| 13935 | enum { |
| 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 | |
| 13957 | typedef 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. */ |
| 13986 | const char* _upb_FastDecoder_ErrorJmp(upb_Decoder* d, int status); |
| 13987 | |
| 13988 | extern const uint8_t upb_utf8_offsets[]; |
| 13989 | |
| 13990 | UPB_INLINE |
| 13991 | bool _upb_Decoder_VerifyUtf8Inline(const char* ptr, int len) { |
| 13992 | return utf8_range_IsValid(ptr, len); |
| 13993 | } |
| 13994 | |
| 13995 | const 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. */ |
| 14001 | UPB_INLINE intptr_t decode_totable(const upb_MiniTable* tablep) { |
| 14002 | return ((intptr_t)tablep << 8) | tablep->UPB_PRIVATE(table_mask); |
| 14003 | } |
| 14004 | |
| 14005 | UPB_INLINE const upb_MiniTable* decode_totablep(intptr_t table) { |
| 14006 | return (const upb_MiniTable*)(table >> 8); |
| 14007 | } |
| 14008 | |
| 14009 | const char* _upb_Decoder_IsDoneFallback(upb_EpsCopyInputStream* e, |
| 14010 | const char* ptr, int overrun); |
| 14011 | |
| 14012 | UPB_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 | |
| 14017 | UPB_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 |
| 14033 | UPB_INLINE |
| 14034 | const 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 | |
| 14049 | UPB_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 Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14058 | #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 | |
| 14070 | typedef struct { |
| 14071 | const char* ptr; |
| 14072 | uint64_t val; |
| 14073 | } UPB_PRIVATE(_upb_WireReader_LongVarint); |
| 14074 | |
| 14075 | #ifdef __cplusplus |
| 14076 | extern "C" { |
| 14077 | #endif |
| 14078 | |
| 14079 | UPB_PRIVATE(_upb_WireReader_LongVarint) |
| 14080 | UPB_PRIVATE(_upb_WireReader_ReadLongVarint)(const char* ptr, uint64_t val); |
| 14081 | |
Protobuf Team Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 14082 | UPB_FORCEINLINE const char* UPB_PRIVATE(_upb_WireReader_ReadVarint)( |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14083 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 14100 | UPB_API_INLINE uint32_t upb_WireReader_GetFieldNumber(uint32_t tag) { |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14101 | return tag >> kUpb_WireReader_WireTypeBits; |
| 14102 | } |
| 14103 | |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 14104 | UPB_API_INLINE uint8_t upb_WireReader_GetWireType(uint32_t tag) { |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14105 | 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. |
| 14119 | typedef 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 |
| 14139 | extern "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 Bot | 1d143b5 | 2024-01-25 20:29:43 +0000 | [diff] [blame] | 14148 | UPB_FORCEINLINE const char* upb_WireReader_ReadTag(const char* ptr, |
| 14149 | uint32_t* tag) { |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14150 | 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 Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 14158 | UPB_API_INLINE uint32_t upb_WireReader_GetFieldNumber(uint32_t tag); |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14159 | |
| 14160 | // Given a tag, returns the wire type. |
Protobuf Team Bot | b3878b5 | 2024-02-08 21:50:53 +0000 | [diff] [blame] | 14161 | UPB_API_INLINE uint8_t upb_WireReader_GetWireType(uint32_t tag); |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14162 | |
| 14163 | UPB_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(). |
| 14174 | UPB_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(). |
| 14185 | UPB_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(). |
| 14198 | UPB_INLINE const char* upb_WireReader_ReadFixed32(const char* ptr, void* val) { |
| 14199 | uint32_t uval; |
| 14200 | memcpy(&uval, ptr, 4); |
Protobuf Team Bot | de5ea1e | 2024-01-02 04:02:53 +0000 | [diff] [blame] | 14201 | uval = upb_BigEndian32(uval); |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14202 | 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(). |
| 14211 | UPB_INLINE const char* upb_WireReader_ReadFixed64(const char* ptr, void* val) { |
| 14212 | uint64_t uval; |
| 14213 | memcpy(&uval, ptr, 8); |
Protobuf Team Bot | de5ea1e | 2024-01-02 04:02:53 +0000 | [diff] [blame] | 14214 | uval = upb_BigEndian64(uval); |
Protobuf Team Bot | cb8a31e | 2024-01-02 02:33:01 +0000 | [diff] [blame] | 14215 | memcpy(val, &uval, 8); |
| 14216 | return ptr + 8; |
| 14217 | } |
| 14218 | |
| 14219 | const 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? |
| 14232 | UPB_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 | |
| 14237 | UPB_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? |
| 14276 | UPB_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 |
| 14294 | extern "C" { |
| 14295 | #endif |
| 14296 | |
| 14297 | double _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 | |
| 14318 | typedef 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 |
| 14325 | extern "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. |
| 14352 | char* upb_MtDataEncoder_StartMessage(upb_MtDataEncoder* e, char* ptr, |
| 14353 | uint64_t msg_mod); |
| 14354 | char* upb_MtDataEncoder_PutField(upb_MtDataEncoder* e, char* ptr, |
| 14355 | upb_FieldType type, uint32_t field_num, |
| 14356 | uint64_t field_mod); |
| 14357 | char* upb_MtDataEncoder_StartOneof(upb_MtDataEncoder* e, char* ptr); |
| 14358 | char* 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. |
| 14363 | char* upb_MtDataEncoder_StartEnum(upb_MtDataEncoder* e, char* ptr); |
| 14364 | char* upb_MtDataEncoder_PutEnumValue(upb_MtDataEncoder* e, char* ptr, |
| 14365 | uint32_t val); |
| 14366 | char* upb_MtDataEncoder_EndEnum(upb_MtDataEncoder* e, char* ptr); |
| 14367 | |
| 14368 | // Encodes an entire mini descriptor for an extension. |
| 14369 | char* 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. |
| 14374 | char* 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. |
| 14380 | char* 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14389 | #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 |
| 14396 | extern "C" { |
| 14397 | #endif |
| 14398 | |
| 14399 | upb_Arena* _upb_DefPool_Arena(const upb_DefPool* s); |
| 14400 | size_t _upb_DefPool_BytesLoaded(const upb_DefPool* s); |
| 14401 | upb_ExtensionRegistry* _upb_DefPool_ExtReg(const upb_DefPool* s); |
| 14402 | |
| 14403 | bool _upb_DefPool_InsertExt(upb_DefPool* s, const upb_MiniTableExtension* ext, |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 14404 | const upb_FieldDef* f); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14405 | bool _upb_DefPool_InsertSym(upb_DefPool* s, upb_StringView sym, upb_value v, |
| 14406 | upb_Status* status); |
| 14407 | bool _upb_DefPool_LookupSym(const upb_DefPool* s, const char* sym, size_t size, |
| 14408 | upb_value* v); |
| 14409 | |
| 14410 | void** _upb_DefPool_ScratchData(const upb_DefPool* s); |
| 14411 | size_t* _upb_DefPool_ScratchSize(const upb_DefPool* s); |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 14412 | void _upb_DefPool_SetPlatform(upb_DefPool* s, upb_MiniTablePlatform platform); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14413 | |
| 14414 | // For generated code only: loads a generated descriptor. |
| 14415 | typedef 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 | |
| 14422 | bool _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. |
| 14426 | bool _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 Bot | 7be2a45 | 2023-09-13 16:50:05 +0000 | [diff] [blame] | 14436 | #ifndef UPB_REFLECTION_DEF_BUILDER_INTERNAL_H_ |
| 14437 | #define UPB_REFLECTION_DEF_BUILDER_INTERNAL_H_ |
| 14438 | |
| 14439 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14440 | // 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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 14444 | #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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14455 | } |
| 14456 | |
| 14457 | #ifdef __cplusplus |
| 14458 | extern "C" { |
| 14459 | #endif |
| 14460 | |
| 14461 | struct upb_DefBuilder { |
| 14462 | upb_DefPool* symtab; |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14463 | 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14467 | 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 Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 14472 | upb_MiniTablePlatform platform; // Platform we are targeting. |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14473 | 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 | |
| 14479 | extern const char* kUpbDefOptDefault; |
| 14480 | |
| 14481 | // ctx->status has already been set elsewhere so just fail/longjmp() |
| 14482 | UPB_NORETURN void _upb_DefBuilder_FailJmp(upb_DefBuilder* ctx); |
| 14483 | |
| 14484 | UPB_NORETURN void _upb_DefBuilder_Errf(upb_DefBuilder* ctx, const char* fmt, |
| 14485 | ...) UPB_PRINTF(2, 3); |
| 14486 | UPB_NORETURN void _upb_DefBuilder_OomErr(upb_DefBuilder* ctx); |
| 14487 | |
| 14488 | const 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. |
| 14494 | const 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 | |
| 14499 | const 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 | |
| 14503 | char _upb_DefBuilder_ParseEscape(upb_DefBuilder* ctx, const upb_FieldDef* f, |
| 14504 | const char** src, const char* end); |
| 14505 | |
| 14506 | const char* _upb_DefBuilder_FullToShort(const char* fullname); |
| 14507 | |
| 14508 | UPB_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. |
| 14518 | UPB_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 | |
| 14525 | UPB_INLINE upb_Arena* _upb_DefBuilder_Arena(const upb_DefBuilder* ctx) { |
| 14526 | return ctx->arena; |
| 14527 | } |
| 14528 | |
| 14529 | UPB_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. |
| 14535 | void _upb_DefBuilder_CheckIdentSlow(upb_DefBuilder* ctx, upb_StringView name, |
| 14536 | bool full); |
| 14537 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14538 | // Verify a full identifier string. This is slightly more complicated than |
| 14539 | // verifying a relative identifier string because we must track '.' chars. |
| 14540 | UPB_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 Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14559 | // Returns true if the returned feature set is new and must be populated. |
| 14560 | bool _upb_DefBuilder_GetOrCreateFeatureSet(upb_DefBuilder* ctx, |
| 14561 | const UPB_DESC(FeatureSet*) parent, |
| 14562 | upb_StringView key, |
| 14563 | UPB_DESC(FeatureSet**) set); |
| 14564 | |
| 14565 | const 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 | |
| 14571 | UPB_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14578 | #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 |
| 14592 | extern "C" { |
| 14593 | #endif |
| 14594 | |
| 14595 | upb_EnumDef* _upb_EnumDef_At(const upb_EnumDef* e, int i); |
| 14596 | bool _upb_EnumDef_Insert(upb_EnumDef* e, upb_EnumValueDef* v, upb_Arena* a); |
| 14597 | const upb_MiniTableEnum* _upb_EnumDef_MiniTable(const upb_EnumDef* e); |
| 14598 | |
| 14599 | // Allocate and initialize an array of |n| enum defs. |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14600 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14605 | |
| 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 |
| 14620 | extern "C" { |
| 14621 | #endif |
| 14622 | |
| 14623 | upb_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|. |
| 14626 | upb_EnumValueDef* _upb_EnumValueDefs_New( |
| 14627 | upb_DefBuilder* ctx, const char* prefix, int n, |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14628 | const UPB_DESC(EnumValueDescriptorProto*) const* protos, |
| 14629 | const UPB_DESC(FeatureSet*) parent_features, upb_EnumDef* e, |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14630 | bool* is_sorted); |
| 14631 | |
| 14632 | const 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 |
| 14649 | extern "C" { |
| 14650 | #endif |
| 14651 | |
| 14652 | upb_FieldDef* _upb_FieldDef_At(const upb_FieldDef* f, int i); |
| 14653 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14654 | bool _upb_FieldDef_IsClosedEnum(const upb_FieldDef* f); |
| 14655 | bool _upb_FieldDef_IsProto3Optional(const upb_FieldDef* f); |
| 14656 | int _upb_FieldDef_LayoutIndex(const upb_FieldDef* f); |
| 14657 | uint64_t _upb_FieldDef_Modifiers(const upb_FieldDef* f); |
| 14658 | void _upb_FieldDef_Resolve(upb_DefBuilder* ctx, const char* prefix, |
| 14659 | upb_FieldDef* f); |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 14660 | void _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 Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14664 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14669 | |
| 14670 | // Allocate and initialize an array of |n| field defs. |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14671 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14677 | |
| 14678 | // Allocate and return a list of pointers to the |n| field defs in |ff|, |
| 14679 | // sorted by field number. |
| 14680 | const 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 |
| 14697 | extern "C" { |
| 14698 | #endif |
| 14699 | |
| 14700 | const upb_MiniTableExtension* _upb_FileDef_ExtensionMiniTable( |
| 14701 | const upb_FileDef* f, int i); |
| 14702 | const int32_t* _upb_FileDef_PublicDependencyIndexes(const upb_FileDef* f); |
| 14703 | const int32_t* _upb_FileDef_WeakDependencyIndexes(const upb_FileDef* f); |
| 14704 | |
| 14705 | // upb_FileDef_Package() returns "" if f->package is NULL, this does not. |
| 14706 | const char* _upb_FileDef_RawPackage(const upb_FileDef* f); |
| 14707 | |
| 14708 | void _upb_FileDef_Create(upb_DefBuilder* ctx, |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 14709 | const UPB_DESC(FileDescriptorProto) * file_proto); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14710 | |
| 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 |
| 14725 | extern "C" { |
| 14726 | #endif |
| 14727 | |
| 14728 | upb_MessageDef* _upb_MessageDef_At(const upb_MessageDef* m, int i); |
| 14729 | bool _upb_MessageDef_InMessageSet(const upb_MessageDef* m); |
| 14730 | bool _upb_MessageDef_Insert(upb_MessageDef* m, const char* name, size_t size, |
| 14731 | upb_value v, upb_Arena* a); |
| 14732 | void _upb_MessageDef_InsertField(upb_DefBuilder* ctx, upb_MessageDef* m, |
| 14733 | const upb_FieldDef* f); |
| 14734 | bool _upb_MessageDef_IsValidExtensionNumber(const upb_MessageDef* m, int n); |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 14735 | void _upb_MessageDef_CreateMiniTable(upb_DefBuilder* ctx, upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14736 | void _upb_MessageDef_LinkMiniTable(upb_DefBuilder* ctx, |
| 14737 | const upb_MessageDef* m); |
| 14738 | void _upb_MessageDef_Resolve(upb_DefBuilder* ctx, upb_MessageDef* m); |
| 14739 | |
| 14740 | // Allocate and initialize an array of |n| message defs. |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14741 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14747 | |
| 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 |
| 14762 | extern "C" { |
| 14763 | #endif |
| 14764 | |
| 14765 | upb_ServiceDef* _upb_ServiceDef_At(const upb_ServiceDef* s, int i); |
| 14766 | |
| 14767 | // Allocate and initialize an array of |n| service defs. |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14768 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14773 | |
| 14774 | #ifdef __cplusplus |
| 14775 | } /* extern "C" */ |
| 14776 | #endif |
| 14777 | |
| 14778 | |
| 14779 | #endif /* UPB_REFLECTION_SERVICE_DEF_INTERNAL_H_ */ |
| 14780 | |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14781 | #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 Bot | c12c732 | 2024-05-31 05:25:33 +0000 | [diff] [blame] | 14789 | #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 Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14790 | // clang-format on |
| 14791 | // NOLINTEND |
| 14792 | |
| 14793 | #endif // UPB_REFLECTION_UPB_EDITION_DEFAULTS_H_ |
| 14794 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14795 | #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 Bot | 986cbb6 | 2023-09-19 15:03:51 +0000 | [diff] [blame] | 14802 | // TODO: Move some of this state directly into the encoder, maybe. |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14803 | typedef struct { |
| 14804 | upb_MtDataEncoder e; |
| 14805 | size_t bufsize; |
| 14806 | char* buf; |
| 14807 | char* ptr; |
| 14808 | } upb_DescState; |
| 14809 | |
| 14810 | #ifdef __cplusplus |
| 14811 | extern "C" { |
| 14812 | #endif |
| 14813 | |
| 14814 | UPB_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 | |
| 14820 | bool _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 Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 14833 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14834 | |
| 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 |
| 14842 | extern "C" { |
| 14843 | #endif |
| 14844 | |
| 14845 | int32_t upb_EnumReservedRange_Start(const upb_EnumReservedRange* r); |
| 14846 | int32_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 |
| 14858 | extern "C" { |
| 14859 | #endif |
| 14860 | |
| 14861 | upb_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|. |
| 14865 | upb_EnumReservedRange* _upb_EnumReservedRanges_New( |
| 14866 | upb_DefBuilder* ctx, int n, |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14867 | const UPB_DESC(EnumDescriptorProto_EnumReservedRange*) const* protos, |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14868 | 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 Bot | 7be2a45 | 2023-09-13 16:50:05 +0000 | [diff] [blame] | 14877 | #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 |
| 14886 | extern "C" { |
| 14887 | #endif |
| 14888 | |
| 14889 | // Variant that works with a length-delimited rather than NULL-delimited string, |
| 14890 | // as supported by strtable. |
| 14891 | char* 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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14900 | #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 |
| 14907 | extern "C" { |
| 14908 | #endif |
| 14909 | |
| 14910 | upb_ExtensionRange* _upb_ExtensionRange_At(const upb_ExtensionRange* r, int i); |
| 14911 | |
| 14912 | // Allocate and initialize an array of |n| extension ranges owned by |m|. |
| 14913 | upb_ExtensionRange* _upb_ExtensionRanges_New( |
| 14914 | upb_DefBuilder* ctx, int n, |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14915 | const UPB_DESC(DescriptorProto_ExtensionRange*) const* protos, |
| 14916 | const UPB_DESC(FeatureSet*) parent_features, const upb_MessageDef* m); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14917 | |
| 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 |
| 14932 | extern "C" { |
| 14933 | #endif |
| 14934 | |
| 14935 | upb_OneofDef* _upb_OneofDef_At(const upb_OneofDef* o, int i); |
Jakob Buchgraber | c0c79b2 | 2023-03-20 08:13:52 -0700 | [diff] [blame] | 14936 | void _upb_OneofDef_Insert(upb_DefBuilder* ctx, upb_OneofDef* o, |
| 14937 | const upb_FieldDef* f, const char* name, size_t size); |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14938 | |
| 14939 | // Allocate and initialize an array of |n| oneof defs owned by |m|. |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 14940 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14945 | |
| 14946 | size_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 Bot | 0631035 | 2023-09-26 21:54:58 +0000 | [diff] [blame] | 14959 | // IWYU pragma: private, include "upb/reflection/def.h" |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14960 | |
| 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 |
| 14968 | extern "C" { |
| 14969 | #endif |
| 14970 | |
| 14971 | int32_t upb_MessageReservedRange_Start(const upb_MessageReservedRange* r); |
| 14972 | int32_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 |
| 14984 | extern "C" { |
| 14985 | #endif |
| 14986 | |
| 14987 | upb_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|. |
| 14991 | upb_MessageReservedRange* _upb_MessageReservedRanges_New( |
| 14992 | upb_DefBuilder* ctx, int n, |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 14993 | const UPB_DESC(DescriptorProto_ReservedRange) * const* protos, |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 14994 | 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 |
| 15010 | extern "C" { |
| 15011 | #endif |
| 15012 | |
| 15013 | upb_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 Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 15016 | upb_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 Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 15021 | |
| 15022 | #ifdef __cplusplus |
| 15023 | } /* extern "C" */ |
| 15024 | #endif |
| 15025 | |
| 15026 | |
| 15027 | #endif /* UPB_REFLECTION_METHOD_DEF_INTERNAL_H_ */ |
| 15028 | |
Eric Salo | 8809a11 | 2022-11-21 13:01:06 -0800 | [diff] [blame] | 15029 | // This should #undef all macros #defined in def.inc |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15030 | |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15031 | #undef UPB_SIZE |
| 15032 | #undef UPB_PTR_AT |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 15033 | #undef UPB_MAPTYPE_STRING |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 15034 | #undef UPB_EXPORT |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15035 | #undef UPB_INLINE |
Eric Salo | 3f36a91 | 2022-12-05 14:12:25 -0800 | [diff] [blame] | 15036 | #undef UPB_API |
| 15037 | #undef UPB_API_INLINE |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15038 | #undef UPB_ALIGN_UP |
| 15039 | #undef UPB_ALIGN_DOWN |
| 15040 | #undef UPB_ALIGN_MALLOC |
| 15041 | #undef UPB_ALIGN_OF |
Protobuf Team Bot | e278550 | 2023-12-21 21:28:36 +0000 | [diff] [blame] | 15042 | #undef UPB_ALIGN_AS |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 15043 | #undef UPB_MALLOC_ALIGN |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 15044 | #undef UPB_LIKELY |
| 15045 | #undef UPB_UNLIKELY |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15046 | #undef UPB_FORCEINLINE |
| 15047 | #undef UPB_NOINLINE |
| 15048 | #undef UPB_NORETURN |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 15049 | #undef UPB_PRINTF |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15050 | #undef UPB_MAX |
| 15051 | #undef UPB_MIN |
| 15052 | #undef UPB_UNUSED |
| 15053 | #undef UPB_ASSUME |
| 15054 | #undef UPB_ASSERT |
| 15055 | #undef UPB_UNREACHABLE |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 15056 | #undef UPB_SETJMP |
| 15057 | #undef UPB_LONGJMP |
| 15058 | #undef UPB_PTRADD |
| 15059 | #undef UPB_MUSTTAIL |
| 15060 | #undef UPB_FASTTABLE_SUPPORTED |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 15061 | #undef UPB_FASTTABLE_MASK |
Joshua Haberman | dd69a48 | 2021-05-17 22:40:33 -0700 | [diff] [blame] | 15062 | #undef UPB_FASTTABLE |
| 15063 | #undef UPB_FASTTABLE_INIT |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 15064 | #undef UPB_POISON_MEMORY_REGION |
| 15065 | #undef UPB_UNPOISON_MEMORY_REGION |
| 15066 | #undef UPB_ASAN |
Sandy Zhang | e3b0943 | 2023-08-07 09:30:02 -0700 | [diff] [blame] | 15067 | #undef UPB_ASAN_GUARD_SIZE |
| 15068 | #undef UPB_CLANG_ASAN |
Protobuf Team Bot | 5e8d7e5 | 2024-03-15 22:28:30 +0000 | [diff] [blame] | 15069 | #undef UPB_TREAT_CLOSED_ENUMS_LIKE_OPEN |
Joshua Haberman | d3995ec | 2022-09-30 16:54:39 -0700 | [diff] [blame] | 15070 | #undef UPB_DEPRECATED |
| 15071 | #undef UPB_GNUC_MIN |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 15072 | #undef UPB_DESCRIPTOR_UPB_H_FILENAME |
| 15073 | #undef UPB_DESC |
Protobuf Team Bot | ce9dcc2 | 2023-11-03 22:38:26 +0000 | [diff] [blame] | 15074 | #undef UPB_DESC_MINITABLE |
Mike Kruskal | 232ecf4 | 2023-01-14 00:09:40 -0800 | [diff] [blame] | 15075 | #undef UPB_IS_GOOGLE3 |
Eric Salo | dfb7155 | 2023-03-22 12:35:09 -0700 | [diff] [blame] | 15076 | #undef UPB_ATOMIC |
| 15077 | #undef UPB_USE_C11_ATOMICS |
Deanna Garcia | c7d979d | 2023-04-14 17:22:13 -0700 | [diff] [blame] | 15078 | #undef UPB_PRIVATE |
Protobuf Team Bot | 07194fc | 2023-11-30 05:43:03 +0000 | [diff] [blame] | 15079 | #undef UPB_ONLYBITS |
Protobuf Team Bot | bf7ac9f | 2024-06-04 17:32:11 +0000 | [diff] [blame] | 15080 | #undef UPB_LINKARR_DECLARE |
| 15081 | #undef UPB_LINKARR_APPEND |
| 15082 | #undef UPB_LINKARR_START |
| 15083 | #undef UPB_LINKARR_STOP |