blob: bbedda14d2562a92c7fa2f55fa8718c63b886568 [file] [log] [blame]
yangg06170572015-01-12 13:12:45 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, 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>
Craig Tillerf40df232016-03-25 13:38:14 -070043#include <grpc++/security/server_credentials.h>
yangg06170572015-01-12 13:12:45 -080044#include <grpc++/server.h>
45#include <grpc++/server_builder.h>
46#include <grpc++/server_context.h>
Craig Tillerf40df232016-03-25 13:38:14 -070047#include <grpc/grpc.h>
48#include <grpc/support/log.h>
49#include <grpc/support/useful.h>
David Garcia Quintasc8993192015-07-22 09:10:39 -070050
Craig Tiller1b4e3302015-12-17 16:35:00 -080051#include "src/proto/grpc/testing/empty.grpc.pb.h"
52#include "src/proto/grpc/testing/messages.grpc.pb.h"
Craig Tillerf40df232016-03-25 13:38:14 -070053#include "src/proto/grpc/testing/test.grpc.pb.h"
54#include "test/cpp/interop/server_helper.h"
55#include "test/cpp/util/test_config.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
David Garcia Quintas5756c8f2016-06-07 18:00:44 -0700113bool SetPayload(PayloadType response_type, int size, Payload* payload) {
yangg06170572015-01-12 13:12:45 -0800114 payload->set_type(response_type);
David Garcia Quintasc8993192015-07-22 09:10:39 -0700115 switch (response_type) {
116 case PayloadType::COMPRESSABLE: {
117 std::unique_ptr<char[]> body(new char[size]());
118 payload->set_body(body.get(), size);
119 } break;
120 case PayloadType::UNCOMPRESSABLE: {
121 std::unique_ptr<char[]> body(new char[size]());
122 std::ifstream rnd_file(kRandomFile);
123 GPR_ASSERT(rnd_file.good());
124 rnd_file.read(body.get(), size);
125 GPR_ASSERT(!rnd_file.eof()); // Requested more rnd bytes than available
126 payload->set_body(body.get(), size);
127 } break;
128 default:
129 GPR_ASSERT(false);
David Garcia Quintas80f39952015-07-21 16:07:36 -0700130 }
yangg06170572015-01-12 13:12:45 -0800131 return true;
132}
133
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700134template <typename RequestType>
135void SetResponseCompression(ServerContext* context,
136 const RequestType& request) {
David Garcia Quintas5756c8f2016-06-07 18:00:44 -0700137 if (request.request_compressed_response()) {
138 // Any level would do, let's go for HIGH because we are overachievers.
139 context->set_compression_level(GRPC_COMPRESS_LEVEL_HIGH);
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700140 }
141}
142
yangg06170572015-01-12 13:12:45 -0800143class TestServiceImpl : public TestService::Service {
144 public:
145 Status EmptyCall(ServerContext* context, const grpc::testing::Empty* request,
146 grpc::testing::Empty* response) {
Makarand Dharmapurikarbfc7ada2016-02-22 15:42:18 -0800147 MaybeEchoMetadata(context);
yangg06170572015-01-12 13:12:45 -0800148 return Status::OK;
149 }
150
151 Status UnaryCall(ServerContext* context, const SimpleRequest* request,
152 SimpleResponse* response) {
yang-gc10348a2016-02-19 16:05:10 -0800153 MaybeEchoMetadata(context);
David Garcia Quintas2e1bb1b2015-08-10 14:05:57 -0700154 SetResponseCompression(context, *request);
David Garcia Quintas864d1862015-08-13 15:26:00 -0700155 if (request->response_size() > 0) {
yangg06170572015-01-12 13:12:45 -0800156 if (!SetPayload(request->response_type(), request->response_size(),
157 response->mutable_payload())) {
158 return Status(grpc::StatusCode::INTERNAL, "Error creating payload.");
159 }
160 }
Abhishek Kumare1c867d2015-08-05 11:04:45 -0700161
162 if (request->has_response_status()) {
David Garcia Quintas2e1bb1b2015-08-10 14:05:57 -0700163 return Status(
164 static_cast<grpc::StatusCode>(request->response_status().code()),
165 request->response_status().message());
Abhishek Kumare1c867d2015-08-05 11:04:45 -0700166 }
David Garcia Quintas80f39952015-07-21 16:07:36 -0700167
yangg06170572015-01-12 13:12:45 -0800168 return Status::OK;
169 }
170
171 Status StreamingOutputCall(
172 ServerContext* context, const StreamingOutputCallRequest* request,
173 ServerWriter<StreamingOutputCallResponse>* writer) {
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700174 SetResponseCompression(context, *request);
yangg06170572015-01-12 13:12:45 -0800175 StreamingOutputCallResponse response;
176 bool write_success = true;
yangg06170572015-01-12 13:12:45 -0800177 for (int i = 0; write_success && i < request->response_parameters_size();
178 i++) {
David Garcia Quintas04ecfa12015-08-25 14:19:48 -0700179 if (!SetPayload(request->response_type(),
180 request->response_parameters(i).size(),
181 response.mutable_payload())) {
182 return Status(grpc::StatusCode::INTERNAL, "Error creating payload.");
183 }
yangg06170572015-01-12 13:12:45 -0800184 write_success = writer->Write(response);
185 }
186 if (write_success) {
187 return Status::OK;
188 } else {
189 return Status(grpc::StatusCode::INTERNAL, "Error writing response.");
190 }
191 }
192
193 Status StreamingInputCall(ServerContext* context,
194 ServerReader<StreamingInputCallRequest>* reader,
195 StreamingInputCallResponse* response) {
196 StreamingInputCallRequest request;
197 int aggregated_payload_size = 0;
198 while (reader->Read(&request)) {
yang-gf6befe82015-08-13 13:51:53 -0700199 if (request.has_payload()) {
yangg06170572015-01-12 13:12:45 -0800200 aggregated_payload_size += request.payload().body().size();
201 }
202 }
203 response->set_aggregated_payload_size(aggregated_payload_size);
204 return Status::OK;
205 }
206
207 Status FullDuplexCall(
208 ServerContext* context,
209 ServerReaderWriter<StreamingOutputCallResponse,
210 StreamingOutputCallRequest>* stream) {
yang-gc10348a2016-02-19 16:05:10 -0800211 MaybeEchoMetadata(context);
yangg06170572015-01-12 13:12:45 -0800212 StreamingOutputCallRequest request;
213 StreamingOutputCallResponse response;
214 bool write_success = true;
215 while (write_success && stream->Read(&request)) {
David Garcia Quintas9c512bd2015-07-20 23:43:53 -0700216 SetResponseCompression(context, request);
yang-g69563b92015-07-10 15:32:11 -0700217 if (request.response_parameters_size() != 0) {
218 response.mutable_payload()->set_type(request.payload().type());
219 response.mutable_payload()->set_body(
220 grpc::string(request.response_parameters(0).size(), '\0'));
221 write_success = stream->Write(response);
yangg06170572015-01-12 13:12:45 -0800222 }
yangg06170572015-01-12 13:12:45 -0800223 }
224 if (write_success) {
225 return Status::OK;
226 } else {
227 return Status(grpc::StatusCode::INTERNAL, "Error writing response.");
228 }
229 }
230
231 Status HalfDuplexCall(
232 ServerContext* context,
233 ServerReaderWriter<StreamingOutputCallResponse,
234 StreamingOutputCallRequest>* stream) {
235 std::vector<StreamingOutputCallRequest> requests;
236 StreamingOutputCallRequest request;
237 while (stream->Read(&request)) {
238 requests.push_back(request);
239 }
240
241 StreamingOutputCallResponse response;
242 bool write_success = true;
243 for (unsigned int i = 0; write_success && i < requests.size(); i++) {
244 response.mutable_payload()->set_type(requests[i].payload().type());
245 if (requests[i].response_parameters_size() == 0) {
246 return Status(grpc::StatusCode::INTERNAL,
247 "Request does not have response parameters.");
248 }
249 response.mutable_payload()->set_body(
250 grpc::string(requests[i].response_parameters(0).size(), '\0'));
251 write_success = stream->Write(response);
252 }
253 if (write_success) {
254 return Status::OK;
255 } else {
256 return Status(grpc::StatusCode::INTERNAL, "Error writing response.");
257 }
258 }
259};
260
261void RunServer() {
262 std::ostringstream server_address;
Yang Gaodab70952015-01-23 16:06:36 -0800263 server_address << "0.0.0.0:" << FLAGS_port;
yangg06170572015-01-12 13:12:45 -0800264 TestServiceImpl service;
265
266 SimpleRequest request;
267 SimpleResponse response;
268
269 ServerBuilder builder;
Craig Tillerf8ac5d82015-02-09 16:24:20 -0800270 builder.RegisterService(&service);
Yang Gaoa4002072015-04-09 23:25:21 -0700271 std::shared_ptr<ServerCredentials> creds =
272 grpc::testing::CreateInteropServerCredentials();
Nicolas Noblecfd60732015-03-18 16:27:43 -0700273 builder.AddListeningPort(server_address.str(), creds);
yangg06170572015-01-12 13:12:45 -0800274 std::unique_ptr<Server> server(builder.BuildAndStart());
275 gpr_log(GPR_INFO, "Server listening on %s", server_address.str().c_str());
Craig Tiller2f3e2ec2015-02-20 13:07:50 -0800276 while (!got_sigint) {
Craig Tillercf133f42015-02-26 14:05:56 -0800277 sleep(5);
yangg06170572015-01-12 13:12:45 -0800278 }
279}
280
Craig Tiller2f3e2ec2015-02-20 13:07:50 -0800281static void sigint_handler(int x) { got_sigint = true; }
282
yangg06170572015-01-12 13:12:45 -0800283int main(int argc, char** argv) {
Yang Gao103837e2015-04-15 15:23:54 -0700284 grpc::testing::InitTest(&argc, &argv, true);
Craig Tiller2f3e2ec2015-02-20 13:07:50 -0800285 signal(SIGINT, sigint_handler);
yangg06170572015-01-12 13:12:45 -0800286
287 GPR_ASSERT(FLAGS_port != 0);
288 RunServer();
289
yangg06170572015-01-12 13:12:45 -0800290 return 0;
Craig Tiller190d3602015-02-18 09:23:38 -0800291}