aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/grpc/_cython/_cygrpc/completion_queue.pyx
blob: 635a38fe28e04af1ecd81b3150ce79323535d65a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Copyright 2015, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

cimport cpython

from grpc._cython._cygrpc cimport call
from grpc._cython._cygrpc cimport grpc
from grpc._cython._cygrpc cimport records

import threading
import time


cdef class CompletionQueue:

  def __cinit__(self):
    self.c_completion_queue = grpc.grpc_completion_queue_create(NULL)
    self.is_shutting_down = False
    self.is_shutdown = False
    self.poll_condition = threading.Condition()
    self.is_polling = False

  cdef _interpret_event(self, grpc.grpc_event event):
    cdef records.OperationTag tag = None
    cdef object user_tag = None
    cdef call.Call operation_call = None
    cdef records.CallDetails request_call_details = None
    cdef records.Metadata request_metadata = None
    cdef records.Operations batch_operations = None
    if event.type == grpc.GRPC_QUEUE_TIMEOUT:
      return records.Event(
          event.type, False, None, None, None, None, False, None)
    elif event.type == grpc.GRPC_QUEUE_SHUTDOWN:
      self.is_shutdown = True
      return records.Event(
          event.type, True, None, None, None, None, False, None)
    else:
      if event.tag != NULL:
        tag = <records.OperationTag>event.tag
        # We receive event tags only after they've been inc-ref'd elsewhere in
        # the code.
        cpython.Py_DECREF(tag)
        if tag.shutting_down_server is not None:
          tag.shutting_down_server.notify_shutdown_complete()
        user_tag = tag.user_tag
        operation_call = tag.operation_call
        request_call_details = tag.request_call_details
        request_metadata = tag.request_metadata
        batch_operations = tag.batch_operations
        if tag.is_new_request:
          # Stuff in the tag not explicitly handled by us needs to live through
          # the life of the call
          operation_call.references.extend(tag.references)
      return records.Event(
          event.type, event.success, user_tag, operation_call,
          request_call_details, request_metadata, tag.is_new_request,
          batch_operations)

  def poll(self, records.Timespec deadline=None):
    # We name this 'poll' to avoid problems with CPython's expectations for
    # 'special' methods (like next and __next__).
    cdef grpc.gpr_timespec c_deadline = grpc.gpr_inf_future(
        grpc.GPR_CLOCK_REALTIME)
    if deadline is not None:
      c_deadline = deadline.c_time
    cdef grpc.grpc_event event

    # Poll within a critical section
    # TODO(atash) consider making queue polling contention a hard error to
    # enable easier bug discovery
    with self.poll_condition:
      while self.is_polling:
        self.poll_condition.wait(float(deadline) - time.time())
      self.is_polling = True
    with nogil:
      event = grpc.grpc_completion_queue_next(
          self.c_completion_queue, c_deadline, NULL)
    with self.poll_condition:
      self.is_polling = False
      self.poll_condition.notify()
    return self._interpret_event(event)

  def pluck(self, records.OperationTag tag, records.Timespec deadline=None):
    # Plucking a 'None' tag is equivalent to passing control to GRPC core until
    # the deadline.
    cdef grpc.gpr_timespec c_deadline = grpc.gpr_inf_future(
        grpc.GPR_CLOCK_REALTIME)
    if deadline is not None:
      c_deadline = deadline.c_time
    cdef grpc.grpc_event event

    # Poll within a critical section
    # TODO(atash) consider making queue polling contention a hard error to
    # enable easier bug discovery
    with self.poll_condition:
      while self.is_polling:
        self.poll_condition.wait(float(deadline) - time.time())
      self.is_polling = True
    with nogil:
      event = grpc.grpc_completion_queue_pluck(
          self.c_completion_queue, <cpython.PyObject *>tag, c_deadline, NULL)
    with self.poll_condition:
      self.is_polling = False
      self.poll_condition.notify()
    return self._interpret_event(event)

  def shutdown(self):
    grpc.grpc_completion_queue_shutdown(self.c_completion_queue)
    self.is_shutting_down = True

  def clear(self):
    if not self.is_shutting_down:
      raise ValueError('queue must be shutting down to be cleared')
    while self.poll().type != grpc.GRPC_QUEUE_SHUTDOWN:
      pass

  def __dealloc__(self):
    if self.c_completion_queue != NULL:
      # Ensure shutdown, pump the queue
      if not self.is_shutting_down:
        self.shutdown()
      while not self.is_shutdown:
        self.poll()
      grpc.grpc_completion_queue_destroy(self.c_completion_queue)