blob: eb5061157357f9dfffaac0e77fab68ee41226f29 [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_H
35#define GRPCXX_SERVER_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
Craig Tillercbd04852015-02-10 17:39:54 -080037#include <list>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038#include <memory>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039
40#include <grpc++/completion_queue.h>
41#include <grpc++/config.h>
Craig Tillerbb5227f2015-02-11 13:34:48 -080042#include <grpc++/impl/call.h>
Craig Tiller1c9a2a92015-02-12 14:10:25 -080043#include <grpc++/impl/service_type.h>
Nicolas "Pixel" Nobleff2828b2015-04-03 03:16:46 +020044#include <grpc++/impl/sync.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080045#include <grpc++/status.h>
46
47struct grpc_server;
48
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080049namespace grpc {
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080050class AsynchronousService;
Yang Gao005eb882015-03-11 22:17:13 -070051class GenericServerContext;
Yang Gao49996492015-03-12 16:40:19 -070052class AsyncGenericService;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053class RpcService;
54class RpcServiceMethod;
yangg9e21f722014-12-08 15:49:52 -080055class ServerCredentials;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080056class ThreadPoolInterface;
57
58// Currently it only supports handling rpcs in a single thread.
Craig Tillercf133f42015-02-26 14:05:56 -080059class Server GRPC_FINAL : private CallHook,
60 private AsynchronousService::DispatchImpl {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080061 public:
62 ~Server();
63
64 // Shutdown the server, block until all rpc processing finishes.
65 void Shutdown();
66
Craig Tiller6e57b9e2015-02-24 15:46:22 -080067 // Block waiting for all work to complete (the server must either
68 // be shutting down or some other thread must call Shutdown for this
69 // function to ever return)
70 void Wait();
71
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080072 private:
Yang Gao49996492015-03-12 16:40:19 -070073 friend class AsyncGenericService;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080074 friend class ServerBuilder;
75
Craig Tiller1c9a2a92015-02-12 14:10:25 -080076 class SyncRequest;
77 class AsyncRequest;
Craig Tillercbd04852015-02-10 17:39:54 -080078
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080079 // ServerBuilder use only
Craig Tiller42bc87c2015-02-23 08:50:19 -080080 Server(ThreadPoolInterface* thread_pool, bool thread_pool_owned);
81 Server() = delete;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080082 // Register a service. This call does not take ownership of the service.
83 // The service must exist for the lifetime of the Server instance.
Craig Tiller0db1bef2015-02-09 13:47:39 -080084 bool RegisterService(RpcService* service);
Craig Tiller8c8d0aa2015-02-12 11:38:36 -080085 bool RegisterAsyncService(AsynchronousService* service);
Yang Gao49996492015-03-12 16:40:19 -070086 void RegisterAsyncGenericService(AsyncGenericService* service);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080087 // Add a listening port. Can be called multiple times.
Nicolas Noblecfd60732015-03-18 16:27:43 -070088 int AddListeningPort(const grpc::string& addr, ServerCredentials* creds);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080089 // Start the server.
Craig Tiller0db1bef2015-02-09 13:47:39 -080090 bool Start();
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080091
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080092 void HandleQueueClosed();
93 void RunRpc();
94 void ScheduleCallback();
95
Craig Tillercf133f42015-02-26 14:05:56 -080096 void PerformOpsOnCall(CallOpBuffer* ops, Call* call) GRPC_OVERRIDE;
Craig Tillerbb5227f2015-02-11 13:34:48 -080097
Craig Tiller1c9a2a92015-02-12 14:10:25 -080098 // DispatchImpl
99 void RequestAsyncCall(void* registered_method, ServerContext* context,
Yang Gao7694c352015-03-03 09:48:06 -0800100 grpc::protobuf::Message* request,
Craig Tiller573523f2015-02-17 07:38:26 -0800101 ServerAsyncStreamingInterface* stream,
Chilledheart4be94b92015-03-10 00:43:11 +0800102 CompletionQueue* cq, void* tag) GRPC_OVERRIDE;
Craig Tiller1c9a2a92015-02-12 14:10:25 -0800103
Yang Gao49996492015-03-12 16:40:19 -0700104 void RequestAsyncGenericCall(GenericServerContext* context,
105 ServerAsyncStreamingInterface* stream,
106 CompletionQueue* cq, void* tag);
Yang Gao1c402332015-03-05 16:39:25 -0800107
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800108 // Completion queue.
Craig Tiller3b29b562015-02-11 12:58:46 -0800109 CompletionQueue cq_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800110
111 // Sever status
Nicolas "Pixel" Nobleff2828b2015-04-03 03:16:46 +0200112 grpc::mutex mu_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800113 bool started_;
114 bool shutdown_;
115 // The number of threads which are running callbacks.
116 int num_running_cb_;
Nicolas "Pixel" Nobleff2828b2015-04-03 03:16:46 +0200117 grpc::condition_variable callback_cv_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800118
Craig Tiller1c9a2a92015-02-12 14:10:25 -0800119 std::list<SyncRequest> sync_methods_;
Craig Tillercbd04852015-02-10 17:39:54 -0800120
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800121 // Pointer to the c grpc server.
Craig Tiller42bc87c2015-02-23 08:50:19 -0800122 grpc_server* const server_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800123
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800124 ThreadPoolInterface* thread_pool_;
125 // Whether the thread pool is created and owned by the server.
126 bool thread_pool_owned_;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800127};
128
129} // namespace grpc
130
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +0100131#endif // GRPCXX_SERVER_H