google-protobuf 3.7.0-x64-mingw32 → 3.7.1-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of google-protobuf might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/encode_decode.c +41 -1
- data/ext/google/protobuf_c/map.c +2 -2
- data/ext/google/protobuf_c/message.c +4 -2
- data/ext/google/protobuf_c/protobuf.h +5 -3
- data/ext/google/protobuf_c/repeated_field.c +2 -2
- data/ext/google/protobuf_c/storage.c +35 -22
- data/ext/google/protobuf_c/upb.c +415 -253
- data/ext/google/protobuf_c/upb.h +1391 -504
- data/lib/google/2.3/protobuf_c.so +0 -0
- data/lib/google/2.4/protobuf_c.so +0 -0
- data/lib/google/2.5/protobuf_c.so +0 -0
- data/lib/google/2.6/protobuf_c.so +0 -0
- data/tests/basic.rb +2 -2
- metadata +2 -2
data/ext/google/protobuf_c/upb.h
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
/* Amalgamated source file */
|
2
2
|
|
3
3
|
#if UINTPTR_MAX == 0xffffffff
|
4
4
|
#define UPB_SIZE(size32, size64) size32
|
@@ -1840,9 +1840,24 @@ class upb::Def {
|
|
1840
1840
|
|
1841
1841
|
private:
|
1842
1842
|
UPB_DISALLOW_POD_OPS(Def, upb::Def)
|
1843
|
+
#else
|
1844
|
+
struct upb_def {
|
1845
|
+
upb_refcounted base;
|
1846
|
+
|
1847
|
+
const char *fullname;
|
1848
|
+
const upb_filedef* file;
|
1849
|
+
char type; /* A upb_deftype_t (char to save space) */
|
1850
|
+
|
1851
|
+
/* Used as a flag during the def's mutable stage. Must be false unless
|
1852
|
+
* it is currently being used by a function on the stack. This allows
|
1853
|
+
* us to easily determine which defs were passed into the function's
|
1854
|
+
* current invocation. */
|
1855
|
+
bool came_from_user;
|
1856
|
+
#endif
|
1843
1857
|
};
|
1844
1858
|
|
1845
|
-
#
|
1859
|
+
#define UPB_DEF_INIT(name, type, vtbl, refs, ref2s) \
|
1860
|
+
{ UPB_REFCOUNT_INIT(vtbl, refs, ref2s), name, NULL, type, false }
|
1846
1861
|
|
1847
1862
|
UPB_BEGIN_EXTERN_C
|
1848
1863
|
|
@@ -2305,12 +2320,57 @@ class upb::FieldDef {
|
|
2305
2320
|
|
2306
2321
|
private:
|
2307
2322
|
UPB_DISALLOW_POD_OPS(FieldDef, upb::FieldDef)
|
2308
|
-
|
2323
|
+
#else
|
2324
|
+
struct upb_fielddef {
|
2325
|
+
upb_def base;
|
2309
2326
|
|
2327
|
+
union {
|
2328
|
+
int64_t sint;
|
2329
|
+
uint64_t uint;
|
2330
|
+
double dbl;
|
2331
|
+
float flt;
|
2332
|
+
void *bytes;
|
2333
|
+
} defaultval;
|
2334
|
+
union {
|
2335
|
+
const upb_msgdef *def; /* If !msg_is_symbolic. */
|
2336
|
+
char *name; /* If msg_is_symbolic. */
|
2337
|
+
} msg;
|
2338
|
+
union {
|
2339
|
+
const upb_def *def; /* If !subdef_is_symbolic. */
|
2340
|
+
char *name; /* If subdef_is_symbolic. */
|
2341
|
+
} sub; /* The msgdef or enumdef for this field, if upb_hassubdef(f). */
|
2342
|
+
bool subdef_is_symbolic;
|
2343
|
+
bool msg_is_symbolic;
|
2344
|
+
const upb_oneofdef *oneof;
|
2345
|
+
bool default_is_string;
|
2346
|
+
bool type_is_set_; /* False until type is explicitly set. */
|
2347
|
+
bool is_extension_;
|
2348
|
+
bool lazy_;
|
2349
|
+
bool packed_;
|
2350
|
+
upb_intfmt_t intfmt;
|
2351
|
+
bool tagdelim;
|
2352
|
+
upb_fieldtype_t type_;
|
2353
|
+
upb_label_t label_;
|
2354
|
+
uint32_t number_;
|
2355
|
+
uint32_t selector_base; /* Used to index into a upb::Handlers table. */
|
2356
|
+
uint32_t index_;
|
2310
2357
|
# endif /* defined(__cplusplus) */
|
2358
|
+
};
|
2311
2359
|
|
2312
2360
|
UPB_BEGIN_EXTERN_C
|
2313
2361
|
|
2362
|
+
extern const struct upb_refcounted_vtbl upb_fielddef_vtbl;
|
2363
|
+
|
2364
|
+
#define UPB_FIELDDEF_INIT(label, type, intfmt, tagdelim, is_extension, lazy, \
|
2365
|
+
packed, name, num, msgdef, subdef, selector_base, \
|
2366
|
+
index, defaultval, refs, ref2s) \
|
2367
|
+
{ \
|
2368
|
+
UPB_DEF_INIT(name, UPB_DEF_FIELD, &upb_fielddef_vtbl, refs, ref2s), \
|
2369
|
+
defaultval, {msgdef}, {subdef}, NULL, false, false, \
|
2370
|
+
type == UPB_TYPE_STRING || type == UPB_TYPE_BYTES, true, is_extension, \
|
2371
|
+
lazy, packed, intfmt, tagdelim, type, label, num, selector_base, index \
|
2372
|
+
}
|
2373
|
+
|
2314
2374
|
/* Native C API. */
|
2315
2375
|
upb_fielddef *upb_fielddef_new(const void *owner);
|
2316
2376
|
|
@@ -2660,12 +2720,45 @@ class upb::MessageDef {
|
|
2660
2720
|
|
2661
2721
|
private:
|
2662
2722
|
UPB_DISALLOW_POD_OPS(MessageDef, upb::MessageDef)
|
2663
|
-
|
2723
|
+
#else
|
2724
|
+
struct upb_msgdef {
|
2725
|
+
upb_def base;
|
2726
|
+
|
2727
|
+
size_t selector_count;
|
2728
|
+
uint32_t submsg_field_count;
|
2729
|
+
|
2730
|
+
/* Tables for looking up fields by number and name. */
|
2731
|
+
upb_inttable itof; /* int to field */
|
2732
|
+
upb_strtable ntof; /* name to field/oneof */
|
2733
|
+
|
2734
|
+
/* Is this a map-entry message? */
|
2735
|
+
bool map_entry;
|
2736
|
+
|
2737
|
+
/* Whether this message has proto2 or proto3 semantics. */
|
2738
|
+
upb_syntax_t syntax;
|
2739
|
+
|
2740
|
+
/* Type of well known type message. UPB_WELLKNOWN_UNSPECIFIED for
|
2741
|
+
* non-well-known message. */
|
2742
|
+
upb_wellknowntype_t well_known_type;
|
2664
2743
|
|
2744
|
+
/* TODO(haberman): proper extension ranges (there can be multiple). */
|
2665
2745
|
#endif /* __cplusplus */
|
2746
|
+
};
|
2666
2747
|
|
2667
2748
|
UPB_BEGIN_EXTERN_C
|
2668
2749
|
|
2750
|
+
extern const struct upb_refcounted_vtbl upb_msgdef_vtbl;
|
2751
|
+
|
2752
|
+
/* TODO: also support static initialization of the oneofs table. This will be
|
2753
|
+
* needed if we compile in descriptors that contain oneofs. */
|
2754
|
+
#define UPB_MSGDEF_INIT(name, selector_count, submsg_field_count, itof, ntof, \
|
2755
|
+
map_entry, syntax, well_known_type, refs, ref2s) \
|
2756
|
+
{ \
|
2757
|
+
UPB_DEF_INIT(name, UPB_DEF_MSG, &upb_fielddef_vtbl, refs, ref2s), \
|
2758
|
+
selector_count, submsg_field_count, itof, ntof, map_entry, syntax, \
|
2759
|
+
well_known_type \
|
2760
|
+
}
|
2761
|
+
|
2669
2762
|
/* Returns NULL if memory allocation failed. */
|
2670
2763
|
upb_msgdef *upb_msgdef_new(const void *owner);
|
2671
2764
|
|
@@ -2844,12 +2937,24 @@ class upb::EnumDef {
|
|
2844
2937
|
|
2845
2938
|
private:
|
2846
2939
|
UPB_DISALLOW_POD_OPS(EnumDef, upb::EnumDef)
|
2847
|
-
|
2940
|
+
#else
|
2941
|
+
struct upb_enumdef {
|
2942
|
+
upb_def base;
|
2848
2943
|
|
2944
|
+
upb_strtable ntoi;
|
2945
|
+
upb_inttable iton;
|
2946
|
+
int32_t defaultval;
|
2849
2947
|
#endif /* __cplusplus */
|
2948
|
+
};
|
2850
2949
|
|
2851
2950
|
UPB_BEGIN_EXTERN_C
|
2852
2951
|
|
2952
|
+
extern const struct upb_refcounted_vtbl upb_enumdef_vtbl;
|
2953
|
+
|
2954
|
+
#define UPB_ENUMDEF_INIT(name, ntoi, iton, defaultval, refs, ref2s) \
|
2955
|
+
{ UPB_DEF_INIT(name, UPB_DEF_ENUM, &upb_enumdef_vtbl, refs, ref2s), ntoi, \
|
2956
|
+
iton, defaultval }
|
2957
|
+
|
2853
2958
|
/* Native C API. */
|
2854
2959
|
upb_enumdef *upb_enumdef_new(const void *owner);
|
2855
2960
|
|
@@ -2998,12 +3103,25 @@ class upb::OneofDef {
|
|
2998
3103
|
|
2999
3104
|
private:
|
3000
3105
|
UPB_DISALLOW_POD_OPS(OneofDef, upb::OneofDef)
|
3001
|
-
|
3106
|
+
#else
|
3107
|
+
struct upb_oneofdef {
|
3108
|
+
upb_refcounted base;
|
3002
3109
|
|
3110
|
+
uint32_t index; /* Index within oneofs. */
|
3111
|
+
const char *name;
|
3112
|
+
upb_strtable ntof;
|
3113
|
+
upb_inttable itof;
|
3114
|
+
const upb_msgdef *parent;
|
3003
3115
|
#endif /* __cplusplus */
|
3116
|
+
};
|
3004
3117
|
|
3005
3118
|
UPB_BEGIN_EXTERN_C
|
3006
3119
|
|
3120
|
+
extern const struct upb_refcounted_vtbl upb_oneofdef_vtbl;
|
3121
|
+
|
3122
|
+
#define UPB_ONEOFDEF_INIT(name, ntof, itof, refs, ref2s) \
|
3123
|
+
{ UPB_REFCOUNT_INIT(&upb_oneofdef_vtbl, refs, ref2s), 0, name, ntof, itof }
|
3124
|
+
|
3007
3125
|
/* Native C API. */
|
3008
3126
|
upb_oneofdef *upb_oneofdef_new(const void *owner);
|
3009
3127
|
|
@@ -3122,12 +3240,25 @@ class upb::FileDef {
|
|
3122
3240
|
|
3123
3241
|
private:
|
3124
3242
|
UPB_DISALLOW_POD_OPS(FileDef, upb::FileDef)
|
3125
|
-
|
3243
|
+
#else
|
3244
|
+
struct upb_filedef {
|
3245
|
+
upb_refcounted base;
|
3246
|
+
|
3247
|
+
const char *name;
|
3248
|
+
const char *package;
|
3249
|
+
const char *phpprefix;
|
3250
|
+
const char *phpnamespace;
|
3251
|
+
upb_syntax_t syntax;
|
3126
3252
|
|
3253
|
+
upb_inttable defs;
|
3254
|
+
upb_inttable deps;
|
3127
3255
|
#endif
|
3256
|
+
};
|
3128
3257
|
|
3129
3258
|
UPB_BEGIN_EXTERN_C
|
3130
3259
|
|
3260
|
+
extern const struct upb_refcounted_vtbl upb_filedef_vtbl;
|
3261
|
+
|
3131
3262
|
upb_filedef *upb_filedef_new(const void *owner);
|
3132
3263
|
|
3133
3264
|
/* Include upb_refcounted methods like upb_msgdef_ref(). */
|
@@ -3257,9 +3388,13 @@ class upb::SymbolTable {
|
|
3257
3388
|
|
3258
3389
|
private:
|
3259
3390
|
UPB_DISALLOW_POD_OPS(SymbolTable, upb::SymbolTable)
|
3260
|
-
|
3391
|
+
#else
|
3392
|
+
struct upb_symtab {
|
3393
|
+
upb_refcounted base;
|
3261
3394
|
|
3395
|
+
upb_strtable symtab;
|
3262
3396
|
#endif /* __cplusplus */
|
3397
|
+
};
|
3263
3398
|
|
3264
3399
|
UPB_BEGIN_EXTERN_C
|
3265
3400
|
|
@@ -6479,10 +6614,12 @@ class MessageLayout;
|
|
6479
6614
|
|
6480
6615
|
#endif
|
6481
6616
|
|
6482
|
-
UPB_DECLARE_TYPE(upb::Array, upb_array)
|
6483
6617
|
UPB_DECLARE_TYPE(upb::Map, upb_map)
|
6484
6618
|
UPB_DECLARE_TYPE(upb::MapIterator, upb_mapiter)
|
6485
6619
|
|
6620
|
+
struct upb_array;
|
6621
|
+
typedef struct upb_array upb_array;
|
6622
|
+
|
6486
6623
|
/* TODO(haberman): C++ accessors */
|
6487
6624
|
|
6488
6625
|
UPB_BEGIN_EXTERN_C
|
@@ -6516,21 +6653,21 @@ typedef struct upb_msglayout {
|
|
6516
6653
|
} upb_msglayout;
|
6517
6654
|
|
6518
6655
|
|
6519
|
-
/**
|
6656
|
+
/** upb_strview ************************************************************/
|
6520
6657
|
|
6521
6658
|
typedef struct {
|
6522
6659
|
const char *data;
|
6523
6660
|
size_t size;
|
6524
|
-
}
|
6661
|
+
} upb_strview;
|
6525
6662
|
|
6526
|
-
UPB_INLINE
|
6527
|
-
|
6663
|
+
UPB_INLINE upb_strview upb_strview_make(const char *data, size_t size) {
|
6664
|
+
upb_strview ret;
|
6528
6665
|
ret.data = data;
|
6529
6666
|
ret.size = size;
|
6530
6667
|
return ret;
|
6531
6668
|
}
|
6532
6669
|
|
6533
|
-
#define
|
6670
|
+
#define UPB_STRVIEW_INIT(ptr, len) {ptr, len}
|
6534
6671
|
|
6535
6672
|
|
6536
6673
|
/** upb_msgval ****************************************************************/
|
@@ -6550,7 +6687,7 @@ typedef union {
|
|
6550
6687
|
const upb_msg* msg;
|
6551
6688
|
const upb_array* arr;
|
6552
6689
|
const void* ptr;
|
6553
|
-
|
6690
|
+
upb_strview str;
|
6554
6691
|
} upb_msgval;
|
6555
6692
|
|
6556
6693
|
#define ACCESSORS(name, membername, ctype) \
|
@@ -6577,12 +6714,12 @@ ACCESSORS(map, map, const upb_map*)
|
|
6577
6714
|
ACCESSORS(msg, msg, const upb_msg*)
|
6578
6715
|
ACCESSORS(ptr, ptr, const void*)
|
6579
6716
|
ACCESSORS(arr, arr, const upb_array*)
|
6580
|
-
ACCESSORS(str, str,
|
6717
|
+
ACCESSORS(str, str, upb_strview)
|
6581
6718
|
|
6582
6719
|
#undef ACCESSORS
|
6583
6720
|
|
6584
6721
|
UPB_INLINE upb_msgval upb_msgval_makestr(const char *data, size_t size) {
|
6585
|
-
return upb_msgval_str(
|
6722
|
+
return upb_msgval_str(upb_strview_make(data, size));
|
6586
6723
|
}
|
6587
6724
|
|
6588
6725
|
|
@@ -6733,6 +6870,127 @@ UPB_END_EXTERN_C
|
|
6733
6870
|
#ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
|
6734
6871
|
#define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
|
6735
6872
|
|
6873
|
+
/*
|
6874
|
+
** Functions for use by generated code. These are not public and users must
|
6875
|
+
** not call them directly.
|
6876
|
+
*/
|
6877
|
+
|
6878
|
+
#ifndef UPB_GENERATED_UTIL_H_
|
6879
|
+
#define UPB_GENERATED_UTIL_H_
|
6880
|
+
|
6881
|
+
#include <stdint.h>
|
6882
|
+
/*
|
6883
|
+
** structs.int.h: structures definitions that are internal to upb.
|
6884
|
+
*/
|
6885
|
+
|
6886
|
+
#ifndef UPB_STRUCTS_H_
|
6887
|
+
#define UPB_STRUCTS_H_
|
6888
|
+
|
6889
|
+
|
6890
|
+
struct upb_array {
|
6891
|
+
upb_fieldtype_t type;
|
6892
|
+
uint8_t element_size;
|
6893
|
+
void *data; /* Each element is element_size. */
|
6894
|
+
size_t len; /* Measured in elements. */
|
6895
|
+
size_t size; /* Measured in elements. */
|
6896
|
+
upb_arena *arena;
|
6897
|
+
};
|
6898
|
+
|
6899
|
+
#endif /* UPB_STRUCTS_H_ */
|
6900
|
+
|
6901
|
+
|
6902
|
+
#define PTR_AT(msg, ofs, type) (type*)((const char*)msg + ofs)
|
6903
|
+
|
6904
|
+
UPB_INLINE const void *_upb_array_accessor(const void *msg, size_t ofs,
|
6905
|
+
size_t *size) {
|
6906
|
+
const upb_array *arr = *PTR_AT(msg, ofs, const upb_array*);
|
6907
|
+
if (arr) {
|
6908
|
+
if (size) *size = arr->size;
|
6909
|
+
return arr->data;
|
6910
|
+
} else {
|
6911
|
+
if (size) *size = 0;
|
6912
|
+
return NULL;
|
6913
|
+
}
|
6914
|
+
}
|
6915
|
+
|
6916
|
+
UPB_INLINE void *_upb_array_mutable_accessor(void *msg, size_t ofs,
|
6917
|
+
size_t *size) {
|
6918
|
+
upb_array *arr = *PTR_AT(msg, ofs, upb_array*);
|
6919
|
+
if (arr) {
|
6920
|
+
if (size) *size = arr->size;
|
6921
|
+
return arr->data;
|
6922
|
+
} else {
|
6923
|
+
if (size) *size = 0;
|
6924
|
+
return NULL;
|
6925
|
+
}
|
6926
|
+
}
|
6927
|
+
|
6928
|
+
/* TODO(haberman): this is a mess. It will improve when upb_array no longer
|
6929
|
+
* carries reflective state (type, elem_size). */
|
6930
|
+
UPB_INLINE void *_upb_array_resize_accessor(void *msg, size_t ofs, size_t size,
|
6931
|
+
size_t elem_size,
|
6932
|
+
upb_fieldtype_t type,
|
6933
|
+
upb_arena *arena) {
|
6934
|
+
upb_array *arr = *PTR_AT(msg, ofs, upb_array*);
|
6935
|
+
|
6936
|
+
if (!arr) {
|
6937
|
+
arr = upb_array_new(type, arena);
|
6938
|
+
if (!arr) return NULL;
|
6939
|
+
*PTR_AT(msg, ofs, upb_array*) = arr;
|
6940
|
+
}
|
6941
|
+
|
6942
|
+
if (size > arr->size) {
|
6943
|
+
size_t new_size = UPB_MAX(arr->size, 4);
|
6944
|
+
size_t old_bytes = arr->size * elem_size;
|
6945
|
+
size_t new_bytes;
|
6946
|
+
upb_alloc *alloc = upb_arena_alloc(arr->arena);
|
6947
|
+
while (new_size < size) new_size *= 2;
|
6948
|
+
new_bytes = new_size * elem_size;
|
6949
|
+
arr->data = upb_realloc(alloc, arr->data, old_bytes, new_bytes);
|
6950
|
+
if (!arr->data) {
|
6951
|
+
return NULL;
|
6952
|
+
}
|
6953
|
+
arr->size = new_size;
|
6954
|
+
}
|
6955
|
+
|
6956
|
+
arr->len = size;
|
6957
|
+
return arr->data;
|
6958
|
+
}
|
6959
|
+
|
6960
|
+
UPB_INLINE bool _upb_array_append_accessor(void *msg, size_t ofs,
|
6961
|
+
size_t elem_size,
|
6962
|
+
upb_fieldtype_t type,
|
6963
|
+
const void *value,
|
6964
|
+
upb_arena *arena) {
|
6965
|
+
upb_array *arr = *PTR_AT(msg, ofs, upb_array*);
|
6966
|
+
size_t i = arr ? arr->len : 0;
|
6967
|
+
void *data =
|
6968
|
+
_upb_array_resize_accessor(msg, ofs, i + 1, elem_size, type, arena);
|
6969
|
+
if (!data) return false;
|
6970
|
+
memcpy(PTR_AT(data, i * elem_size, char), value, elem_size);
|
6971
|
+
return true;
|
6972
|
+
}
|
6973
|
+
|
6974
|
+
UPB_INLINE bool _upb_has_field(const void *msg, size_t idx) {
|
6975
|
+
return (*PTR_AT(msg, idx / 8, const char) & (idx % 8)) != 0;
|
6976
|
+
}
|
6977
|
+
|
6978
|
+
UPB_INLINE bool _upb_sethas(const void *msg, size_t idx) {
|
6979
|
+
return (*PTR_AT(msg, idx / 8, char)) |= (1 << (idx % 8));
|
6980
|
+
}
|
6981
|
+
|
6982
|
+
UPB_INLINE bool _upb_clearhas(const void *msg, size_t idx) {
|
6983
|
+
return (*PTR_AT(msg, idx / 8, char)) &= ~(1 << (idx % 8));
|
6984
|
+
}
|
6985
|
+
|
6986
|
+
UPB_INLINE bool _upb_has_oneof_field(const void *msg, size_t case_ofs, int32_t num) {
|
6987
|
+
return *PTR_AT(msg, case_ofs, int32_t) == num;
|
6988
|
+
}
|
6989
|
+
|
6990
|
+
#undef PTR_AT
|
6991
|
+
|
6992
|
+
#endif /* UPB_GENERATED_UTIL_H_ */
|
6993
|
+
|
6736
6994
|
|
6737
6995
|
/*
|
6738
6996
|
** upb_decode: parsing into a upb_msg using a upb_msglayout.
|
@@ -6744,7 +7002,7 @@ UPB_END_EXTERN_C
|
|
6744
7002
|
|
6745
7003
|
UPB_BEGIN_EXTERN_C
|
6746
7004
|
|
6747
|
-
bool upb_decode(
|
7005
|
+
bool upb_decode(upb_strview buf, upb_msg *msg, const upb_msglayout *l);
|
6748
7006
|
|
6749
7007
|
UPB_END_EXTERN_C
|
6750
7008
|
|
@@ -6821,6 +7079,33 @@ typedef struct google_protobuf_SourceCodeInfo google_protobuf_SourceCodeInfo;
|
|
6821
7079
|
typedef struct google_protobuf_SourceCodeInfo_Location google_protobuf_SourceCodeInfo_Location;
|
6822
7080
|
typedef struct google_protobuf_GeneratedCodeInfo google_protobuf_GeneratedCodeInfo;
|
6823
7081
|
typedef struct google_protobuf_GeneratedCodeInfo_Annotation google_protobuf_GeneratedCodeInfo_Annotation;
|
7082
|
+
extern const upb_msglayout google_protobuf_FileDescriptorSet_msginit;
|
7083
|
+
extern const upb_msglayout google_protobuf_FileDescriptorProto_msginit;
|
7084
|
+
extern const upb_msglayout google_protobuf_DescriptorProto_msginit;
|
7085
|
+
extern const upb_msglayout google_protobuf_DescriptorProto_ExtensionRange_msginit;
|
7086
|
+
extern const upb_msglayout google_protobuf_DescriptorProto_ReservedRange_msginit;
|
7087
|
+
extern const upb_msglayout google_protobuf_ExtensionRangeOptions_msginit;
|
7088
|
+
extern const upb_msglayout google_protobuf_FieldDescriptorProto_msginit;
|
7089
|
+
extern const upb_msglayout google_protobuf_OneofDescriptorProto_msginit;
|
7090
|
+
extern const upb_msglayout google_protobuf_EnumDescriptorProto_msginit;
|
7091
|
+
extern const upb_msglayout google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit;
|
7092
|
+
extern const upb_msglayout google_protobuf_EnumValueDescriptorProto_msginit;
|
7093
|
+
extern const upb_msglayout google_protobuf_ServiceDescriptorProto_msginit;
|
7094
|
+
extern const upb_msglayout google_protobuf_MethodDescriptorProto_msginit;
|
7095
|
+
extern const upb_msglayout google_protobuf_FileOptions_msginit;
|
7096
|
+
extern const upb_msglayout google_protobuf_MessageOptions_msginit;
|
7097
|
+
extern const upb_msglayout google_protobuf_FieldOptions_msginit;
|
7098
|
+
extern const upb_msglayout google_protobuf_OneofOptions_msginit;
|
7099
|
+
extern const upb_msglayout google_protobuf_EnumOptions_msginit;
|
7100
|
+
extern const upb_msglayout google_protobuf_EnumValueOptions_msginit;
|
7101
|
+
extern const upb_msglayout google_protobuf_ServiceOptions_msginit;
|
7102
|
+
extern const upb_msglayout google_protobuf_MethodOptions_msginit;
|
7103
|
+
extern const upb_msglayout google_protobuf_UninterpretedOption_msginit;
|
7104
|
+
extern const upb_msglayout google_protobuf_UninterpretedOption_NamePart_msginit;
|
7105
|
+
extern const upb_msglayout google_protobuf_SourceCodeInfo_msginit;
|
7106
|
+
extern const upb_msglayout google_protobuf_SourceCodeInfo_Location_msginit;
|
7107
|
+
extern const upb_msglayout google_protobuf_GeneratedCodeInfo_msginit;
|
7108
|
+
extern const upb_msglayout google_protobuf_GeneratedCodeInfo_Annotation_msginit;
|
6824
7109
|
|
6825
7110
|
/* Enums */
|
6826
7111
|
|
@@ -6877,11 +7162,10 @@ typedef enum {
|
|
6877
7162
|
|
6878
7163
|
/* google.protobuf.FileDescriptorSet */
|
6879
7164
|
|
6880
|
-
extern const upb_msglayout google_protobuf_FileDescriptorSet_msginit;
|
6881
7165
|
UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_new(upb_arena *arena) {
|
6882
7166
|
return (google_protobuf_FileDescriptorSet *)upb_msg_new(&google_protobuf_FileDescriptorSet_msginit, arena);
|
6883
7167
|
}
|
6884
|
-
UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_parsenew(
|
7168
|
+
UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_parsenew(upb_strview buf, upb_arena *arena) {
|
6885
7169
|
google_protobuf_FileDescriptorSet *ret = google_protobuf_FileDescriptorSet_new(arena);
|
6886
7170
|
return (ret && upb_decode(buf, ret, &google_protobuf_FileDescriptorSet_msginit)) ? ret : NULL;
|
6887
7171
|
}
|
@@ -6889,18 +7173,29 @@ UPB_INLINE char *google_protobuf_FileDescriptorSet_serialize(const google_protob
|
|
6889
7173
|
return upb_encode(msg, &google_protobuf_FileDescriptorSet_msginit, arena, len);
|
6890
7174
|
}
|
6891
7175
|
|
6892
|
-
UPB_INLINE const
|
7176
|
+
UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet *msg, size_t *len) { return (const google_protobuf_FileDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
|
6893
7177
|
|
6894
|
-
UPB_INLINE
|
7178
|
+
UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet *msg, size_t *len) {
|
7179
|
+
return (google_protobuf_FileDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
|
7180
|
+
}
|
7181
|
+
UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet *msg, size_t len, upb_arena *arena) {
|
7182
|
+
return (google_protobuf_FileDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7183
|
+
}
|
7184
|
+
UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet *msg, upb_arena *arena) {
|
7185
|
+
struct google_protobuf_FileDescriptorProto* sub = (struct google_protobuf_FileDescriptorProto*)upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
|
7186
|
+
bool ok = _upb_array_append_accessor(
|
7187
|
+
msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7188
|
+
if (!ok) return NULL;
|
7189
|
+
return sub;
|
7190
|
+
}
|
6895
7191
|
|
6896
7192
|
|
6897
7193
|
/* google.protobuf.FileDescriptorProto */
|
6898
7194
|
|
6899
|
-
extern const upb_msglayout google_protobuf_FileDescriptorProto_msginit;
|
6900
7195
|
UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_new(upb_arena *arena) {
|
6901
7196
|
return (google_protobuf_FileDescriptorProto *)upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
|
6902
7197
|
}
|
6903
|
-
UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_parsenew(
|
7198
|
+
UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
6904
7199
|
google_protobuf_FileDescriptorProto *ret = google_protobuf_FileDescriptorProto_new(arena);
|
6905
7200
|
return (ret && upb_decode(buf, ret, &google_protobuf_FileDescriptorProto_msginit)) ? ret : NULL;
|
6906
7201
|
}
|
@@ -6908,40 +7203,152 @@ UPB_INLINE char *google_protobuf_FileDescriptorProto_serialize(const google_prot
|
|
6908
7203
|
return upb_encode(msg, &google_protobuf_FileDescriptorProto_msginit, arena, len);
|
6909
7204
|
}
|
6910
7205
|
|
6911
|
-
UPB_INLINE
|
6912
|
-
UPB_INLINE
|
6913
|
-
UPB_INLINE
|
6914
|
-
UPB_INLINE
|
6915
|
-
UPB_INLINE const
|
6916
|
-
UPB_INLINE const
|
6917
|
-
UPB_INLINE const
|
6918
|
-
UPB_INLINE const
|
6919
|
-
UPB_INLINE const
|
6920
|
-
UPB_INLINE
|
6921
|
-
UPB_INLINE const
|
6922
|
-
UPB_INLINE
|
6923
|
-
|
6924
|
-
UPB_INLINE
|
6925
|
-
UPB_INLINE
|
6926
|
-
UPB_INLINE
|
6927
|
-
UPB_INLINE
|
6928
|
-
|
6929
|
-
UPB_INLINE void
|
6930
|
-
|
6931
|
-
|
6932
|
-
|
6933
|
-
UPB_INLINE void
|
6934
|
-
|
6935
|
-
|
7206
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7207
|
+
UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
7208
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7209
|
+
UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)); }
|
7210
|
+
UPB_INLINE upb_strview const* google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(36, 72), len); }
|
7211
|
+
UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(40, 80), len); }
|
7212
|
+
UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(44, 88), len); }
|
7213
|
+
UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_ServiceDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(48, 96), len); }
|
7214
|
+
UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_FieldDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(52, 104), len); }
|
7215
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 3); }
|
7216
|
+
UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_FileOptions*, UPB_SIZE(28, 56)); }
|
7217
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 4); }
|
7218
|
+
UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_SourceCodeInfo*, UPB_SIZE(32, 64)); }
|
7219
|
+
UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 112), len); }
|
7220
|
+
UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(60, 120), len); }
|
7221
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 2); }
|
7222
|
+
UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)); }
|
7223
|
+
|
7224
|
+
UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_strview value) {
|
7225
|
+
_upb_sethas(msg, 0);
|
7226
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
7227
|
+
}
|
7228
|
+
UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_strview value) {
|
7229
|
+
_upb_sethas(msg, 1);
|
7230
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)) = value;
|
7231
|
+
}
|
7232
|
+
UPB_INLINE upb_strview* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7233
|
+
return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(36, 72), len);
|
7234
|
+
}
|
7235
|
+
UPB_INLINE upb_strview* google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7236
|
+
return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(36, 72), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
|
7237
|
+
}
|
7238
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto *msg, upb_strview val, upb_arena *arena) {
|
7239
|
+
return _upb_array_append_accessor(
|
7240
|
+
msg, UPB_SIZE(36, 72), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
|
7241
|
+
}
|
7242
|
+
UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7243
|
+
return (google_protobuf_DescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(40, 80), len);
|
7244
|
+
}
|
7245
|
+
UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7246
|
+
return (google_protobuf_DescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(40, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7247
|
+
}
|
7248
|
+
UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
|
7249
|
+
struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
|
7250
|
+
bool ok = _upb_array_append_accessor(
|
7251
|
+
msg, UPB_SIZE(40, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7252
|
+
if (!ok) return NULL;
|
7253
|
+
return sub;
|
7254
|
+
}
|
7255
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7256
|
+
return (google_protobuf_EnumDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(44, 88), len);
|
7257
|
+
}
|
7258
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7259
|
+
return (google_protobuf_EnumDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(44, 88), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7260
|
+
}
|
7261
|
+
UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
|
7262
|
+
struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
|
7263
|
+
bool ok = _upb_array_append_accessor(
|
7264
|
+
msg, UPB_SIZE(44, 88), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7265
|
+
if (!ok) return NULL;
|
7266
|
+
return sub;
|
7267
|
+
}
|
7268
|
+
UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7269
|
+
return (google_protobuf_ServiceDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(48, 96), len);
|
7270
|
+
}
|
7271
|
+
UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7272
|
+
return (google_protobuf_ServiceDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(48, 96), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7273
|
+
}
|
7274
|
+
UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
|
7275
|
+
struct google_protobuf_ServiceDescriptorProto* sub = (struct google_protobuf_ServiceDescriptorProto*)upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
|
7276
|
+
bool ok = _upb_array_append_accessor(
|
7277
|
+
msg, UPB_SIZE(48, 96), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7278
|
+
if (!ok) return NULL;
|
7279
|
+
return sub;
|
7280
|
+
}
|
7281
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7282
|
+
return (google_protobuf_FieldDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 104), len);
|
7283
|
+
}
|
7284
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7285
|
+
return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(52, 104), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7286
|
+
}
|
7287
|
+
UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
|
7288
|
+
struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
|
7289
|
+
bool ok = _upb_array_append_accessor(
|
7290
|
+
msg, UPB_SIZE(52, 104), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7291
|
+
if (!ok) return NULL;
|
7292
|
+
return sub;
|
7293
|
+
}
|
7294
|
+
UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
|
7295
|
+
_upb_sethas(msg, 3);
|
7296
|
+
UPB_FIELD_AT(msg, google_protobuf_FileOptions*, UPB_SIZE(28, 56)) = value;
|
7297
|
+
}
|
7298
|
+
UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
|
7299
|
+
struct google_protobuf_FileOptions* sub = (struct google_protobuf_FileOptions*)google_protobuf_FileDescriptorProto_options(msg);
|
7300
|
+
if (sub == NULL) {
|
7301
|
+
sub = (struct google_protobuf_FileOptions*)upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
|
7302
|
+
if (!sub) return NULL;
|
7303
|
+
google_protobuf_FileDescriptorProto_set_options(msg, sub);
|
7304
|
+
}
|
7305
|
+
return sub;
|
7306
|
+
}
|
7307
|
+
UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
|
7308
|
+
_upb_sethas(msg, 4);
|
7309
|
+
UPB_FIELD_AT(msg, google_protobuf_SourceCodeInfo*, UPB_SIZE(32, 64)) = value;
|
7310
|
+
}
|
7311
|
+
UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
|
7312
|
+
struct google_protobuf_SourceCodeInfo* sub = (struct google_protobuf_SourceCodeInfo*)google_protobuf_FileDescriptorProto_source_code_info(msg);
|
7313
|
+
if (sub == NULL) {
|
7314
|
+
sub = (struct google_protobuf_SourceCodeInfo*)upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
|
7315
|
+
if (!sub) return NULL;
|
7316
|
+
google_protobuf_FileDescriptorProto_set_source_code_info(msg, sub);
|
7317
|
+
}
|
7318
|
+
return sub;
|
7319
|
+
}
|
7320
|
+
UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7321
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 112), len);
|
7322
|
+
}
|
7323
|
+
UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7324
|
+
return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(56, 112), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
|
7325
|
+
}
|
7326
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) {
|
7327
|
+
return _upb_array_append_accessor(
|
7328
|
+
msg, UPB_SIZE(56, 112), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
|
7329
|
+
}
|
7330
|
+
UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) {
|
7331
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(60, 120), len);
|
7332
|
+
}
|
7333
|
+
UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7334
|
+
return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(60, 120), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
|
7335
|
+
}
|
7336
|
+
UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) {
|
7337
|
+
return _upb_array_append_accessor(
|
7338
|
+
msg, UPB_SIZE(60, 120), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
|
7339
|
+
}
|
7340
|
+
UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_strview value) {
|
7341
|
+
_upb_sethas(msg, 2);
|
7342
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)) = value;
|
7343
|
+
}
|
6936
7344
|
|
6937
7345
|
|
6938
7346
|
/* google.protobuf.DescriptorProto */
|
6939
7347
|
|
6940
|
-
extern const upb_msglayout google_protobuf_DescriptorProto_msginit;
|
6941
7348
|
UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_new(upb_arena *arena) {
|
6942
7349
|
return (google_protobuf_DescriptorProto *)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
|
6943
7350
|
}
|
6944
|
-
UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_parsenew(
|
7351
|
+
UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
6945
7352
|
google_protobuf_DescriptorProto *ret = google_protobuf_DescriptorProto_new(arena);
|
6946
7353
|
return (ret && upb_decode(buf, ret, &google_protobuf_DescriptorProto_msginit)) ? ret : NULL;
|
6947
7354
|
}
|
@@ -6949,59 +7356,188 @@ UPB_INLINE char *google_protobuf_DescriptorProto_serialize(const google_protobuf
|
|
6949
7356
|
return upb_encode(msg, &google_protobuf_DescriptorProto_msginit, arena, len);
|
6950
7357
|
}
|
6951
7358
|
|
6952
|
-
UPB_INLINE
|
6953
|
-
UPB_INLINE
|
6954
|
-
UPB_INLINE const
|
6955
|
-
UPB_INLINE const
|
6956
|
-
UPB_INLINE const
|
6957
|
-
UPB_INLINE const
|
6958
|
-
UPB_INLINE const
|
6959
|
-
UPB_INLINE
|
6960
|
-
UPB_INLINE const
|
6961
|
-
UPB_INLINE const
|
6962
|
-
|
6963
|
-
UPB_INLINE
|
6964
|
-
|
6965
|
-
UPB_INLINE void
|
6966
|
-
|
6967
|
-
|
6968
|
-
|
6969
|
-
UPB_INLINE
|
6970
|
-
|
6971
|
-
|
6972
|
-
UPB_INLINE
|
6973
|
-
|
6974
|
-
|
6975
|
-
|
6976
|
-
|
6977
|
-
|
6978
|
-
|
6979
|
-
|
7359
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7360
|
+
UPB_INLINE upb_strview google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
7361
|
+
UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_FieldDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(16, 32), len); }
|
7362
|
+
UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(20, 40), len); }
|
7363
|
+
UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
|
7364
|
+
UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto_ExtensionRange* const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len); }
|
7365
|
+
UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_FieldDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(32, 64), len); }
|
7366
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7367
|
+
UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_MessageOptions*, UPB_SIZE(12, 24)); }
|
7368
|
+
UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_OneofDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(36, 72), len); }
|
7369
|
+
UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto_ReservedRange* const*)_upb_array_accessor(msg, UPB_SIZE(40, 80), len); }
|
7370
|
+
UPB_INLINE upb_strview const* google_protobuf_DescriptorProto_reserved_name(const google_protobuf_DescriptorProto *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(44, 88), len); }
|
7371
|
+
|
7372
|
+
UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_strview value) {
|
7373
|
+
_upb_sethas(msg, 0);
|
7374
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
7375
|
+
}
|
7376
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7377
|
+
return (google_protobuf_FieldDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 32), len);
|
7378
|
+
}
|
7379
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7380
|
+
return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(16, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7381
|
+
}
|
7382
|
+
UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7383
|
+
struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
|
7384
|
+
bool ok = _upb_array_append_accessor(
|
7385
|
+
msg, UPB_SIZE(16, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7386
|
+
if (!ok) return NULL;
|
7387
|
+
return sub;
|
7388
|
+
}
|
7389
|
+
UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7390
|
+
return (google_protobuf_DescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 40), len);
|
7391
|
+
}
|
7392
|
+
UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7393
|
+
return (google_protobuf_DescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(20, 40), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7394
|
+
}
|
7395
|
+
UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7396
|
+
struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
|
7397
|
+
bool ok = _upb_array_append_accessor(
|
7398
|
+
msg, UPB_SIZE(20, 40), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7399
|
+
if (!ok) return NULL;
|
7400
|
+
return sub;
|
7401
|
+
}
|
7402
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7403
|
+
return (google_protobuf_EnumDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
|
7404
|
+
}
|
7405
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7406
|
+
return (google_protobuf_EnumDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(24, 48), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7407
|
+
}
|
7408
|
+
UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7409
|
+
struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
|
7410
|
+
bool ok = _upb_array_append_accessor(
|
7411
|
+
msg, UPB_SIZE(24, 48), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7412
|
+
if (!ok) return NULL;
|
7413
|
+
return sub;
|
7414
|
+
}
|
7415
|
+
UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7416
|
+
return (google_protobuf_DescriptorProto_ExtensionRange**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
|
7417
|
+
}
|
7418
|
+
UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7419
|
+
return (google_protobuf_DescriptorProto_ExtensionRange**)_upb_array_resize_accessor(msg, UPB_SIZE(28, 56), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7420
|
+
}
|
7421
|
+
UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7422
|
+
struct google_protobuf_DescriptorProto_ExtensionRange* sub = (struct google_protobuf_DescriptorProto_ExtensionRange*)upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
|
7423
|
+
bool ok = _upb_array_append_accessor(
|
7424
|
+
msg, UPB_SIZE(28, 56), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7425
|
+
if (!ok) return NULL;
|
7426
|
+
return sub;
|
7427
|
+
}
|
7428
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7429
|
+
return (google_protobuf_FieldDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 64), len);
|
7430
|
+
}
|
7431
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7432
|
+
return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(32, 64), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7433
|
+
}
|
7434
|
+
UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7435
|
+
struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
|
7436
|
+
bool ok = _upb_array_append_accessor(
|
7437
|
+
msg, UPB_SIZE(32, 64), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7438
|
+
if (!ok) return NULL;
|
7439
|
+
return sub;
|
7440
|
+
}
|
7441
|
+
UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) {
|
7442
|
+
_upb_sethas(msg, 1);
|
7443
|
+
UPB_FIELD_AT(msg, google_protobuf_MessageOptions*, UPB_SIZE(12, 24)) = value;
|
7444
|
+
}
|
7445
|
+
UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7446
|
+
struct google_protobuf_MessageOptions* sub = (struct google_protobuf_MessageOptions*)google_protobuf_DescriptorProto_options(msg);
|
7447
|
+
if (sub == NULL) {
|
7448
|
+
sub = (struct google_protobuf_MessageOptions*)upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
|
7449
|
+
if (!sub) return NULL;
|
7450
|
+
google_protobuf_DescriptorProto_set_options(msg, sub);
|
7451
|
+
}
|
7452
|
+
return sub;
|
6980
7453
|
}
|
6981
|
-
UPB_INLINE
|
6982
|
-
|
6983
|
-
|
7454
|
+
UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7455
|
+
return (google_protobuf_OneofDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(36, 72), len);
|
7456
|
+
}
|
7457
|
+
UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7458
|
+
return (google_protobuf_OneofDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(36, 72), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7459
|
+
}
|
7460
|
+
UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7461
|
+
struct google_protobuf_OneofDescriptorProto* sub = (struct google_protobuf_OneofDescriptorProto*)upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
|
7462
|
+
bool ok = _upb_array_append_accessor(
|
7463
|
+
msg, UPB_SIZE(36, 72), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7464
|
+
if (!ok) return NULL;
|
7465
|
+
return sub;
|
7466
|
+
}
|
7467
|
+
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7468
|
+
return (google_protobuf_DescriptorProto_ReservedRange**)_upb_array_mutable_accessor(msg, UPB_SIZE(40, 80), len);
|
7469
|
+
}
|
7470
|
+
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7471
|
+
return (google_protobuf_DescriptorProto_ReservedRange**)_upb_array_resize_accessor(msg, UPB_SIZE(40, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7472
|
+
}
|
7473
|
+
UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
|
7474
|
+
struct google_protobuf_DescriptorProto_ReservedRange* sub = (struct google_protobuf_DescriptorProto_ReservedRange*)upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
|
7475
|
+
bool ok = _upb_array_append_accessor(
|
7476
|
+
msg, UPB_SIZE(40, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7477
|
+
if (!ok) return NULL;
|
7478
|
+
return sub;
|
7479
|
+
}
|
7480
|
+
UPB_INLINE upb_strview* google_protobuf_DescriptorProto_mutable_reserved_name(google_protobuf_DescriptorProto *msg, size_t *len) {
|
7481
|
+
return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(44, 88), len);
|
7482
|
+
}
|
7483
|
+
UPB_INLINE upb_strview* google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
|
7484
|
+
return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(44, 88), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
|
7485
|
+
}
|
7486
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto *msg, upb_strview val, upb_arena *arena) {
|
7487
|
+
return _upb_array_append_accessor(
|
7488
|
+
msg, UPB_SIZE(44, 88), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
|
7489
|
+
}
|
7490
|
+
|
7491
|
+
|
7492
|
+
/* google.protobuf.DescriptorProto.ExtensionRange */
|
7493
|
+
|
7494
|
+
UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_new(upb_arena *arena) {
|
7495
|
+
return (google_protobuf_DescriptorProto_ExtensionRange *)upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
|
7496
|
+
}
|
7497
|
+
UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_parsenew(upb_strview buf, upb_arena *arena) {
|
7498
|
+
google_protobuf_DescriptorProto_ExtensionRange *ret = google_protobuf_DescriptorProto_ExtensionRange_new(arena);
|
7499
|
+
return (ret && upb_decode(buf, ret, &google_protobuf_DescriptorProto_ExtensionRange_msginit)) ? ret : NULL;
|
6984
7500
|
}
|
6985
7501
|
UPB_INLINE char *google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena, size_t *len) {
|
6986
7502
|
return upb_encode(msg, &google_protobuf_DescriptorProto_ExtensionRange_msginit, arena, len);
|
6987
7503
|
}
|
6988
7504
|
|
7505
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_has_field(msg, 0); }
|
6989
7506
|
UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
|
7507
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_has_field(msg, 1); }
|
6990
7508
|
UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
|
7509
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_has_field(msg, 2); }
|
6991
7510
|
UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return UPB_FIELD_AT(msg, const google_protobuf_ExtensionRangeOptions*, UPB_SIZE(12, 16)); }
|
6992
7511
|
|
6993
|
-
UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
|
6994
|
-
|
6995
|
-
|
7512
|
+
UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
|
7513
|
+
_upb_sethas(msg, 0);
|
7514
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
|
7515
|
+
}
|
7516
|
+
UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
|
7517
|
+
_upb_sethas(msg, 1);
|
7518
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
|
7519
|
+
}
|
7520
|
+
UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) {
|
7521
|
+
_upb_sethas(msg, 2);
|
7522
|
+
UPB_FIELD_AT(msg, google_protobuf_ExtensionRangeOptions*, UPB_SIZE(12, 16)) = value;
|
7523
|
+
}
|
7524
|
+
UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena) {
|
7525
|
+
struct google_protobuf_ExtensionRangeOptions* sub = (struct google_protobuf_ExtensionRangeOptions*)google_protobuf_DescriptorProto_ExtensionRange_options(msg);
|
7526
|
+
if (sub == NULL) {
|
7527
|
+
sub = (struct google_protobuf_ExtensionRangeOptions*)upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
|
7528
|
+
if (!sub) return NULL;
|
7529
|
+
google_protobuf_DescriptorProto_ExtensionRange_set_options(msg, sub);
|
7530
|
+
}
|
7531
|
+
return sub;
|
7532
|
+
}
|
6996
7533
|
|
6997
7534
|
|
6998
7535
|
/* google.protobuf.DescriptorProto.ReservedRange */
|
6999
7536
|
|
7000
|
-
extern const upb_msglayout google_protobuf_DescriptorProto_ReservedRange_msginit;
|
7001
7537
|
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_new(upb_arena *arena) {
|
7002
7538
|
return (google_protobuf_DescriptorProto_ReservedRange *)upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
|
7003
7539
|
}
|
7004
|
-
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_parsenew(
|
7540
|
+
UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_parsenew(upb_strview buf, upb_arena *arena) {
|
7005
7541
|
google_protobuf_DescriptorProto_ReservedRange *ret = google_protobuf_DescriptorProto_ReservedRange_new(arena);
|
7006
7542
|
return (ret && upb_decode(buf, ret, &google_protobuf_DescriptorProto_ReservedRange_msginit)) ? ret : NULL;
|
7007
7543
|
}
|
@@ -7009,20 +7545,27 @@ UPB_INLINE char *google_protobuf_DescriptorProto_ReservedRange_serialize(const g
|
|
7009
7545
|
return upb_encode(msg, &google_protobuf_DescriptorProto_ReservedRange_msginit, arena, len);
|
7010
7546
|
}
|
7011
7547
|
|
7548
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange *msg) { return _upb_has_field(msg, 0); }
|
7012
7549
|
UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
|
7550
|
+
UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange *msg) { return _upb_has_field(msg, 1); }
|
7013
7551
|
UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
|
7014
7552
|
|
7015
|
-
UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
|
7016
|
-
|
7553
|
+
UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
|
7554
|
+
_upb_sethas(msg, 0);
|
7555
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
|
7556
|
+
}
|
7557
|
+
UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
|
7558
|
+
_upb_sethas(msg, 1);
|
7559
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
|
7560
|
+
}
|
7017
7561
|
|
7018
7562
|
|
7019
7563
|
/* google.protobuf.ExtensionRangeOptions */
|
7020
7564
|
|
7021
|
-
extern const upb_msglayout google_protobuf_ExtensionRangeOptions_msginit;
|
7022
7565
|
UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_new(upb_arena *arena) {
|
7023
7566
|
return (google_protobuf_ExtensionRangeOptions *)upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
|
7024
7567
|
}
|
7025
|
-
UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_parsenew(
|
7568
|
+
UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7026
7569
|
google_protobuf_ExtensionRangeOptions *ret = google_protobuf_ExtensionRangeOptions_new(arena);
|
7027
7570
|
return (ret && upb_decode(buf, ret, &google_protobuf_ExtensionRangeOptions_msginit)) ? ret : NULL;
|
7028
7571
|
}
|
@@ -7030,18 +7573,29 @@ UPB_INLINE char *google_protobuf_ExtensionRangeOptions_serialize(const google_pr
|
|
7030
7573
|
return upb_encode(msg, &google_protobuf_ExtensionRangeOptions_msginit, arena, len);
|
7031
7574
|
}
|
7032
7575
|
|
7033
|
-
UPB_INLINE const
|
7576
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
|
7034
7577
|
|
7035
|
-
UPB_INLINE
|
7578
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t *len) {
|
7579
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
|
7580
|
+
}
|
7581
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t len, upb_arena *arena) {
|
7582
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7583
|
+
}
|
7584
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena) {
|
7585
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
7586
|
+
bool ok = _upb_array_append_accessor(
|
7587
|
+
msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7588
|
+
if (!ok) return NULL;
|
7589
|
+
return sub;
|
7590
|
+
}
|
7036
7591
|
|
7037
7592
|
|
7038
7593
|
/* google.protobuf.FieldDescriptorProto */
|
7039
7594
|
|
7040
|
-
extern const upb_msglayout google_protobuf_FieldDescriptorProto_msginit;
|
7041
7595
|
UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_new(upb_arena *arena) {
|
7042
7596
|
return (google_protobuf_FieldDescriptorProto *)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
|
7043
7597
|
}
|
7044
|
-
UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_parsenew(
|
7598
|
+
UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
7045
7599
|
google_protobuf_FieldDescriptorProto *ret = google_protobuf_FieldDescriptorProto_new(arena);
|
7046
7600
|
return (ret && upb_decode(buf, ret, &google_protobuf_FieldDescriptorProto_msginit)) ? ret : NULL;
|
7047
7601
|
}
|
@@ -7049,36 +7603,84 @@ UPB_INLINE char *google_protobuf_FieldDescriptorProto_serialize(const google_pro
|
|
7049
7603
|
return upb_encode(msg, &google_protobuf_FieldDescriptorProto_msginit, arena, len);
|
7050
7604
|
}
|
7051
7605
|
|
7052
|
-
UPB_INLINE
|
7053
|
-
UPB_INLINE
|
7606
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 4); }
|
7607
|
+
UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 32)); }
|
7608
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 5); }
|
7609
|
+
UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(40, 48)); }
|
7610
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 2); }
|
7054
7611
|
UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(24, 24)); }
|
7612
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7055
7613
|
UPB_INLINE google_protobuf_FieldDescriptorProto_Label google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, google_protobuf_FieldDescriptorProto_Label, UPB_SIZE(8, 8)); }
|
7614
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7056
7615
|
UPB_INLINE google_protobuf_FieldDescriptorProto_Type google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, google_protobuf_FieldDescriptorProto_Type, UPB_SIZE(16, 16)); }
|
7057
|
-
UPB_INLINE
|
7058
|
-
UPB_INLINE
|
7616
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 6); }
|
7617
|
+
UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(48, 64)); }
|
7618
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 7); }
|
7619
|
+
UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(56, 80)); }
|
7620
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 9); }
|
7059
7621
|
UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_FieldOptions*, UPB_SIZE(72, 112)); }
|
7622
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 3); }
|
7060
7623
|
UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(28, 28)); }
|
7061
|
-
UPB_INLINE
|
7062
|
-
|
7063
|
-
|
7064
|
-
UPB_INLINE void
|
7065
|
-
|
7066
|
-
|
7067
|
-
|
7068
|
-
UPB_INLINE void
|
7069
|
-
|
7070
|
-
|
7071
|
-
|
7072
|
-
UPB_INLINE void
|
7624
|
+
UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 8); }
|
7625
|
+
UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(64, 96)); }
|
7626
|
+
|
7627
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
|
7628
|
+
_upb_sethas(msg, 4);
|
7629
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 32)) = value;
|
7630
|
+
}
|
7631
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
|
7632
|
+
_upb_sethas(msg, 5);
|
7633
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(40, 48)) = value;
|
7634
|
+
}
|
7635
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
|
7636
|
+
_upb_sethas(msg, 2);
|
7637
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(24, 24)) = value;
|
7638
|
+
}
|
7639
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldDescriptorProto_Label value) {
|
7640
|
+
_upb_sethas(msg, 0);
|
7641
|
+
UPB_FIELD_AT(msg, google_protobuf_FieldDescriptorProto_Label, UPB_SIZE(8, 8)) = value;
|
7642
|
+
}
|
7643
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldDescriptorProto_Type value) {
|
7644
|
+
_upb_sethas(msg, 1);
|
7645
|
+
UPB_FIELD_AT(msg, google_protobuf_FieldDescriptorProto_Type, UPB_SIZE(16, 16)) = value;
|
7646
|
+
}
|
7647
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
|
7648
|
+
_upb_sethas(msg, 6);
|
7649
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(48, 64)) = value;
|
7650
|
+
}
|
7651
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
|
7652
|
+
_upb_sethas(msg, 7);
|
7653
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(56, 80)) = value;
|
7654
|
+
}
|
7655
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
|
7656
|
+
_upb_sethas(msg, 9);
|
7657
|
+
UPB_FIELD_AT(msg, google_protobuf_FieldOptions*, UPB_SIZE(72, 112)) = value;
|
7658
|
+
}
|
7659
|
+
UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto *msg, upb_arena *arena) {
|
7660
|
+
struct google_protobuf_FieldOptions* sub = (struct google_protobuf_FieldOptions*)google_protobuf_FieldDescriptorProto_options(msg);
|
7661
|
+
if (sub == NULL) {
|
7662
|
+
sub = (struct google_protobuf_FieldOptions*)upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
|
7663
|
+
if (!sub) return NULL;
|
7664
|
+
google_protobuf_FieldDescriptorProto_set_options(msg, sub);
|
7665
|
+
}
|
7666
|
+
return sub;
|
7667
|
+
}
|
7668
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
|
7669
|
+
_upb_sethas(msg, 3);
|
7670
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(28, 28)) = value;
|
7671
|
+
}
|
7672
|
+
UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
|
7673
|
+
_upb_sethas(msg, 8);
|
7674
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(64, 96)) = value;
|
7675
|
+
}
|
7073
7676
|
|
7074
7677
|
|
7075
7678
|
/* google.protobuf.OneofDescriptorProto */
|
7076
7679
|
|
7077
|
-
extern const upb_msglayout google_protobuf_OneofDescriptorProto_msginit;
|
7078
7680
|
UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_new(upb_arena *arena) {
|
7079
7681
|
return (google_protobuf_OneofDescriptorProto *)upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
|
7080
7682
|
}
|
7081
|
-
UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_parsenew(
|
7683
|
+
UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
7082
7684
|
google_protobuf_OneofDescriptorProto *ret = google_protobuf_OneofDescriptorProto_new(arena);
|
7083
7685
|
return (ret && upb_decode(buf, ret, &google_protobuf_OneofDescriptorProto_msginit)) ? ret : NULL;
|
7084
7686
|
}
|
@@ -7086,20 +7688,36 @@ UPB_INLINE char *google_protobuf_OneofDescriptorProto_serialize(const google_pro
|
|
7086
7688
|
return upb_encode(msg, &google_protobuf_OneofDescriptorProto_msginit, arena, len);
|
7087
7689
|
}
|
7088
7690
|
|
7089
|
-
UPB_INLINE
|
7090
|
-
UPB_INLINE
|
7691
|
+
UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7692
|
+
UPB_INLINE upb_strview google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
7693
|
+
UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7694
|
+
UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_OneofOptions*, UPB_SIZE(12, 24)); }
|
7091
7695
|
|
7092
|
-
UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg,
|
7093
|
-
|
7696
|
+
UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_strview value) {
|
7697
|
+
_upb_sethas(msg, 0);
|
7698
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
7699
|
+
}
|
7700
|
+
UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) {
|
7701
|
+
_upb_sethas(msg, 1);
|
7702
|
+
UPB_FIELD_AT(msg, google_protobuf_OneofOptions*, UPB_SIZE(12, 24)) = value;
|
7703
|
+
}
|
7704
|
+
UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto *msg, upb_arena *arena) {
|
7705
|
+
struct google_protobuf_OneofOptions* sub = (struct google_protobuf_OneofOptions*)google_protobuf_OneofDescriptorProto_options(msg);
|
7706
|
+
if (sub == NULL) {
|
7707
|
+
sub = (struct google_protobuf_OneofOptions*)upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
|
7708
|
+
if (!sub) return NULL;
|
7709
|
+
google_protobuf_OneofDescriptorProto_set_options(msg, sub);
|
7710
|
+
}
|
7711
|
+
return sub;
|
7712
|
+
}
|
7094
7713
|
|
7095
7714
|
|
7096
7715
|
/* google.protobuf.EnumDescriptorProto */
|
7097
7716
|
|
7098
|
-
extern const upb_msglayout google_protobuf_EnumDescriptorProto_msginit;
|
7099
7717
|
UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_new(upb_arena *arena) {
|
7100
7718
|
return (google_protobuf_EnumDescriptorProto *)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
|
7101
7719
|
}
|
7102
|
-
UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_parsenew(
|
7720
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
7103
7721
|
google_protobuf_EnumDescriptorProto *ret = google_protobuf_EnumDescriptorProto_new(arena);
|
7104
7722
|
return (ret && upb_decode(buf, ret, &google_protobuf_EnumDescriptorProto_msginit)) ? ret : NULL;
|
7105
7723
|
}
|
@@ -7107,26 +7725,75 @@ UPB_INLINE char *google_protobuf_EnumDescriptorProto_serialize(const google_prot
|
|
7107
7725
|
return upb_encode(msg, &google_protobuf_EnumDescriptorProto_msginit, arena, len);
|
7108
7726
|
}
|
7109
7727
|
|
7110
|
-
UPB_INLINE
|
7111
|
-
UPB_INLINE
|
7112
|
-
UPB_INLINE const
|
7113
|
-
UPB_INLINE
|
7114
|
-
UPB_INLINE const
|
7115
|
-
|
7116
|
-
UPB_INLINE
|
7117
|
-
|
7118
|
-
UPB_INLINE void
|
7119
|
-
|
7120
|
-
|
7728
|
+
UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7729
|
+
UPB_INLINE upb_strview google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
7730
|
+
UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumValueDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(16, 32), len); }
|
7731
|
+
UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7732
|
+
UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_EnumOptions*, UPB_SIZE(12, 24)); }
|
7733
|
+
UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumDescriptorProto_EnumReservedRange* const*)_upb_array_accessor(msg, UPB_SIZE(20, 40), len); }
|
7734
|
+
UPB_INLINE upb_strview const* google_protobuf_EnumDescriptorProto_reserved_name(const google_protobuf_EnumDescriptorProto *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
|
7735
|
+
|
7736
|
+
UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_strview value) {
|
7737
|
+
_upb_sethas(msg, 0);
|
7738
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
7739
|
+
}
|
7740
|
+
UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto *msg, size_t *len) {
|
7741
|
+
return (google_protobuf_EnumValueDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 32), len);
|
7742
|
+
}
|
7743
|
+
UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7744
|
+
return (google_protobuf_EnumValueDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(16, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7745
|
+
}
|
7746
|
+
UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) {
|
7747
|
+
struct google_protobuf_EnumValueDescriptorProto* sub = (struct google_protobuf_EnumValueDescriptorProto*)upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
|
7748
|
+
bool ok = _upb_array_append_accessor(
|
7749
|
+
msg, UPB_SIZE(16, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7750
|
+
if (!ok) return NULL;
|
7751
|
+
return sub;
|
7752
|
+
}
|
7753
|
+
UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) {
|
7754
|
+
_upb_sethas(msg, 1);
|
7755
|
+
UPB_FIELD_AT(msg, google_protobuf_EnumOptions*, UPB_SIZE(12, 24)) = value;
|
7756
|
+
}
|
7757
|
+
UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) {
|
7758
|
+
struct google_protobuf_EnumOptions* sub = (struct google_protobuf_EnumOptions*)google_protobuf_EnumDescriptorProto_options(msg);
|
7759
|
+
if (sub == NULL) {
|
7760
|
+
sub = (struct google_protobuf_EnumOptions*)upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
|
7761
|
+
if (!sub) return NULL;
|
7762
|
+
google_protobuf_EnumDescriptorProto_set_options(msg, sub);
|
7763
|
+
}
|
7764
|
+
return sub;
|
7765
|
+
}
|
7766
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t *len) {
|
7767
|
+
return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 40), len);
|
7768
|
+
}
|
7769
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7770
|
+
return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)_upb_array_resize_accessor(msg, UPB_SIZE(20, 40), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7771
|
+
}
|
7772
|
+
UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) {
|
7773
|
+
struct google_protobuf_EnumDescriptorProto_EnumReservedRange* sub = (struct google_protobuf_EnumDescriptorProto_EnumReservedRange*)upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
|
7774
|
+
bool ok = _upb_array_append_accessor(
|
7775
|
+
msg, UPB_SIZE(20, 40), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7776
|
+
if (!ok) return NULL;
|
7777
|
+
return sub;
|
7778
|
+
}
|
7779
|
+
UPB_INLINE upb_strview* google_protobuf_EnumDescriptorProto_mutable_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t *len) {
|
7780
|
+
return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
|
7781
|
+
}
|
7782
|
+
UPB_INLINE upb_strview* google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7783
|
+
return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(24, 48), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
|
7784
|
+
}
|
7785
|
+
UPB_INLINE bool google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto *msg, upb_strview val, upb_arena *arena) {
|
7786
|
+
return _upb_array_append_accessor(
|
7787
|
+
msg, UPB_SIZE(24, 48), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
|
7788
|
+
}
|
7121
7789
|
|
7122
7790
|
|
7123
7791
|
/* google.protobuf.EnumDescriptorProto.EnumReservedRange */
|
7124
7792
|
|
7125
|
-
extern const upb_msglayout google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit;
|
7126
7793
|
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_arena *arena) {
|
7127
7794
|
return (google_protobuf_EnumDescriptorProto_EnumReservedRange *)upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
|
7128
7795
|
}
|
7129
|
-
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_parsenew(
|
7796
|
+
UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_parsenew(upb_strview buf, upb_arena *arena) {
|
7130
7797
|
google_protobuf_EnumDescriptorProto_EnumReservedRange *ret = google_protobuf_EnumDescriptorProto_EnumReservedRange_new(arena);
|
7131
7798
|
return (ret && upb_decode(buf, ret, &google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit)) ? ret : NULL;
|
7132
7799
|
}
|
@@ -7134,20 +7801,27 @@ UPB_INLINE char *google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize
|
|
7134
7801
|
return upb_encode(msg, &google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena, len);
|
7135
7802
|
}
|
7136
7803
|
|
7804
|
+
UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return _upb_has_field(msg, 0); }
|
7137
7805
|
UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
|
7806
|
+
UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return _upb_has_field(msg, 1); }
|
7138
7807
|
UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
|
7139
7808
|
|
7140
|
-
UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
|
7141
|
-
|
7809
|
+
UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
|
7810
|
+
_upb_sethas(msg, 0);
|
7811
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
|
7812
|
+
}
|
7813
|
+
UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
|
7814
|
+
_upb_sethas(msg, 1);
|
7815
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
|
7816
|
+
}
|
7142
7817
|
|
7143
7818
|
|
7144
7819
|
/* google.protobuf.EnumValueDescriptorProto */
|
7145
7820
|
|
7146
|
-
extern const upb_msglayout google_protobuf_EnumValueDescriptorProto_msginit;
|
7147
7821
|
UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_new(upb_arena *arena) {
|
7148
7822
|
return (google_protobuf_EnumValueDescriptorProto *)upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
|
7149
7823
|
}
|
7150
|
-
UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_parsenew(
|
7824
|
+
UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
7151
7825
|
google_protobuf_EnumValueDescriptorProto *ret = google_protobuf_EnumValueDescriptorProto_new(arena);
|
7152
7826
|
return (ret && upb_decode(buf, ret, &google_protobuf_EnumValueDescriptorProto_msginit)) ? ret : NULL;
|
7153
7827
|
}
|
@@ -7155,22 +7829,42 @@ UPB_INLINE char *google_protobuf_EnumValueDescriptorProto_serialize(const google
|
|
7155
7829
|
return upb_encode(msg, &google_protobuf_EnumValueDescriptorProto_msginit, arena, len);
|
7156
7830
|
}
|
7157
7831
|
|
7158
|
-
UPB_INLINE
|
7832
|
+
UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7833
|
+
UPB_INLINE upb_strview google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 8)); }
|
7834
|
+
UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7159
7835
|
UPB_INLINE int32_t google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
|
7160
|
-
UPB_INLINE
|
7161
|
-
|
7162
|
-
|
7163
|
-
UPB_INLINE void
|
7164
|
-
|
7836
|
+
UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_has_field(msg, 2); }
|
7837
|
+
UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_EnumValueOptions*, UPB_SIZE(16, 24)); }
|
7838
|
+
|
7839
|
+
UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_strview value) {
|
7840
|
+
_upb_sethas(msg, 1);
|
7841
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 8)) = value;
|
7842
|
+
}
|
7843
|
+
UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) {
|
7844
|
+
_upb_sethas(msg, 0);
|
7845
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
|
7846
|
+
}
|
7847
|
+
UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) {
|
7848
|
+
_upb_sethas(msg, 2);
|
7849
|
+
UPB_FIELD_AT(msg, google_protobuf_EnumValueOptions*, UPB_SIZE(16, 24)) = value;
|
7850
|
+
}
|
7851
|
+
UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena) {
|
7852
|
+
struct google_protobuf_EnumValueOptions* sub = (struct google_protobuf_EnumValueOptions*)google_protobuf_EnumValueDescriptorProto_options(msg);
|
7853
|
+
if (sub == NULL) {
|
7854
|
+
sub = (struct google_protobuf_EnumValueOptions*)upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
|
7855
|
+
if (!sub) return NULL;
|
7856
|
+
google_protobuf_EnumValueDescriptorProto_set_options(msg, sub);
|
7857
|
+
}
|
7858
|
+
return sub;
|
7859
|
+
}
|
7165
7860
|
|
7166
7861
|
|
7167
7862
|
/* google.protobuf.ServiceDescriptorProto */
|
7168
7863
|
|
7169
|
-
extern const upb_msglayout google_protobuf_ServiceDescriptorProto_msginit;
|
7170
7864
|
UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_new(upb_arena *arena) {
|
7171
7865
|
return (google_protobuf_ServiceDescriptorProto *)upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
|
7172
7866
|
}
|
7173
|
-
UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_parsenew(
|
7867
|
+
UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
7174
7868
|
google_protobuf_ServiceDescriptorProto *ret = google_protobuf_ServiceDescriptorProto_new(arena);
|
7175
7869
|
return (ret && upb_decode(buf, ret, &google_protobuf_ServiceDescriptorProto_msginit)) ? ret : NULL;
|
7176
7870
|
}
|
@@ -7178,22 +7872,50 @@ UPB_INLINE char *google_protobuf_ServiceDescriptorProto_serialize(const google_p
|
|
7178
7872
|
return upb_encode(msg, &google_protobuf_ServiceDescriptorProto_msginit, arena, len);
|
7179
7873
|
}
|
7180
7874
|
|
7181
|
-
UPB_INLINE
|
7182
|
-
UPB_INLINE
|
7183
|
-
UPB_INLINE const
|
7875
|
+
UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7876
|
+
UPB_INLINE upb_strview google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
7877
|
+
UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto *msg, size_t *len) { return (const google_protobuf_MethodDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(16, 32), len); }
|
7878
|
+
UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7879
|
+
UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_ServiceOptions*, UPB_SIZE(12, 24)); }
|
7184
7880
|
|
7185
|
-
UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg,
|
7186
|
-
|
7187
|
-
|
7881
|
+
UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_strview value) {
|
7882
|
+
_upb_sethas(msg, 0);
|
7883
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
7884
|
+
}
|
7885
|
+
UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto *msg, size_t *len) {
|
7886
|
+
return (google_protobuf_MethodDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 32), len);
|
7887
|
+
}
|
7888
|
+
UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto *msg, size_t len, upb_arena *arena) {
|
7889
|
+
return (google_protobuf_MethodDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(16, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
7890
|
+
}
|
7891
|
+
UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) {
|
7892
|
+
struct google_protobuf_MethodDescriptorProto* sub = (struct google_protobuf_MethodDescriptorProto*)upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
|
7893
|
+
bool ok = _upb_array_append_accessor(
|
7894
|
+
msg, UPB_SIZE(16, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
7895
|
+
if (!ok) return NULL;
|
7896
|
+
return sub;
|
7897
|
+
}
|
7898
|
+
UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) {
|
7899
|
+
_upb_sethas(msg, 1);
|
7900
|
+
UPB_FIELD_AT(msg, google_protobuf_ServiceOptions*, UPB_SIZE(12, 24)) = value;
|
7901
|
+
}
|
7902
|
+
UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) {
|
7903
|
+
struct google_protobuf_ServiceOptions* sub = (struct google_protobuf_ServiceOptions*)google_protobuf_ServiceDescriptorProto_options(msg);
|
7904
|
+
if (sub == NULL) {
|
7905
|
+
sub = (struct google_protobuf_ServiceOptions*)upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
|
7906
|
+
if (!sub) return NULL;
|
7907
|
+
google_protobuf_ServiceDescriptorProto_set_options(msg, sub);
|
7908
|
+
}
|
7909
|
+
return sub;
|
7910
|
+
}
|
7188
7911
|
|
7189
7912
|
|
7190
7913
|
/* google.protobuf.MethodDescriptorProto */
|
7191
7914
|
|
7192
|
-
extern const upb_msglayout google_protobuf_MethodDescriptorProto_msginit;
|
7193
7915
|
UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_new(upb_arena *arena) {
|
7194
7916
|
return (google_protobuf_MethodDescriptorProto *)upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
|
7195
7917
|
}
|
7196
|
-
UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_parsenew(
|
7918
|
+
UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_parsenew(upb_strview buf, upb_arena *arena) {
|
7197
7919
|
google_protobuf_MethodDescriptorProto *ret = google_protobuf_MethodDescriptorProto_new(arena);
|
7198
7920
|
return (ret && upb_decode(buf, ret, &google_protobuf_MethodDescriptorProto_msginit)) ? ret : NULL;
|
7199
7921
|
}
|
@@ -7201,28 +7923,60 @@ UPB_INLINE char *google_protobuf_MethodDescriptorProto_serialize(const google_pr
|
|
7201
7923
|
return upb_encode(msg, &google_protobuf_MethodDescriptorProto_msginit, arena, len);
|
7202
7924
|
}
|
7203
7925
|
|
7204
|
-
UPB_INLINE
|
7205
|
-
UPB_INLINE
|
7206
|
-
UPB_INLINE
|
7207
|
-
UPB_INLINE
|
7926
|
+
UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 2); }
|
7927
|
+
UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
7928
|
+
UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 3); }
|
7929
|
+
UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)); }
|
7930
|
+
UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 4); }
|
7931
|
+
UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)); }
|
7932
|
+
UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 5); }
|
7933
|
+
UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_MethodOptions*, UPB_SIZE(28, 56)); }
|
7934
|
+
UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 0); }
|
7208
7935
|
UPB_INLINE bool google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
|
7936
|
+
UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 1); }
|
7209
7937
|
UPB_INLINE bool google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)); }
|
7210
7938
|
|
7211
|
-
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg,
|
7212
|
-
|
7213
|
-
|
7214
|
-
|
7215
|
-
UPB_INLINE void
|
7216
|
-
|
7939
|
+
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_strview value) {
|
7940
|
+
_upb_sethas(msg, 2);
|
7941
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
7942
|
+
}
|
7943
|
+
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) {
|
7944
|
+
_upb_sethas(msg, 3);
|
7945
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)) = value;
|
7946
|
+
}
|
7947
|
+
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) {
|
7948
|
+
_upb_sethas(msg, 4);
|
7949
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)) = value;
|
7950
|
+
}
|
7951
|
+
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
|
7952
|
+
_upb_sethas(msg, 5);
|
7953
|
+
UPB_FIELD_AT(msg, google_protobuf_MethodOptions*, UPB_SIZE(28, 56)) = value;
|
7954
|
+
}
|
7955
|
+
UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto *msg, upb_arena *arena) {
|
7956
|
+
struct google_protobuf_MethodOptions* sub = (struct google_protobuf_MethodOptions*)google_protobuf_MethodDescriptorProto_options(msg);
|
7957
|
+
if (sub == NULL) {
|
7958
|
+
sub = (struct google_protobuf_MethodOptions*)upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
|
7959
|
+
if (!sub) return NULL;
|
7960
|
+
google_protobuf_MethodDescriptorProto_set_options(msg, sub);
|
7961
|
+
}
|
7962
|
+
return sub;
|
7963
|
+
}
|
7964
|
+
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
|
7965
|
+
_upb_sethas(msg, 0);
|
7966
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
|
7967
|
+
}
|
7968
|
+
UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
|
7969
|
+
_upb_sethas(msg, 1);
|
7970
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)) = value;
|
7971
|
+
}
|
7217
7972
|
|
7218
7973
|
|
7219
7974
|
/* google.protobuf.FileOptions */
|
7220
7975
|
|
7221
|
-
extern const upb_msglayout google_protobuf_FileOptions_msginit;
|
7222
7976
|
UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_new(upb_arena *arena) {
|
7223
7977
|
return (google_protobuf_FileOptions *)upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
|
7224
7978
|
}
|
7225
|
-
UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_parsenew(
|
7979
|
+
UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7226
7980
|
google_protobuf_FileOptions *ret = google_protobuf_FileOptions_new(arena);
|
7227
7981
|
return (ret && upb_decode(buf, ret, &google_protobuf_FileOptions_msginit)) ? ret : NULL;
|
7228
7982
|
}
|
@@ -7230,54 +7984,137 @@ UPB_INLINE char *google_protobuf_FileOptions_serialize(const google_protobuf_Fil
|
|
7230
7984
|
return upb_encode(msg, &google_protobuf_FileOptions_msginit, arena, len);
|
7231
7985
|
}
|
7232
7986
|
|
7233
|
-
UPB_INLINE
|
7234
|
-
UPB_INLINE
|
7987
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 10); }
|
7988
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(28, 32)); }
|
7989
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 11); }
|
7990
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(36, 48)); }
|
7991
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 0); }
|
7235
7992
|
UPB_INLINE google_protobuf_FileOptions_OptimizeMode google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, google_protobuf_FileOptions_OptimizeMode, UPB_SIZE(8, 8)); }
|
7993
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 1); }
|
7236
7994
|
UPB_INLINE bool google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)); }
|
7237
|
-
UPB_INLINE
|
7995
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 12); }
|
7996
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(44, 64)); }
|
7997
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 2); }
|
7238
7998
|
UPB_INLINE bool google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(17, 17)); }
|
7999
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 3); }
|
7239
8000
|
UPB_INLINE bool google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(18, 18)); }
|
8001
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 4); }
|
7240
8002
|
UPB_INLINE bool google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(19, 19)); }
|
8003
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 5); }
|
7241
8004
|
UPB_INLINE bool google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(20, 20)); }
|
8005
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 6); }
|
7242
8006
|
UPB_INLINE bool google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(21, 21)); }
|
8007
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 7); }
|
7243
8008
|
UPB_INLINE bool google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(22, 22)); }
|
8009
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 8); }
|
7244
8010
|
UPB_INLINE bool google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(23, 23)); }
|
7245
|
-
UPB_INLINE
|
7246
|
-
UPB_INLINE
|
7247
|
-
UPB_INLINE
|
7248
|
-
UPB_INLINE
|
7249
|
-
UPB_INLINE
|
8011
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 13); }
|
8012
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(52, 80)); }
|
8013
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 14); }
|
8014
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(60, 96)); }
|
8015
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 15); }
|
8016
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(68, 112)); }
|
8017
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 16); }
|
8018
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(76, 128)); }
|
8019
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 17); }
|
8020
|
+
UPB_INLINE upb_strview google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(84, 144)); }
|
8021
|
+
UPB_INLINE bool google_protobuf_FileOptions_has_php_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 9); }
|
7250
8022
|
UPB_INLINE bool google_protobuf_FileOptions_php_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)); }
|
7251
|
-
UPB_INLINE const
|
7252
|
-
|
7253
|
-
UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg,
|
7254
|
-
|
7255
|
-
|
7256
|
-
|
7257
|
-
UPB_INLINE void
|
7258
|
-
|
7259
|
-
|
7260
|
-
|
7261
|
-
UPB_INLINE void
|
7262
|
-
|
7263
|
-
|
7264
|
-
|
7265
|
-
UPB_INLINE void
|
7266
|
-
|
7267
|
-
|
7268
|
-
|
7269
|
-
UPB_INLINE void
|
7270
|
-
|
7271
|
-
|
8023
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(92, 160), len); }
|
8024
|
+
|
8025
|
+
UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_strview value) {
|
8026
|
+
_upb_sethas(msg, 10);
|
8027
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(28, 32)) = value;
|
8028
|
+
}
|
8029
|
+
UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_strview value) {
|
8030
|
+
_upb_sethas(msg, 11);
|
8031
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(36, 48)) = value;
|
8032
|
+
}
|
8033
|
+
UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, google_protobuf_FileOptions_OptimizeMode value) {
|
8034
|
+
_upb_sethas(msg, 0);
|
8035
|
+
UPB_FIELD_AT(msg, google_protobuf_FileOptions_OptimizeMode, UPB_SIZE(8, 8)) = value;
|
8036
|
+
}
|
8037
|
+
UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) {
|
8038
|
+
_upb_sethas(msg, 1);
|
8039
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)) = value;
|
8040
|
+
}
|
8041
|
+
UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_strview value) {
|
8042
|
+
_upb_sethas(msg, 12);
|
8043
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(44, 64)) = value;
|
8044
|
+
}
|
8045
|
+
UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) {
|
8046
|
+
_upb_sethas(msg, 2);
|
8047
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(17, 17)) = value;
|
8048
|
+
}
|
8049
|
+
UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) {
|
8050
|
+
_upb_sethas(msg, 3);
|
8051
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(18, 18)) = value;
|
8052
|
+
}
|
8053
|
+
UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) {
|
8054
|
+
_upb_sethas(msg, 4);
|
8055
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(19, 19)) = value;
|
8056
|
+
}
|
8057
|
+
UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) {
|
8058
|
+
_upb_sethas(msg, 5);
|
8059
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(20, 20)) = value;
|
8060
|
+
}
|
8061
|
+
UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) {
|
8062
|
+
_upb_sethas(msg, 6);
|
8063
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(21, 21)) = value;
|
8064
|
+
}
|
8065
|
+
UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) {
|
8066
|
+
_upb_sethas(msg, 7);
|
8067
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(22, 22)) = value;
|
8068
|
+
}
|
8069
|
+
UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) {
|
8070
|
+
_upb_sethas(msg, 8);
|
8071
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(23, 23)) = value;
|
8072
|
+
}
|
8073
|
+
UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) {
|
8074
|
+
_upb_sethas(msg, 13);
|
8075
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(52, 80)) = value;
|
8076
|
+
}
|
8077
|
+
UPB_INLINE void google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_strview value) {
|
8078
|
+
_upb_sethas(msg, 14);
|
8079
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(60, 96)) = value;
|
8080
|
+
}
|
8081
|
+
UPB_INLINE void google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_strview value) {
|
8082
|
+
_upb_sethas(msg, 15);
|
8083
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(68, 112)) = value;
|
8084
|
+
}
|
8085
|
+
UPB_INLINE void google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) {
|
8086
|
+
_upb_sethas(msg, 16);
|
8087
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(76, 128)) = value;
|
8088
|
+
}
|
8089
|
+
UPB_INLINE void google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_strview value) {
|
8090
|
+
_upb_sethas(msg, 17);
|
8091
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(84, 144)) = value;
|
8092
|
+
}
|
8093
|
+
UPB_INLINE void google_protobuf_FileOptions_set_php_generic_services(google_protobuf_FileOptions *msg, bool value) {
|
8094
|
+
_upb_sethas(msg, 9);
|
8095
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)) = value;
|
8096
|
+
}
|
8097
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions *msg, size_t *len) {
|
8098
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(92, 160), len);
|
8099
|
+
}
|
8100
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions *msg, size_t len, upb_arena *arena) {
|
8101
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(92, 160), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8102
|
+
}
|
8103
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions *msg, upb_arena *arena) {
|
8104
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8105
|
+
bool ok = _upb_array_append_accessor(
|
8106
|
+
msg, UPB_SIZE(92, 160), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8107
|
+
if (!ok) return NULL;
|
8108
|
+
return sub;
|
8109
|
+
}
|
7272
8110
|
|
7273
8111
|
|
7274
8112
|
/* google.protobuf.MessageOptions */
|
7275
8113
|
|
7276
|
-
extern const upb_msglayout google_protobuf_MessageOptions_msginit;
|
7277
8114
|
UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_new(upb_arena *arena) {
|
7278
8115
|
return (google_protobuf_MessageOptions *)upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
|
7279
8116
|
}
|
7280
|
-
UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_parsenew(
|
8117
|
+
UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7281
8118
|
google_protobuf_MessageOptions *ret = google_protobuf_MessageOptions_new(arena);
|
7282
8119
|
return (ret && upb_decode(buf, ret, &google_protobuf_MessageOptions_msginit)) ? ret : NULL;
|
7283
8120
|
}
|
@@ -7285,26 +8122,53 @@ UPB_INLINE char *google_protobuf_MessageOptions_serialize(const google_protobuf_
|
|
7285
8122
|
return upb_encode(msg, &google_protobuf_MessageOptions_msginit, arena, len);
|
7286
8123
|
}
|
7287
8124
|
|
8125
|
+
UPB_INLINE bool google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 0); }
|
7288
8126
|
UPB_INLINE bool google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
|
8127
|
+
UPB_INLINE bool google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 1); }
|
7289
8128
|
UPB_INLINE bool google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)); }
|
8129
|
+
UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 2); }
|
7290
8130
|
UPB_INLINE bool google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(3, 3)); }
|
8131
|
+
UPB_INLINE bool google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 3); }
|
7291
8132
|
UPB_INLINE bool google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(4, 4)); }
|
7292
|
-
UPB_INLINE const
|
8133
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(8, 8), len); }
|
7293
8134
|
|
7294
|
-
UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) {
|
7295
|
-
|
7296
|
-
|
7297
|
-
|
7298
|
-
UPB_INLINE void
|
8135
|
+
UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) {
|
8136
|
+
_upb_sethas(msg, 0);
|
8137
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
|
8138
|
+
}
|
8139
|
+
UPB_INLINE void google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) {
|
8140
|
+
_upb_sethas(msg, 1);
|
8141
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)) = value;
|
8142
|
+
}
|
8143
|
+
UPB_INLINE void google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) {
|
8144
|
+
_upb_sethas(msg, 2);
|
8145
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(3, 3)) = value;
|
8146
|
+
}
|
8147
|
+
UPB_INLINE void google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) {
|
8148
|
+
_upb_sethas(msg, 3);
|
8149
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(4, 4)) = value;
|
8150
|
+
}
|
8151
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t *len) {
|
8152
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(8, 8), len);
|
8153
|
+
}
|
8154
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t len, upb_arena *arena) {
|
8155
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(8, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8156
|
+
}
|
8157
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions *msg, upb_arena *arena) {
|
8158
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8159
|
+
bool ok = _upb_array_append_accessor(
|
8160
|
+
msg, UPB_SIZE(8, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8161
|
+
if (!ok) return NULL;
|
8162
|
+
return sub;
|
8163
|
+
}
|
7299
8164
|
|
7300
8165
|
|
7301
8166
|
/* google.protobuf.FieldOptions */
|
7302
8167
|
|
7303
|
-
extern const upb_msglayout google_protobuf_FieldOptions_msginit;
|
7304
8168
|
UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_new(upb_arena *arena) {
|
7305
8169
|
return (google_protobuf_FieldOptions *)upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
|
7306
8170
|
}
|
7307
|
-
UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_parsenew(
|
8171
|
+
UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7308
8172
|
google_protobuf_FieldOptions *ret = google_protobuf_FieldOptions_new(arena);
|
7309
8173
|
return (ret && upb_decode(buf, ret, &google_protobuf_FieldOptions_msginit)) ? ret : NULL;
|
7310
8174
|
}
|
@@ -7312,30 +8176,65 @@ UPB_INLINE char *google_protobuf_FieldOptions_serialize(const google_protobuf_Fi
|
|
7312
8176
|
return upb_encode(msg, &google_protobuf_FieldOptions_msginit, arena, len);
|
7313
8177
|
}
|
7314
8178
|
|
8179
|
+
UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 0); }
|
7315
8180
|
UPB_INLINE google_protobuf_FieldOptions_CType google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, google_protobuf_FieldOptions_CType, UPB_SIZE(8, 8)); }
|
8181
|
+
UPB_INLINE bool google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 2); }
|
7316
8182
|
UPB_INLINE bool google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)); }
|
8183
|
+
UPB_INLINE bool google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 3); }
|
7317
8184
|
UPB_INLINE bool google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(25, 25)); }
|
8185
|
+
UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 4); }
|
7318
8186
|
UPB_INLINE bool google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(26, 26)); }
|
8187
|
+
UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 1); }
|
7319
8188
|
UPB_INLINE google_protobuf_FieldOptions_JSType google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, google_protobuf_FieldOptions_JSType, UPB_SIZE(16, 16)); }
|
8189
|
+
UPB_INLINE bool google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 5); }
|
7320
8190
|
UPB_INLINE bool google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(27, 27)); }
|
7321
|
-
UPB_INLINE const
|
8191
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
|
7322
8192
|
|
7323
|
-
UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_CType value) {
|
7324
|
-
|
7325
|
-
|
7326
|
-
|
7327
|
-
UPB_INLINE void
|
7328
|
-
|
7329
|
-
|
8193
|
+
UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_CType value) {
|
8194
|
+
_upb_sethas(msg, 0);
|
8195
|
+
UPB_FIELD_AT(msg, google_protobuf_FieldOptions_CType, UPB_SIZE(8, 8)) = value;
|
8196
|
+
}
|
8197
|
+
UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) {
|
8198
|
+
_upb_sethas(msg, 2);
|
8199
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)) = value;
|
8200
|
+
}
|
8201
|
+
UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) {
|
8202
|
+
_upb_sethas(msg, 3);
|
8203
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(25, 25)) = value;
|
8204
|
+
}
|
8205
|
+
UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) {
|
8206
|
+
_upb_sethas(msg, 4);
|
8207
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(26, 26)) = value;
|
8208
|
+
}
|
8209
|
+
UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_JSType value) {
|
8210
|
+
_upb_sethas(msg, 1);
|
8211
|
+
UPB_FIELD_AT(msg, google_protobuf_FieldOptions_JSType, UPB_SIZE(16, 16)) = value;
|
8212
|
+
}
|
8213
|
+
UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) {
|
8214
|
+
_upb_sethas(msg, 5);
|
8215
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(27, 27)) = value;
|
8216
|
+
}
|
8217
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t *len) {
|
8218
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
|
8219
|
+
}
|
8220
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t len, upb_arena *arena) {
|
8221
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(28, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8222
|
+
}
|
8223
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions *msg, upb_arena *arena) {
|
8224
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8225
|
+
bool ok = _upb_array_append_accessor(
|
8226
|
+
msg, UPB_SIZE(28, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8227
|
+
if (!ok) return NULL;
|
8228
|
+
return sub;
|
8229
|
+
}
|
7330
8230
|
|
7331
8231
|
|
7332
8232
|
/* google.protobuf.OneofOptions */
|
7333
8233
|
|
7334
|
-
extern const upb_msglayout google_protobuf_OneofOptions_msginit;
|
7335
8234
|
UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_new(upb_arena *arena) {
|
7336
8235
|
return (google_protobuf_OneofOptions *)upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
|
7337
8236
|
}
|
7338
|
-
UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_parsenew(
|
8237
|
+
UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7339
8238
|
google_protobuf_OneofOptions *ret = google_protobuf_OneofOptions_new(arena);
|
7340
8239
|
return (ret && upb_decode(buf, ret, &google_protobuf_OneofOptions_msginit)) ? ret : NULL;
|
7341
8240
|
}
|
@@ -7343,18 +8242,29 @@ UPB_INLINE char *google_protobuf_OneofOptions_serialize(const google_protobuf_On
|
|
7343
8242
|
return upb_encode(msg, &google_protobuf_OneofOptions_msginit, arena, len);
|
7344
8243
|
}
|
7345
8244
|
|
7346
|
-
UPB_INLINE const
|
8245
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
|
7347
8246
|
|
7348
|
-
UPB_INLINE
|
8247
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t *len) {
|
8248
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
|
8249
|
+
}
|
8250
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t len, upb_arena *arena) {
|
8251
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8252
|
+
}
|
8253
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions *msg, upb_arena *arena) {
|
8254
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8255
|
+
bool ok = _upb_array_append_accessor(
|
8256
|
+
msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8257
|
+
if (!ok) return NULL;
|
8258
|
+
return sub;
|
8259
|
+
}
|
7349
8260
|
|
7350
8261
|
|
7351
8262
|
/* google.protobuf.EnumOptions */
|
7352
8263
|
|
7353
|
-
extern const upb_msglayout google_protobuf_EnumOptions_msginit;
|
7354
8264
|
UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_new(upb_arena *arena) {
|
7355
8265
|
return (google_protobuf_EnumOptions *)upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
|
7356
8266
|
}
|
7357
|
-
UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_parsenew(
|
8267
|
+
UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7358
8268
|
google_protobuf_EnumOptions *ret = google_protobuf_EnumOptions_new(arena);
|
7359
8269
|
return (ret && upb_decode(buf, ret, &google_protobuf_EnumOptions_msginit)) ? ret : NULL;
|
7360
8270
|
}
|
@@ -7362,22 +8272,41 @@ UPB_INLINE char *google_protobuf_EnumOptions_serialize(const google_protobuf_Enu
|
|
7362
8272
|
return upb_encode(msg, &google_protobuf_EnumOptions_msginit, arena, len);
|
7363
8273
|
}
|
7364
8274
|
|
8275
|
+
UPB_INLINE bool google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions *msg) { return _upb_has_field(msg, 0); }
|
7365
8276
|
UPB_INLINE bool google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
|
8277
|
+
UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions *msg) { return _upb_has_field(msg, 1); }
|
7366
8278
|
UPB_INLINE bool google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)); }
|
7367
|
-
UPB_INLINE const
|
8279
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
|
7368
8280
|
|
7369
|
-
UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) {
|
7370
|
-
|
7371
|
-
|
8281
|
+
UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) {
|
8282
|
+
_upb_sethas(msg, 0);
|
8283
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
|
8284
|
+
}
|
8285
|
+
UPB_INLINE void google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) {
|
8286
|
+
_upb_sethas(msg, 1);
|
8287
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)) = value;
|
8288
|
+
}
|
8289
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t *len) {
|
8290
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
|
8291
|
+
}
|
8292
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t len, upb_arena *arena) {
|
8293
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(4, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8294
|
+
}
|
8295
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions *msg, upb_arena *arena) {
|
8296
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8297
|
+
bool ok = _upb_array_append_accessor(
|
8298
|
+
msg, UPB_SIZE(4, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8299
|
+
if (!ok) return NULL;
|
8300
|
+
return sub;
|
8301
|
+
}
|
7372
8302
|
|
7373
8303
|
|
7374
8304
|
/* google.protobuf.EnumValueOptions */
|
7375
8305
|
|
7376
|
-
extern const upb_msglayout google_protobuf_EnumValueOptions_msginit;
|
7377
8306
|
UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_new(upb_arena *arena) {
|
7378
8307
|
return (google_protobuf_EnumValueOptions *)upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
|
7379
8308
|
}
|
7380
|
-
UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_parsenew(
|
8309
|
+
UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7381
8310
|
google_protobuf_EnumValueOptions *ret = google_protobuf_EnumValueOptions_new(arena);
|
7382
8311
|
return (ret && upb_decode(buf, ret, &google_protobuf_EnumValueOptions_msginit)) ? ret : NULL;
|
7383
8312
|
}
|
@@ -7385,20 +8314,35 @@ UPB_INLINE char *google_protobuf_EnumValueOptions_serialize(const google_protobu
|
|
7385
8314
|
return upb_encode(msg, &google_protobuf_EnumValueOptions_msginit, arena, len);
|
7386
8315
|
}
|
7387
8316
|
|
8317
|
+
UPB_INLINE bool google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions *msg) { return _upb_has_field(msg, 0); }
|
7388
8318
|
UPB_INLINE bool google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
|
7389
|
-
UPB_INLINE const
|
8319
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
|
7390
8320
|
|
7391
|
-
UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) {
|
7392
|
-
|
8321
|
+
UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) {
|
8322
|
+
_upb_sethas(msg, 0);
|
8323
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
|
8324
|
+
}
|
8325
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t *len) {
|
8326
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
|
8327
|
+
}
|
8328
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t len, upb_arena *arena) {
|
8329
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(4, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8330
|
+
}
|
8331
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions *msg, upb_arena *arena) {
|
8332
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8333
|
+
bool ok = _upb_array_append_accessor(
|
8334
|
+
msg, UPB_SIZE(4, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8335
|
+
if (!ok) return NULL;
|
8336
|
+
return sub;
|
8337
|
+
}
|
7393
8338
|
|
7394
8339
|
|
7395
8340
|
/* google.protobuf.ServiceOptions */
|
7396
8341
|
|
7397
|
-
extern const upb_msglayout google_protobuf_ServiceOptions_msginit;
|
7398
8342
|
UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_new(upb_arena *arena) {
|
7399
8343
|
return (google_protobuf_ServiceOptions *)upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
|
7400
8344
|
}
|
7401
|
-
UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_parsenew(
|
8345
|
+
UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7402
8346
|
google_protobuf_ServiceOptions *ret = google_protobuf_ServiceOptions_new(arena);
|
7403
8347
|
return (ret && upb_decode(buf, ret, &google_protobuf_ServiceOptions_msginit)) ? ret : NULL;
|
7404
8348
|
}
|
@@ -7406,20 +8350,35 @@ UPB_INLINE char *google_protobuf_ServiceOptions_serialize(const google_protobuf_
|
|
7406
8350
|
return upb_encode(msg, &google_protobuf_ServiceOptions_msginit, arena, len);
|
7407
8351
|
}
|
7408
8352
|
|
8353
|
+
UPB_INLINE bool google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions *msg) { return _upb_has_field(msg, 0); }
|
7409
8354
|
UPB_INLINE bool google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
|
7410
|
-
UPB_INLINE const
|
8355
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
|
7411
8356
|
|
7412
|
-
UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) {
|
7413
|
-
|
8357
|
+
UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) {
|
8358
|
+
_upb_sethas(msg, 0);
|
8359
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
|
8360
|
+
}
|
8361
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t *len) {
|
8362
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
|
8363
|
+
}
|
8364
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t len, upb_arena *arena) {
|
8365
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(4, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8366
|
+
}
|
8367
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions *msg, upb_arena *arena) {
|
8368
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8369
|
+
bool ok = _upb_array_append_accessor(
|
8370
|
+
msg, UPB_SIZE(4, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8371
|
+
if (!ok) return NULL;
|
8372
|
+
return sub;
|
8373
|
+
}
|
7414
8374
|
|
7415
8375
|
|
7416
8376
|
/* google.protobuf.MethodOptions */
|
7417
8377
|
|
7418
|
-
extern const upb_msglayout google_protobuf_MethodOptions_msginit;
|
7419
8378
|
UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_new(upb_arena *arena) {
|
7420
8379
|
return (google_protobuf_MethodOptions *)upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
|
7421
8380
|
}
|
7422
|
-
UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_parsenew(
|
8381
|
+
UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_parsenew(upb_strview buf, upb_arena *arena) {
|
7423
8382
|
google_protobuf_MethodOptions *ret = google_protobuf_MethodOptions_new(arena);
|
7424
8383
|
return (ret && upb_decode(buf, ret, &google_protobuf_MethodOptions_msginit)) ? ret : NULL;
|
7425
8384
|
}
|
@@ -7427,22 +8386,41 @@ UPB_INLINE char *google_protobuf_MethodOptions_serialize(const google_protobuf_M
|
|
7427
8386
|
return upb_encode(msg, &google_protobuf_MethodOptions_msginit, arena, len);
|
7428
8387
|
}
|
7429
8388
|
|
8389
|
+
UPB_INLINE bool google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions *msg) { return _upb_has_field(msg, 1); }
|
7430
8390
|
UPB_INLINE bool google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)); }
|
8391
|
+
UPB_INLINE bool google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions *msg) { return _upb_has_field(msg, 0); }
|
7431
8392
|
UPB_INLINE google_protobuf_MethodOptions_IdempotencyLevel google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions *msg) { return UPB_FIELD_AT(msg, google_protobuf_MethodOptions_IdempotencyLevel, UPB_SIZE(8, 8)); }
|
7432
|
-
UPB_INLINE const
|
8393
|
+
UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(20, 24), len); }
|
7433
8394
|
|
7434
|
-
UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) {
|
7435
|
-
|
7436
|
-
|
8395
|
+
UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) {
|
8396
|
+
_upb_sethas(msg, 1);
|
8397
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)) = value;
|
8398
|
+
}
|
8399
|
+
UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, google_protobuf_MethodOptions_IdempotencyLevel value) {
|
8400
|
+
_upb_sethas(msg, 0);
|
8401
|
+
UPB_FIELD_AT(msg, google_protobuf_MethodOptions_IdempotencyLevel, UPB_SIZE(8, 8)) = value;
|
8402
|
+
}
|
8403
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t *len) {
|
8404
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 24), len);
|
8405
|
+
}
|
8406
|
+
UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t len, upb_arena *arena) {
|
8407
|
+
return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(20, 24), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8408
|
+
}
|
8409
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions *msg, upb_arena *arena) {
|
8410
|
+
struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
8411
|
+
bool ok = _upb_array_append_accessor(
|
8412
|
+
msg, UPB_SIZE(20, 24), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8413
|
+
if (!ok) return NULL;
|
8414
|
+
return sub;
|
8415
|
+
}
|
7437
8416
|
|
7438
8417
|
|
7439
8418
|
/* google.protobuf.UninterpretedOption */
|
7440
8419
|
|
7441
|
-
extern const upb_msglayout google_protobuf_UninterpretedOption_msginit;
|
7442
8420
|
UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_new(upb_arena *arena) {
|
7443
8421
|
return (google_protobuf_UninterpretedOption *)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
|
7444
8422
|
}
|
7445
|
-
UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_parsenew(
|
8423
|
+
UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_parsenew(upb_strview buf, upb_arena *arena) {
|
7446
8424
|
google_protobuf_UninterpretedOption *ret = google_protobuf_UninterpretedOption_new(arena);
|
7447
8425
|
return (ret && upb_decode(buf, ret, &google_protobuf_UninterpretedOption_msginit)) ? ret : NULL;
|
7448
8426
|
}
|
@@ -7450,30 +8428,65 @@ UPB_INLINE char *google_protobuf_UninterpretedOption_serialize(const google_prot
|
|
7450
8428
|
return upb_encode(msg, &google_protobuf_UninterpretedOption_msginit, arena, len);
|
7451
8429
|
}
|
7452
8430
|
|
7453
|
-
UPB_INLINE const
|
7454
|
-
UPB_INLINE
|
8431
|
+
UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption *msg, size_t *len) { return (const google_protobuf_UninterpretedOption_NamePart* const*)_upb_array_accessor(msg, UPB_SIZE(56, 80), len); }
|
8432
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 3); }
|
8433
|
+
UPB_INLINE upb_strview google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 32)); }
|
8434
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 0); }
|
7455
8435
|
UPB_INLINE uint64_t google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, uint64_t, UPB_SIZE(8, 8)); }
|
8436
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 1); }
|
7456
8437
|
UPB_INLINE int64_t google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, int64_t, UPB_SIZE(16, 16)); }
|
8438
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 2); }
|
7457
8439
|
UPB_INLINE double google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, double, UPB_SIZE(24, 24)); }
|
7458
|
-
UPB_INLINE
|
7459
|
-
UPB_INLINE
|
8440
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 4); }
|
8441
|
+
UPB_INLINE upb_strview google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(40, 48)); }
|
8442
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 5); }
|
8443
|
+
UPB_INLINE upb_strview google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(48, 64)); }
|
7460
8444
|
|
7461
|
-
UPB_INLINE
|
7462
|
-
|
7463
|
-
|
7464
|
-
UPB_INLINE
|
7465
|
-
|
7466
|
-
|
7467
|
-
UPB_INLINE
|
8445
|
+
UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption *msg, size_t *len) {
|
8446
|
+
return (google_protobuf_UninterpretedOption_NamePart**)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 80), len);
|
8447
|
+
}
|
8448
|
+
UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption *msg, size_t len, upb_arena *arena) {
|
8449
|
+
return (google_protobuf_UninterpretedOption_NamePart**)_upb_array_resize_accessor(msg, UPB_SIZE(56, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8450
|
+
}
|
8451
|
+
UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption *msg, upb_arena *arena) {
|
8452
|
+
struct google_protobuf_UninterpretedOption_NamePart* sub = (struct google_protobuf_UninterpretedOption_NamePart*)upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
|
8453
|
+
bool ok = _upb_array_append_accessor(
|
8454
|
+
msg, UPB_SIZE(56, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8455
|
+
if (!ok) return NULL;
|
8456
|
+
return sub;
|
8457
|
+
}
|
8458
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_strview value) {
|
8459
|
+
_upb_sethas(msg, 3);
|
8460
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 32)) = value;
|
8461
|
+
}
|
8462
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) {
|
8463
|
+
_upb_sethas(msg, 0);
|
8464
|
+
UPB_FIELD_AT(msg, uint64_t, UPB_SIZE(8, 8)) = value;
|
8465
|
+
}
|
8466
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) {
|
8467
|
+
_upb_sethas(msg, 1);
|
8468
|
+
UPB_FIELD_AT(msg, int64_t, UPB_SIZE(16, 16)) = value;
|
8469
|
+
}
|
8470
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) {
|
8471
|
+
_upb_sethas(msg, 2);
|
8472
|
+
UPB_FIELD_AT(msg, double, UPB_SIZE(24, 24)) = value;
|
8473
|
+
}
|
8474
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_strview value) {
|
8475
|
+
_upb_sethas(msg, 4);
|
8476
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(40, 48)) = value;
|
8477
|
+
}
|
8478
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_strview value) {
|
8479
|
+
_upb_sethas(msg, 5);
|
8480
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(48, 64)) = value;
|
8481
|
+
}
|
7468
8482
|
|
7469
8483
|
|
7470
8484
|
/* google.protobuf.UninterpretedOption.NamePart */
|
7471
8485
|
|
7472
|
-
extern const upb_msglayout google_protobuf_UninterpretedOption_NamePart_msginit;
|
7473
8486
|
UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_new(upb_arena *arena) {
|
7474
8487
|
return (google_protobuf_UninterpretedOption_NamePart *)upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
|
7475
8488
|
}
|
7476
|
-
UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_parsenew(
|
8489
|
+
UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_parsenew(upb_strview buf, upb_arena *arena) {
|
7477
8490
|
google_protobuf_UninterpretedOption_NamePart *ret = google_protobuf_UninterpretedOption_NamePart_new(arena);
|
7478
8491
|
return (ret && upb_decode(buf, ret, &google_protobuf_UninterpretedOption_NamePart_msginit)) ? ret : NULL;
|
7479
8492
|
}
|
@@ -7481,20 +8494,27 @@ UPB_INLINE char *google_protobuf_UninterpretedOption_NamePart_serialize(const go
|
|
7481
8494
|
return upb_encode(msg, &google_protobuf_UninterpretedOption_NamePart_msginit, arena, len);
|
7482
8495
|
}
|
7483
8496
|
|
7484
|
-
UPB_INLINE
|
8497
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) { return _upb_has_field(msg, 1); }
|
8498
|
+
UPB_INLINE upb_strview google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
8499
|
+
UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) { return _upb_has_field(msg, 0); }
|
7485
8500
|
UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
|
7486
8501
|
|
7487
|
-
UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg,
|
7488
|
-
|
8502
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_strview value) {
|
8503
|
+
_upb_sethas(msg, 1);
|
8504
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
8505
|
+
}
|
8506
|
+
UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) {
|
8507
|
+
_upb_sethas(msg, 0);
|
8508
|
+
UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
|
8509
|
+
}
|
7489
8510
|
|
7490
8511
|
|
7491
8512
|
/* google.protobuf.SourceCodeInfo */
|
7492
8513
|
|
7493
|
-
extern const upb_msglayout google_protobuf_SourceCodeInfo_msginit;
|
7494
8514
|
UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_new(upb_arena *arena) {
|
7495
8515
|
return (google_protobuf_SourceCodeInfo *)upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
|
7496
8516
|
}
|
7497
|
-
UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_parsenew(
|
8517
|
+
UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_parsenew(upb_strview buf, upb_arena *arena) {
|
7498
8518
|
google_protobuf_SourceCodeInfo *ret = google_protobuf_SourceCodeInfo_new(arena);
|
7499
8519
|
return (ret && upb_decode(buf, ret, &google_protobuf_SourceCodeInfo_msginit)) ? ret : NULL;
|
7500
8520
|
}
|
@@ -7502,18 +8522,29 @@ UPB_INLINE char *google_protobuf_SourceCodeInfo_serialize(const google_protobuf_
|
|
7502
8522
|
return upb_encode(msg, &google_protobuf_SourceCodeInfo_msginit, arena, len);
|
7503
8523
|
}
|
7504
8524
|
|
7505
|
-
UPB_INLINE const
|
8525
|
+
UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo *msg, size_t *len) { return (const google_protobuf_SourceCodeInfo_Location* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
|
7506
8526
|
|
7507
|
-
UPB_INLINE
|
8527
|
+
UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo *msg, size_t *len) {
|
8528
|
+
return (google_protobuf_SourceCodeInfo_Location**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
|
8529
|
+
}
|
8530
|
+
UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo *msg, size_t len, upb_arena *arena) {
|
8531
|
+
return (google_protobuf_SourceCodeInfo_Location**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8532
|
+
}
|
8533
|
+
UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo *msg, upb_arena *arena) {
|
8534
|
+
struct google_protobuf_SourceCodeInfo_Location* sub = (struct google_protobuf_SourceCodeInfo_Location*)upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
|
8535
|
+
bool ok = _upb_array_append_accessor(
|
8536
|
+
msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8537
|
+
if (!ok) return NULL;
|
8538
|
+
return sub;
|
8539
|
+
}
|
7508
8540
|
|
7509
8541
|
|
7510
8542
|
/* google.protobuf.SourceCodeInfo.Location */
|
7511
8543
|
|
7512
|
-
extern const upb_msglayout google_protobuf_SourceCodeInfo_Location_msginit;
|
7513
8544
|
UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_new(upb_arena *arena) {
|
7514
8545
|
return (google_protobuf_SourceCodeInfo_Location *)upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
|
7515
8546
|
}
|
7516
|
-
UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_parsenew(
|
8547
|
+
UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_parsenew(upb_strview buf, upb_arena *arena) {
|
7517
8548
|
google_protobuf_SourceCodeInfo_Location *ret = google_protobuf_SourceCodeInfo_Location_new(arena);
|
7518
8549
|
return (ret && upb_decode(buf, ret, &google_protobuf_SourceCodeInfo_Location_msginit)) ? ret : NULL;
|
7519
8550
|
}
|
@@ -7521,26 +8552,60 @@ UPB_INLINE char *google_protobuf_SourceCodeInfo_Location_serialize(const google_
|
|
7521
8552
|
return upb_encode(msg, &google_protobuf_SourceCodeInfo_Location_msginit, arena, len);
|
7522
8553
|
}
|
7523
8554
|
|
7524
|
-
UPB_INLINE const
|
7525
|
-
UPB_INLINE const
|
7526
|
-
UPB_INLINE
|
7527
|
-
UPB_INLINE
|
7528
|
-
UPB_INLINE
|
8555
|
+
UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(20, 40), len); }
|
8556
|
+
UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
|
8557
|
+
UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return _upb_has_field(msg, 0); }
|
8558
|
+
UPB_INLINE upb_strview google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
|
8559
|
+
UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return _upb_has_field(msg, 1); }
|
8560
|
+
UPB_INLINE upb_strview google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)); }
|
8561
|
+
UPB_INLINE upb_strview const* google_protobuf_SourceCodeInfo_Location_leading_detached_comments(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len); }
|
7529
8562
|
|
7530
|
-
UPB_INLINE
|
7531
|
-
|
7532
|
-
|
7533
|
-
UPB_INLINE
|
7534
|
-
|
8563
|
+
UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) {
|
8564
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 40), len);
|
8565
|
+
}
|
8566
|
+
UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) {
|
8567
|
+
return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(20, 40), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
|
8568
|
+
}
|
8569
|
+
UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) {
|
8570
|
+
return _upb_array_append_accessor(
|
8571
|
+
msg, UPB_SIZE(20, 40), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
|
8572
|
+
}
|
8573
|
+
UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) {
|
8574
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
|
8575
|
+
}
|
8576
|
+
UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) {
|
8577
|
+
return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(24, 48), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
|
8578
|
+
}
|
8579
|
+
UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) {
|
8580
|
+
return _upb_array_append_accessor(
|
8581
|
+
msg, UPB_SIZE(24, 48), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
|
8582
|
+
}
|
8583
|
+
UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) {
|
8584
|
+
_upb_sethas(msg, 0);
|
8585
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
|
8586
|
+
}
|
8587
|
+
UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) {
|
8588
|
+
_upb_sethas(msg, 1);
|
8589
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)) = value;
|
8590
|
+
}
|
8591
|
+
UPB_INLINE upb_strview* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) {
|
8592
|
+
return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
|
8593
|
+
}
|
8594
|
+
UPB_INLINE upb_strview* google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) {
|
8595
|
+
return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(28, 56), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
|
8596
|
+
}
|
8597
|
+
UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview val, upb_arena *arena) {
|
8598
|
+
return _upb_array_append_accessor(
|
8599
|
+
msg, UPB_SIZE(28, 56), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
|
8600
|
+
}
|
7535
8601
|
|
7536
8602
|
|
7537
8603
|
/* google.protobuf.GeneratedCodeInfo */
|
7538
8604
|
|
7539
|
-
extern const upb_msglayout google_protobuf_GeneratedCodeInfo_msginit;
|
7540
8605
|
UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_new(upb_arena *arena) {
|
7541
8606
|
return (google_protobuf_GeneratedCodeInfo *)upb_msg_new(&google_protobuf_GeneratedCodeInfo_msginit, arena);
|
7542
8607
|
}
|
7543
|
-
UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_parsenew(
|
8608
|
+
UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_parsenew(upb_strview buf, upb_arena *arena) {
|
7544
8609
|
google_protobuf_GeneratedCodeInfo *ret = google_protobuf_GeneratedCodeInfo_new(arena);
|
7545
8610
|
return (ret && upb_decode(buf, ret, &google_protobuf_GeneratedCodeInfo_msginit)) ? ret : NULL;
|
7546
8611
|
}
|
@@ -7548,18 +8613,29 @@ UPB_INLINE char *google_protobuf_GeneratedCodeInfo_serialize(const google_protob
|
|
7548
8613
|
return upb_encode(msg, &google_protobuf_GeneratedCodeInfo_msginit, arena, len);
|
7549
8614
|
}
|
7550
8615
|
|
7551
|
-
UPB_INLINE const
|
8616
|
+
UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo *msg, size_t *len) { return (const google_protobuf_GeneratedCodeInfo_Annotation* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
|
7552
8617
|
|
7553
|
-
UPB_INLINE
|
8618
|
+
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t *len) {
|
8619
|
+
return (google_protobuf_GeneratedCodeInfo_Annotation**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
|
8620
|
+
}
|
8621
|
+
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t len, upb_arena *arena) {
|
8622
|
+
return (google_protobuf_GeneratedCodeInfo_Annotation**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
|
8623
|
+
}
|
8624
|
+
UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena) {
|
8625
|
+
struct google_protobuf_GeneratedCodeInfo_Annotation* sub = (struct google_protobuf_GeneratedCodeInfo_Annotation*)upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
|
8626
|
+
bool ok = _upb_array_append_accessor(
|
8627
|
+
msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
|
8628
|
+
if (!ok) return NULL;
|
8629
|
+
return sub;
|
8630
|
+
}
|
7554
8631
|
|
7555
8632
|
|
7556
8633
|
/* google.protobuf.GeneratedCodeInfo.Annotation */
|
7557
8634
|
|
7558
|
-
extern const upb_msglayout google_protobuf_GeneratedCodeInfo_Annotation_msginit;
|
7559
8635
|
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_new(upb_arena *arena) {
|
7560
8636
|
return (google_protobuf_GeneratedCodeInfo_Annotation *)upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
|
7561
8637
|
}
|
7562
|
-
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_parsenew(
|
8638
|
+
UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_parsenew(upb_strview buf, upb_arena *arena) {
|
7563
8639
|
google_protobuf_GeneratedCodeInfo_Annotation *ret = google_protobuf_GeneratedCodeInfo_Annotation_new(arena);
|
7564
8640
|
return (ret && upb_decode(buf, ret, &google_protobuf_GeneratedCodeInfo_Annotation_msginit)) ? ret : NULL;
|
7565
8641
|
}
|
@@ -7567,239 +8643,53 @@ UPB_INLINE char *google_protobuf_GeneratedCodeInfo_Annotation_serialize(const go
|
|
7567
8643
|
return upb_encode(msg, &google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena, len);
|
7568
8644
|
}
|
7569
8645
|
|
7570
|
-
UPB_INLINE const
|
7571
|
-
UPB_INLINE
|
8646
|
+
UPB_INLINE int32_t const* google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(20, 32), len); }
|
8647
|
+
UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_has_field(msg, 2); }
|
8648
|
+
UPB_INLINE upb_strview google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 16)); }
|
8649
|
+
UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_has_field(msg, 0); }
|
7572
8650
|
UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
|
8651
|
+
UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_has_field(msg, 1); }
|
7573
8652
|
UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
|
7574
8653
|
|
7575
|
-
UPB_INLINE
|
7576
|
-
|
7577
|
-
|
7578
|
-
UPB_INLINE
|
8654
|
+
UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) {
|
8655
|
+
return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 32), len);
|
8656
|
+
}
|
8657
|
+
UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t len, upb_arena *arena) {
|
8658
|
+
return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(20, 32), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
|
8659
|
+
}
|
8660
|
+
UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t val, upb_arena *arena) {
|
8661
|
+
return _upb_array_append_accessor(
|
8662
|
+
msg, UPB_SIZE(20, 32), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
|
8663
|
+
}
|
8664
|
+
UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_strview value) {
|
8665
|
+
_upb_sethas(msg, 2);
|
8666
|
+
UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 16)) = value;
|
8667
|
+
}
|
8668
|
+
UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
|
8669
|
+
_upb_sethas(msg, 0);
|
8670
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
|
8671
|
+
}
|
8672
|
+
UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
|
8673
|
+
_upb_sethas(msg, 1);
|
8674
|
+
UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
|
8675
|
+
}
|
7579
8676
|
|
7580
8677
|
|
7581
8678
|
UPB_END_EXTERN_C
|
7582
8679
|
|
7583
8680
|
|
7584
8681
|
#endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ */
|
7585
|
-
/*
|
7586
|
-
** structs.int.h: structures definitions that are internal to upb.
|
7587
|
-
*/
|
7588
|
-
|
7589
|
-
#ifndef UPB_STRUCTS_H_
|
7590
|
-
#define UPB_STRUCTS_H_
|
7591
|
-
|
7592
|
-
struct upb_array {
|
7593
|
-
upb_fieldtype_t type;
|
7594
|
-
uint8_t element_size;
|
7595
|
-
void *data; /* Each element is element_size. */
|
7596
|
-
size_t len; /* Measured in elements. */
|
7597
|
-
size_t size; /* Measured in elements. */
|
7598
|
-
upb_arena *arena;
|
7599
|
-
};
|
7600
8682
|
|
7601
|
-
#endif /* UPB_STRUCTS_H_ */
|
7602
8683
|
|
7603
|
-
|
7604
|
-
|
7605
|
-
** and NOT stable across versions of upb.
|
7606
|
-
**
|
7607
|
-
** The only reason they are declared here and not in .c files is to allow upb
|
7608
|
-
** and the application (if desired) to embed statically-initialized instances
|
7609
|
-
** of structures like defs.
|
7610
|
-
**
|
7611
|
-
** If you include this file, all guarantees of ABI compatibility go out the
|
7612
|
-
** window! Any code that includes this file needs to recompile against the
|
7613
|
-
** exact same version of upb that they are linking against.
|
7614
|
-
**
|
7615
|
-
** You also need to recompile if you change the value of the UPB_DEBUG_REFS
|
7616
|
-
** flag.
|
7617
|
-
*/
|
7618
|
-
|
7619
|
-
|
7620
|
-
#ifndef UPB_STATICINIT_H_
|
7621
|
-
#define UPB_STATICINIT_H_
|
8684
|
+
#ifndef UPB_MSGFACTORY_H_
|
8685
|
+
#define UPB_MSGFACTORY_H_
|
7622
8686
|
|
7623
8687
|
#ifdef __cplusplus
|
7624
|
-
|
7625
|
-
|
8688
|
+
namespace upb {
|
8689
|
+
class MessageFactory;
|
8690
|
+
}
|
7626
8691
|
#endif
|
7627
8692
|
|
7628
|
-
/* upb_refcounted *************************************************************/
|
7629
|
-
|
7630
|
-
|
7631
|
-
/* upb_def ********************************************************************/
|
7632
|
-
|
7633
|
-
struct upb_def {
|
7634
|
-
upb_refcounted base;
|
7635
|
-
|
7636
|
-
const char *fullname;
|
7637
|
-
const upb_filedef* file;
|
7638
|
-
char type; /* A upb_deftype_t (char to save space) */
|
7639
|
-
|
7640
|
-
/* Used as a flag during the def's mutable stage. Must be false unless
|
7641
|
-
* it is currently being used by a function on the stack. This allows
|
7642
|
-
* us to easily determine which defs were passed into the function's
|
7643
|
-
* current invocation. */
|
7644
|
-
bool came_from_user;
|
7645
|
-
};
|
7646
|
-
|
7647
|
-
#define UPB_DEF_INIT(name, type, vtbl, refs, ref2s) \
|
7648
|
-
{ UPB_REFCOUNT_INIT(vtbl, refs, ref2s), name, NULL, type, false }
|
7649
|
-
|
7650
|
-
|
7651
|
-
/* upb_fielddef ***************************************************************/
|
7652
|
-
|
7653
|
-
struct upb_fielddef {
|
7654
|
-
upb_def base;
|
7655
|
-
|
7656
|
-
union {
|
7657
|
-
int64_t sint;
|
7658
|
-
uint64_t uint;
|
7659
|
-
double dbl;
|
7660
|
-
float flt;
|
7661
|
-
void *bytes;
|
7662
|
-
} defaultval;
|
7663
|
-
union {
|
7664
|
-
const upb_msgdef *def; /* If !msg_is_symbolic. */
|
7665
|
-
char *name; /* If msg_is_symbolic. */
|
7666
|
-
} msg;
|
7667
|
-
union {
|
7668
|
-
const upb_def *def; /* If !subdef_is_symbolic. */
|
7669
|
-
char *name; /* If subdef_is_symbolic. */
|
7670
|
-
} sub; /* The msgdef or enumdef for this field, if upb_hassubdef(f). */
|
7671
|
-
bool subdef_is_symbolic;
|
7672
|
-
bool msg_is_symbolic;
|
7673
|
-
const upb_oneofdef *oneof;
|
7674
|
-
bool default_is_string;
|
7675
|
-
bool type_is_set_; /* False until type is explicitly set. */
|
7676
|
-
bool is_extension_;
|
7677
|
-
bool lazy_;
|
7678
|
-
bool packed_;
|
7679
|
-
upb_intfmt_t intfmt;
|
7680
|
-
bool tagdelim;
|
7681
|
-
upb_fieldtype_t type_;
|
7682
|
-
upb_label_t label_;
|
7683
|
-
uint32_t number_;
|
7684
|
-
uint32_t selector_base; /* Used to index into a upb::Handlers table. */
|
7685
|
-
uint32_t index_;
|
7686
|
-
};
|
7687
|
-
|
7688
|
-
extern const struct upb_refcounted_vtbl upb_fielddef_vtbl;
|
7689
|
-
|
7690
|
-
#define UPB_FIELDDEF_INIT(label, type, intfmt, tagdelim, is_extension, lazy, \
|
7691
|
-
packed, name, num, msgdef, subdef, selector_base, \
|
7692
|
-
index, defaultval, refs, ref2s) \
|
7693
|
-
{ \
|
7694
|
-
UPB_DEF_INIT(name, UPB_DEF_FIELD, &upb_fielddef_vtbl, refs, ref2s), \
|
7695
|
-
defaultval, {msgdef}, {subdef}, NULL, false, false, \
|
7696
|
-
type == UPB_TYPE_STRING || type == UPB_TYPE_BYTES, true, is_extension, \
|
7697
|
-
lazy, packed, intfmt, tagdelim, type, label, num, selector_base, index \
|
7698
|
-
}
|
7699
|
-
|
7700
|
-
|
7701
|
-
/* upb_msgdef *****************************************************************/
|
7702
|
-
|
7703
|
-
struct upb_msgdef {
|
7704
|
-
upb_def base;
|
7705
|
-
|
7706
|
-
size_t selector_count;
|
7707
|
-
uint32_t submsg_field_count;
|
7708
|
-
|
7709
|
-
/* Tables for looking up fields by number and name. */
|
7710
|
-
upb_inttable itof; /* int to field */
|
7711
|
-
upb_strtable ntof; /* name to field/oneof */
|
7712
|
-
|
7713
|
-
/* Is this a map-entry message? */
|
7714
|
-
bool map_entry;
|
7715
|
-
|
7716
|
-
/* Whether this message has proto2 or proto3 semantics. */
|
7717
|
-
upb_syntax_t syntax;
|
7718
|
-
|
7719
|
-
/* Type of well known type message. UPB_WELLKNOWN_UNSPECIFIED for
|
7720
|
-
* non-well-known message. */
|
7721
|
-
upb_wellknowntype_t well_known_type;
|
7722
|
-
|
7723
|
-
/* TODO(haberman): proper extension ranges (there can be multiple). */
|
7724
|
-
};
|
7725
|
-
|
7726
|
-
extern const struct upb_refcounted_vtbl upb_msgdef_vtbl;
|
7727
|
-
|
7728
|
-
/* TODO: also support static initialization of the oneofs table. This will be
|
7729
|
-
* needed if we compile in descriptors that contain oneofs. */
|
7730
|
-
#define UPB_MSGDEF_INIT(name, selector_count, submsg_field_count, itof, ntof, \
|
7731
|
-
map_entry, syntax, well_known_type, refs, ref2s) \
|
7732
|
-
{ \
|
7733
|
-
UPB_DEF_INIT(name, UPB_DEF_MSG, &upb_fielddef_vtbl, refs, ref2s), \
|
7734
|
-
selector_count, submsg_field_count, itof, ntof, map_entry, syntax, \
|
7735
|
-
well_known_type \
|
7736
|
-
}
|
7737
|
-
|
7738
|
-
|
7739
|
-
/* upb_enumdef ****************************************************************/
|
7740
|
-
|
7741
|
-
struct upb_enumdef {
|
7742
|
-
upb_def base;
|
7743
|
-
|
7744
|
-
upb_strtable ntoi;
|
7745
|
-
upb_inttable iton;
|
7746
|
-
int32_t defaultval;
|
7747
|
-
};
|
7748
|
-
|
7749
|
-
extern const struct upb_refcounted_vtbl upb_enumdef_vtbl;
|
7750
|
-
|
7751
|
-
#define UPB_ENUMDEF_INIT(name, ntoi, iton, defaultval, refs, ref2s) \
|
7752
|
-
{ UPB_DEF_INIT(name, UPB_DEF_ENUM, &upb_enumdef_vtbl, refs, ref2s), ntoi, \
|
7753
|
-
iton, defaultval }
|
7754
|
-
|
7755
|
-
|
7756
|
-
/* upb_oneofdef ***************************************************************/
|
7757
|
-
|
7758
|
-
struct upb_oneofdef {
|
7759
|
-
upb_refcounted base;
|
7760
|
-
|
7761
|
-
uint32_t index; /* Index within oneofs. */
|
7762
|
-
const char *name;
|
7763
|
-
upb_strtable ntof;
|
7764
|
-
upb_inttable itof;
|
7765
|
-
const upb_msgdef *parent;
|
7766
|
-
};
|
7767
|
-
|
7768
|
-
extern const struct upb_refcounted_vtbl upb_oneofdef_vtbl;
|
7769
|
-
|
7770
|
-
#define UPB_ONEOFDEF_INIT(name, ntof, itof, refs, ref2s) \
|
7771
|
-
{ UPB_REFCOUNT_INIT(&upb_oneofdef_vtbl, refs, ref2s), 0, name, ntof, itof }
|
7772
|
-
|
7773
|
-
|
7774
|
-
/* upb_symtab *****************************************************************/
|
7775
|
-
|
7776
|
-
struct upb_symtab {
|
7777
|
-
upb_refcounted base;
|
7778
|
-
|
7779
|
-
upb_strtable symtab;
|
7780
|
-
};
|
7781
|
-
|
7782
|
-
struct upb_filedef {
|
7783
|
-
upb_refcounted base;
|
7784
|
-
|
7785
|
-
const char *name;
|
7786
|
-
const char *package;
|
7787
|
-
const char *phpprefix;
|
7788
|
-
const char *phpnamespace;
|
7789
|
-
upb_syntax_t syntax;
|
7790
|
-
|
7791
|
-
upb_inttable defs;
|
7792
|
-
upb_inttable deps;
|
7793
|
-
};
|
7794
|
-
|
7795
|
-
extern const struct upb_refcounted_vtbl upb_filedef_vtbl;
|
7796
|
-
|
7797
|
-
#endif /* UPB_STATICINIT_H_ */
|
7798
|
-
|
7799
|
-
|
7800
|
-
#ifndef UPB_MSGFACTORY_H_
|
7801
|
-
#define UPB_MSGFACTORY_H_
|
7802
|
-
|
7803
8693
|
UPB_DECLARE_TYPE(upb::MessageFactory, upb_msgfactory)
|
7804
8694
|
|
7805
8695
|
/** upb_msgfactory ************************************************************/
|
@@ -8841,14 +9731,8 @@ inline const DecoderMethod *CodeCache::GetDecoderMethod(
|
|
8841
9731
|
|
8842
9732
|
#endif /* UPB_DECODER_H_ */
|
8843
9733
|
|
8844
|
-
|
8845
|
-
|
8846
|
-
namespace upb {
|
8847
|
-
namespace pb {
|
8848
|
-
class MessageGroup;
|
8849
|
-
} /* namespace pb */
|
8850
|
-
} /* namespace upb */
|
8851
|
-
#endif
|
9734
|
+
#ifndef __cplusplus
|
9735
|
+
|
8852
9736
|
UPB_DECLARE_DERIVED_TYPE(upb::pb::MessageGroup, upb::RefCounted,
|
8853
9737
|
mgroup, upb_refcounted)
|
8854
9738
|
|
@@ -8911,7 +9795,7 @@ typedef enum {
|
|
8911
9795
|
|
8912
9796
|
#define OP_MAX OP_HALT
|
8913
9797
|
|
8914
|
-
UPB_INLINE opcode getop(uint32_t instr) { return instr & 0xff; }
|
9798
|
+
UPB_INLINE opcode getop(uint32_t instr) { return (opcode)(instr & 0xff); }
|
8915
9799
|
|
8916
9800
|
/* Method group; represents a set of decoder methods that had their code
|
8917
9801
|
* emitted together, and must therefore be freed together. Immutable once
|
@@ -9158,6 +10042,8 @@ UPB_INLINE void upb_pbdecoder_unpackdispatch(uint64_t dispatch, uint64_t *ofs,
|
|
9158
10042
|
|
9159
10043
|
#define CHECK_RETURN(x) { int32_t ret = x; if (ret >= 0) return ret; }
|
9160
10044
|
|
10045
|
+
#endif /* __cplusplus */
|
10046
|
+
|
9161
10047
|
#endif /* UPB_DECODER_INT_H_ */
|
9162
10048
|
/*
|
9163
10049
|
** A number of routines for varint manipulation (we keep them all around to
|
@@ -9753,3 +10639,4 @@ inline reffed_ptr<const Handlers> Printer::NewHandlers(
|
|
9753
10639
|
#undef UPB_FIELD_AT
|
9754
10640
|
#undef UPB_READ_ONEOF
|
9755
10641
|
#undef UPB_WRITE_ONEOF
|
10642
|
+
#undef UPB_WRITE_ONEOF
|