blob: 496e7862c5386afe5a142a1521df86e257e764d6 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * 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-g9e2f90c2015-08-21 15:35:03 -070040#include <grpc++/support/config.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041
42namespace grpc {
43
Yang Gao49996492015-03-12 16:40:19 -070044class AsyncGenericService;
Craig Tiller14a65f92015-02-09 13:13:14 -080045class AsynchronousService;
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080046class CompletionQueue;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080047class RpcService;
48class Server;
Craig Tillerf9e6adf2015-05-06 11:45:59 -070049class ServerCompletionQueue;
yangg9e21f722014-12-08 15:49:52 -080050class ServerCredentials;
Craig Tiller14a65f92015-02-09 13:13:14 -080051class SynchronousService;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080052class ThreadPoolInterface;
53
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 Tiller14a65f92015-02-09 13:13:14 -080063 void RegisterService(SynchronousService* service);
64
Craig Tillerd6599a32015-09-03 09:37:02 -070065 /// Register an asynchronous service.
66 /// This call does not take ownership of the service or completion queue.
67 /// The service and completion queuemust exist for the lifetime of the \a
68 /// Server instance returned by \a BuildAndStart().
69 /// Matches requests with any :authority
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080070 void RegisterAsyncService(AsynchronousService* service);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080071
Craig Tillerd6599a32015-09-03 09:37:02 -070072 /// Register a generic service.
73 /// Matches requests with any :authority
Yang Gao49996492015-03-12 16:40:19 -070074 void RegisterAsyncGenericService(AsyncGenericService* service);
Craig Tillerdb57c4f2015-02-24 10:34:47 -080075
Craig Tillerd6599a32015-09-03 09:37:02 -070076 /// Register a service. This call does not take ownership of the service.
77 /// The service must exist for the lifetime of the \a Server instance returned
78 /// by BuildAndStart().
79 /// Only matches requests with :authority \a host
Craig Tillerd6c98df2015-08-18 09:33:44 -070080 void RegisterService(const grpc::string& host, SynchronousService* service);
Craig Tiller822d2c72015-07-07 16:08:00 -070081
Craig Tillerd6599a32015-09-03 09:37:02 -070082 /// Register an asynchronous service.
83 /// This call does not take ownership of the service or completion queue.
84 /// The service and completion queuemust exist for the lifetime of the \a
85 /// Server instance returned by \a BuildAndStart().
86 /// Only matches requests with :authority equal to \a host
Craig Tillerd6c98df2015-08-18 09:33:44 -070087 void RegisterAsyncService(const grpc::string& host,
Craig Tiller822d2c72015-07-07 16:08:00 -070088 AsynchronousService* service);
89
Craig Tillerd6599a32015-09-03 09:37:02 -070090 /// Set max message size in bytes.
Yang Gao3921c562015-04-30 16:07:06 -070091 void SetMaxMessageSize(int max_message_size) {
92 max_message_size_ = max_message_size;
93 }
94
Craig Tillerd6599a32015-09-03 09:37:02 -070095 /// Tries to bind \a server to the given \a addr.
96 ///
97 /// It can be invoked multiple times.
98 ///
99 /// \param addr The address to try to bind to the server (eg, localhost:1234,
100 /// 192.168.1.1:31416, [::1]:27182, etc.).
101 /// \params creds The credentials associated with the server.
102 /// \param selected_port[out] Upon success, updated to contain the port
103 /// number. \a nullptr otherwise.
104 ///
105 // TODO(dgq): the "port" part seems to be a misnomer.
Nicolas Noblecfd60732015-03-18 16:27:43 -0700106 void AddListeningPort(const grpc::string& addr,
107 std::shared_ptr<ServerCredentials> creds,
108 int* selected_port = nullptr);
yangg9e21f722014-12-08 15:49:52 -0800109
Craig Tillerd6599a32015-09-03 09:37:02 -0700110 /// Add a completion queue for handling asynchronous services
111 /// Caller is required to keep this completion queue live until
112 /// the server is destroyed.
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700113 std::unique_ptr<ServerCompletionQueue> AddCompletionQueue();
114
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 template <class T>
127 struct NamedService {
Craig Tiller822d2c72015-07-07 16:08:00 -0700128 explicit NamedService(T* s) : service(s) {}
Craig Tillerd6c98df2015-08-18 09:33:44 -0700129 NamedService(const grpc::string& h, T* s)
Craig Tiller822d2c72015-07-07 16:08:00 -0700130 : host(new grpc::string(h)), service(s) {}
131 HostString host;
132 T* service;
133 };
134
Yang Gao3921c562015-04-30 16:07:06 -0700135 int max_message_size_;
Craig Tillerd9b6fcf2015-07-07 16:28:20 -0700136 std::vector<std::unique_ptr<NamedService<RpcService>>> services_;
Craig Tillerd6c98df2015-08-18 09:33:44 -0700137 std::vector<std::unique_ptr<NamedService<AsynchronousService>>>
138 async_services_;
Craig Tiller42bc87c2015-02-23 08:50:19 -0800139 std::vector<Port> ports_;
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700140 std::vector<ServerCompletionQueue*> cqs_;
yangg9e21f722014-12-08 15:49:52 -0800141 std::shared_ptr<ServerCredentials> creds_;
Yang Gao49996492015-03-12 16:40:19 -0700142 AsyncGenericService* generic_service_;
Craig Tillercf133f42015-02-26 14:05:56 -0800143 ThreadPoolInterface* thread_pool_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800144};
145
146} // namespace grpc
147
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100148#endif // GRPCXX_SERVER_BUILDER_H