1 /* 2 * 3 * Copyright 2015 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 #ifndef QPS_WORKER_H 20 #define QPS_WORKER_H 21 22 #include <memory> 23 24 #include <grpc/support/atm.h> 25 #include <grpcpp/server.h> 26 #include <grpcpp/support/channel_arguments.h> 27 #include <grpcpp/support/config.h> 28 29 #include "test/cpp/qps/server.h" 30 31 namespace grpc { 32 33 namespace testing { 34 35 class WorkerServiceImpl; 36 37 extern std::vector<grpc::testing::Server*>* g_inproc_servers; 38 39 class QpsWorker { 40 public: 41 explicit QpsWorker(int driver_port, int server_port, 42 const grpc::string& credential_type); 43 ~QpsWorker(); 44 45 bool Done() const; 46 void MarkDone(); 47 InProcessChannel(const ChannelArguments & args)48 std::shared_ptr<Channel> InProcessChannel(const ChannelArguments& args) { 49 return server_->InProcessChannel(args); 50 } 51 52 private: 53 std::unique_ptr<WorkerServiceImpl> impl_; 54 std::unique_ptr<grpc::Server> server_; 55 56 gpr_atm done_; 57 }; 58 59 } // namespace testing 60 } // namespace grpc 61 62 #endif 63