aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/_framework/face/_service.py
blob: d758c2f1480cf3eb6d1ac4760eb65ff598f78bf5 (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# 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.

"""Behaviors for servicing RPCs."""

# base_interfaces and interfaces are referenced from specification in this
# module.
from _framework.base import interfaces as base_interfaces  # pylint: disable=unused-import
from _framework.face import _control
from _framework.face import exceptions
from _framework.face import interfaces  # pylint: disable=unused-import
from _framework.foundation import abandonment
from _framework.foundation import callable_util
from _framework.foundation import stream
from _framework.foundation import stream_util


class _ValueInStreamOutConsumer(stream.Consumer):
  """A stream.Consumer that maps inputs one-to-many onto outputs."""

  def __init__(self, behavior, context, downstream):
    """Constructor.

    Args:
      behavior: A callable that takes a single value and an
        interfaces.RpcContext and returns a generator of arbitrarily many
        values.
      context: An interfaces.RpcContext.
      downstream: A stream.Consumer to which to pass the values generated by the
        given behavior.
    """
    self._behavior = behavior
    self._context = context
    self._downstream = downstream

  def consume(self, value):
    _control.pipe_iterator_to_consumer(
        self._behavior(value, self._context), self._downstream,
        self._context.is_active, False)

  def terminate(self):
    self._downstream.terminate()

  def consume_and_terminate(self, value):
    _control.pipe_iterator_to_consumer(
        self._behavior(value, self._context), self._downstream,
        self._context.is_active, True)


def _pool_wrap(behavior, operation_context):
  """Wraps an operation-related behavior so that it may be called in a pool.

  Args:
    behavior: A callable related to carrying out an operation.
    operation_context: A base_interfaces.OperationContext for the operation.

  Returns:
    A callable that when called carries out the behavior of the given callable
      and handles whatever exceptions it raises appropriately.
  """
  def translation(*args):
    try:
      behavior(*args)
    except (
        abandonment.Abandoned,
        exceptions.ExpirationError,
        exceptions.CancellationError,
        exceptions.ServicedError,
        exceptions.NetworkError) as e:
      if operation_context.is_active():
        operation_context.fail(e)
    except Exception as e:
      operation_context.fail(e)
  return callable_util.with_exceptions_logged(
      translation, _control.INTERNAL_ERROR_LOG_MESSAGE)


def adapt_inline_value_in_value_out(method):
  def adaptation(response_consumer, operation_context):
    rpc_context = _control.RpcContext(operation_context)
    return stream_util.TransformingConsumer(
        lambda request: method.service(request, rpc_context), response_consumer)
  return adaptation


def adapt_inline_value_in_stream_out(method):
  def adaptation(response_consumer, operation_context):
    rpc_context = _control.RpcContext(operation_context)
    return _ValueInStreamOutConsumer(
        method.service, rpc_context, response_consumer)
  return adaptation


def adapt_inline_stream_in_value_out(method, pool):
  def adaptation(response_consumer, operation_context):
    rendezvous = _control.Rendezvous()
    operation_context.add_termination_callback(rendezvous.set_outcome)
    def in_pool_thread():
      response_consumer.consume_and_terminate(
          method.service(rendezvous, _control.RpcContext(operation_context)))
    pool.submit(_pool_wrap(in_pool_thread, operation_context))
    return rendezvous
  return adaptation


def adapt_inline_stream_in_stream_out(method, pool):
  """Adapts an interfaces.InlineStreamInStreamOutMethod for use with Consumers.

   RPCs may be serviced by calling the return value of this function, passing
   request values to the stream.Consumer returned from that call, and receiving
   response values from the stream.Consumer passed to that call.

  Args:
    method: An interfaces.InlineStreamInStreamOutMethod.
    pool: A thread pool.

  Returns:
    A callable that takes a stream.Consumer and a
      base_interfaces.OperationContext and returns a stream.Consumer.
  """
  def adaptation(response_consumer, operation_context):
    rendezvous = _control.Rendezvous()
    operation_context.add_termination_callback(rendezvous.set_outcome)
    def in_pool_thread():
      _control.pipe_iterator_to_consumer(
          method.service(rendezvous, _control.RpcContext(operation_context)),
          response_consumer, operation_context.is_active, True)
    pool.submit(_pool_wrap(in_pool_thread, operation_context))
    return rendezvous
  return adaptation


def adapt_event_value_in_value_out(method):
  def adaptation(response_consumer, operation_context):
    def on_payload(payload):
      method.service(
          payload, response_consumer.consume_and_terminate,
          _control.RpcContext(operation_context))
    return _control.UnaryConsumer(on_payload)
  return adaptation


def adapt_event_value_in_stream_out(method):
  def adaptation(response_consumer, operation_context):
    def on_payload(payload):
      method.service(
          payload, response_consumer, _control.RpcContext(operation_context))
    return _control.UnaryConsumer(on_payload)
  return adaptation


def adapt_event_stream_in_value_out(method):
  def adaptation(response_consumer, operation_context):
    rpc_context = _control.RpcContext(operation_context)
    return method.service(response_consumer.consume_and_terminate, rpc_context)
  return adaptation


def adapt_event_stream_in_stream_out(method):
  def adaptation(response_consumer, operation_context):
    return method.service(
        response_consumer, _control.RpcContext(operation_context))
  return adaptation