GRPC C++  1.22.0-dev
completion_queue_impl.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2015-2016 gRPC authors.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
32 #ifndef GRPCPP_IMPL_CODEGEN_COMPLETION_QUEUE_IMPL_H
33 #define GRPCPP_IMPL_CODEGEN_COMPLETION_QUEUE_IMPL_H
34 
35 #include <grpc/impl/codegen/atm.h>
41 
43 
44 namespace grpc_impl {
45 
46 class Channel;
47 class Server;
48 class ServerBuilder;
49 } // namespace grpc_impl
50 namespace grpc {
51 
52 template <class R>
53 class ClientReader;
54 template <class W>
55 class ClientWriter;
56 template <class W, class R>
57 class ClientReaderWriter;
58 template <class R>
60 template <class W>
62 namespace internal {
63 template <class W, class R>
65 } // namespace internal
66 
67 class ChannelInterface;
68 class ClientContext;
69 class ServerContext;
70 class ServerInterface;
71 
72 namespace internal {
73 class CompletionQueueTag;
74 class RpcMethod;
75 template <class ServiceType, class RequestType, class ResponseType>
76 class RpcMethodHandler;
77 template <class ServiceType, class RequestType, class ResponseType>
79 template <class ServiceType, class RequestType, class ResponseType>
81 template <class ServiceType, class RequestType, class ResponseType>
83 template <class Streamer, bool WriteNeeded>
85 template <StatusCode code>
86 class ErrorMethodHandler;
87 template <class InputMessage, class OutputMessage>
89 template <class Op1, class Op2, class Op3, class Op4, class Op5, class Op6>
90 class CallOpSet;
91 } // namespace internal
92 
94 
95 } // namespace grpc
96 
97 namespace grpc_impl {
98 
104  public:
110  nullptr}) {}
111 
115  explicit CompletionQueue(grpc_completion_queue* take);
116 
120  }
121 
123  enum NextStatus {
125  GOT_EVENT,
126  TIMEOUT
128  };
129 
178  bool Next(void** tag, bool* ok) {
179  return (AsyncNextInternal(tag, ok,
181  GPR_CLOCK_REALTIME)) != SHUTDOWN);
182  }
183 
195  template <typename T>
196  NextStatus AsyncNext(void** tag, bool* ok, const T& deadline) {
197  ::grpc::TimePoint<T> deadline_tp(deadline);
198  return AsyncNextInternal(tag, ok, deadline_tp.raw_time());
199  }
200 
215  template <typename T, typename F>
216  NextStatus DoThenAsyncNext(F&& f, void** tag, bool* ok, const T& deadline) {
217  CompletionQueueTLSCache cache = CompletionQueueTLSCache(this);
218  f();
219  if (cache.Flush(tag, ok)) {
220  return GOT_EVENT;
221  } else {
222  return AsyncNext(tag, ok, deadline);
223  }
224  }
225 
236  void Shutdown();
237 
243  grpc_completion_queue* cq() { return cq_; }
244 
245  protected:
250  &attributes),
251  &attributes, NULL);
252  InitialAvalanching(); // reserve this for the future shutdown
253  }
254 
255  private:
256  // Friend synchronous wrappers so that they can access Pluck(), which is
257  // a semi-private API geared towards the synchronous implementation.
258  template <class R>
259  friend class ::grpc::ClientReader;
260  template <class W>
261  friend class ::grpc::ClientWriter;
262  template <class W, class R>
263  friend class ::grpc::ClientReaderWriter;
264  template <class R>
265  friend class ::grpc::ServerReader;
266  template <class W>
267  friend class ::grpc::ServerWriter;
268  template <class W, class R>
269  friend class ::grpc::internal::ServerReaderWriterBody;
270  template <class ServiceType, class RequestType, class ResponseType>
271  friend class ::grpc::internal::RpcMethodHandler;
272  template <class ServiceType, class RequestType, class ResponseType>
273  friend class ::grpc::internal::ClientStreamingHandler;
274  template <class ServiceType, class RequestType, class ResponseType>
275  friend class ::grpc::internal::ServerStreamingHandler;
276  template <class Streamer, bool WriteNeeded>
277  friend class ::grpc::internal::TemplatedBidiStreamingHandler;
278  template <::grpc::StatusCode code>
279  friend class ::grpc::internal::ErrorMethodHandler;
281  friend class ::grpc::ServerContext;
282  friend class ::grpc::ServerInterface;
283  template <class InputMessage, class OutputMessage>
284  friend class ::grpc::internal::BlockingUnaryCallImpl;
285 
286  // Friends that need access to constructor for callback CQ
288 
289  // For access to Register/CompleteAvalanching
290  template <class Op1, class Op2, class Op3, class Op4, class Op5, class Op6>
291  friend class ::grpc::internal::CallOpSet;
292 
297  class CompletionQueueTLSCache {
298  public:
299  CompletionQueueTLSCache(CompletionQueue* cq);
300  ~CompletionQueueTLSCache();
301  bool Flush(void** tag, bool* ok);
302 
303  private:
304  CompletionQueue* cq_;
305  bool flushed_;
306  };
307 
308  NextStatus AsyncNextInternal(void** tag, bool* ok, gpr_timespec deadline);
309 
312  bool Pluck(::grpc::internal::CompletionQueueTag* tag) {
313  auto deadline =
315  while (true) {
317  cq_, tag, deadline, nullptr);
318  bool ok = ev.success != 0;
319  void* ignored = tag;
320  if (tag->FinalizeResult(&ignored, &ok)) {
321  GPR_CODEGEN_ASSERT(ignored == tag);
322  return ok;
323  }
324  }
325  }
326 
335  void TryPluck(::grpc::internal::CompletionQueueTag* tag) {
336  auto deadline =
339  cq_, tag, deadline, nullptr);
340  if (ev.type == GRPC_QUEUE_TIMEOUT) return;
341  bool ok = ev.success != 0;
342  void* ignored = tag;
343  // the tag must be swallowed if using TryPluck
344  GPR_CODEGEN_ASSERT(!tag->FinalizeResult(&ignored, &ok));
345  }
346 
352  void TryPluck(::grpc::internal::CompletionQueueTag* tag,
353  gpr_timespec deadline) {
355  cq_, tag, deadline, nullptr);
356  if (ev.type == GRPC_QUEUE_TIMEOUT || ev.type == GRPC_QUEUE_SHUTDOWN) {
357  return;
358  }
359 
360  bool ok = ev.success != 0;
361  void* ignored = tag;
362  GPR_CODEGEN_ASSERT(!tag->FinalizeResult(&ignored, &ok));
363  }
364 
371  void InitialAvalanching() {
372  gpr_atm_rel_store(&avalanches_in_flight_, static_cast<gpr_atm>(1));
373  }
374  void RegisterAvalanching() {
375  gpr_atm_no_barrier_fetch_add(&avalanches_in_flight_,
376  static_cast<gpr_atm>(1));
377  }
378  void CompleteAvalanching() {
379  if (gpr_atm_no_barrier_fetch_add(&avalanches_in_flight_,
380  static_cast<gpr_atm>(-1)) == 1) {
382  }
383  }
384 
385  grpc_completion_queue* cq_; // owned
386 
387  gpr_atm avalanches_in_flight_;
388 };
389 
393  public:
394  bool IsFrequentlyPolled() { return polling_type_ != GRPC_CQ_NON_LISTENING; }
395 
396  protected:
399 
400  private:
408  grpc_cq_polling_type polling_type,
411  GRPC_CQ_CURRENT_VERSION, completion_type, polling_type,
412  shutdown_cb}),
413  polling_type_(polling_type) {}
414 
415  grpc_cq_polling_type polling_type_;
418 };
419 
420 } // namespace grpc_impl
421 
422 #endif // GRPCPP_IMPL_CODEGEN_COMPLETION_QUEUE_IMPL_H
A wrapper class of an application provided server streaming handler.
Definition: byte_buffer.h:47
~CompletionQueue()
Destructor. Destroys the owned wrapped completion queue / instance.
Definition: completion_queue_impl.h:118
A wrapper class of an application provided bidi-streaming handler.
Definition: completion_queue_impl.h:84
NextStatus DoThenAsyncNext(F &&f, void **tag, bool *ok, const T &deadline)
EXPERIMENTAL First executes F, then reads from the queue, blocking up to deadline (or the queue&#39;s shu...
Definition: completion_queue_impl.h:216
#define GPR_CODEGEN_ASSERT(x)
Codegen specific version of GPR_ASSERT.
Definition: core_codegen_interface.h:145
virtual void grpc_completion_queue_shutdown(grpc_completion_queue *cq)=0
virtual gpr_timespec gpr_inf_future(gpr_clock_type type)=0
bool Next(void **tag, bool *ok)
Read from the queue, blocking until an event is available or the queue is shutting down...
Definition: completion_queue_impl.h:178
grpc_completion_queue * cq()
Returns a raw pointer to the underlying grpc_completion_queue instance.
Definition: completion_queue_impl.h:243
Definition: completion_queue_impl.h:64
bool IsFrequentlyPolled()
Definition: completion_queue_impl.h:394
An interface allowing implementors to process and filter event tags.
Definition: completion_queue_tag.h:26
::grpc_impl::Server Server
Definition: server.h:26
virtual bool FinalizeResult(void **tag, bool *status)=0
FinalizeResult must be called before informing user code that the operation bound to the underlying c...
Primary implementation of CallOpSetInterface.
Definition: call_op_set.h:826
No event before timeout.
Definition: grpc_types.h:481
ServerCompletionQueue()
Default constructor.
Definition: completion_queue_impl.h:398
GPRAPI gpr_timespec gpr_inf_future(gpr_clock_type type)
The zero time interval.
int success
If the grpc_completion_type is GRPC_OP_COMPLETE, this field indicates whether the operation was succe...
Definition: grpc_types.h:497
CompletionQueue(const grpc_completion_queue_attributes &attributes)
Private constructor of CompletionQueue only visible to friend classes.
Definition: completion_queue_impl.h:247
The completion queue has been shutdown and fully-drained.
Definition: completion_queue_impl.h:124
#define GRPC_CQ_CURRENT_VERSION
Definition: grpc_types.h:711
Events are popped out by calling grpc_completion_queue_next() API ONLY.
Definition: grpc_types.h:683
gpr_timespec raw_time()
Definition: time.h:43
virtual void grpc_completion_queue_destroy(grpc_completion_queue *cq)=0
Classes that require gRPC to be initialized should inherit from this class.
Definition: grpc_library.h:38
If you are trying to use CompletionQueue::AsyncNext with a time class that isn&#39;t either gpr_timespec ...
Definition: time.h:40
Definition: grpc_types.h:713
A ClientContext allows the person implementing a service client to:
Definition: client_context.h:179
Synchronous (blocking) server-side API for doing client-streaming RPCs, where the incoming message st...
Definition: completion_queue_impl.h:59
Descriptor of an RPC method.
Definition: rpc_method.h:29
::grpc_impl::ServerCompletionQueue ServerCompletionQueue
Definition: completion_queue.h:27
grpc_cq_completion_type
Specifies the type of APIs to use to pop events from the completion queue.
Definition: grpc_types.h:681
grpc_cq_polling_type
Completion queues internally MAY maintain a set of file descriptors in a structure called &#39;pollset&#39;...
Definition: grpc_types.h:663
NextStatus
Tri-state return for AsyncNext: SHUTDOWN, GOT_EVENT, TIMEOUT.
Definition: completion_queue_impl.h:123
Shutting down.
Definition: grpc_types.h:479
::grpc_impl::Channel Channel
Definition: channel.h:26
#define gpr_atm_rel_store(p, value)
Definition: atm_gcc_atomic.h:52
::grpc_impl::CompletionQueue CompletionQueue
Definition: completion_queue.h:26
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
virtual grpc_completion_queue * grpc_completion_queue_create(const grpc_completion_queue_factory *factory, const grpc_completion_queue_attributes *attributes, void *reserved)=0
A wrapper class of an application provided client streaming handler.
Definition: completion_queue_impl.h:78
#define gpr_atm_no_barrier_fetch_add(p, delta)
Definition: atm_gcc_atomic.h:57
Codegen interface for grpc::Channel.
Definition: channel_interface.h:69
A wrapper class of an application provided rpc method handler.
Definition: byte_buffer.h:45
GRPCAPI const grpc_completion_queue_factory * grpc_completion_queue_factory_lookup(const grpc_completion_queue_attributes *attributes)
Returns the completion queue factory based on the attributes.
CoreCodegenInterface * g_core_codegen_interface
Definition: call_op_set.h:51
The completion queue will have an associated pollset and there is no restriction on the type of file ...
Definition: grpc_types.h:666
intptr_t gpr_atm
Definition: atm_gcc_atomic.h:30
Similar to GRPC_CQ_DEFAULT_POLLING except that the completion queues will not contain any &#39;listening ...
Definition: grpc_types.h:671
A ServerContext allows the person implementing a service handler to:
Definition: server_context.h:114
Definition: server_interface.h:58
Realtime clock.
Definition: gpr_types.h:36
Synchronous (blocking) server-side API for doing for doing a server-streaming RPCs, where the outgoing message stream coming from the server has messages of type W.
Definition: completion_queue_impl.h:61
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm_impl.h:33
::grpc_impl::ServerBuilder ServerBuilder
Definition: server_builder.h:26
Definition: channel_interface.h:47
Interface between the codegen library and the minimal subset of core features required by the generat...
Definition: core_codegen_interface.h:38
A thin wrapper around grpc_completion_queue (see src/core/lib/surface/completion_queue.h).
Definition: completion_queue_impl.h:103
General method handler class for errors that prevent real method use e.g., handle unknown method by r...
Definition: byte_buffer.h:53
Analogous to struct timespec.
Definition: gpr_types.h:47
CompletionQueue()
Default constructor.
Definition: completion_queue_impl.h:107
A specific type of completion queue used by the processing of notifications by servers.
Definition: completion_queue_impl.h:392
Definition: completion_queue_impl.h:82
struct grpc_completion_queue grpc_completion_queue
Completion Queues enable notification of the completion of asynchronous actions.
Definition: grpc_types.h:56
virtual gpr_timespec gpr_time_0(gpr_clock_type type)=0
EXPERIMENTAL: Specifies an interface class to be used as a tag for callback-based completion queues...
Definition: grpc_types.h:697
NextStatus AsyncNext(void **tag, bool *ok, const T &deadline)
Read from the queue, blocking up to deadline (or the queue&#39;s shutdown).
Definition: completion_queue_impl.h:196
virtual grpc_event grpc_completion_queue_pluck(grpc_completion_queue *cq, void *tag, gpr_timespec deadline, void *reserved)=0