Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
204 lines
7.1 KiB
204 lines
7.1 KiB
/* |
|
* Copyright (c) 2009-2021, Google LLC |
|
* All rights reserved. |
|
* |
|
* Redistribution and use in source and binary forms, with or without |
|
* modification, are permitted provided that the following conditions are met: |
|
* * Redistributions of source code must retain the above copyright |
|
* notice, this list of conditions and the following disclaimer. |
|
* * Redistributions in binary form must reproduce the above copyright |
|
* notice, this list of conditions and the following disclaimer in the |
|
* documentation and/or other materials provided with the distribution. |
|
* * Neither the name of Google LLC nor the |
|
* names of its contributors may be used to endorse or promote products |
|
* derived from this software without specific prior written permission. |
|
* |
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
* ARE DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY DIRECT, |
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
*/ |
|
|
|
#include <ctype.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
|
|
|
#include "upb/reflection/def_builder_internal.h" |
|
#include "upb/reflection/def_type.h" |
|
#include "upb/reflection/field_def_internal.h" |
|
#include "upb/reflection/message_def_internal.h" |
|
#include "upb/reflection/oneof_def_internal.h" |
|
|
|
// Must be last. |
|
#include "upb/port_def.inc" |
|
|
|
struct upb_OneofDef { |
|
const google_protobuf_OneofOptions* opts; |
|
const upb_MessageDef* parent; |
|
const char* full_name; |
|
int field_count; |
|
bool synthetic; |
|
const upb_FieldDef** fields; |
|
upb_strtable ntof; // lookup a field by name |
|
upb_inttable itof; // lookup a field by number (index) |
|
#if UINTPTR_MAX == 0xffffffff |
|
uint32_t padding; // Increase size to a multiple of 8. |
|
#endif |
|
}; |
|
|
|
upb_OneofDef* _upb_OneofDef_At(const upb_OneofDef* o, int i) { |
|
return (upb_OneofDef*)&o[i]; |
|
} |
|
|
|
const google_protobuf_OneofOptions* upb_OneofDef_Options(const upb_OneofDef* o) { |
|
return o->opts; |
|
} |
|
|
|
bool upb_OneofDef_HasOptions(const upb_OneofDef* o) { |
|
return o->opts != (void*)kUpbDefOptDefault; |
|
} |
|
|
|
const char* upb_OneofDef_FullName(const upb_OneofDef* o) { |
|
return o->full_name; |
|
} |
|
|
|
const char* upb_OneofDef_Name(const upb_OneofDef* o) { |
|
return _upb_DefBuilder_FullToShort(o->full_name); |
|
} |
|
|
|
const upb_MessageDef* upb_OneofDef_ContainingType(const upb_OneofDef* o) { |
|
return o->parent; |
|
} |
|
|
|
int upb_OneofDef_FieldCount(const upb_OneofDef* o) { return o->field_count; } |
|
|
|
const upb_FieldDef* upb_OneofDef_Field(const upb_OneofDef* o, int i) { |
|
UPB_ASSERT(i < o->field_count); |
|
return o->fields[i]; |
|
} |
|
|
|
int upb_OneofDef_numfields(const upb_OneofDef* o) { return o->field_count; } |
|
|
|
uint32_t upb_OneofDef_Index(const upb_OneofDef* o) { |
|
// Compute index in our parent's array. |
|
return o - upb_MessageDef_Oneof(o->parent, 0); |
|
} |
|
|
|
bool upb_OneofDef_IsSynthetic(const upb_OneofDef* o) { return o->synthetic; } |
|
|
|
const upb_FieldDef* upb_OneofDef_LookupNameWithSize(const upb_OneofDef* o, |
|
const char* name, |
|
size_t size) { |
|
upb_value val; |
|
return upb_strtable_lookup2(&o->ntof, name, size, &val) |
|
? upb_value_getptr(val) |
|
: NULL; |
|
} |
|
|
|
const upb_FieldDef* upb_OneofDef_LookupName(const upb_OneofDef* o, |
|
const char* name) { |
|
return upb_OneofDef_LookupNameWithSize(o, name, strlen(name)); |
|
} |
|
|
|
const upb_FieldDef* upb_OneofDef_LookupNumber(const upb_OneofDef* o, |
|
uint32_t num) { |
|
upb_value val; |
|
return upb_inttable_lookup(&o->itof, num, &val) ? upb_value_getptr(val) |
|
: NULL; |
|
} |
|
|
|
bool _upb_OneofDef_Insert(upb_OneofDef* o, const upb_FieldDef* f, |
|
const char* name, size_t size, upb_Arena* a) { |
|
o->field_count++; |
|
if (_upb_FieldDef_IsProto3Optional(f)) o->synthetic = true; |
|
|
|
const int number = upb_FieldDef_Number(f); |
|
const upb_value v = upb_value_constptr(f); |
|
return upb_inttable_insert(&o->itof, number, v, a) && |
|
upb_strtable_insert(&o->ntof, name, size, v, a); |
|
} |
|
|
|
// Returns the synthetic count. |
|
size_t _upb_OneofDefs_Finalize(upb_DefBuilder* ctx, upb_MessageDef* m) { |
|
int synthetic_count = 0; |
|
|
|
for (int i = 0; i < upb_MessageDef_OneofCount(m); i++) { |
|
upb_OneofDef* o = (upb_OneofDef*)upb_MessageDef_Oneof(m, i); |
|
|
|
if (o->synthetic && o->field_count != 1) { |
|
_upb_DefBuilder_Errf(ctx, |
|
"Synthetic oneofs must have one field, not %d: %s", |
|
o->field_count, upb_OneofDef_Name(o)); |
|
} |
|
|
|
if (o->synthetic) { |
|
synthetic_count++; |
|
} else if (synthetic_count != 0) { |
|
_upb_DefBuilder_Errf( |
|
ctx, "Synthetic oneofs must be after all other oneofs: %s", |
|
upb_OneofDef_Name(o)); |
|
} |
|
|
|
o->fields = |
|
_upb_DefBuilder_Alloc(ctx, sizeof(upb_FieldDef*) * o->field_count); |
|
o->field_count = 0; |
|
} |
|
|
|
for (int i = 0; i < upb_MessageDef_FieldCount(m); i++) { |
|
const upb_FieldDef* f = upb_MessageDef_Field(m, i); |
|
upb_OneofDef* o = (upb_OneofDef*)upb_FieldDef_ContainingOneof(f); |
|
if (o) { |
|
o->fields[o->field_count++] = f; |
|
} |
|
} |
|
|
|
return synthetic_count; |
|
} |
|
|
|
static void create_oneofdef(upb_DefBuilder* ctx, upb_MessageDef* m, |
|
const google_protobuf_OneofDescriptorProto* oneof_proto, |
|
const upb_OneofDef* _o) { |
|
upb_OneofDef* o = (upb_OneofDef*)_o; |
|
upb_StringView name = google_protobuf_OneofDescriptorProto_name(oneof_proto); |
|
|
|
o->parent = m; |
|
o->full_name = |
|
_upb_DefBuilder_MakeFullName(ctx, upb_MessageDef_FullName(m), name); |
|
o->field_count = 0; |
|
o->synthetic = false; |
|
|
|
UPB_DEF_SET_OPTIONS(o->opts, OneofDescriptorProto, OneofOptions, oneof_proto); |
|
|
|
if (upb_MessageDef_FindByNameWithSize(m, name.data, name.size, NULL, NULL)) { |
|
_upb_DefBuilder_Errf(ctx, "duplicate oneof name (%s)", o->full_name); |
|
} |
|
|
|
upb_value v = _upb_DefType_Pack(o, UPB_DEFTYPE_ONEOF); |
|
bool ok = _upb_MessageDef_Insert(m, name.data, name.size, v, ctx->arena); |
|
if (!ok) _upb_DefBuilder_OomErr(ctx); |
|
|
|
ok = upb_inttable_init(&o->itof, ctx->arena); |
|
if (!ok) _upb_DefBuilder_OomErr(ctx); |
|
|
|
ok = upb_strtable_init(&o->ntof, 4, ctx->arena); |
|
if (!ok) _upb_DefBuilder_OomErr(ctx); |
|
} |
|
|
|
// Allocate and initialize an array of |n| oneof defs. |
|
upb_OneofDef* _upb_OneofDefs_New( |
|
upb_DefBuilder* ctx, int n, |
|
const google_protobuf_OneofDescriptorProto* const* protos, upb_MessageDef* m) { |
|
_upb_DefType_CheckPadding(sizeof(upb_OneofDef)); |
|
|
|
upb_OneofDef* o = _upb_DefBuilder_Alloc(ctx, sizeof(upb_OneofDef) * n); |
|
for (int i = 0; i < n; i++) { |
|
create_oneofdef(ctx, m, protos[i], &o[i]); |
|
} |
|
return o; |
|
}
|
|
|