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.
128 lines
4.6 KiB
128 lines
4.6 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 "upb/reflection/def_builder_internal.h" |
|
#include "upb/reflection/def_type.h" |
|
#include "upb/reflection/file_def_internal.h" |
|
#include "upb/reflection/method_def_internal.h" |
|
#include "upb/reflection/service_def_internal.h" |
|
|
|
// Must be last. |
|
#include "upb/port_def.inc" |
|
|
|
struct upb_ServiceDef { |
|
const google_protobuf_ServiceOptions* opts; |
|
const upb_FileDef* file; |
|
const char* full_name; |
|
upb_MethodDef* methods; |
|
int method_count; |
|
int index; |
|
}; |
|
|
|
upb_ServiceDef* _upb_ServiceDef_At(const upb_ServiceDef* s, int index) { |
|
return (upb_ServiceDef*)&s[index]; |
|
} |
|
|
|
const google_protobuf_ServiceOptions* upb_ServiceDef_Options(const upb_ServiceDef* s) { |
|
return s->opts; |
|
} |
|
|
|
bool upb_ServiceDef_HasOptions(const upb_ServiceDef* s) { |
|
return s->opts != (void*)kUpbDefOptDefault; |
|
} |
|
|
|
const char* upb_ServiceDef_FullName(const upb_ServiceDef* s) { |
|
return s->full_name; |
|
} |
|
|
|
const char* upb_ServiceDef_Name(const upb_ServiceDef* s) { |
|
return _upb_DefBuilder_FullToShort(s->full_name); |
|
} |
|
|
|
int upb_ServiceDef_Index(const upb_ServiceDef* s) { return s->index; } |
|
|
|
const upb_FileDef* upb_ServiceDef_File(const upb_ServiceDef* s) { |
|
return s->file; |
|
} |
|
|
|
int upb_ServiceDef_MethodCount(const upb_ServiceDef* s) { |
|
return s->method_count; |
|
} |
|
|
|
const upb_MethodDef* upb_ServiceDef_Method(const upb_ServiceDef* s, int i) { |
|
return (i < 0 || i >= s->method_count) ? NULL |
|
: _upb_MethodDef_At(s->methods, i); |
|
} |
|
|
|
const upb_MethodDef* upb_ServiceDef_FindMethodByName(const upb_ServiceDef* s, |
|
const char* name) { |
|
for (int i = 0; i < s->method_count; i++) { |
|
const upb_MethodDef* m = _upb_MethodDef_At(s->methods, i); |
|
if (strcmp(name, upb_MethodDef_Name(m)) == 0) { |
|
return m; |
|
} |
|
} |
|
return NULL; |
|
} |
|
|
|
static void create_service(upb_DefBuilder* ctx, |
|
const google_protobuf_ServiceDescriptorProto* svc_proto, |
|
upb_ServiceDef* s) { |
|
upb_StringView name; |
|
size_t n; |
|
|
|
// Must happen before _upb_DefBuilder_Add() |
|
s->file = _upb_DefBuilder_File(ctx); |
|
|
|
name = google_protobuf_ServiceDescriptorProto_name(svc_proto); |
|
_upb_DefBuilder_CheckIdentNotFull(ctx, name); |
|
const char* package = _upb_FileDef_RawPackage(s->file); |
|
s->full_name = _upb_DefBuilder_MakeFullName(ctx, package, name); |
|
_upb_DefBuilder_Add(ctx, s->full_name, |
|
_upb_DefType_Pack(s, UPB_DEFTYPE_SERVICE)); |
|
|
|
const google_protobuf_MethodDescriptorProto* const* methods = |
|
google_protobuf_ServiceDescriptorProto_method(svc_proto, &n); |
|
s->method_count = n; |
|
s->methods = _upb_MethodDefs_New(ctx, n, methods, s); |
|
|
|
UPB_DEF_SET_OPTIONS(s->opts, ServiceDescriptorProto, ServiceOptions, |
|
svc_proto); |
|
} |
|
|
|
upb_ServiceDef* _upb_ServiceDefs_New( |
|
upb_DefBuilder* ctx, int n, |
|
const google_protobuf_ServiceDescriptorProto* const* protos) { |
|
_upb_DefType_CheckPadding(sizeof(upb_ServiceDef)); |
|
|
|
upb_ServiceDef* s = _upb_DefBuilder_Alloc(ctx, sizeof(upb_ServiceDef) * n); |
|
for (int i = 0; i < n; i++) { |
|
create_service(ctx, protos[i], &s[i]); |
|
s[i].index = i; |
|
} |
|
return s; |
|
}
|
|
|