blob: 578e102d6de6b7a084f2b071c58ab28f44a95df5 [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
34#ifndef __GRPCPP_SERVER_BUILDER_H__
35#define __GRPCPP_SERVER_BUILDER_H__
36
37#include <memory>
38#include <vector>
39
40#include <grpc++/config.h>
41
42namespace grpc {
43
Craig Tiller14a65f92015-02-09 13:13:14 -080044class AsynchronousService;
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080045class CompletionQueue;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080046class RpcService;
47class Server;
yangg9e21f722014-12-08 15:49:52 -080048class ServerCredentials;
Craig Tiller14a65f92015-02-09 13:13:14 -080049class SynchronousService;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080050class ThreadPoolInterface;
51
52class ServerBuilder {
53 public:
54 ServerBuilder();
55
56 // Register a service. This call does not take ownership of the service.
57 // The service must exist for the lifetime of the Server instance returned by
58 // BuildAndStart().
Craig Tiller14a65f92015-02-09 13:13:14 -080059 void RegisterService(SynchronousService* service);
60
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080061 // Register an asynchronous service. New calls will be delevered to cq.
62 // This call does not take ownership of the service or completion queue.
63 // The service and completion queuemust exist for the lifetime of the Server
64 // instance returned by BuildAndStart().
65 void RegisterAsyncService(AsynchronousService* service);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080066
67 // Add a listening port. Can be called multiple times.
Craig Tiller42bc87c2015-02-23 08:50:19 -080068 void AddPort(const grpc::string& addr,
69 std::shared_ptr<ServerCredentials> creds,
70 int* selected_port = nullptr);
yangg9e21f722014-12-08 15:49:52 -080071
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080072 // Set the thread pool used for running appliation rpc handlers.
73 // Does not take ownership.
74 void SetThreadPool(ThreadPoolInterface* thread_pool);
75
76 // Return a running server which is ready for processing rpcs.
77 std::unique_ptr<Server> BuildAndStart();
78
79 private:
Craig Tiller42bc87c2015-02-23 08:50:19 -080080 struct Port {
81 grpc::string addr;
82 std::shared_ptr<ServerCredentials> creds;
83 int* selected_port;
84 };
85
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080086 std::vector<RpcService*> services_;
Craig Tiller14a65f92015-02-09 13:13:14 -080087 std::vector<AsynchronousService*> async_services_;
Craig Tiller42bc87c2015-02-23 08:50:19 -080088 std::vector<Port> ports_;
yangg9e21f722014-12-08 15:49:52 -080089 std::shared_ptr<ServerCredentials> creds_;
Craig Tiller0db1bef2015-02-09 13:47:39 -080090 ThreadPoolInterface* thread_pool_ = nullptr;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080091};
92
93} // namespace grpc
94
Craig Tiller190d3602015-02-18 09:23:38 -080095#endif // __GRPCPP_SERVER_BUILDER_H__