pdcodegen.cpp 32.9 KB
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
#include <boost/algorithm/string.hpp>
#include <boost/scoped_ptr.hpp>
#include <list>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/compiler/plugin.h>
#include <google/protobuf/compiler/code_generator.h>
#include <google/protobuf/io/printer.h>
#include <google/protobuf/io/zero_copy_stream.h>
#include "plugin/strutil.h"
#include "plugin/substitute.h"
#include "pds_option.pb.h"
using std::string;
using google::protobuf::Descriptor;
using google::protobuf::FileDescriptor;
using google::protobuf::FieldDescriptor;
using google::protobuf::MethodDescriptor;
using google::protobuf::ServiceDescriptor;
using google::protobuf::compiler::CodeGenerator;
using google::protobuf::compiler::GeneratorContext;
using google::protobuf::HasSuffixString;
using google::protobuf::StripSuffixString;
namespace google {
namespace protobuf {
string dots_to_colons(const string& name) {
    return StringReplace(name, ".", "::", true);
}
string full_class_name(const Descriptor* descriptor) {
    // Find "outer", the descriptor of the top-level message in which
    // "descriptor" is embedded.
    const Descriptor* outer = descriptor;
    while (outer->containing_type() != NULL) {
        outer = outer->containing_type();
    }
    return outer->full_name();
}
}
}
string strip_proto(const string& filename) {
    if (HasSuffixString(filename, ".protolevel")) {
        return StripSuffixString(filename, ".protolevel"); 
    } else {
        return StripSuffixString(filename, ".proto");
    }
}
void string_format(std::string& source) {
    size_t len = source.length();
    std::string sep = "_";
    for (int i = 0; i < len; i++) {
        if (source[i] >= 'A' && source[i] <= 'Z') {
            source[i] += 32;
            if (i == 0) {
                continue;
            }
            source.insert(i, sep);
            i++;
            len++;
        }
    }
}
bool valid_service_method(const std::vector<const MethodDescriptor*>& methods) {
    if (methods.size() != 2) {
        return false;
    }
    if (methods[0]->name() == "inference" && methods[1]->name() == "debug") {
        return true;
    }
    if (methods[1]->name() == "inference" && methods[0]->name() == "debug") {
        return true;
    }
    return false;
}
class PdsCodeGenerator : public CodeGenerator {
public:
    virtual bool Generate(
            const FileDescriptor* file,
            const string& parameter,
            GeneratorContext* context,
            std::string* error) const {
        const string header = strip_proto(file->name()) + ".pb.h";
        const string body = strip_proto(file->name()) + ".pb.cc";
        bool include_inserted = false;
        for (int i = 0; i < file->service_count(); ++i) {
            const ServiceDescriptor* descriptor = file->service(i);
            if (!descriptor) {
                *error = "get descriptor failed"; 
                return false;
            }
            pds::PaddleServiceOption options 
                = descriptor->options().GetExtension(pds::options);
            bool generate_impl = options.generate_impl();
            bool generate_stub = options.generate_stub();
            if (!generate_impl && !generate_stub) {
                return true;
            }
            if (!include_inserted) {
                boost::scoped_ptr<google::protobuf::io::ZeroCopyOutputStream> output(
                        context->OpenForInsert(header, "includes"));
                google::protobuf::io::Printer printer(output.get(), '$');
                if (generate_impl) {
                    printer.Print("#include \"common/inner_common.h\"\n");
                    printer.Print("#include \"framework/service.h\"\n");
                    printer.Print("#include \"framework/manager.h\"\n");
                    printer.Print("#include \"framework/service_manager.h\"\n"); 
                }
                if (generate_stub) {
W
wangguibao 已提交
106
                    printer.Print("#include <brpc/parallel_channel.h>\n");
W
wangguibao 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
                    printer.Print("#include \"factory.h\"\n");
                    printer.Print("#include \"stub.h\"\n");
                    printer.Print("#include \"stub_impl.h\"\n");
                }
                include_inserted = true;
            }
            const std::string& class_name = descriptor->name();
            const std::string& service_name = descriptor->name();
            // xxx.ph.h
            {
                if (generate_impl) {
                    // service scope
                    // namespace scope
                    boost::scoped_ptr<google::protobuf::io::ZeroCopyOutputStream> 
                        output(context->OpenForInsert(header, "namespace_scope"));
                    google::protobuf::io::Printer printer(output.get(), '$');
                    if (!generate_paddle_serving_head(&printer, descriptor, error,
                                service_name, class_name)) {
                        return false;
                    }
                }
                if (generate_stub) {
                    // service class scope
                    
                    // namespace scope
                    {
                        boost::scoped_ptr<google::protobuf::io::ZeroCopyOutputStream> 
                            output(context->OpenForInsert(header, "namespace_scope"));
                        google::protobuf::io::Printer printer(output.get(), '$');
                        if (!generate_paddle_serving_stub_head(&printer, descriptor, error,
                                    service_name, class_name)) {
                            return false;
                        } 
                    }
                }
                
            }
            // xxx.pb.cc
            {
                if (generate_impl) {
                    // service scope
                    // namespace scope
                    boost::scoped_ptr<google::protobuf::io::ZeroCopyOutputStream> 
                        output(context->OpenForInsert(body, "namespace_scope"));
                    google::protobuf::io::Printer printer(output.get(), '$');
                    if (!generate_paddle_serving_body(&printer, descriptor, error, 
                                service_name, class_name)) {
                        return false;
                    }
                }
                if (generate_stub) {
                    // service class scope
                    {
                    }
                    // namespace scope
                    {
                        boost::scoped_ptr<google::protobuf::io::ZeroCopyOutputStream> 
                            output(context->OpenForInsert(body, "namespace_scope"));
                        google::protobuf::io::Printer printer(output.get(), '$');
                        if (!generate_paddle_serving_stub_body(&printer, descriptor, error, 
                                    service_name, class_name)) {
                            return false;
                        } 
                    }
                }
            }
        }
        return true;
    }
private:
    bool generate_paddle_serving_head(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        std::vector<const MethodDescriptor*> methods;
        for (int i = 0; i < descriptor->method_count(); ++i) {
            methods.push_back(descriptor->method(i));
        }
        if (!valid_service_method(methods)) {
            *error = "Service can only contains two methods: inferend, debug";
            return false;  
        }
        std::string variable_name = class_name;
        string_format(variable_name);
        printer->Print(
                "class $name$Impl : public $name$ {\n"
                "public:\n"
                "  virtual ~$name$Impl() {}\n"
                "  static $name$Impl& instance() {\n"
                "    return _s_$variable_name$_impl;\n"
                "  }\n\n"
                "  $name$Impl(const std::string& service_name) {\n"
                "    REGIST_FORMAT_SERVICE(\n"
                "            service_name, &$name$Impl::instance());\n"
                "  }\n\n",
                "name", class_name, "variable_name", variable_name);
        for (int i = 0; i < methods.size(); i++) {
            const MethodDescriptor* m = methods[i];
            printer->Print(
                "  virtual void $name$(google::protobuf::RpcController* cntl_base,\n"
                "          const $input_name$* request,\n"
                "          $output_name$* response,\n"
                "          google::protobuf::Closure* done);\n\n",
                "name", m->name(), 
                "input_name", google::protobuf::dots_to_colons(m->input_type()->full_name()),
                "output_name", google::protobuf::dots_to_colons(m->output_type()->full_name()));
        }
        printer->Print(
                "  static $name$Impl _s_$variable_name$_impl;\n"
                "};", "name", class_name, "variable_name", variable_name);
        return true; 
    }
    bool generate_paddle_serving_body(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        std::vector<const MethodDescriptor*> methods;
        for (int i = 0; i < descriptor->method_count(); ++i) {
            methods.push_back(descriptor->method(i));
        }
        if (!valid_service_method(methods)) {
            *error = "Service can only contains two methods: inferend, debug";
            return false;  
        }
        std::string variable_name = class_name;
        string_format(variable_name);
        for (int i = 0; i < methods.size(); i++) {
            const MethodDescriptor* m = methods[i];
            printer->Print(
                    "void $name$Impl::$method$(\n", 
                    "name", class_name, "method", m->name());
            printer->Print(
                    "        google::protobuf::RpcController* cntl_base,\n"
                    "        const $input_name$* request,\n"
                    "        $output_name$* response,\n"
                    "        google::protobuf::Closure* done) {\n"
                    "   struct timeval tv;\n"
                    "   gettimeofday(&tv, NULL);"
                    "   long start = tv.tv_sec * 1000000 + tv.tv_usec;",
                    "input_name", google::protobuf::dots_to_colons(m->input_type()->full_name()),
                    "output_name", google::protobuf::dots_to_colons(m->output_type()->full_name()));
            if (m->name() == "inference") {
                printer->Print(
W
wangguibao 已提交
254 255 256
                    "  brpc::ClosureGuard done_guard(done);\n"
                    "  brpc::Controller* cntl = \n"
                    "        static_cast<brpc::Controller*>(cntl_base);\n"
W
wangguibao 已提交
257 258 259 260 261 262 263
                    "  ::baidu::paddle_serving::predictor::InferService* svr = \n"
                    "       ::baidu::paddle_serving::predictor::InferServiceManager::instance().item(\"$service$\");\n"
                    "  if (svr == NULL) {\n"
                    "    LOG(ERROR) << \"Not found service: $service$\";\n"
                    "    cntl->SetFailed(404, \"Not found service: $service$\");\n"
                    "    return ;\n"
                    "  }\n"
W
wangguibao 已提交
264 265 266 267
                    "  LOG(NOTICE) << \" remote_side=\[\" << cntl->remote_side() << \"\]\";\n"
                    "  LOG(NOTICE) << \" local_side=\[\" << cntl->local_side() << \"\]\";\n"
                    "  LOG(NOTICE) << \" service_name=\[\" << \"$name$\" << \"\]\";\n"
                    "  LOG(NOTICE) << \" log_id=\[\" << cntl->log_id() << \"\]\";\n"
W
wangguibao 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
                    "  int err_code = svr->inference(request, response);\n"
                    "  if (err_code != 0) {\n"
                    "    LOG(WARNING)\n"
                    "        << \"Failed call inferservice[$name$], name[$service$]\"\n"
                    "        << \", error_code: \" << err_code;\n"
                    "    cntl->SetFailed(err_code, \"InferService inference failed!\");\n"
                    "  }\n"
                    "  gettimeofday(&tv, NULL);\n"
                    "  long end = tv.tv_sec * 1000000 + tv.tv_usec;\n"
                    "  // flush notice log\n"
                    "  LOG(NOTICE) << \" tc=\[\" << (end - start) << \"\]\";\n",
                    "name", class_name, "service", service_name);
            }
            if (m->name() == "debug") {
                printer->Print(
W
wangguibao 已提交
283 284 285
                    "  brpc::ClosureGuard done_guard(done);\n"
                    "  brpc::Controller* cntl = \n"
                    "        static_cast<brpc::Controller*>(cntl_base);\n"
W
wangguibao 已提交
286 287 288 289 290 291 292
                    "  ::baidu::paddle_serving::predictor::InferService* svr = \n"
                    "       ::baidu::paddle_serving::predictor::InferServiceManager::instance().item(\"$service$\");\n"
                    "  if (svr == NULL) {\n"
                    "    LOG(ERROR) << \"Not found service: $service$\";\n"
                    "    cntl->SetFailed(404, \"Not found service: $service$\");\n"
                    "    return ;\n"
                    "  }\n"
W
wangguibao 已提交
293 294 295 296 297
                    "  LOG(NOTICE) << \" remote_side=\[\" << cntl->remote_side() << \"\]\";\n"
                    "  LOG(NOTICE) << \" local_side=\[\" << cntl->local_side() << \"\]\";\n"
                    "  LOG(NOTICE) << \" service_name=\[\" << \"$name$\" << \"\]\";\n"
                    "  LOG(NOTICE) << \" log_id=\[\" << cntl->log_id() << \"\]\";\n"
                    "  butil::IOBufBuilder debug_os;\n"
W
wangguibao 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
                    "  int err_code = svr->inference(request, response, &debug_os);\n"
                    "  if (err_code != 0) {\n"
                    "    LOG(WARNING)\n"
                    "        << \"Failed call inferservice[$name$], name[$service$]\"\n"
                    "        << \", error_code: \" << err_code;\n"
                    "    cntl->SetFailed(err_code, \"InferService inference failed!\");\n"
                    "  }\n"
                    "  debug_os.move_to(cntl->response_attachment());\n"
                    "  gettimeofday(&tv, NULL);\n"
                    "  long end = tv.tv_sec * 1000000 + tv.tv_usec;\n"
                    "  // flush notice log\n"
                    "  LOG(NOTICE) << \" tc=\[\" << (end - start) << \"\]\";\n"
                    "  LOG(INFO)\n"
                    "      << \"TC=[\" << (end - start) << \"] Received debug request[log_id=\" << cntl->log_id()\n"
                    "      << \"] from \" << cntl->remote_side()\n"
                    "      << \" to \" << cntl->local_side();\n",
                    "name", class_name, "service", service_name);
            }
            printer->Print("}\n");
        }
        printer->Print(
                "$name$Impl $name$Impl::_s_$variable_name$_impl(\"$service$\");\n",
                "name", class_name, 
                "variable_name", variable_name,
                "service", service_name);
        return true; 
    }
    bool generate_paddle_serving_stub_head(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        printer->Print(
W
wangguibao 已提交
332
                "class $name$_StubCallMapper : public brpc::CallMapper {\n"
W
wangguibao 已提交
333 334 335 336 337 338 339 340 341 342 343 344
                "private:\n"
                "   uint32_t _package_size;\n"
                "   baidu::paddle_serving::sdk_cpp::Stub* _stub_handler;\n"
                "public:\n", "name", class_name);
        printer->Indent();
        printer->Print(
                "$name$_StubCallMapper(uint32_t package_size, baidu::paddle_serving::sdk_cpp::Stub* stub) {\n"
                "   _package_size = package_size;\n"
                "   _stub_handler = stub;\n"
                "}\n", "name", class_name);

        printer->Print(
W
wangguibao 已提交
345
                "brpc::SubCall default_map(\n"
W
wangguibao 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
                "        int channel_index,\n"
                "        const google::protobuf::MethodDescriptor* method,\n"
                "        const google::protobuf::Message* request,\n"
                "        google::protobuf::Message* response) {\n"
                "   baidu::paddle_serving::sdk_cpp::TracePackScope scope(\"default_map\", channel_index);",
                "name", class_name);
        printer->Indent();

        if (!generate_paddle_serving_stub_default_map(printer, descriptor, error,
                    service_name, class_name)) {
            return false;
        }

        printer->Outdent();
        printer->Print(
                "}\n");

        printer->Print(
W
wangguibao 已提交
364
                "brpc::SubCall sub_package_map(\n"
W
wangguibao 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
                "        int channel_index,\n"
                "        const google::protobuf::MethodDescriptor* method,\n"
                "        const google::protobuf::Message* request,\n"
                "        google::protobuf::Message* response) {\n"
                "   baidu::paddle_serving::sdk_cpp::TracePackScope scope(\"sub_map\", channel_index);",
                "name", class_name);
        printer->Indent();

        std::vector<const FieldDescriptor*> in_shared_fields;
        std::vector<const FieldDescriptor*> in_item_fields;
        const MethodDescriptor* md = descriptor->FindMethodByName("inference");
        if (!md) {
            *error = "not found inference method!";
            return false;
        }
        for (int i = 0; i < md->input_type()->field_count(); ++i) {
            const FieldDescriptor* fd = md->input_type()->field(i);
            if (!fd) {
                *error = "invalid fd at: " + i;
                return false;
            }
            bool pack_on = fd->options().GetExtension(pds::pack_on);
            if (pack_on && !fd->is_repeated()) {
                *error = "Pack fields must be repeated, field: " + fd->name();
                return false;
            }
            if (pack_on) {
                in_item_fields.push_back(fd);
            } else {
                in_shared_fields.push_back(fd);
            }
        }

        if (!generate_paddle_serving_stub_package_map(printer, descriptor, error,
                    service_name, class_name, in_shared_fields, in_item_fields)) {
            return false;
        }
        printer->Outdent();
        printer->Print(
                "}\n");

        printer->Print(
W
wangguibao 已提交
407
                "brpc::SubCall Map(\n"
W
wangguibao 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420
                "        int channel_index,\n"
                "        const google::protobuf::MethodDescriptor* method,\n"
                "        const google::protobuf::Message* request,\n"
                "        google::protobuf::Message* response) {\n",
                "name", class_name);
        printer->Indent();

        if (in_item_fields.size() <= 0) {
            printer->Print(
                    "// No packed items found in proto file, use default map method\n"
                    "return default_map(channel_index, method, request, response);\n");
        } else {
            printer->Print(
W
wangguibao 已提交
421 422
                    "butil::Timer tt(butil::Timer::STARTED);\n"
                    "brpc::SubCall ret;\n"
W
wangguibao 已提交
423 424 425 426 427 428
                    "if (_package_size == 0) {\n"
                    "   ret = default_map(channel_index, method, request, response);\n"
                    "} else {\n"
                    "   ret = sub_package_map(channel_index, method, request, response);\n"
                    "}\n"
                    "tt.stop();\n"
W
wangguibao 已提交
429
                    "if (ret.flags != brpc::SKIP_SUB_CHANNEL && ret.method != NULL) {\n"
W
wangguibao 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442
                    "   _stub_handler->update_latency(tt.u_elapsed(), \"pack_map\");\n"
                    "}\n"
                    "return ret;\n");
        }
        
        printer->Outdent();
        printer->Print("}\n");

        printer->Outdent();
        printer->Print("};\n");
        
        ////////////////////////////////////////////////////////////////
        printer->Print(
W
wangguibao 已提交
443
                "class $name$_StubResponseMerger : public brpc::ResponseMerger {\n"
W
wangguibao 已提交
444 445 446 447 448 449 450 451 452 453 454 455
                "private:\n"
                "   uint32_t _package_size;\n"
                "   baidu::paddle_serving::sdk_cpp::Stub* _stub_handler;\n"
                "public:\n", "name", class_name);
        printer->Indent();
        printer->Print(
                "$name$_StubResponseMerger(uint32_t package_size, baidu::paddle_serving::sdk_cpp::Stub* stub) {\n"
                "   _package_size = package_size;\n"
                "   _stub_handler = stub;\n"
                "}\n", "name", class_name);
        
        printer->Print(
W
wangguibao 已提交
456
                "brpc::ResponseMerger::Result default_merge(\n"
W
wangguibao 已提交
457 458 459 460 461 462 463 464 465 466 467 468 469 470
                "        google::protobuf::Message* response,\n"
                "        const google::protobuf::Message* sub_response) {\n"
                "   baidu::paddle_serving::sdk_cpp::TracePackScope scope(\"default_merge\");",
                "name", class_name);
        printer->Indent();
        if (!generate_paddle_serving_stub_default_merger(printer, descriptor, error,
                    service_name, class_name)) {
            return false;
        }
        printer->Outdent();
        printer->Print(
                "}\n");

        printer->Print(
W
wangguibao 已提交
471
                "brpc::ResponseMerger::Result sub_package_merge(\n"
W
wangguibao 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485
                "        google::protobuf::Message* response,\n"
                "        const google::protobuf::Message* sub_response) {\n"
                "   baidu::paddle_serving::sdk_cpp::TracePackScope scope(\"sub_merge\");",
                "name", class_name);
        printer->Indent();
        if (!generate_paddle_serving_stub_package_merger(printer, descriptor, error,
                    service_name, class_name)) {
            return false;
        }
        printer->Outdent();
        printer->Print(
                "}\n");

        printer->Print(
W
wangguibao 已提交
486
                "brpc::ResponseMerger::Result Merge(\n"
W
wangguibao 已提交
487 488 489 490 491
                "        google::protobuf::Message* response,\n"
                "        const google::protobuf::Message* sub_response) {\n",
                "name", class_name);
        printer->Indent();
        printer->Print(
W
wangguibao 已提交
492 493
                "butil::Timer tt(butil::Timer::STARTED);\n"
                "brpc::ResponseMerger::Result ret;"
W
wangguibao 已提交
494 495 496 497 498 499
                "if (_package_size <= 0) {\n"
                "    ret = default_merge(response, sub_response);\n"
                "} else {\n"
                "    ret = sub_package_merge(response, sub_response);\n"
                "}\n"
                "tt.stop();\n"
W
wangguibao 已提交
500
                "if (ret != brpc::ResponseMerger::FAIL) {\n"
W
wangguibao 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
                "   _stub_handler->update_latency(tt.u_elapsed(), \"pack_merge\");\n"
                "}\n"
                "return ret;\n");
        printer->Outdent();
        printer->Print("}\n");

        printer->Outdent();
        printer->Print("};\n");
        return true;
    }
    bool generate_paddle_serving_stub_default_map(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        printer->Print(
                "if (channel_index > 0) { \n"
W
wangguibao 已提交
519
                "   return brpc::SubCall::Skip();\n"
W
wangguibao 已提交
520 521 522 523
                "}\n");
        printer->Print(
                "google::protobuf::Message* cur_res = _stub_handler->fetch_response();\n"
                "if (cur_res == NULL) {\n"
W
wangguibao 已提交
524
                "   LOG(INFO) << \"Failed fetch response from stub handler, new it\";\n"
W
wangguibao 已提交
525 526 527 528
                "   cur_res = response->New();\n"
                "   if (cur_res == NULL) {\n"
                "       LOG(FATAL) << \"Failed new response item!\";\n"
                "       _stub_handler->update_average(1, \"pack_fail\");\n"
W
wangguibao 已提交
529
                "       return brpc::SubCall::Bad();\n"
W
wangguibao 已提交
530
                "   }\n"
W
wangguibao 已提交
531
                "   return brpc::SubCall(method, request, cur_res, brpc::DELETE_RESPONSE);\n"
W
wangguibao 已提交
532
                "}\n");
W
wangguibao 已提交
533
                "LOG(INFO) \n"
W
wangguibao 已提交
534 535
                "   << \"[default] Succ map, channel_index: \" << channel_index;\n";
        printer->Print(
W
wangguibao 已提交
536
                "return brpc::SubCall(method, request, cur_res, 0);\n"
W
wangguibao 已提交
537 538 539 540 541 542 543 544 545 546 547 548
                );
        return true;
    }
    bool generate_paddle_serving_stub_default_merger(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        printer->Print(
                "try {\n"
                "   response->MergeFrom(*sub_response);\n"
W
wangguibao 已提交
549
                "   return brpc::ResponseMerger::MERGED;\n"
W
wangguibao 已提交
550 551 552
                "} catch (const std::exception& e) {\n"
                "   LOG(FATAL) << \"Merge failed.\";\n"
                "   _stub_handler->update_average(1, \"pack_fail\");\n"
W
wangguibao 已提交
553
                "   return brpc::ResponseMerger::FAIL;\n"
W
wangguibao 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
                "}\n");
        return true;
    }
    bool generate_paddle_serving_stub_package_map(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name,
            std::vector<const FieldDescriptor*>& in_shared_fields,
            std::vector<const FieldDescriptor*>& in_item_fields) const {
        const MethodDescriptor* md = descriptor->FindMethodByName("inference");
        if (!md) {
            *error = "not found inference method!";
            return false;
        }

        printer->Print(
                "const $req_type$* req \n"
                "       = dynamic_cast<const $req_type$*>(request);\n"
                "$req_type$* sub_req = NULL;",
                "req_type", google::protobuf::dots_to_colons(
                    md->input_type()->full_name()));

        

        // 1. pack fields 逐字段计算index范围,并从req copy值sub_req
        printer->Print("\n// 1. 样本字段(必须为repeated类型)按指定下标复制\n");
        for (uint32_t ii = 0; ii < in_item_fields.size(); ii++) {
            const FieldDescriptor* fd = in_item_fields[ii];
            std::string field_name = fd->name();
            printer->Print("\n/////$field_name$\n", "field_name", field_name);
            if (ii == 0) {
                printer->Print(
                        "uint32_t total_size = req->$field_name$_size();\n"
                        "if (channel_index == 0) {\n"
                        "   _stub_handler->update_average(total_size, \"item_size\");\n"
                        "}\n", "field_name", field_name);

                printer->Print(
                        "int start = _package_size * channel_index;\n"
                        "if (start >= total_size) {\n"
W
wangguibao 已提交
596
                        "   return brpc::SubCall::Skip();\n"
W
wangguibao 已提交
597 598 599 600 601 602 603 604 605 606 607
                        "}\n"
                        "int end = _package_size * (channel_index + 1);\n"
                        "if (end > total_size) {\n"
                        "   end = total_size;\n"
                        "}\n");

                printer->Print(
                        "sub_req = dynamic_cast<$req_type$*>(_stub_handler->fetch_request());\n"
                        "if (sub_req == NULL) {\n"
                        "    LOG(FATAL) << \"failed fetch sub_req from stub.\";\n"
                        "    _stub_handler->update_average(1, \"pack_fail\");\n"
W
wangguibao 已提交
608
                        "    return brpc::SubCall::Bad();\n"
W
wangguibao 已提交
609 610 611 612 613 614 615 616 617 618 619
                        "}\n",
                        "name", class_name, "req_type", google::protobuf::dots_to_colons(
                            md->input_type()->full_name()));

            } else {
                printer->Print(
                        "if (req->$field_name$_size() != total_size) {\n"
                        "    LOG(FATAL) << \"pack field size not consistency: \"\n"
                        "               << total_size << \"!=\" << req->$field_name$_size()\n"
                        "               << \", field: $field_name$.\";\n"
                        "    _stub_handler->update_average(1, \"pack_fail\");\n"
W
wangguibao 已提交
620
                        "    return brpc::SubCall::Bad();\n"
W
wangguibao 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
                        "}\n", "field_name", field_name); 
            }

            printer->Print("for (uint32_t i = start; i < end; ++i) {\n");
            printer->Indent();
            if (fd->cpp_type() == google::protobuf::FieldDescriptor::CPPTYPE_MESSAGE) {
                printer->Print(
                        "sub_req->add_$field_name$()->CopyFrom(req->$field_name$(i));\n",
                        "field_name", field_name);
            } else {
                printer->Print(
                        "sub_req->add_$field_name$(req->$field_name$(i));\n",
                        "field_name", field_name); 
            }
            printer->Outdent();
            printer->Print("}\n");
        }

        // 2. shared fields逐字段从req copy至sub_req
        printer->Print("\n// 2. 共享字段,从req逐个复制到sub_req\n");
        if (in_item_fields.size() == 0) {
            printer->Print(
                    "if (sub_req == NULL) { // no packed items\n"
                    "   sub_req = dynamic_cast<$req_type$*>(_stub_handler->fetch_request());\n"
                    "   if (!sub_req) {\n"
                    "       LOG(FATAL) << \"failed fetch sub_req from stub handler.\";\n"
                    "       _stub_handler->update_average(1, \"pack_fail\");\n"
W
wangguibao 已提交
648
                    "       return brpc::SubCall::Bad();\n"
W
wangguibao 已提交
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
                    "   }\n"
                    "}\n", "req_type", google::protobuf::dots_to_colons(
                            md->input_type()->full_name()));
        }
        for (uint32_t si = 0; si < in_shared_fields.size(); si++) {
            const FieldDescriptor* fd = in_shared_fields[si];
            std::string field_name = fd->name();
            printer->Print("\n/////$field_name$\n", "field_name", field_name);
            if (fd->is_optional()) {
                printer->Print(
                        "if (req->has_$field_name$()) {\n", "field_name", field_name); 
                printer->Indent();
            }
            if (fd->cpp_type() == google::protobuf::FieldDescriptor::CPPTYPE_MESSAGE || fd->is_repeated()) {
                printer->Print(
                        "sub_req->mutable_$field_name$()->CopyFrom(req->$field_name$());\n",
                        "field_name", field_name);
            } else {
                printer->Print(
                        "sub_req->set_$field_name$(req->$field_name$());\n",
                        "field_name", field_name);
            }
            if (fd->is_optional()) {
                printer->Outdent();
                printer->Print("}\n");
            }
        }
        
        printer->Print(
W
wangguibao 已提交
678
                "LOG(INFO)\n"
W
wangguibao 已提交
679 680 681 682 683 684 685
                "   << \"[pack] Succ map req at: \"\n"
                "   << channel_index;\n");
        printer->Print(
                "google::protobuf::Message* sub_res = _stub_handler->fetch_response();\n"
                "if (sub_res == NULL) {\n"
                "    LOG(FATAL) << \"failed create sub_res from res.\";\n"
                "    _stub_handler->update_average(1, \"pack_fail\");\n"
W
wangguibao 已提交
686
                "    return brpc::SubCall::Bad();\n"
W
wangguibao 已提交
687
                "}\n"
W
wangguibao 已提交
688
                "return brpc::SubCall(method, sub_req, sub_res, 0);\n");
W
wangguibao 已提交
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
        return true;
    }
    bool generate_paddle_serving_stub_package_merger(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        return generate_paddle_serving_stub_default_merger(
                printer, descriptor, error, service_name, class_name);
    }
    bool generate_paddle_serving_stub_body(
            google::protobuf::io::Printer* printer,
            const ServiceDescriptor* descriptor,
            string *error,
            const std::string& service_name,
            const std::string& class_name) const {
        std::vector<const MethodDescriptor*> methods;
        for (int i = 0; i < descriptor->method_count(); ++i) {
            methods.push_back(descriptor->method(i));
        }
        if (!valid_service_method(methods)) {
            *error = "Service can only contains two methods: inferend, debug";
            return false;  
        }

        const MethodDescriptor* md = methods[0];
        std::map<string, string> variables;
        variables["name"] = class_name;
        variables["req_type"] = google::protobuf::dots_to_colons(md->input_type()->full_name());
        variables["res_type"] = google::protobuf::dots_to_colons(md->output_type()->full_name());
        variables["fullname"] = descriptor->full_name();
        printer->Print(variables,
                "REGIST_STUB_OBJECT_WITH_TAG(\n"
                "       $name$_Stub,\n"
                "       $name$_StubCallMapper,\n"
                "       $name$_StubResponseMerger,\n"
                "       $req_type$,\n"
                "       $res_type$,\n"
                "       \"$fullname$\");\n");
        variables.clear();
        return true;
    }
};
int main(int argc, char** argv) {
    PdsCodeGenerator generator;
    return google::protobuf::compiler::PluginMain(argc, argv, &generator);
};