blob: e1f485f0912908878758653af07c563e6e874a87 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Sree Kuchibhotla01907122016-04-21 15:09:13 -07003 * Copyright 2015-2016, 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
Yuchen Zenga42ec212016-04-29 13:03:06 -070037#include <map>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038#include <memory>
39#include <vector>
40
yang-ga23f17b2015-11-25 10:21:05 -080041#include <grpc++/impl/server_builder_option.h>
Yuchen Zenga42ec212016-04-29 13:03:06 -070042#include <grpc++/impl/server_builder_plugin.h>
yang-g9e2f90c2015-08-21 15:35:03 -070043#include <grpc++/support/config.h>
yang-ga23f17b2015-11-25 10:21:05 -080044#include <grpc/compression.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080045
46namespace grpc {
47
Yang Gao49996492015-03-12 16:40:19 -070048class AsyncGenericService;
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080049class CompletionQueue;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080050class RpcService;
51class Server;
Craig Tillerf9e6adf2015-05-06 11:45:59 -070052class ServerCompletionQueue;
yangg9e21f722014-12-08 15:49:52 -080053class ServerCredentials;
Craig Tiller15f383c2016-01-07 12:45:32 -080054class Service;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080055
Yuchen Zenga42ec212016-04-29 13:03:06 -070056namespace testing {
57class ServerBuilderPluginTest;
58} // namespace testing
59
Craig Tillerd6599a32015-09-03 09:37:02 -070060/// A builder class for the creation and startup of \a grpc::Server instances.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080061class ServerBuilder {
62 public:
63 ServerBuilder();
64
Craig Tillerd6599a32015-09-03 09:37:02 -070065 /// Register a service. This call does not take ownership of the service.
66 /// The service must exist for the lifetime of the \a Server instance returned
67 /// by \a BuildAndStart().
68 /// Matches requests with any :authority
Craig Tiller15f383c2016-01-07 12:45:32 -080069 void RegisterService(Service* service);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080070
Craig Tillerd6599a32015-09-03 09:37:02 -070071 /// Register a generic service.
72 /// Matches requests with any :authority
Yang Gao49996492015-03-12 16:40:19 -070073 void RegisterAsyncGenericService(AsyncGenericService* service);
Craig Tillerdb57c4f2015-02-24 10:34:47 -080074
Craig Tillerd6599a32015-09-03 09:37:02 -070075 /// Register a service. This call does not take ownership of the service.
76 /// The service must exist for the lifetime of the \a Server instance returned
77 /// by BuildAndStart().
78 /// Only matches requests with :authority \a host
Craig Tiller15f383c2016-01-07 12:45:32 -080079 void RegisterService(const grpc::string& host, Service* service);
Craig Tiller822d2c72015-07-07 16:08:00 -070080
Craig Tillerd6599a32015-09-03 09:37:02 -070081 /// Set max message size in bytes.
Yang Gao3921c562015-04-30 16:07:06 -070082 void SetMaxMessageSize(int max_message_size) {
83 max_message_size_ = max_message_size;
84 }
85
David Garcia Quintas49dd2502015-09-08 16:01:09 -070086 /// Set the compression options to be used by the server.
87 void SetCompressionOptions(const grpc_compression_options& options) {
88 compression_options_ = options;
89 }
90
yang-ga23f17b2015-11-25 10:21:05 -080091 void SetOption(std::unique_ptr<ServerBuilderOption> option);
92
Craig Tillerd6599a32015-09-03 09:37:02 -070093 /// Tries to bind \a server to the given \a addr.
94 ///
95 /// It can be invoked multiple times.
96 ///
97 /// \param addr The address to try to bind to the server (eg, localhost:1234,
98 /// 192.168.1.1:31416, [::1]:27182, etc.).
99 /// \params creds The credentials associated with the server.
100 /// \param selected_port[out] Upon success, updated to contain the port
101 /// number. \a nullptr otherwise.
102 ///
103 // TODO(dgq): the "port" part seems to be a misnomer.
Nicolas Noblecfd60732015-03-18 16:27:43 -0700104 void AddListeningPort(const grpc::string& addr,
105 std::shared_ptr<ServerCredentials> creds,
106 int* selected_port = nullptr);
yangg9e21f722014-12-08 15:49:52 -0800107
Craig Tillerd6599a32015-09-03 09:37:02 -0700108 /// Add a completion queue for handling asynchronous services
109 /// Caller is required to keep this completion queue live until
110 /// the server is destroyed.
Sree Kuchibhotla1f5e2622016-04-21 12:28:09 -0700111 ///
112 /// \param is_frequently_polled This is an optional parameter to inform GRPC
113 /// library about whether this completion queue would be frequently polled
114 /// (i.e by calling Next() or AsyncNext()). The default value is 'true' and is
115 /// the recommended setting. Setting this to 'false' (i.e not polling the
116 /// completion queue frequently) will have a significantly negative
117 /// performance impact and hence should not be used in production use cases.
118 std::unique_ptr<ServerCompletionQueue> AddCompletionQueue(
119 bool is_frequently_polled = true);
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700120
Craig Tillerd6599a32015-09-03 09:37:02 -0700121 /// Return a running server which is ready for processing calls.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800122 std::unique_ptr<Server> BuildAndStart();
123
Yuchen Zeng7d099a52016-05-06 13:21:36 -0700124 /// For internal use only: Register a ServerBuilderPlugin factory function.
Yuchen Zeng3b8f3352016-05-03 12:18:13 -0700125 static void InternalAddPluginFactory(
126 std::unique_ptr<ServerBuilderPlugin> (*CreatePlugin)());
127
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800128 private:
Yuchen Zenga42ec212016-04-29 13:03:06 -0700129 friend class ::grpc::testing::ServerBuilderPluginTest;
130
Craig Tiller42bc87c2015-02-23 08:50:19 -0800131 struct Port {
132 grpc::string addr;
133 std::shared_ptr<ServerCredentials> creds;
134 int* selected_port;
135 };
136
Craig Tiller822d2c72015-07-07 16:08:00 -0700137 typedef std::unique_ptr<grpc::string> HostString;
Craig Tillerd6c98df2015-08-18 09:33:44 -0700138 struct NamedService {
Craig Tiller15f383c2016-01-07 12:45:32 -0800139 explicit NamedService(Service* s) : service(s) {}
140 NamedService(const grpc::string& h, Service* s)
Craig Tiller822d2c72015-07-07 16:08:00 -0700141 : host(new grpc::string(h)), service(s) {}
142 HostString host;
Craig Tiller15f383c2016-01-07 12:45:32 -0800143 Service* service;
Craig Tiller822d2c72015-07-07 16:08:00 -0700144 };
145
Yang Gao3921c562015-04-30 16:07:06 -0700146 int max_message_size_;
David Garcia Quintasbeac88c2015-08-10 13:39:52 -0700147 grpc_compression_options compression_options_;
yang-ga23f17b2015-11-25 10:21:05 -0800148 std::vector<std::unique_ptr<ServerBuilderOption>> options_;
Craig Tiller15f383c2016-01-07 12:45:32 -0800149 std::vector<std::unique_ptr<NamedService>> services_;
Craig Tiller42bc87c2015-02-23 08:50:19 -0800150 std::vector<Port> ports_;
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700151 std::vector<ServerCompletionQueue*> cqs_;
yangg9e21f722014-12-08 15:49:52 -0800152 std::shared_ptr<ServerCredentials> creds_;
Vijay Pai15855f32016-06-10 12:25:32 -0700153 std::vector<std::unique_ptr<ServerBuilderPlugin>> plugins_;
Yang Gao49996492015-03-12 16:40:19 -0700154 AsyncGenericService* generic_service_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800155};
156
157} // namespace grpc
158
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100159#endif // GRPCXX_SERVER_BUILDER_H