aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h
blob: 3ae5d3b16e3a75fe0547b5f8e55c28c27baee7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/* This file was generated by upbc (the upb compiler) from the input
 * file:
 *
 *     google/protobuf/wrappers.proto
 *
 * Do not edit -- your changes will be discarded when the file is
 * regenerated. */

#ifndef GOOGLE_PROTOBUF_WRAPPERS_PROTO_UPB_H_
#define GOOGLE_PROTOBUF_WRAPPERS_PROTO_UPB_H_

#include "upb/msg.h"

#include "upb/decode.h"
#include "upb/encode.h"
#include "upb/port_def.inc"
UPB_BEGIN_EXTERN_C

struct google_protobuf_DoubleValue;
struct google_protobuf_FloatValue;
struct google_protobuf_Int64Value;
struct google_protobuf_UInt64Value;
struct google_protobuf_Int32Value;
struct google_protobuf_UInt32Value;
struct google_protobuf_BoolValue;
struct google_protobuf_StringValue;
struct google_protobuf_BytesValue;
typedef struct google_protobuf_DoubleValue google_protobuf_DoubleValue;
typedef struct google_protobuf_FloatValue google_protobuf_FloatValue;
typedef struct google_protobuf_Int64Value google_protobuf_Int64Value;
typedef struct google_protobuf_UInt64Value google_protobuf_UInt64Value;
typedef struct google_protobuf_Int32Value google_protobuf_Int32Value;
typedef struct google_protobuf_UInt32Value google_protobuf_UInt32Value;
typedef struct google_protobuf_BoolValue google_protobuf_BoolValue;
typedef struct google_protobuf_StringValue google_protobuf_StringValue;
typedef struct google_protobuf_BytesValue google_protobuf_BytesValue;

/* Enums */

/* google.protobuf.DoubleValue */

extern const upb_msglayout google_protobuf_DoubleValue_msginit;
UPB_INLINE google_protobuf_DoubleValue* google_protobuf_DoubleValue_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_DoubleValue_msginit, arena);
}
UPB_INLINE google_protobuf_DoubleValue* google_protobuf_DoubleValue_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_DoubleValue* ret = google_protobuf_DoubleValue_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_DoubleValue_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_DoubleValue_serialize(
    const google_protobuf_DoubleValue* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_DoubleValue_msginit, arena, len);
}

UPB_INLINE double google_protobuf_DoubleValue_value(
    const google_protobuf_DoubleValue* msg) {
  return UPB_FIELD_AT(msg, double, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_DoubleValue_set_value(
    google_protobuf_DoubleValue* msg, double value) {
  UPB_FIELD_AT(msg, double, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.FloatValue */

extern const upb_msglayout google_protobuf_FloatValue_msginit;
UPB_INLINE google_protobuf_FloatValue* google_protobuf_FloatValue_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_FloatValue_msginit, arena);
}
UPB_INLINE google_protobuf_FloatValue* google_protobuf_FloatValue_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_FloatValue* ret = google_protobuf_FloatValue_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_FloatValue_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_FloatValue_serialize(
    const google_protobuf_FloatValue* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_FloatValue_msginit, arena, len);
}

UPB_INLINE float google_protobuf_FloatValue_value(
    const google_protobuf_FloatValue* msg) {
  return UPB_FIELD_AT(msg, float, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_FloatValue_set_value(
    google_protobuf_FloatValue* msg, float value) {
  UPB_FIELD_AT(msg, float, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.Int64Value */

extern const upb_msglayout google_protobuf_Int64Value_msginit;
UPB_INLINE google_protobuf_Int64Value* google_protobuf_Int64Value_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_Int64Value_msginit, arena);
}
UPB_INLINE google_protobuf_Int64Value* google_protobuf_Int64Value_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_Int64Value* ret = google_protobuf_Int64Value_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_Int64Value_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_Int64Value_serialize(
    const google_protobuf_Int64Value* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_Int64Value_msginit, arena, len);
}

UPB_INLINE int64_t
google_protobuf_Int64Value_value(const google_protobuf_Int64Value* msg) {
  return UPB_FIELD_AT(msg, int64_t, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_Int64Value_set_value(
    google_protobuf_Int64Value* msg, int64_t value) {
  UPB_FIELD_AT(msg, int64_t, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.UInt64Value */

extern const upb_msglayout google_protobuf_UInt64Value_msginit;
UPB_INLINE google_protobuf_UInt64Value* google_protobuf_UInt64Value_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_UInt64Value_msginit, arena);
}
UPB_INLINE google_protobuf_UInt64Value* google_protobuf_UInt64Value_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_UInt64Value* ret = google_protobuf_UInt64Value_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_UInt64Value_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_UInt64Value_serialize(
    const google_protobuf_UInt64Value* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_UInt64Value_msginit, arena, len);
}

UPB_INLINE uint64_t
google_protobuf_UInt64Value_value(const google_protobuf_UInt64Value* msg) {
  return UPB_FIELD_AT(msg, uint64_t, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_UInt64Value_set_value(
    google_protobuf_UInt64Value* msg, uint64_t value) {
  UPB_FIELD_AT(msg, uint64_t, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.Int32Value */

extern const upb_msglayout google_protobuf_Int32Value_msginit;
UPB_INLINE google_protobuf_Int32Value* google_protobuf_Int32Value_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_Int32Value_msginit, arena);
}
UPB_INLINE google_protobuf_Int32Value* google_protobuf_Int32Value_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_Int32Value* ret = google_protobuf_Int32Value_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_Int32Value_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_Int32Value_serialize(
    const google_protobuf_Int32Value* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_Int32Value_msginit, arena, len);
}

UPB_INLINE int32_t
google_protobuf_Int32Value_value(const google_protobuf_Int32Value* msg) {
  return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_Int32Value_set_value(
    google_protobuf_Int32Value* msg, int32_t value) {
  UPB_FIELD_AT(msg, int32_t, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.UInt32Value */

extern const upb_msglayout google_protobuf_UInt32Value_msginit;
UPB_INLINE google_protobuf_UInt32Value* google_protobuf_UInt32Value_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_UInt32Value_msginit, arena);
}
UPB_INLINE google_protobuf_UInt32Value* google_protobuf_UInt32Value_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_UInt32Value* ret = google_protobuf_UInt32Value_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_UInt32Value_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_UInt32Value_serialize(
    const google_protobuf_UInt32Value* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_UInt32Value_msginit, arena, len);
}

UPB_INLINE uint32_t
google_protobuf_UInt32Value_value(const google_protobuf_UInt32Value* msg) {
  return UPB_FIELD_AT(msg, uint32_t, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_UInt32Value_set_value(
    google_protobuf_UInt32Value* msg, uint32_t value) {
  UPB_FIELD_AT(msg, uint32_t, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.BoolValue */

extern const upb_msglayout google_protobuf_BoolValue_msginit;
UPB_INLINE google_protobuf_BoolValue* google_protobuf_BoolValue_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_BoolValue_msginit, arena);
}
UPB_INLINE google_protobuf_BoolValue* google_protobuf_BoolValue_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_BoolValue* ret = google_protobuf_BoolValue_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_BoolValue_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_BoolValue_serialize(
    const google_protobuf_BoolValue* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_BoolValue_msginit, arena, len);
}

UPB_INLINE bool google_protobuf_BoolValue_value(
    const google_protobuf_BoolValue* msg) {
  return UPB_FIELD_AT(msg, bool, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_BoolValue_set_value(
    google_protobuf_BoolValue* msg, bool value) {
  UPB_FIELD_AT(msg, bool, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.StringValue */

extern const upb_msglayout google_protobuf_StringValue_msginit;
UPB_INLINE google_protobuf_StringValue* google_protobuf_StringValue_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_StringValue_msginit, arena);
}
UPB_INLINE google_protobuf_StringValue* google_protobuf_StringValue_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_StringValue* ret = google_protobuf_StringValue_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_StringValue_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_StringValue_serialize(
    const google_protobuf_StringValue* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_StringValue_msginit, arena, len);
}

UPB_INLINE upb_stringview
google_protobuf_StringValue_value(const google_protobuf_StringValue* msg) {
  return UPB_FIELD_AT(msg, upb_stringview, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_StringValue_set_value(
    google_protobuf_StringValue* msg, upb_stringview value) {
  UPB_FIELD_AT(msg, upb_stringview, UPB_SIZE(0, 0)) = value;
}

/* google.protobuf.BytesValue */

extern const upb_msglayout google_protobuf_BytesValue_msginit;
UPB_INLINE google_protobuf_BytesValue* google_protobuf_BytesValue_new(
    upb_arena* arena) {
  return upb_msg_new(&google_protobuf_BytesValue_msginit, arena);
}
UPB_INLINE google_protobuf_BytesValue* google_protobuf_BytesValue_parsenew(
    upb_stringview buf, upb_arena* arena) {
  google_protobuf_BytesValue* ret = google_protobuf_BytesValue_new(arena);
  return (ret && upb_decode(buf, ret, &google_protobuf_BytesValue_msginit))
             ? ret
             : NULL;
}
UPB_INLINE char* google_protobuf_BytesValue_serialize(
    const google_protobuf_BytesValue* msg, upb_arena* arena, size_t* len) {
  return upb_encode(msg, &google_protobuf_BytesValue_msginit, arena, len);
}

UPB_INLINE upb_stringview
google_protobuf_BytesValue_value(const google_protobuf_BytesValue* msg) {
  return UPB_FIELD_AT(msg, upb_stringview, UPB_SIZE(0, 0));
}

UPB_INLINE void google_protobuf_BytesValue_set_value(
    google_protobuf_BytesValue* msg, upb_stringview value) {
  UPB_FIELD_AT(msg, upb_stringview, UPB_SIZE(0, 0)) = value;
}

UPB_END_EXTERN_C

#include "upb/port_undef.inc"

#endif /* GOOGLE_PROTOBUF_WRAPPERS_PROTO_UPB_H_ */