aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/_framework/base/packets/_termination.py
blob: d586c2167b8d3182fe07a300a4e668af6ce7496e (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
190
191
192
193
194
195
196
197
198
199
200
201
# 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.

"""State and behavior for operation termination."""

from _framework.base import interfaces
from _framework.base.packets import _constants
from _framework.base.packets import _interfaces
from _framework.base.packets import packets
from _framework.foundation import callable_util

_CALLBACK_EXCEPTION_LOG_MESSAGE = 'Exception calling termination callback!'

# TODO(nathaniel): enum module.
_EMISSION = 'emission'
_TRANSMISSION = 'transmission'
_INGESTION = 'ingestion'

_FRONT_NOT_LISTENING_REQUIREMENTS = (_TRANSMISSION,)
_BACK_NOT_LISTENING_REQUIREMENTS = (_EMISSION, _INGESTION,)
_LISTENING_REQUIREMENTS = (_TRANSMISSION, _INGESTION,)

_KINDS_TO_OUTCOMES = {
    packets.Kind.COMPLETION: interfaces.COMPLETED,
    packets.Kind.CANCELLATION: interfaces.CANCELLED,
    packets.Kind.EXPIRATION: interfaces.EXPIRED,
    packets.Kind.RECEPTION_FAILURE: interfaces.RECEPTION_FAILURE,
    packets.Kind.TRANSMISSION_FAILURE: interfaces.TRANSMISSION_FAILURE,
    packets.Kind.SERVICER_FAILURE: interfaces.SERVICER_FAILURE,
    packets.Kind.SERVICED_FAILURE: interfaces.SERVICED_FAILURE,
    }


class _TerminationManager(_interfaces.TerminationManager):
  """An implementation of _interfaces.TerminationManager."""

  def __init__(
      self, work_pool, utility_pool, action, requirements, local_failure):
    """Constructor.

    Args:
      work_pool: A thread pool in which customer work will be done.
      utility_pool: A thread pool in which work utility work will be done.
      action: An action to call on operation termination.
      requirements: A combination of _EMISSION, _TRANSMISSION, and _INGESTION
        identifying what must finish for the operation to be considered
        completed.
      local_failure: A packets.Kind specifying what constitutes local failure of
        customer work.
    """
    self._work_pool = work_pool
    self._utility_pool = utility_pool
    self._action = action
    self._local_failure = local_failure
    self._has_locally_failed = False

    self._outstanding_requirements = set(requirements)
    self._kind = None
    self._callbacks = []

  def _terminate(self, kind):
    """Terminates the operation.

    Args:
      kind: One of packets.Kind.COMPLETION, packets.Kind.CANCELLATION,
        packets.Kind.EXPIRATION, packets.Kind.RECEPTION_FAILURE,
        packets.Kind.TRANSMISSION_FAILURE, packets.Kind.SERVICER_FAILURE, or
        packets.Kind.SERVICED_FAILURE.
    """
    self._outstanding_requirements = None
    callbacks = list(self._callbacks)
    self._callbacks = None
    self._kind = kind
    outcome = _KINDS_TO_OUTCOMES[kind]

    act = callable_util.with_exceptions_logged(
        self._action, _constants.INTERNAL_ERROR_LOG_MESSAGE)

    if self._has_locally_failed:
      self._utility_pool.submit(act, outcome)
    else:
      def call_callbacks_and_act(callbacks, outcome):
        for callback in callbacks:
          callback_outcome = callable_util.call_logging_exceptions(
              callback, _CALLBACK_EXCEPTION_LOG_MESSAGE, outcome)
          if callback_outcome.exception is not None:
            outcome = _KINDS_TO_OUTCOMES[self._local_failure]
            break
        self._utility_pool.submit(act, outcome)

      self._work_pool.submit(callable_util.with_exceptions_logged(
          call_callbacks_and_act,
          _constants.INTERNAL_ERROR_LOG_MESSAGE),
                             callbacks, outcome)

  def is_active(self):
    """See _interfaces.TerminationManager.is_active for specification."""
    return self._outstanding_requirements is not None

  def add_callback(self, callback):
    """See _interfaces.TerminationManager.add_callback for specification."""
    if not self._has_locally_failed:
      if self._outstanding_requirements is None:
        self._work_pool.submit(
            callable_util.with_exceptions_logged(
                callback, _CALLBACK_EXCEPTION_LOG_MESSAGE),
            _KINDS_TO_OUTCOMES[self._kind])
      else:
        self._callbacks.append(callback)

  def emission_complete(self):
    """See superclass method for specification."""
    if self._outstanding_requirements is not None:
      self._outstanding_requirements.discard(_EMISSION)
      if not self._outstanding_requirements:
        self._terminate(packets.Kind.COMPLETION)

  def transmission_complete(self):
    """See superclass method for specification."""
    if self._outstanding_requirements is not None:
      self._outstanding_requirements.discard(_TRANSMISSION)
      if not self._outstanding_requirements:
        self._terminate(packets.Kind.COMPLETION)

  def ingestion_complete(self):
    """See superclass method for specification."""
    if self._outstanding_requirements is not None:
      self._outstanding_requirements.discard(_INGESTION)
      if not self._outstanding_requirements:
        self._terminate(packets.Kind.COMPLETION)

  def abort(self, kind):
    """See _interfaces.TerminationManager.abort for specification."""
    if kind == self._local_failure:
      self._has_failed_locally = True
    if self._outstanding_requirements is not None:
      self._terminate(kind)


def front_termination_manager(work_pool, utility_pool, action, subscription):
  """Creates a TerminationManager appropriate for front-side use.

  Args:
    work_pool: A thread pool in which customer work will be done.
    utility_pool: A thread pool in which work utility work will be done.
    action: An action to call on operation termination.
    subscription: One of interfaces.FULL, interfaces.termination_only, or
      interfaces.NONE.

  Returns:
    A TerminationManager appropriate for front-side use.
  """
  return _TerminationManager(
      work_pool, utility_pool, action,
      _FRONT_NOT_LISTENING_REQUIREMENTS if subscription == interfaces.NONE else
      _LISTENING_REQUIREMENTS, packets.Kind.SERVICED_FAILURE)


def back_termination_manager(work_pool, utility_pool, action, subscription):
  """Creates a TerminationManager appropriate for back-side use.

  Args:
    work_pool: A thread pool in which customer work will be done.
    utility_pool: A thread pool in which work utility work will be done.
    action: An action to call on operation termination.
    subscription: One of interfaces.FULL, interfaces.termination_only, or
      interfaces.NONE.

  Returns:
    A TerminationManager appropriate for back-side use.
  """
  return _TerminationManager(
      work_pool, utility_pool, action,
      _BACK_NOT_LISTENING_REQUIREMENTS if subscription == interfaces.NONE else
      _LISTENING_REQUIREMENTS, packets.Kind.SERVICER_FAILURE)