blob: 18ac35d551c48ce05377f446f42e8dd2b8ce93d0 [file] [log] [blame]
yangg06170572015-01-12 13:12:45 -08001/*
2 *
yang-g364be642016-02-22 10:04:43 -08003 * Copyright 2015-2016, Google Inc.
yangg06170572015-01-12 13:12:45 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
yang-g9e2f90c2015-08-21 15:35:03 -070034#include <signal.h>
35#include <unistd.h>
36
David Garcia Quintasc8993192015-07-22 09:10:39 -070037#include <fstream>
yangg06170572015-01-12 13:12:45 -080038#include <memory>
39#include <sstream>
40#include <thread>
41
Nicolas "Pixel" Nobleba608202015-02-20 02:48:03 +010042#include <gflags/gflags.h>
yangg06170572015-01-12 13:12:45 -080043#include <grpc/grpc.h>
44#include <grpc/support/log.h>
David Garcia Quintas7c0d9142015-07-23 04:58:20 -070045#include <grpc/support/useful.h>
yangg06170572015-01-12 13:12:45 -080046#include <grpc++/server.h>
47#include <grpc++/server_builder.h>
48#include <grpc++/server_context.h>
Julien Boeuf5be92a32015-08-28 16:28:18 -070049#include <grpc++/security/server_credentials.h>
David Garcia Quintasc8993192015-07-22 09:10:39 -070050
yang-g9e2f90c2015-08-21 15:35:03 -070051#include "test/cpp/interop/server_helper.h"
52#include "test/cpp/util/test_config.h"
Craig Tiller1b4e3302015-12-17 16:35:00 -080053#include "src/proto/grpc/testing/test.grpc.pb.h"
54#include "src/proto/grpc/testing/empty.grpc.pb.h"
55#include "src/proto/grpc/testing/messages.grpc.pb.h"
yangg06170572015-01-12 13:12:45 -080056
yang-g035cf092015-09-18 12:11:05 -070057DEFINE_bool(use_tls, false, "Whether to use tls.");
yangg06170572015-01-12 13:12:45 -080058DEFINE_int32(port, 0, "Server port.");
59
60using grpc::Server;
61using grpc::ServerBuilder;
62using grpc::ServerContext;
63using grpc::ServerCredentials;
yangg06170572015-01-12 13:12:45 -080064using grpc::ServerReader;
65using grpc::ServerReaderWriter;
66using grpc::ServerWriter;
67using grpc::SslServerCredentialsOptions;
David Garcia Quintas7c0d9142015-07-23 04:58:20 -070068using grpc::testing::InteropServerContextInspector;
yangg06170572015-01-12 13:12:45 -080069using grpc::testing::Payload;
70using grpc::testing::PayloadType;
71using grpc::testing::SimpleRequest;
72using grpc::testing::SimpleResponse;
73using grpc::testing::StreamingInputCallRequest;
74using grpc::testing::StreamingInputCallResponse;
75using grpc::testing::StreamingOutputCallRequest;
76using grpc::testing::StreamingOutputCallResponse;
77using grpc::testing::TestService;
78using grpc::Status;
79
Craig Tiller2f3e2ec2015-02-20 13:07:50 -080080static bool got_sigint = false;
David Garcia Quintasc8993192015-07-22 09:10:39 -070081static const char* kRandomFile = "test/cpp/interop/rnd.dat";
Craig Tiller2f3e2ec2015-02-20 13:07:50 -080082
yang-gc10348a2016-02-19 16:05:10 -080083const char kEchoInitialMetadataKey[] = "x-grpc-test-echo-initial";
84const char kEchoTrailingBinMetadataKey[] = "x-grpc-test-echo-trailing-bin";
Makarand Dharmapurikarbfc7ada2016-02-22 15:42:18 -080085const char kEchoUserAgentKey[] = "x-grpc-test-echo-useragent";
yang-gc10348a2016-02-19 16:05:10 -080086
87void MaybeEchoMetadata(ServerContext* context) {
88 const auto& client_metadata = context->client_metadata();
89 GPR_ASSERT(client_metadata.count(kEchoInitialMetadataKey) <= 1);
90 GPR_ASSERT(client_metadata.count(kEchoTrailingBinMetadataKey) <= 1);
91
92 auto iter = client_metadata.find(kEchoInitialMetadataKey);
93 if (iter != client_metadata.end()) {
94 context->AddInitialMetadata(kEchoInitialMetadataKey, iter->second.data());
95 }
96 iter = client_metadata.find(kEchoTrailingBinMetadataKey);
97 if (iter != client_metadata.end()) {
98 context->AddTrailingMetadata(
99 kEchoTrailingBinMetadataKey,
100 grpc::string(iter->second.begin(), iter->second.end()));
101 }
Makarand Dharmapurikarbfc7ada2016-02-22 15:42:18 -0800102 // Check if client sent a magic key in the header that makes us echo
103 // back the user-agent (for testing purpose)
104 iter = client_metadata.find(kEchoUserAgentKey);
105 if (iter != client_metadata.end()) {
106 iter = client_metadata.find("user-agent");
107 if (iter != client_metadata.end()) {
108 context->AddInitialMetadata(kEchoUserAgentKey, iter->second.data());
109 }
110 }
yang-gc10348a2016-02-19 16:05:10 -0800111}
112
yangg06170572015-01-12 13:12:45 -0800113bool SetPayload(PayloadType type, int size, Payload* payload) {
David Garcia Quintasc8993192015-07-22 09:10:39 -0700114 PayloadType response_type;
115 if (type == PayloadType::RANDOM) {
116 response_type =
117 rand() & 0x1 ? PayloadType::COMPRESSABLE : PayloadType::UNCOMPRESSABLE;
118 } else {
119 response_type = type;
120 }
yangg06170572015-01-12 13:12:45 -0800121 payload->set_type(response_type);
David Garcia Quintasc8993192015-07-22 09:10:39 -0700122 switch (response_type) {
123 case PayloadType::COMPRESSABLE: {
124 std::unique_ptr<char[]> body(new char[size]());
125 payload->set_body(body.get(), size);
126 } break;
127 case PayloadType::UNCOMPRESSABLE: {
128 std::unique_ptr<char[]> body(new char[size]());
129 std::ifstream rnd_file(kRandomFile);
130 GPR_ASSERT(rnd_file.good());
131 rnd_file.read(body.get(), size);
132 GPR_ASSERT(!rnd_file.eof()); // Requested more rnd bytes than available
133 payload->set_body(body.get(), size);
134 } break;
135 default:
136 GPR_ASSERT(false);
David Garcia Quintas80f39952015-07-21 16:07:36 -0700137 }
yangg06170572015-01-12 13:12:45 -0800138 return true;
139}
140
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700141template <typename RequestType>
142void SetResponseCompression(ServerContext* context,
143 const RequestType& request) {
David Garcia Quintas864d1862015-08-13 15:26:00 -0700144 switch (request.response_compression()) {
145 case grpc::testing::NONE:
146 context->set_compression_algorithm(GRPC_COMPRESS_NONE);
147 break;
148 case grpc::testing::GZIP:
149 context->set_compression_algorithm(GRPC_COMPRESS_GZIP);
150 break;
151 case grpc::testing::DEFLATE:
152 context->set_compression_algorithm(GRPC_COMPRESS_DEFLATE);
153 break;
154 default:
155 abort();
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700156 }
157}
158
yangg06170572015-01-12 13:12:45 -0800159class TestServiceImpl : public TestService::Service {
160 public:
161 Status EmptyCall(ServerContext* context, const grpc::testing::Empty* request,
162 grpc::testing::Empty* response) {
Makarand Dharmapurikarbfc7ada2016-02-22 15:42:18 -0800163 MaybeEchoMetadata(context);
yangg06170572015-01-12 13:12:45 -0800164 return Status::OK;
165 }
166
167 Status UnaryCall(ServerContext* context, const SimpleRequest* request,
168 SimpleResponse* response) {
yang-gc10348a2016-02-19 16:05:10 -0800169 MaybeEchoMetadata(context);
David Garcia Quintas2e1bb1b2015-08-10 14:05:57 -0700170 SetResponseCompression(context, *request);
David Garcia Quintas864d1862015-08-13 15:26:00 -0700171 if (request->response_size() > 0) {
yangg06170572015-01-12 13:12:45 -0800172 if (!SetPayload(request->response_type(), request->response_size(),
173 response->mutable_payload())) {
174 return Status(grpc::StatusCode::INTERNAL, "Error creating payload.");
175 }
176 }
Abhishek Kumare1c867d2015-08-05 11:04:45 -0700177
178 if (request->has_response_status()) {
David Garcia Quintas2e1bb1b2015-08-10 14:05:57 -0700179 return Status(
180 static_cast<grpc::StatusCode>(request->response_status().code()),
181 request->response_status().message());
Abhishek Kumare1c867d2015-08-05 11:04:45 -0700182 }
David Garcia Quintas80f39952015-07-21 16:07:36 -0700183
yangg06170572015-01-12 13:12:45 -0800184 return Status::OK;
185 }
186
187 Status StreamingOutputCall(
188 ServerContext* context, const StreamingOutputCallRequest* request,
189 ServerWriter<StreamingOutputCallResponse>* writer) {
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700190 SetResponseCompression(context, *request);
yangg06170572015-01-12 13:12:45 -0800191 StreamingOutputCallResponse response;
192 bool write_success = true;
yangg06170572015-01-12 13:12:45 -0800193 for (int i = 0; write_success && i < request->response_parameters_size();
194 i++) {
David Garcia Quintas04ecfa12015-08-25 14:19:48 -0700195 if (!SetPayload(request->response_type(),
196 request->response_parameters(i).size(),
197 response.mutable_payload())) {
198 return Status(grpc::StatusCode::INTERNAL, "Error creating payload.");
199 }
yangg06170572015-01-12 13:12:45 -0800200 write_success = writer->Write(response);
201 }
202 if (write_success) {
203 return Status::OK;
204 } else {
205 return Status(grpc::StatusCode::INTERNAL, "Error writing response.");
206 }
207 }
208
209 Status StreamingInputCall(ServerContext* context,
210 ServerReader<StreamingInputCallRequest>* reader,
211 StreamingInputCallResponse* response) {
212 StreamingInputCallRequest request;
213 int aggregated_payload_size = 0;
214 while (reader->Read(&request)) {
yang-gf6befe82015-08-13 13:51:53 -0700215 if (request.has_payload()) {
yangg06170572015-01-12 13:12:45 -0800216 aggregated_payload_size += request.payload().body().size();
217 }
218 }
219 response->set_aggregated_payload_size(aggregated_payload_size);
220 return Status::OK;
221 }
222
223 Status FullDuplexCall(
224 ServerContext* context,
225 ServerReaderWriter<StreamingOutputCallResponse,
226 StreamingOutputCallRequest>* stream) {
yang-gc10348a2016-02-19 16:05:10 -0800227 MaybeEchoMetadata(context);
yangg06170572015-01-12 13:12:45 -0800228 StreamingOutputCallRequest request;
229 StreamingOutputCallResponse response;
230 bool write_success = true;
231 while (write_success && stream->Read(&request)) {
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700232 SetResponseCompression(context, request);
yang-g69563b92015-07-10 15:32:11 -0700233 if (request.response_parameters_size() != 0) {
234 response.mutable_payload()->set_type(request.payload().type());
235 response.mutable_payload()->set_body(
236 grpc::string(request.response_parameters(0).size(), '\0'));
237 write_success = stream->Write(response);
yangg06170572015-01-12 13:12:45 -0800238 }
yangg06170572015-01-12 13:12:45 -0800239 }
240 if (write_success) {
241 return Status::OK;
242 } else {
243 return Status(grpc::StatusCode::INTERNAL, "Error writing response.");
244 }
245 }
246
247 Status HalfDuplexCall(
248 ServerContext* context,
249 ServerReaderWriter<StreamingOutputCallResponse,
250 StreamingOutputCallRequest>* stream) {
251 std::vector<StreamingOutputCallRequest> requests;
252 StreamingOutputCallRequest request;
253 while (stream->Read(&request)) {
254 requests.push_back(request);
255 }
256
257 StreamingOutputCallResponse response;
258 bool write_success = true;
259 for (unsigned int i = 0; write_success && i < requests.size(); i++) {
260 response.mutable_payload()->set_type(requests[i].payload().type());
261 if (requests[i].response_parameters_size() == 0) {
262 return Status(grpc::StatusCode::INTERNAL,
263 "Request does not have response parameters.");
264 }
265 response.mutable_payload()->set_body(
266 grpc::string(requests[i].response_parameters(0).size(), '\0'));
267 write_success = stream->Write(response);
268 }
269 if (write_success) {
270 return Status::OK;
271 } else {
272 return Status(grpc::StatusCode::INTERNAL, "Error writing response.");
273 }
274 }
275};
276
277void RunServer() {
278 std::ostringstream server_address;
Yang Gaodab70952015-01-23 16:06:36 -0800279 server_address << "0.0.0.0:" << FLAGS_port;
yangg06170572015-01-12 13:12:45 -0800280 TestServiceImpl service;
281
282 SimpleRequest request;
283 SimpleResponse response;
284
285 ServerBuilder builder;
Craig Tillerf8ac5d82015-02-09 16:24:20 -0800286 builder.RegisterService(&service);
Yang Gaoa4002072015-04-09 23:25:21 -0700287 std::shared_ptr<ServerCredentials> creds =
288 grpc::testing::CreateInteropServerCredentials();
Nicolas Noblecfd60732015-03-18 16:27:43 -0700289 builder.AddListeningPort(server_address.str(), creds);
yangg06170572015-01-12 13:12:45 -0800290 std::unique_ptr<Server> server(builder.BuildAndStart());
291 gpr_log(GPR_INFO, "Server listening on %s", server_address.str().c_str());
Craig Tiller2f3e2ec2015-02-20 13:07:50 -0800292 while (!got_sigint) {
Craig Tillercf133f42015-02-26 14:05:56 -0800293 sleep(5);
yangg06170572015-01-12 13:12:45 -0800294 }
295}
296
Craig Tiller2f3e2ec2015-02-20 13:07:50 -0800297static void sigint_handler(int x) { got_sigint = true; }
298
yangg06170572015-01-12 13:12:45 -0800299int main(int argc, char** argv) {
Yang Gao103837e2015-04-15 15:23:54 -0700300 grpc::testing::InitTest(&argc, &argv, true);
Craig Tiller2f3e2ec2015-02-20 13:07:50 -0800301 signal(SIGINT, sigint_handler);
yangg06170572015-01-12 13:12:45 -0800302
303 GPR_ASSERT(FLAGS_port != 0);
304 RunServer();
305
yangg06170572015-01-12 13:12:45 -0800306 return 0;
Craig Tiller190d3602015-02-18 09:23:38 -0800307}