blob: 47efbb783465d0f5e4ffa4bf47371b05dab2bf25 [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
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070040#include <grpc/compression.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041#include <grpc++/config.h>
42
43namespace grpc {
44
Yang Gao49996492015-03-12 16:40:19 -070045class AsyncGenericService;
Craig Tiller14a65f92015-02-09 13:13:14 -080046class AsynchronousService;
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 Tiller14a65f92015-02-09 13:13:14 -080052class SynchronousService;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053class ThreadPoolInterface;
54
55class ServerBuilder {
56 public:
57 ServerBuilder();
58
59 // Register a service. This call does not take ownership of the service.
60 // The service must exist for the lifetime of the Server instance returned by
61 // BuildAndStart().
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070062 // Matches requests with any :authority
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070063 ServerBuilder& RegisterService(SynchronousService* service);
Craig Tiller14a65f92015-02-09 13:13:14 -080064
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070065 // Register an asynchronous service.
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080066 // This call does not take ownership of the service or completion queue.
67 // The service and completion queuemust exist for the lifetime of the Server
68 // instance returned by BuildAndStart().
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070069 // Matches requests with any :authority
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070070 ServerBuilder& RegisterAsyncService(AsynchronousService* service);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080071
Yang Gao005eb882015-03-11 22:17:13 -070072 // Register a generic service.
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070073 // Matches requests with any :authority
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070074 ServerBuilder& RegisterAsyncGenericService(AsyncGenericService* service);
Craig Tillerdb57c4f2015-02-24 10:34:47 -080075
Craig Tiller822d2c72015-07-07 16:08:00 -070076 // Register a service. This call does not take ownership of the service.
77 // The service must exist for the lifetime of the Server instance returned by
78 // BuildAndStart().
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070079 // Only matches requests with :authority \a host
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070080 ServerBuilder& RegisterService(const grpc::string& host,
Craig Tiller822d2c72015-07-07 16:08:00 -070081 SynchronousService* service);
82
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070083 // Register an asynchronous service.
Craig Tiller822d2c72015-07-07 16:08:00 -070084 // This call does not take ownership of the service or completion queue.
85 // The service and completion queuemust exist for the lifetime of the Server
86 // instance returned by BuildAndStart().
Craig Tiller2ee8f0b2015-07-08 07:53:20 -070087 // Only matches requests with :authority \a host
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070088 ServerBuilder& RegisterAsyncService(const grpc::string& host,
Craig Tiller822d2c72015-07-07 16:08:00 -070089 AsynchronousService* service);
90
Yang Gao3921c562015-04-30 16:07:06 -070091 // Set max message size in bytes.
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070092 ServerBuilder& SetMaxMessageSize(int max_message_size);
Yang Gao3921c562015-04-30 16:07:06 -070093
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080094 // Add a listening port. Can be called multiple times.
David Garcia Quintasbeac88c2015-08-10 13:39:52 -070095 ServerBuilder& AddListeningPort(const grpc::string& addr,
Nicolas Noblecfd60732015-03-18 16:27:43 -070096 std::shared_ptr<ServerCredentials> creds,
97 int* selected_port = nullptr);
yangg9e21f722014-12-08 15:49:52 -080098
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080099 // Set the thread pool used for running appliation rpc handlers.
100 // Does not take ownership.
David Garcia Quintasbeac88c2015-08-10 13:39:52 -0700101 ServerBuilder& SetThreadPool(ThreadPoolInterface* thread_pool);
102
103 // Set the compression options to be used by the server.
104 ServerBuilder& SetCompressionOptions(const grpc_compression_options& options);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800105
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700106 // Add a completion queue for handling asynchronous services
107 // Caller is required to keep this completion queue live until calling
108 // BuildAndStart()
109 std::unique_ptr<ServerCompletionQueue> AddCompletionQueue();
110
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800111 // Return a running server which is ready for processing rpcs.
112 std::unique_ptr<Server> BuildAndStart();
113
114 private:
Craig Tiller42bc87c2015-02-23 08:50:19 -0800115 struct Port {
116 grpc::string addr;
117 std::shared_ptr<ServerCredentials> creds;
118 int* selected_port;
119 };
120
Craig Tiller822d2c72015-07-07 16:08:00 -0700121 typedef std::unique_ptr<grpc::string> HostString;
122 template <class T> struct NamedService {
123 explicit NamedService(T* s) : service(s) {}
Craig Tillerb09caa92015-07-08 07:53:47 -0700124 NamedService(const grpc::string& h, T *s)
Craig Tiller822d2c72015-07-07 16:08:00 -0700125 : host(new grpc::string(h)), service(s) {}
126 HostString host;
127 T* service;
128 };
129
Yang Gao3921c562015-04-30 16:07:06 -0700130 int max_message_size_;
David Garcia Quintasbeac88c2015-08-10 13:39:52 -0700131 grpc_compression_options compression_options_;
Craig Tillerd9b6fcf2015-07-07 16:28:20 -0700132 std::vector<std::unique_ptr<NamedService<RpcService>>> services_;
133 std::vector<std::unique_ptr<NamedService<AsynchronousService>>> async_services_;
Craig Tiller42bc87c2015-02-23 08:50:19 -0800134 std::vector<Port> ports_;
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700135 std::vector<ServerCompletionQueue*> cqs_;
yangg9e21f722014-12-08 15:49:52 -0800136 std::shared_ptr<ServerCredentials> creds_;
Yang Gao49996492015-03-12 16:40:19 -0700137 AsyncGenericService* generic_service_;
Craig Tillercf133f42015-02-26 14:05:56 -0800138 ThreadPoolInterface* thread_pool_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800139};
140
141} // namespace grpc
142
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100143#endif // GRPCXX_SERVER_BUILDER_H