Skip to content
Snippets Groups Projects
Commit 88974d50 authored by Muxi Yan's avatar Muxi Yan
Browse files

Use protobuf's native upper camel conversion

parent 9baf4b19
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,8 @@ ...@@ -38,6 +38,8 @@
#include "src/compiler/config.h" #include "src/compiler/config.h"
#include "src/compiler/generator_helpers.h" #include "src/compiler/generator_helpers.h"
#include <google/protobuf/compiler/objectivec/objectivec_helpers.h>
namespace grpc_objective_c_generator { namespace grpc_objective_c_generator {
using ::grpc::protobuf::FileDescriptor; using ::grpc::protobuf::FileDescriptor;
...@@ -45,7 +47,7 @@ using ::grpc::protobuf::ServiceDescriptor; ...@@ -45,7 +47,7 @@ using ::grpc::protobuf::ServiceDescriptor;
using ::grpc::string; using ::grpc::string;
inline string MessageHeaderName(const FileDescriptor *file) { inline string MessageHeaderName(const FileDescriptor *file) {
return grpc_generator::FileNameInUpperCamel(file) + ".pbobjc.h"; return google::protobuf::compiler::objectivec::FilePath(file) + ".pbobjc.h";
} }
inline string ServiceClassName(const ServiceDescriptor *service) { inline string ServiceClassName(const ServiceDescriptor *service) {
......
...@@ -59,7 +59,7 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { ...@@ -59,7 +59,7 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator {
return true; return true;
} }
::grpc::string file_name = grpc_generator::FileNameInUpperCamel(file); ::grpc::string file_name = google::protobuf::compiler::objectivec::FilePath(file);
::grpc::string prefix = file->options().objc_class_prefix(); ::grpc::string prefix = file->options().objc_class_prefix();
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment