Skip to content
Snippets Groups Projects
client_async.cc 14.6 KiB
Newer Older
/*
 *
 * Copyright 2015, Google Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *     * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <cassert>
vjpai's avatar
vjpai committed
#include <forward_list>
#include <functional>
#include <memory>
vjpai's avatar
vjpai committed
#include <mutex>
#include <string>
#include <thread>
#include <vector>
#include <sstream>

#include <grpc/grpc.h>
#include <grpc/support/histogram.h>
#include <grpc/support/log.h>
#include <gflags/gflags.h>
#include <grpc++/async_unary_call.h>
#include <grpc++/client_context.h>
#include <grpc++/status.h>
#include <grpc++/stream.h>
#include "test/cpp/util/create_test_channel.h"
#include "test/cpp/qps/qpstest.grpc.pb.h"
Craig Tiller's avatar
Craig Tiller committed
#include "test/cpp/qps/timer.h"
#include "test/cpp/qps/client.h"
Craig Tiller's avatar
Craig Tiller committed
namespace grpc {
namespace testing {
vjpai's avatar
vjpai committed
typedef std::forward_list<grpc_time> deadline_list;
  
Vijay Pai's avatar
Vijay Pai committed
class ClientRpcContext {
 public:
vjpai's avatar
vjpai committed
  ClientRpcContext(int ch): channel_id_(ch) {}
Vijay Pai's avatar
Vijay Pai committed
  virtual ~ClientRpcContext() {}
  // next state, return false if done. Collect stats when appropriate
  virtual bool RunNextState(bool, Histogram* hist) = 0;
Vijay Pai's avatar
Vijay Pai committed
  virtual ClientRpcContext* StartNewClone() = 0;
Yang Gao's avatar
Yang Gao committed
  static void* tag(ClientRpcContext* c) { return reinterpret_cast<void*>(c); }
  static ClientRpcContext* detag(void* t) {
    return reinterpret_cast<ClientRpcContext*>(t);
vjpai's avatar
vjpai committed

  deadline_list::iterator deadline_posn() const {return deadline_posn_;}
  void set_deadline_posn(deadline_list::iterator&& it) {deadline_posn_ = it;}
  virtual void Start() = 0;
vjpai's avatar
vjpai committed
  int channel_id() const {return channel_id_;}
 protected:
  int channel_id_;
vjpai's avatar
vjpai committed
 private:
  deadline_list::iterator deadline_posn_;
Vijay Pai's avatar
Vijay Pai committed
};
Craig Tiller's avatar
Craig Tiller committed

Vijay Pai's avatar
Vijay Pai committed
template <class RequestType, class ResponseType>
class ClientRpcContextUnaryImpl : public ClientRpcContext {
 public:
vjpai's avatar
vjpai committed
  ClientRpcContextUnaryImpl(int channel_id,
Yang Gao's avatar
Yang Gao committed
      TestService::Stub* stub, const RequestType& req,
      std::function<
          std::unique_ptr<grpc::ClientAsyncResponseReader<ResponseType>>(
              TestService::Stub*, grpc::ClientContext*, const RequestType&)>
          start_req,
Yang Gao's avatar
Yang Gao committed
      std::function<void(grpc::Status, ResponseType*)> on_done)
vjpai's avatar
vjpai committed
    : ClientRpcContext(channel_id), context_(),
Craig Tiller's avatar
Craig Tiller committed
        stub_(stub),
Vijay Pai's avatar
Vijay Pai committed
        req_(req),
        response_(),
        next_state_(&ClientRpcContextUnaryImpl::RespDone),
Craig Tiller's avatar
Craig Tiller committed
        callback_(on_done),
vjpai's avatar
vjpai committed
        start_req_(start_req) {
  }
  void Start() GRPC_OVERRIDE {
    start_ = Timer::Now();
vjpai's avatar
vjpai committed
    response_reader_ = start_req_(stub_, &context_, req_);
    response_reader_->Finish(&response_, &status_, ClientRpcContext::tag(this));
  }
vjpai's avatar
vjpai committed
  ~ClientRpcContextUnaryImpl() GRPC_OVERRIDE {}
  bool RunNextState(bool ok, Histogram* hist) GRPC_OVERRIDE {
    bool ret = (this->*next_state_)(ok);
    if (!ret) {
      hist->Add((Timer::Now() - start_) * 1e9);
    }
    return ret;
Vijay Pai's avatar
Vijay Pai committed
  ClientRpcContext* StartNewClone() GRPC_OVERRIDE {
vjpai's avatar
vjpai committed
    return new ClientRpcContextUnaryImpl(channel_id_,
					 stub_, req_, start_req_, callback_);
Vijay Pai's avatar
Vijay Pai committed
 private:
  bool RespDone(bool) {
Vijay Pai's avatar
Vijay Pai committed
    next_state_ = &ClientRpcContextUnaryImpl::DoCallBack;
    return false;
  }
  bool DoCallBack(bool) {
Vijay Pai's avatar
Vijay Pai committed
    callback_(status_, &response_);
    return false;
  }
  grpc::ClientContext context_;
Yang Gao's avatar
Yang Gao committed
  TestService::Stub* stub_;
Vijay Pai's avatar
Vijay Pai committed
  RequestType req_;
  ResponseType response_;
  bool (ClientRpcContextUnaryImpl::*next_state_)(bool);
Yang Gao's avatar
Yang Gao committed
  std::function<void(grpc::Status, ResponseType*)> callback_;
Craig Tiller's avatar
Craig Tiller committed
  std::function<std::unique_ptr<grpc::ClientAsyncResponseReader<ResponseType>>(
      TestService::Stub*, grpc::ClientContext*, const RequestType&)> start_req_;
Vijay Pai's avatar
Vijay Pai committed
  grpc::Status status_;
  double start_;
  std::unique_ptr<grpc::ClientAsyncResponseReader<ResponseType>>
      response_reader_;
};
Vijay Pai's avatar
Vijay Pai committed
typedef std::forward_list<ClientRpcContext *> context_list;

Craig Tiller's avatar
Craig Tiller committed
 public:
  explicit AsyncClient(const ClientConfig& config,
vjpai's avatar
vjpai committed
		       std::function<ClientRpcContext*(int, CompletionQueue*, TestService::Stub*,
					  const SimpleRequest&)> setup_ctx) :
vjpai's avatar
vjpai committed
      Client(config), channel_lock_(config.client_channels()),
Vijay Pai's avatar
Vijay Pai committed
      max_outstanding_per_channel_(config.outstanding_rpcs_per_channel()),
vjpai's avatar
vjpai committed
      contexts_(config.client_channels()),
Vijay Pai's avatar
Vijay Pai committed
      channel_count_(config.client_channels()) {
vjpai's avatar
vjpai committed

Vijay Pai's avatar
Vijay Pai committed
    SetupLoadTest(config, config.async_client_threads());
vjpai's avatar
vjpai committed

Craig Tiller's avatar
Craig Tiller committed
    for (int i = 0; i < config.async_client_threads(); i++) {
      cli_cqs_.emplace_back(new CompletionQueue);
vjpai's avatar
vjpai committed
      if (!closed_loop_) {
        rpc_deadlines_.emplace_back();
        next_channel_.push_back(i % channel_count_);
        issue_allowed_.push_back(true);

        grpc_time next_issue;
        NextIssueTime(i, &next_issue);
        next_issue_.push_back(next_issue);
      }
Craig Tiller's avatar
Craig Tiller committed
    }
vjpai's avatar
vjpai committed
    if (!closed_loop_) {
      for (auto channel = channels_.begin(); channel != channels_.end();
	   channel++) {
vjpai's avatar
vjpai committed
	rpcs_outstanding_.push_back(0);
      }
    }
vjpai's avatar
vjpai committed

    int t = 0;
    for (int i = 0; i < config.outstanding_rpcs_per_channel(); i++) {
Vijay Pai's avatar
Vijay Pai committed
      for (int ch = 0; ch < channel_count_; ch++) {
vjpai's avatar
vjpai committed
        auto& channel = channels_[ch];
vjpai's avatar
vjpai committed
	auto* cq = cli_cqs_[t].get();
	t = (t + 1) % cli_cqs_.size();
vjpai's avatar
vjpai committed
	auto ctx = setup_ctx(ch, cq, channel.get_stub(), request_);
vjpai's avatar
vjpai committed
	if (closed_loop_) {
	  // only relevant for closed_loop unary, but harmless for
	  // closed_loop streaming
	  ctx->Start();
vjpai's avatar
vjpai committed
	}
Vijay Pai's avatar
Vijay Pai committed
        else {
          contexts_[ch].push_front(ctx);
        }
    for (auto cq = cli_cqs_.begin(); cq != cli_cqs_.end(); cq++) {
      (*cq)->Shutdown();
Yang Gao's avatar
Yang Gao committed
      void* got_tag;
Craig Tiller's avatar
Craig Tiller committed
      bool ok;
Craig Tiller's avatar
Craig Tiller committed
        delete ClientRpcContext::detag(got_tag);
      }
    }
  }

  bool ThreadFunc(Histogram* histogram,
                  size_t thread_idx) GRPC_OVERRIDE GRPC_FINAL {
Yang Gao's avatar
Yang Gao committed
    void* got_tag;
Craig Tiller's avatar
Craig Tiller committed
    bool ok;
vjpai's avatar
vjpai committed
    grpc_time deadline, short_deadline;
    if (closed_loop_) {
      deadline = grpc_time_source::now() + std::chrono::seconds(1);
      short_deadline = deadline;
    } else {
Vijay Pai's avatar
Vijay Pai committed
      if (rpc_deadlines_[thread_idx].empty()) {
        deadline = grpc_time_source::now() + std::chrono::seconds(1);
      }
      else {
        deadline = *(rpc_deadlines_[thread_idx].begin());
      }
vjpai's avatar
vjpai committed
      short_deadline = issue_allowed_[thread_idx] ?
	next_issue_[thread_idx] : deadline;
vjpai's avatar
vjpai committed
    bool got_event;

vjpai's avatar
vjpai committed
    switch (cli_cqs_[thread_idx]->AsyncNext(&got_tag, &ok, short_deadline)) {
      case CompletionQueue::SHUTDOWN: return false;
      case CompletionQueue::TIMEOUT:
	got_event = false;
	break;
      case CompletionQueue::GOT_EVENT:
	got_event = true;
	break;
      default:
        GPR_ASSERT(false);
        break;
Craig Tiller's avatar
Craig Tiller committed
    }
Vijay Pai's avatar
Vijay Pai committed
    if ((closed_loop_ || !rpc_deadlines_[thread_idx].empty()) &&
        grpc_time_source::now() > deadline) {
      // we have missed some 1-second deadline, which is too much                            gpr_log(GPR_INFO, "Missed an RPC deadline, giving up");
      return false;
    }
    if (got_event) {
vjpai's avatar
vjpai committed
     ClientRpcContext* ctx = ClientRpcContext::detag(got_tag);
     if (ctx->RunNextState(ok, histogram) == false) {
       // call the callback and then delete it
       rpc_deadlines_[thread_idx].erase_after(ctx->deadline_posn());
       ctx->RunNextState(ok, histogram);
Vijay Pai's avatar
Vijay Pai committed
       ClientRpcContext *clone_ctx = ctx->StartNewClone();
vjpai's avatar
vjpai committed
       delete ctx;
Vijay Pai's avatar
Vijay Pai committed
       if (!closed_loop_) {
         // Put this in the list of idle contexts for this channel
vjpai's avatar
vjpai committed
	 // Under lock
	 int ch = clone_ctx->channel_id();
	 std::lock_guard<std::mutex> g(channel_lock_[ch]);
	 contexts_[ch].push_front(ctx);
vjpai's avatar
vjpai committed
     }
     issue_allowed_[thread_idx] = true; // may be ok now even if it hadn't been
   }
vjpai's avatar
vjpai committed
   if (issue_allowed_[thread_idx] &&
       grpc_time_source::now() >= next_issue_[thread_idx]) {
Vijay Pai's avatar
Vijay Pai committed
     // Attempt to issue
vjpai's avatar
vjpai committed
     bool issued = false;
     for (int num_attempts = 0; num_attempts < channel_count_ && !issued;
Vijay Pai's avatar
Vijay Pai committed
	  num_attempts++,
              next_channel_[thread_idx] =
              (next_channel_[thread_idx]+1)%channel_count_) {
vjpai's avatar
vjpai committed
       std::lock_guard<std::mutex>
vjpai's avatar
vjpai committed
           g(channel_lock_[next_channel_[thread_idx]]);
Vijay Pai's avatar
Vijay Pai committed
       if ((rpcs_outstanding_[next_channel_[thread_idx]] <
            max_outstanding_per_channel_) &&
           !contexts_[next_channel_[thread_idx]].empty()) {
         // Get an idle context from the front of the list
         auto ctx = contexts_[next_channel_[thread_idx]].begin();
         contexts_[next_channel_[thread_idx]].pop_front();
vjpai's avatar
vjpai committed
	 // do the work to issue
vjpai's avatar
vjpai committed
         (*ctx)->Start();
vjpai's avatar
vjpai committed
	 rpcs_outstanding_[next_channel_[thread_idx]]++;
vjpai's avatar
vjpai committed
	 issued = true;
       }
     }
     if (!issued)
Vijay Pai's avatar
Vijay Pai committed
       issue_allowed_[thread_idx] = false;
vjpai's avatar
vjpai committed
   }
   return true;
Craig Tiller's avatar
Craig Tiller committed
  }
Craig Tiller's avatar
Craig Tiller committed
  std::vector<std::unique_ptr<CompletionQueue>> cli_cqs_;
vjpai's avatar
vjpai committed

  std::vector<deadline_list> rpc_deadlines_; // per thread deadlines
  std::vector<int> next_channel_; // per thread round-robin channel ctr
  std::vector<bool> issue_allowed_; // may this thread attempt to issue
  std::vector<grpc_time> next_issue_; // when should it issue?

vjpai's avatar
vjpai committed
  std::vector<std::mutex> channel_lock_;
vjpai's avatar
vjpai committed
  std::vector<int> rpcs_outstanding_; // per-channel vector
Vijay Pai's avatar
Vijay Pai committed
  std::vector<context_list> contexts_; // per-channel list of idle contexts
vjpai's avatar
vjpai committed
  int max_outstanding_per_channel_;
  int channel_count_;
class AsyncUnaryClient GRPC_FINAL : public AsyncClient {
 public:
  explicit AsyncUnaryClient(const ClientConfig& config)
      : AsyncClient(config, SetupCtx) {
    StartThreads(config.async_client_threads());
  }
  ~AsyncUnaryClient() GRPC_OVERRIDE { EndThreads(); }
private:
vjpai's avatar
vjpai committed
  static ClientRpcContext *SetupCtx(int channel_id,
				    CompletionQueue* cq,
				    TestService::Stub* stub,
				    const SimpleRequest& req) {
    auto check_done = [](grpc::Status s, SimpleResponse* response) {};
    auto start_req = [cq](TestService::Stub* stub, grpc::ClientContext* ctx,
                          const SimpleRequest& request) {
      return stub->AsyncUnaryCall(ctx, request, cq);
vjpai's avatar
vjpai committed
    return new ClientRpcContextUnaryImpl<SimpleRequest,
					 SimpleResponse>(channel_id, stub, req,
							 start_req, check_done);
vjpai's avatar
vjpai committed
  
template <class RequestType, class ResponseType>
class ClientRpcContextStreamingImpl : public ClientRpcContext {
 public:
vjpai's avatar
vjpai committed
  ClientRpcContextStreamingImpl(int channel_id,
      TestService::Stub* stub, const RequestType& req,
      std::function<std::unique_ptr<
          grpc::ClientAsyncReaderWriter<RequestType, ResponseType>>(
          TestService::Stub*, grpc::ClientContext*, void*)> start_req,
      std::function<void(grpc::Status, ResponseType*)> on_done)
vjpai's avatar
vjpai committed
      : ClientRpcContext(channel_id),
	context_(),
        stub_(stub),
        req_(req),
        response_(),
        next_state_(&ClientRpcContextStreamingImpl::ReqSent),
        callback_(on_done),
        start_req_(start_req),
        start_(Timer::Now()),
        stream_(start_req_(stub_, &context_, ClientRpcContext::tag(this))) {}
  ~ClientRpcContextStreamingImpl() GRPC_OVERRIDE {}
  bool RunNextState(bool ok, Histogram* hist) GRPC_OVERRIDE {
    return (this->*next_state_)(ok, hist);
  }
Vijay Pai's avatar
Vijay Pai committed
  ClientRpcContext* StartNewClone() GRPC_OVERRIDE {
vjpai's avatar
vjpai committed
    return new ClientRpcContextStreamingImpl(channel_id_,
					     stub_, req_, start_req_, callback_);
vjpai's avatar
vjpai committed
  void Start() GRPC_OVERRIDE {}
  bool ReqSent(bool ok, Histogram*) { return StartWrite(ok); }
  bool StartWrite(bool ok) {
    if (!ok) {
    }
    start_ = Timer::Now();
    next_state_ = &ClientRpcContextStreamingImpl::WriteDone;
    stream_->Write(req_, ClientRpcContext::tag(this));
    return true;
  }
  bool WriteDone(bool ok, Histogram*) {
    }
    next_state_ = &ClientRpcContextStreamingImpl::ReadDone;
    stream_->Read(&response_, ClientRpcContext::tag(this));
  bool ReadDone(bool ok, Histogram* hist) {
    hist->Add((Timer::Now() - start_) * 1e9);
    return StartWrite(ok);
  }
  grpc::ClientContext context_;
  TestService::Stub* stub_;
  RequestType req_;
  ResponseType response_;
  bool (ClientRpcContextStreamingImpl::*next_state_)(bool, Histogram*);
  std::function<void(grpc::Status, ResponseType*)> callback_;
  std::function<
      std::unique_ptr<grpc::ClientAsyncReaderWriter<RequestType, ResponseType>>(
          TestService::Stub*, grpc::ClientContext*, void*)> start_req_;
  grpc::Status status_;
  double start_;
  std::unique_ptr<grpc::ClientAsyncReaderWriter<RequestType, ResponseType>>
      stream_;
class AsyncStreamingClient GRPC_FINAL : public AsyncClient {
  explicit AsyncStreamingClient(const ClientConfig& config)
      : AsyncClient(config, SetupCtx) {
    StartThreads(config.async_client_threads());
  }

  ~AsyncStreamingClient() GRPC_OVERRIDE { EndThreads(); }
private:
vjpai's avatar
vjpai committed
  static ClientRpcContext *SetupCtx(int channel_id,
				    CompletionQueue* cq, TestService::Stub* stub,
                       const SimpleRequest& req)  {
    auto check_done = [](grpc::Status s, SimpleResponse* response) {};
    auto start_req = [cq](TestService::Stub* stub, grpc::ClientContext* ctx,
                          void* tag) {
      auto stream = stub->AsyncStreamingCall(ctx, cq, tag);
      return stream;
    };
vjpai's avatar
vjpai committed
    return new ClientRpcContextStreamingImpl<SimpleRequest,
					     SimpleResponse>(channel_id, stub,
							     req, start_req,
							     check_done);
std::unique_ptr<Client> CreateAsyncUnaryClient(const ClientConfig& args) {
  return std::unique_ptr<Client>(new AsyncUnaryClient(args));
}
std::unique_ptr<Client> CreateAsyncStreamingClient(const ClientConfig& args) {
  return std::unique_ptr<Client>(new AsyncStreamingClient(args));
Craig Tiller's avatar
Craig Tiller committed
}  // namespace testing
}  // namespace grpc