blob: 85af9aa57fba9173ebda7aa8b7a8399b0b72f4bb [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -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
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +010034#ifndef GRPCXX_SERVER_BUILDER_H
35#define GRPCXX_SERVER_BUILDER_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
37#include <memory>
38#include <vector>
39
yang-ga23f17b2015-11-25 10:21:05 -080040#include <grpc++/impl/server_builder_option.h>
yang-g9e2f90c2015-08-21 15:35:03 -070041#include <grpc++/support/config.h>
yang-ga23f17b2015-11-25 10:21:05 -080042#include <grpc/compression.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080043
44namespace grpc {
45
Yang Gao49996492015-03-12 16:40:19 -070046class AsyncGenericService;
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080047class CompletionQueue;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080048class RpcService;
49class Server;
Craig Tillerf9e6adf2015-05-06 11:45:59 -070050class ServerCompletionQueue;
yangg9e21f722014-12-08 15:49:52 -080051class ServerCredentials;
Craig Tiller15f383c2016-01-07 12:45:32 -080052class Service;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053
Craig Tillerd6599a32015-09-03 09:37:02 -070054/// A builder class for the creation and startup of \a grpc::Server instances.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080055class ServerBuilder {
56 public:
57 ServerBuilder();
58
Craig Tillerd6599a32015-09-03 09:37:02 -070059 /// Register a service. This call does not take ownership of the service.
60 /// The service must exist for the lifetime of the \a Server instance returned
61 /// by \a BuildAndStart().
62 /// Matches requests with any :authority
Craig Tiller15f383c2016-01-07 12:45:32 -080063 void RegisterService(Service* service);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080064
Craig Tillerd6599a32015-09-03 09:37:02 -070065 /// Register a generic service.
66 /// Matches requests with any :authority
Yang Gao49996492015-03-12 16:40:19 -070067 void RegisterAsyncGenericService(AsyncGenericService* service);
Craig Tillerdb57c4f2015-02-24 10:34:47 -080068
Craig Tillerd6599a32015-09-03 09:37:02 -070069 /// Register a service. This call does not take ownership of the service.
70 /// The service must exist for the lifetime of the \a Server instance returned
71 /// by BuildAndStart().
72 /// Only matches requests with :authority \a host
Craig Tiller15f383c2016-01-07 12:45:32 -080073 void RegisterService(const grpc::string& host, Service* service);
Craig Tiller822d2c72015-07-07 16:08:00 -070074
Craig Tillerd6599a32015-09-03 09:37:02 -070075 /// Set max message size in bytes.
Yang Gao3921c562015-04-30 16:07:06 -070076 void SetMaxMessageSize(int max_message_size) {
77 max_message_size_ = max_message_size;
78 }
79
David Garcia Quintas49dd2502015-09-08 16:01:09 -070080 /// Set the compression options to be used by the server.
81 void SetCompressionOptions(const grpc_compression_options& options) {
82 compression_options_ = options;
83 }
84
yang-ga23f17b2015-11-25 10:21:05 -080085 void SetOption(std::unique_ptr<ServerBuilderOption> option);
86
Craig Tillerd6599a32015-09-03 09:37:02 -070087 /// Tries to bind \a server to the given \a addr.
88 ///
89 /// It can be invoked multiple times.
90 ///
91 /// \param addr The address to try to bind to the server (eg, localhost:1234,
92 /// 192.168.1.1:31416, [::1]:27182, etc.).
93 /// \params creds The credentials associated with the server.
94 /// \param selected_port[out] Upon success, updated to contain the port
95 /// number. \a nullptr otherwise.
96 ///
97 // TODO(dgq): the "port" part seems to be a misnomer.
Nicolas Noblecfd60732015-03-18 16:27:43 -070098 void AddListeningPort(const grpc::string& addr,
99 std::shared_ptr<ServerCredentials> creds,
100 int* selected_port = nullptr);
yangg9e21f722014-12-08 15:49:52 -0800101
Craig Tillerd6599a32015-09-03 09:37:02 -0700102 /// Add a completion queue for handling asynchronous services
103 /// Caller is required to keep this completion queue live until
104 /// the server is destroyed.
Sree Kuchibhotla1f5e2622016-04-21 12:28:09 -0700105 ///
106 /// \param is_frequently_polled This is an optional parameter to inform GRPC
107 /// library about whether this completion queue would be frequently polled
108 /// (i.e by calling Next() or AsyncNext()). The default value is 'true' and is
109 /// the recommended setting. Setting this to 'false' (i.e not polling the
110 /// completion queue frequently) will have a significantly negative
111 /// performance impact and hence should not be used in production use cases.
112 std::unique_ptr<ServerCompletionQueue> AddCompletionQueue(
113 bool is_frequently_polled = true);
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700114
Craig Tillerd6599a32015-09-03 09:37:02 -0700115 /// Return a running server which is ready for processing calls.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800116 std::unique_ptr<Server> BuildAndStart();
117
118 private:
Craig Tiller42bc87c2015-02-23 08:50:19 -0800119 struct Port {
120 grpc::string addr;
121 std::shared_ptr<ServerCredentials> creds;
122 int* selected_port;
123 };
124
Craig Tiller822d2c72015-07-07 16:08:00 -0700125 typedef std::unique_ptr<grpc::string> HostString;
Craig Tillerd6c98df2015-08-18 09:33:44 -0700126 struct NamedService {
Craig Tiller15f383c2016-01-07 12:45:32 -0800127 explicit NamedService(Service* s) : service(s) {}
128 NamedService(const grpc::string& h, Service* s)
Craig Tiller822d2c72015-07-07 16:08:00 -0700129 : host(new grpc::string(h)), service(s) {}
130 HostString host;
Craig Tiller15f383c2016-01-07 12:45:32 -0800131 Service* service;
Craig Tiller822d2c72015-07-07 16:08:00 -0700132 };
133
Yang Gao3921c562015-04-30 16:07:06 -0700134 int max_message_size_;
David Garcia Quintasbeac88c2015-08-10 13:39:52 -0700135 grpc_compression_options compression_options_;
yang-ga23f17b2015-11-25 10:21:05 -0800136 std::vector<std::unique_ptr<ServerBuilderOption>> options_;
Craig Tiller15f383c2016-01-07 12:45:32 -0800137 std::vector<std::unique_ptr<NamedService>> services_;
Craig Tiller42bc87c2015-02-23 08:50:19 -0800138 std::vector<Port> ports_;
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700139 std::vector<ServerCompletionQueue*> cqs_;
yangg9e21f722014-12-08 15:49:52 -0800140 std::shared_ptr<ServerCredentials> creds_;
Yang Gao49996492015-03-12 16:40:19 -0700141 AsyncGenericService* generic_service_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800142};
143
144} // namespace grpc
145
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100146#endif // GRPCXX_SERVER_BUILDER_H