|
|
|
// Protocol Buffers - Google's data interchange format
|
|
|
|
// Copyright 2023 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Exposing inlined UPB functions. Strictly free of dependencies on
|
|
|
|
// Ruby interpreter internals.
|
|
|
|
|
|
|
|
#include "ruby-upb.h"
|
|
|
|
|
|
|
|
upb_Arena* Arena_create() { return upb_Arena_Init(NULL, 0, &upb_alloc_global); }
|
|
|
|
|
|
|
|
google_protobuf_FileDescriptorProto* FileDescriptorProto_parse(
|
|
|
|
const char* serialized_file_proto, size_t length, upb_Arena* arena) {
|
|
|
|
return google_protobuf_FileDescriptorProto_parse(serialized_file_proto,
|
|
|
|
length, arena);
|
|
|
|
}
|
|
|
|
|
|
|
|
char* EnumDescriptor_serialized_options(const upb_EnumDef* enumdef,
|
|
|
|
size_t* size, upb_Arena* arena) {
|
|
|
|
const google_protobuf_EnumOptions* opts = upb_EnumDef_Options(enumdef);
|
|
|
|
char* serialized = google_protobuf_EnumOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* FileDescriptor_serialized_options(const upb_FileDef* filedef,
|
|
|
|
size_t* size, upb_Arena* arena) {
|
|
|
|
const google_protobuf_FileOptions* opts = upb_FileDef_Options(filedef);
|
|
|
|
char* serialized = google_protobuf_FileOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* Descriptor_serialized_options(const upb_MessageDef* msgdef, size_t* size,
|
|
|
|
upb_Arena* arena) {
|
|
|
|
const google_protobuf_MessageOptions* opts = upb_MessageDef_Options(msgdef);
|
|
|
|
char* serialized =
|
|
|
|
google_protobuf_MessageOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* OneOfDescriptor_serialized_options(const upb_OneofDef* oneofdef,
|
|
|
|
size_t* size, upb_Arena* arena) {
|
|
|
|
const google_protobuf_OneofOptions* opts = upb_OneofDef_Options(oneofdef);
|
|
|
|
char* serialized = google_protobuf_OneofOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* FieldDescriptor_serialized_options(const upb_FieldDef* fielddef,
|
|
|
|
size_t* size, upb_Arena* arena) {
|
|
|
|
const google_protobuf_FieldOptions* opts = upb_FieldDef_Options(fielddef);
|
|
|
|
char* serialized = google_protobuf_FieldOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|
Implement service & method descriptor lookup in Ruby (#15817)
This PR implements lookup of service descriptor and method descriptor objects in Ruby as described in issue https://github.com/protocolbuffers/protobuf/issues/14891.
It contains three implementations - one for the CRuby extension API, one for JRuby, and one for FFI.
With this patch,
* `DescriptorPool#lookup('fully.qualified.service.name')` works and returns a `Google::Protobuf::ServiceDescriptor` object
* You can call `#options` on that to get the service options
* You can call `#methods` on that to get the services' methods as `Google::Protobuf::MethodDescriptor` objects,
* You can call `MethodDescriptor#options` to get method options
* You can also get the streaming flags & input/output types of the method with `#input_type`, `#output_type`, `#client_streaming`, and `#server_streaming`.
In order to make the FFI implementation work, I had to mark some more methods in the UPB header as exported - I guess that's something which will have to be done on the UPB side, like this https://github.com/protocolbuffers/upb/commit/01fed1cc1ba255bf22b49393ba054b8d270e6ba3
CC @dazuma & @haberman from the original issue, and @JasonLunn (since you work on protobuf it seems - small world!)
I apologies for the large volume of copy-pasta'd code from the existing descriptor class implementations into the new ones - I felt this was probably better than designing new abstractions to reduce it off the bat though; this feels like it "fits in" with the existing implementation.
Closes #15817
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/15817 from KJTsanaktsidis:ktsanaktsidis/add_service_method_descriptors 54d72184310d7d9bfc06d4a58956e3871170c43d
PiperOrigin-RevId: 618221016
8 months ago
|
|
|
|
|
|
|
char* ServiceDescriptor_serialized_options(const upb_ServiceDef* servicedef,
|
|
|
|
size_t* size, upb_Arena* arena) {
|
|
|
|
const google_protobuf_ServiceOptions* opts =
|
|
|
|
upb_ServiceDef_Options(servicedef);
|
|
|
|
char* serialized =
|
|
|
|
google_protobuf_ServiceOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* MethodDescriptor_serialized_options(const upb_MethodDef* methoddef,
|
|
|
|
size_t* size, upb_Arena* arena) {
|
|
|
|
const google_protobuf_MethodOptions* opts = upb_MethodDef_Options(methoddef);
|
|
|
|
char* serialized = google_protobuf_MethodOptions_serialize(opts, arena, size);
|
|
|
|
return serialized;
|
|
|
|
}
|