Skip to content
Snippets Groups Projects
Commit 6c8de363 authored by yang-g's avatar yang-g
Browse files

Use user provided method name when using binary files in cli

parent c2046472
No related branches found
No related tags found
No related merge requests found
...@@ -414,6 +414,7 @@ bool GrpcTool::CallMethod(int argc, const char** argv, ...@@ -414,6 +414,7 @@ bool GrpcTool::CallMethod(int argc, const char** argv,
grpc::string request_text; grpc::string request_text;
grpc::string server_address(argv[0]); grpc::string server_address(argv[0]);
grpc::string method_name(argv[1]); grpc::string method_name(argv[1]);
grpc::string formatted_method_name;
std::unique_ptr<grpc::testing::ProtoFileParser> parser; std::unique_ptr<grpc::testing::ProtoFileParser> parser;
grpc::string serialized_request_proto; grpc::string serialized_request_proto;
...@@ -450,7 +451,9 @@ bool GrpcTool::CallMethod(int argc, const char** argv, ...@@ -450,7 +451,9 @@ bool GrpcTool::CallMethod(int argc, const char** argv,
if (FLAGS_binary_input) { if (FLAGS_binary_input) {
serialized_request_proto = request_text; serialized_request_proto = request_text;
formatted_method_name = method_name;
} else { } else {
formatted_method_name = parser->GetFormattedMethodName(method_name);
serialized_request_proto = parser->GetSerializedProtoFromMethod( serialized_request_proto = parser->GetSerializedProtoFromMethod(
method_name, request_text, true /* is_request */); method_name, request_text, true /* is_request */);
if (parser->HasError()) { if (parser->HasError()) {
...@@ -466,9 +469,9 @@ bool GrpcTool::CallMethod(int argc, const char** argv, ...@@ -466,9 +469,9 @@ bool GrpcTool::CallMethod(int argc, const char** argv,
ParseMetadataFlag(&client_metadata); ParseMetadataFlag(&client_metadata);
PrintMetadata(client_metadata, "Sending client initial metadata:"); PrintMetadata(client_metadata, "Sending client initial metadata:");
grpc::Status status = grpc::testing::CliCall::Call( grpc::Status status = grpc::testing::CliCall::Call(
channel, parser->GetFormatedMethodName(method_name), channel, formatted_method_name, serialized_request_proto,
serialized_request_proto, &serialized_response_proto, client_metadata, &serialized_response_proto, client_metadata, &server_initial_metadata,
&server_initial_metadata, &server_trailing_metadata); &server_trailing_metadata);
PrintMetadata(server_initial_metadata, PrintMetadata(server_initial_metadata,
"Received initial metadata from server:"); "Received initial metadata from server:");
PrintMetadata(server_trailing_metadata, PrintMetadata(server_trailing_metadata,
......
...@@ -172,19 +172,19 @@ grpc::string ProtoFileParser::GetFullMethodName(const grpc::string& method) { ...@@ -172,19 +172,19 @@ grpc::string ProtoFileParser::GetFullMethodName(const grpc::string& method) {
return method_descriptor->full_name(); return method_descriptor->full_name();
} }
grpc::string ProtoFileParser::GetFormatedMethodName( grpc::string ProtoFileParser::GetFormattedMethodName(
const grpc::string& method) { const grpc::string& method) {
has_error_ = false; has_error_ = false;
grpc::string formated_method_name = GetFullMethodName(method); grpc::string formatted_method_name = GetFullMethodName(method);
if (has_error_) { if (has_error_) {
return ""; return "";
} }
size_t last_dot = formated_method_name.find_last_of('.'); size_t last_dot = formatted_method_name.find_last_of('.');
if (last_dot != grpc::string::npos) { if (last_dot != grpc::string::npos) {
formated_method_name[last_dot] = '/'; formatted_method_name[last_dot] = '/';
} }
formated_method_name.insert(formated_method_name.begin(), '/'); formatted_method_name.insert(formatted_method_name.begin(), '/');
return formated_method_name; return formatted_method_name;
} }
grpc::string ProtoFileParser::GetMessageTypeFromMethod( grpc::string ProtoFileParser::GetMessageTypeFromMethod(
......
...@@ -64,9 +64,9 @@ class ProtoFileParser { ...@@ -64,9 +64,9 @@ class ProtoFileParser {
// descriptor database queries. // descriptor database queries.
grpc::string GetFullMethodName(const grpc::string& method); grpc::string GetFullMethodName(const grpc::string& method);
// Formated method name is in the form of /Service/Method, it's good to be // Formatted method name is in the form of /Service/Method, it's good to be
// used as the argument of Stub::Call() // used as the argument of Stub::Call()
grpc::string GetFormatedMethodName(const grpc::string& method); grpc::string GetFormattedMethodName(const grpc::string& method);
grpc::string GetSerializedProtoFromMethod( grpc::string GetSerializedProtoFromMethod(
const grpc::string& method, const grpc::string& text_format_proto, const grpc::string& method, const grpc::string& text_format_proto,
......
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