/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "rpc_engine.h" #include "rpc_connection.h" #include "common/util.h" #include #include #include namespace hdfs { RpcEngine::RpcEngine(::asio::io_service *io_service, const std::string &client_name, const char *protocol_name, int protocol_version) : io_service_(io_service), client_name_(client_name), protocol_name_(protocol_name), protocol_version_(protocol_version), call_id_(0) , conn_(new RpcConnectionImpl<::asio::ip::tcp::socket>(this)) {} Status RpcEngine::Connect(const std::vector<::asio::ip::tcp::endpoint> &servers) { using ::asio::ip::tcp; auto stat = std::make_shared>(); std::future future(stat->get_future()); conn_->Connect(servers, [this, stat](const Status &status) { if (!status.ok()) { stat->set_value(status); return; } conn_->Handshake( [this, stat](const Status &status) { stat->set_value(status); }); }); return future.get(); } void RpcEngine::Start() { conn_->Start(); } void RpcEngine::Shutdown() { io_service_->post([this]() { conn_->Shutdown(); }); } void RpcEngine::AsyncRpc( const std::string &method_name, const ::google::protobuf::MessageLite *req, const std::shared_ptr<::google::protobuf::MessageLite> &resp, std::function &&handler) { conn_->AsyncRpc(method_name, req, resp, std::move(handler)); } Status RpcEngine::Rpc(const std::string &method_name, const ::google::protobuf::MessageLite *req, const std::shared_ptr<::google::protobuf::MessageLite> &resp) { auto stat = std::make_shared>(); std::future future(stat->get_future()); AsyncRpc(method_name, req, resp, [stat](const Status &status) { stat->set_value(status); }); return future.get(); } Status RpcEngine::RawRpc(const std::string &method_name, const std::string &req, std::shared_ptr resp) { auto stat = std::make_shared>(); std::future future(stat->get_future()); conn_->AsyncRawRpc(method_name, req, resp, [stat](const Status &status) { stat->set_value(status); }); return future.get(); } std::string RpcEngine::GetRandomClientName() { unsigned char buf[6] = { 0, }; RAND_pseudo_bytes(buf, sizeof(buf)); std::stringstream ss; ss << "libhdfs++_" << Base64Encode(std::string(reinterpret_cast(buf), sizeof(buf))); return ss.str(); } }