This file is indexed.

/usr/lib/python2.7/dist-packages/mysql/fabric/events.py is in mysql-utilities 1.6.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
#
# Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#

"""Module for handling events in the Fabric.

Events represent something that happened either inside or outside the Fabric
node and events can trigger execution of procedures.

Central to the reception and processing of events is the **Event
Handler** (or just **Handler** when it is clear from the context),
which receives events from an external or internal source and enqueues
zero or more procedures for each code block that has been registered with
the event.

.. seqdiag::

   diagram {
     Source -> Handler [ label = "trigger(event)" ]
     Handler -> Handler [ label = "lookup(event)" ]
     Handler <-- Handler [ label = "blocks" ]
     Handler -> Executor [ label = "enqueue_procedures(block)",
                           note = "for block in blocks: \ \n
                           executor.enqueue_procedures(block)" ]
     Handler <-- Executor [ label = "procedure",
                            note = "procedures.append(procedure)" ]
     Source <-- Handler [ label = "procedure" ]
   }
"""
import functools
import logging

import mysql.fabric.errors as _errors
import mysql.fabric.executor as _executor

from mysql.fabric.utils import Singleton

_LOGGER = logging.getLogger(__name__)

def on_event(event):
    """Decorator to attach a callable to one event.

    The decorator also defined an ``undo`` decorator for the function,
    which allow abort actions to be executed if the body of the
    function throw an exception.

    Example use::

        @on_event(_events.SLAVE_PROMOTED)
        def changes_status(group_id, server_uuid):
            ....
        @changes_status.undo
        def changes_status_undo(group_id, server_uuid):
            ...

    The wrapped function will automatically call the ``undo`` callable
    if the main function raises an exception.
    """
    def register_func(func):
        """Wrapper that registers the function and attaches wrappers
        to the provided function."""
        @functools.wraps(func)
        def wrapped(*args, **kwargs):
            "Wrapper that execute undo function on an exception."
            try:
                _LOGGER.debug("Executing %s", wrapped.function.__name__)
                return wrapped.function(*args, **kwargs)
            except Exception:
                _LOGGER.debug("%s failed, executing compensation",
                              func.__name__)
                try:
                    if wrapped.undo_function is not None:
                        wrapped.undo_function(*args, **kwargs)
                except Exception as undo_error:
                    _LOGGER.error(
                        "Error processing undo operation: %s.", undo_error
                    )
                raise

        def undo_decorate(undo_func):
            "Undo decorator."
            wrapped.undo_function = undo_func

        wrapped.undo = undo_decorate
        wrapped.function = func
        wrapped.undo_function = None
        Handler().register(event, wrapped)
        return wrapped

    return register_func


class Event(object):
    """An event that can be triggered either from an external source or an
    internal source.

    An event might have a name, but it is optional. Only events with
    names can be triggered externally, but any event can be triggered
    internally.

    :param string name: The name of the event instance.

    For an example on how to trigger an event internally, see
    :meth:`Handler.trigger`.

    """
    def __init__(self, name=None):
        self.__name = name

    @property
    def name(self):
        """The name of the event.

        :returns: The name of the event, or None if it does not have a
                  name.
        """
        return self.__name


class Handler(Singleton):
    """An event handler to manage and trigger events in the system.

    The event handler is responsible for keeping track of all events
    and will also keep track of what code blocks should be executed
    when an event is triggered.

    """
    def __init__(self):
        """Constructor for Handler.
        """
        super(Handler, self).__init__()
        self.__executor = _executor.Executor()
        self.__instance_for = {}
        self.__blocks_for = {}

    def start(self):
        """Start the executor.
        """
        self.__executor.start()

    def shutdown(self):
        """Shut down the executor.
        """
        self.__executor.shutdown()

    def wait(self):
        """Wait until the executor stops.
        """
        self.__executor.wait()

    def register(self, event, blocks):
        """Register code blocks with an event in the event handler.

        This method register the code blocks supplied under the
        event. Each code block is represented as a callable (which
        means either a function or a class supporting the ``__call__``
        method).

        If the event was not previously registered, a new entry will
        be created for it. This involves both registering the name of
        the event (if it has a name) and the event instance.

        :param event: Event to register code blocks for.
        :param blocks: Callable to register for event.
        :type blocks: Callable or sequence of callables

        :except NotEventError: Trying to register code blocks with something
                               that is not an instance of :class:`Event`.
        :except NotCallableError: Trying to register something that is not a
                               callable with an event.
        """

        if not isinstance(event, Event):
            raise _errors.NotEventError(
                "Not possible to register with non-event")

        if callable(blocks):
            blocks = [blocks]

        # Check that all provided blocks are callables.
        try:
            for block in blocks:
                if not callable(block):
                    raise _errors.NotCallableError(
                        "Not possible to register non-callables")
        except TypeError:
            raise _errors.NotCallableError("Expected an iterable")

        _LOGGER.debug("Registering blocks %s for event %s under name %s",
                      blocks, event, event.name)

        # Register the name if not registered
        if event.name is not None and event.name not in self.__instance_for:
            self.__instance_for[event.name] = event

        # Register the callables
        self.__blocks_for.setdefault(event, set()).update(blocks)

    def unregister(self, event, block):
        """Unregister a code block from an event.

        :except NotEventError: Trying to unregister code blocks with something
                               that is not an instance of :class:`Event`.
        :except NotCallableError: Trying to unregister something that is not a
                                  callable.
        :except UnknownCallableError: The callable provided was not known to the
                                      event handler.
        """

        if not isinstance(event, Event):
            raise _errors.NotEventError(
                "Not possible to unregister with non-event")

        if not callable(block):
            raise _errors.NotCallableError(
                "Not possible to unregister a non-callable")

        _LOGGER.debug("Unregistering %s from event %s", block, event)

        try:
            self.__blocks_for[event].remove(block)
            if self.__blocks_for[event]:
                del self.__blocks_for[event]
        except KeyError:
            raise _errors.UnknownCallableError(
                "Not possible to unregister a non-existing block")

    def is_registered(self, event, block):
        """Check if a callable is registered with an event.

        Note that the exact callable instance is checked for, so you have to
        pass the instance that you want to check for.

        :param event: Event to check if callable is registered with.
        :param block: Callable to look for.
        :type block: callable

        :return: ``True`` if the callable instance is registered with the event,
                 ``False`` otherwise.
        :rtype: Boolean.
        """

        if not isinstance(event, Event):
            raise _errors.NotEventError(
                "Not possible to check registration for non-event")

        if not callable(block):
            raise _errors.NotCallableError(
                "Not possible to check for non-callable")

        try:
            return block in self.__blocks_for[event]
        except KeyError:
            return False

    def trigger(self, within_procedure, event,
                lockable_objects=None, *args, **kwargs):
        """Trigger an event.

        This function will trigger an event resulting in zero or more
        blocks being scheduled for execution by creating one
        :class:`Job` for each block. If any arguments are passed to
        this function they are passed to the :class:`Job` instance
        which will pass them to the code block on execution.

        Event can be triggered either by name or by instance. If a
        name is provided as *event*, then the event instance is looked
        up first and the instances triggered.

        If an instance is provided as event, it is looked up
        internally to find all blocks associated with it. The blocks
        are then scheduled (by creating one :class:`Job` for each
        block) with the executor and the function returns. This means
        that the blocks may not have been executed on return from the
        function.

        To be able to wait for the blocks to be completed before
        proceeding after triggering the event, references to the
        created procedures (containing the block) are returned. This means
        that if you want to trigger an event and wait for them to
        finish executing, you can use the following code::

           procedures = handler.trigger(False, SERVER_LOST, lockable_objects,
                                        "my.example.com")
           for procedure in procedures:
              procedure.wait()

        :within_procedure: Define if a new procedure will be created or not.
        :param event: Event to trigger.
        :type event: Event name or event instance
        :param lockable_objects: Set of objects to be locked by the concurrency
                                 control mechanism.
        :param args: Non-keyworded arguments to pass to the event.
        :param kwargs: Keyworded arguments to pass to the event.
        :returns: Procedures that were created as a result of triggering the
                  event.
        :rtype: Procedures that were scheduled.

        See :meth:`~mysql.fabric.executor.Executor.enqueue_procedures`.
        """
        _LOGGER.debug("Triggering event %s", event)

        if isinstance(event, basestring):
            if event in self.__instance_for:
                event = self.__instance_for[event]
            else:
                event = None

        # Enqueue the procedures and return a list with the procedures
        # scheduled.
        actions = [
            {"action" : (block, "Triggered by %s." % (event, ), args, kwargs),
             "job" : None
            }
            for block in self.__blocks_for.get(event, [])
        ]
        return self.__executor.enqueue_procedures(
            within_procedure, actions, lockable_objects
        )

def trigger(event, lockable_objects=None, *args, **kwargs):
    """Trigger an event by name or instance.

    :param event: The event to trigger.
    :type event: Event name or event instance.
    :param lockable_objects: Set of objects to be locked by the concurrency
                             control mechanism.
    :param args: Non-keyworded arguments to pass to the event.
    :param kwargs: Keyworded arguments to pass to the event.
    """
    handler = Handler()
    _LOGGER.debug("Triggering event %s in handler %s", event, handler)
    return handler.trigger(False, event, lockable_objects, *args, **kwargs)

def trigger_within_procedure(event, *args, **kwargs):
    """Trigger an event by name or instance. However, any job created
    due to this operation shall be created in the context of the current
    procedure.

    This method must be called within a job otherwise the
    :class:`~mysql.fabric.errors.ProgrammingError` exception will be raised.

    :param event: The event to trigger.
    :type event: Event name or event instance.
    :param args: Non-keyworded arguments to pass to the event.
    :param kwargs: Keyworded arguments to pass to the event.
    """
    handler = Handler()
    _LOGGER.debug("Triggering event %s in handler %s", event, handler)
    return handler.trigger(True, event, None, *args, **kwargs)

# Some pre-defined events. These are documented directly in the documentation
# and not using autodoc.
SERVER_LOST = Event("SERVER_LOST")
SERVER_PROMOTED = Event("SERVER_PROMOTED")
SERVER_DEMOTED = Event("SERVER_DEMOTED")