• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *
3  * Copyright 2016 gRPC authors.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 #include "test/cpp/util/proto_file_parser.h"
20 
21 #include <algorithm>
22 #include <iostream>
23 #include <sstream>
24 #include <unordered_set>
25 
26 #include <grpcpp/support/config.h>
27 
28 namespace grpc {
29 namespace testing {
30 namespace {
31 
32 // Match the user input method string to the full_name from method descriptor.
MethodNameMatch(const grpc::string & full_name,const grpc::string & input)33 bool MethodNameMatch(const grpc::string& full_name, const grpc::string& input) {
34   grpc::string clean_input = input;
35   std::replace(clean_input.begin(), clean_input.end(), '/', '.');
36   if (clean_input.size() > full_name.size()) {
37     return false;
38   }
39   return full_name.compare(full_name.size() - clean_input.size(),
40                            clean_input.size(), clean_input) == 0;
41 }
42 }  // namespace
43 
44 class ErrorPrinter : public protobuf::compiler::MultiFileErrorCollector {
45  public:
ErrorPrinter(ProtoFileParser * parser)46   explicit ErrorPrinter(ProtoFileParser* parser) : parser_(parser) {}
47 
AddError(const grpc::string & filename,int line,int column,const grpc::string & message)48   void AddError(const grpc::string& filename, int line, int column,
49                 const grpc::string& message) override {
50     std::ostringstream oss;
51     oss << "error " << filename << " " << line << " " << column << " "
52         << message << "\n";
53     parser_->LogError(oss.str());
54   }
55 
AddWarning(const grpc::string & filename,int line,int column,const grpc::string & message)56   void AddWarning(const grpc::string& filename, int line, int column,
57                   const grpc::string& message) override {
58     std::cerr << "warning " << filename << " " << line << " " << column << " "
59               << message << std::endl;
60   }
61 
62  private:
63   ProtoFileParser* parser_;  // not owned
64 };
65 
ProtoFileParser(const std::shared_ptr<grpc::Channel> & channel,const grpc::string & proto_path,const grpc::string & protofiles)66 ProtoFileParser::ProtoFileParser(const std::shared_ptr<grpc::Channel>& channel,
67                                  const grpc::string& proto_path,
68                                  const grpc::string& protofiles)
69     : has_error_(false),
70       dynamic_factory_(new protobuf::DynamicMessageFactory()) {
71   std::vector<grpc::string> service_list;
72   if (channel) {
73     reflection_db_.reset(new grpc::ProtoReflectionDescriptorDatabase(channel));
74     reflection_db_->GetServices(&service_list);
75   }
76 
77   std::unordered_set<grpc::string> known_services;
78   if (!protofiles.empty()) {
79     source_tree_.MapPath("", proto_path);
80     error_printer_.reset(new ErrorPrinter(this));
81     importer_.reset(
82         new protobuf::compiler::Importer(&source_tree_, error_printer_.get()));
83 
84     grpc::string file_name;
85     std::stringstream ss(protofiles);
86     while (std::getline(ss, file_name, ',')) {
87       const auto* file_desc = importer_->Import(file_name);
88       if (file_desc) {
89         for (int i = 0; i < file_desc->service_count(); i++) {
90           service_desc_list_.push_back(file_desc->service(i));
91           known_services.insert(file_desc->service(i)->full_name());
92         }
93       } else {
94         std::cerr << file_name << " not found" << std::endl;
95       }
96     }
97 
98     file_db_.reset(new protobuf::DescriptorPoolDatabase(*importer_->pool()));
99   }
100 
101   if (!reflection_db_ && !file_db_) {
102     LogError("No available proto database");
103     return;
104   }
105 
106   if (!reflection_db_) {
107     desc_db_ = std::move(file_db_);
108   } else if (!file_db_) {
109     desc_db_ = std::move(reflection_db_);
110   } else {
111     desc_db_.reset(new protobuf::MergedDescriptorDatabase(reflection_db_.get(),
112                                                           file_db_.get()));
113   }
114 
115   desc_pool_.reset(new protobuf::DescriptorPool(desc_db_.get()));
116 
117   for (auto it = service_list.begin(); it != service_list.end(); it++) {
118     if (known_services.find(*it) == known_services.end()) {
119       if (const protobuf::ServiceDescriptor* service_desc =
120               desc_pool_->FindServiceByName(*it)) {
121         service_desc_list_.push_back(service_desc);
122         known_services.insert(*it);
123       }
124     }
125   }
126 }
127 
~ProtoFileParser()128 ProtoFileParser::~ProtoFileParser() {}
129 
GetFullMethodName(const grpc::string & method)130 grpc::string ProtoFileParser::GetFullMethodName(const grpc::string& method) {
131   has_error_ = false;
132 
133   if (known_methods_.find(method) != known_methods_.end()) {
134     return known_methods_[method];
135   }
136 
137   const protobuf::MethodDescriptor* method_descriptor = nullptr;
138   for (auto it = service_desc_list_.begin(); it != service_desc_list_.end();
139        it++) {
140     const auto* service_desc = *it;
141     for (int j = 0; j < service_desc->method_count(); j++) {
142       const auto* method_desc = service_desc->method(j);
143       if (MethodNameMatch(method_desc->full_name(), method)) {
144         if (method_descriptor) {
145           std::ostringstream error_stream;
146           error_stream << "Ambiguous method names: ";
147           error_stream << method_descriptor->full_name() << " ";
148           error_stream << method_desc->full_name();
149           LogError(error_stream.str());
150         }
151         method_descriptor = method_desc;
152       }
153     }
154   }
155   if (!method_descriptor) {
156     LogError("Method name not found");
157   }
158   if (has_error_) {
159     return "";
160   }
161 
162   known_methods_[method] = method_descriptor->full_name();
163 
164   return method_descriptor->full_name();
165 }
166 
GetFormattedMethodName(const grpc::string & method)167 grpc::string ProtoFileParser::GetFormattedMethodName(
168     const grpc::string& method) {
169   has_error_ = false;
170   grpc::string formatted_method_name = GetFullMethodName(method);
171   if (has_error_) {
172     return "";
173   }
174   size_t last_dot = formatted_method_name.find_last_of('.');
175   if (last_dot != grpc::string::npos) {
176     formatted_method_name[last_dot] = '/';
177   }
178   formatted_method_name.insert(formatted_method_name.begin(), '/');
179   return formatted_method_name;
180 }
181 
GetMessageTypeFromMethod(const grpc::string & method,bool is_request)182 grpc::string ProtoFileParser::GetMessageTypeFromMethod(
183     const grpc::string& method, bool is_request) {
184   has_error_ = false;
185   grpc::string full_method_name = GetFullMethodName(method);
186   if (has_error_) {
187     return "";
188   }
189   const protobuf::MethodDescriptor* method_desc =
190       desc_pool_->FindMethodByName(full_method_name);
191   if (!method_desc) {
192     LogError("Method not found");
193     return "";
194   }
195 
196   return is_request ? method_desc->input_type()->full_name()
197                     : method_desc->output_type()->full_name();
198 }
199 
IsStreaming(const grpc::string & method,bool is_request)200 bool ProtoFileParser::IsStreaming(const grpc::string& method, bool is_request) {
201   has_error_ = false;
202 
203   grpc::string full_method_name = GetFullMethodName(method);
204   if (has_error_) {
205     return false;
206   }
207 
208   const protobuf::MethodDescriptor* method_desc =
209       desc_pool_->FindMethodByName(full_method_name);
210   if (!method_desc) {
211     LogError("Method not found");
212     return false;
213   }
214 
215   return is_request ? method_desc->client_streaming()
216                     : method_desc->server_streaming();
217 }
218 
GetSerializedProtoFromMethod(const grpc::string & method,const grpc::string & text_format_proto,bool is_request)219 grpc::string ProtoFileParser::GetSerializedProtoFromMethod(
220     const grpc::string& method, const grpc::string& text_format_proto,
221     bool is_request) {
222   has_error_ = false;
223   grpc::string message_type_name = GetMessageTypeFromMethod(method, is_request);
224   if (has_error_) {
225     return "";
226   }
227   return GetSerializedProtoFromMessageType(message_type_name,
228                                            text_format_proto);
229 }
230 
GetTextFormatFromMethod(const grpc::string & method,const grpc::string & serialized_proto,bool is_request)231 grpc::string ProtoFileParser::GetTextFormatFromMethod(
232     const grpc::string& method, const grpc::string& serialized_proto,
233     bool is_request) {
234   has_error_ = false;
235   grpc::string message_type_name = GetMessageTypeFromMethod(method, is_request);
236   if (has_error_) {
237     return "";
238   }
239   return GetTextFormatFromMessageType(message_type_name, serialized_proto);
240 }
241 
GetSerializedProtoFromMessageType(const grpc::string & message_type_name,const grpc::string & text_format_proto)242 grpc::string ProtoFileParser::GetSerializedProtoFromMessageType(
243     const grpc::string& message_type_name,
244     const grpc::string& text_format_proto) {
245   has_error_ = false;
246   grpc::string serialized;
247   const protobuf::Descriptor* desc =
248       desc_pool_->FindMessageTypeByName(message_type_name);
249   if (!desc) {
250     LogError("Message type not found");
251     return "";
252   }
253   std::unique_ptr<grpc::protobuf::Message> msg(
254       dynamic_factory_->GetPrototype(desc)->New());
255   bool ok = protobuf::TextFormat::ParseFromString(text_format_proto, msg.get());
256   if (!ok) {
257     LogError("Failed to parse text format to proto.");
258     return "";
259   }
260   ok = msg->SerializeToString(&serialized);
261   if (!ok) {
262     LogError("Failed to serialize proto.");
263     return "";
264   }
265   return serialized;
266 }
267 
GetTextFormatFromMessageType(const grpc::string & message_type_name,const grpc::string & serialized_proto)268 grpc::string ProtoFileParser::GetTextFormatFromMessageType(
269     const grpc::string& message_type_name,
270     const grpc::string& serialized_proto) {
271   has_error_ = false;
272   const protobuf::Descriptor* desc =
273       desc_pool_->FindMessageTypeByName(message_type_name);
274   if (!desc) {
275     LogError("Message type not found");
276     return "";
277   }
278   std::unique_ptr<grpc::protobuf::Message> msg(
279       dynamic_factory_->GetPrototype(desc)->New());
280   if (!msg->ParseFromString(serialized_proto)) {
281     LogError("Failed to deserialize proto.");
282     return "";
283   }
284   grpc::string text_format;
285   if (!protobuf::TextFormat::PrintToString(*msg.get(), &text_format)) {
286     LogError("Failed to print proto message to text format");
287     return "";
288   }
289   return text_format;
290 }
291 
LogError(const grpc::string & error_msg)292 void ProtoFileParser::LogError(const grpc::string& error_msg) {
293   if (!error_msg.empty()) {
294     std::cerr << error_msg << std::endl;
295   }
296   has_error_ = true;
297 }
298 
299 }  // namespace testing
300 }  // namespace grpc
301