This file is indexed.

/usr/lib/python3/dist-packages/cement/ext/ext_watchdog.py is in python3-cement 2.10.0-1.

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
"""
The Watchdog Framework Extension enables applications Built on Cement
(tm) to easily monitor, and react to, changes in filesystem paths based on the
filesystem events monitoring library
`Watchdog <https://pypi.python.org/pypi/watchdog>`_.

On application startup, the Watchdog Observer is automatically started and
then upon application close, the observer thread is properly stopped and
joined with the parent process before exit.

This is a simplified wrapper around the functionality of the Watchdog library.
For full usage, please see the
`Watchdog API Documentation <http://pythonhosted.org/watchdog/index.html>`_.

Requirements
------------

 * Watchdog (``pip install watchdog``)


Features
--------

 * Cross platform support for Linux, OSX, Windows, etc.


Configuration
-------------

This extension honors the following application meta-data settings:

 * **watchdog_paths** - A List of tuples that are passed directly as arguments
   to ``WatchdogManager.add()`` (shortcut equivalent of
   ``app.watchdog.add(...)``.


Hooks
-----

This extension defines the following hooks:

watchdog_pre_start
^^^^^^^^^^^^^^^^^^

Run first when ``CementApp.watchdog.start()`` is called.  The application
object is passed as an argument.  Nothing is expected in return.

watchdog_post_start
^^^^^^^^^^^^^^^^^^^

Run last when ``CementApp.watchdog.start()`` is called.  The application
object is passed as an argument.  Nothing is expected in return.

watchdog_pre_stop
^^^^^^^^^^^^^^^^^

Run first when ``CementApp.watchdog.stop()`` is called.  The application
object is passed as an argument.  Nothing is expected in return.

watchdog_post_stop
^^^^^^^^^^^^^^^^^^

Run last when ``CementApp.watchdog.stop()`` is called.  The application
object is passed as an argument.  Nothing is expected in return.

watchdog_pre_join
^^^^^^^^^^^^^^^^^

Run first when ``CementApp.watchdog.join()`` is called.  The application
object is passed as an argument.  Nothing is expected in return.

watchdog_post_join
^^^^^^^^^^^^^^^^^^

Run last when ``CementApp.watchdog.join()`` is called.  The application
object is passed as an argument.  Nothing is expected in return.


Usage
-----

The following example uses the default ``WatchdogEventHandler`` that simply
logs all events to ``debug``:

.. code-block:: python

    from time import sleep
    from cement.core.foundation import CementApp
    from cement.core.exc import CaughtSignal
    from cement.ext.ext_watchdog import WatchdogEventHandler


    class MyApp(CementApp):
        class Meta:
            label = 'myapp'
            extensions = ['watchdog']
            watchdog_paths = [
                ('./tmp/', WatchdogEventHandler),
            ]


    with MyApp() as app:
        app.run()

        try:
            while True:
                sleep(1)
        except CaughtSignal as e:
            print(e)


In the above example, nothing is printed to console however you will see 
something like the following via debug logging:

.. # noqa
.. code-block:: console

    $ python myapp.py --debug 2>&1 | grep -i watchdog
    cement.core.extension : loading the 'cement.ext.ext_watchdog' framework extension
    cement.core.hook : defining hook 'watchdog_pre_start'
    cement.core.hook : defining hook 'watchdog_post_start'
    cement.core.hook : defining hook 'watchdog_pre_stop'
    cement.core.hook : defining hook 'watchdog_post_stop'
    cement.core.hook : defining hook 'watchdog_pre_join'
    cement.core.hook : defining hook 'watchdog_post_join'
    cement.core.hook : registering hook 'watchdog_extend_app' from cement.ext.ext_watchdog into hooks['post_setup']
    cement.core.hook : registering hook 'watchdog_add_paths' from cement.ext.ext_watchdog into hooks['post_setup']
    cement.core.hook : registering hook 'watchdog_start' from cement.ext.ext_watchdog into hooks['pre_run']
    cement.core.hook : registering hook 'watchdog_cleanup' from cement.ext.ext_watchdog into hooks['pre_close']
    cement.core.hook : running hook 'post_setup' (<function watchdog_extend_app at 0x103c991e0>) from cement.ext.ext_watchdog
    cement.core.foundation : extending appication with '.watchdog' (<cement.ext.ext_watchdog.WatchdogManager object at 0x103f83ef0>)
    cement.core.hook : running hook 'post_setup' (<function watchdog_add_paths at 0x103ddd6a8>) from cement.ext.ext_watchdog
    cement.ext.ext_watchdog : adding path /path/to/tmp with event handler <class 'cement.ext.ext_watchdog.WatchdogEventHandler'>
    cement.core.hook : running hook 'pre_run' (<function watchdog_start at 0x103ddd598>) from cement.ext.ext_watchdog
    cement.ext.ext_watchdog : starting watchdog observer
    myapp : Watchdog Event: <FileDeletedEvent: src_path='/path/to/tmp/test2'>
    myapp : Watchdog Event: <FileDeletedEvent: src_path='/path/to/tmp/test4'>
    myapp : Watchdog Event: <FileDeletedEvent: src_path='/path/to/tmp/test3'>
    myapp : Watchdog Event: <FileDeletedEvent: src_path='/path/to/tmp/dir1/test'>
    myapp : Watchdog Event: <FileDeletedEvent: src_path='/path/to/tmp/test'>
    myapp : Watchdog Event: <DirDeletedEvent: src_path='/path/to/tmp/dir1'>
    myapp : Watchdog Event: <DirModifiedEvent: src_path='/path/to/tmp'>
    myapp : Watchdog Event: <DirModifiedEvent: src_path='/path/to/tmp'>
    myapp : Watchdog Event: <DirCreatedEvent: src_path='/path/to/tmp/dir1'>
    myapp : Watchdog Event: <FileCreatedEvent: src_path='/path/to/tmp/dir1/test.file'>
    myapp : Watchdog Event: <DirModifiedEvent: src_path='/path/to/tmp/dir1'>
    cement.core.hook : running hook 'pre_close' (<function watchdog_cleanup at 0x10e930620>) from cement.ext.ext_watchdog
    cement.ext.ext_watchdog : stopping watchdog observer
    cement.ext.ext_watchdog : joining watchdog observer
    cement.core.foundation : closing the myapp application


To expand on the above example, we can add our own event handlers:

.. code-block:: python

    class MyEventHandler(WatchdogEventHandler):
        def on_any_event(self, event):
            # do something with the ``event`` object
            print("The modified path was: %s" % event.src_path)


    class MyApp(CementApp):
        class Meta:
            label = 'myapp'
            extensions = ['watchdog']
            watchdog_paths = [
                ('./tmp/', MyEventHandler),
            ]

.. code-block:: console

    $ python myapp.py
    The modified path was: /path/to/tmp/test.file

Note that the ``WatchdogEventHandler`` could be replaced with any other event
handler classes (i.e. those available from ``watchdog`` directly), however
to play nicely with Cement, we sub-class them first in order to pass in our
application object:

.. code-block:: python

    from watchdog.events import FileSystemEventHandler

    class MyEventHandler(FileSystemEventHandler):
        def __init__(self, app, *args, **kw):
            super(MyEventHandler, self).__init__(*args, **kw)
            self.app = app


For full usage of Watchdog event handlers, refer to the 
`Watchdog API Documentation <http://pythonhosted.org/watchdog/index.html>`_.
"""

import os
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
from ..core.meta import MetaMixin
from ..core.exc import FrameworkError
from ..utils.misc import minimal_logger
from ..utils import fs

LOG = minimal_logger(__name__)


class WatchdogEventHandler(FileSystemEventHandler):
    """
    Default event handler used by Cement, that logs all events to the
    application's debug log.  Additional ``*args`` and ``**kwargs`` are passed
    to the parent class.

    :param app: The application object

    """

    def __init__(self, app, *args, **kw):
        super(WatchdogEventHandler, self).__init__(*args, **kw)
        self.app = app

    def on_any_event(self, event):
        self.app.log.debug("Watchdog Event: %s" % event)  # pragma: nocover


class WatchdogManager(MetaMixin):
    """
    The manager class that is attached to the application object via
    ``CementApp.extend()``.

    Usage:

    .. code-block:: python

        with MyApp() as app:
            app.watchdog.start()
            app.watchdog.stop()
            app.watchdog.join()

    """
    class Meta:
        #: The observer class to use on the backend
        observer = Observer

        #: The default event handler class to use if none is provided
        default_event_handler = WatchdogEventHandler

    def __init__(self, app, *args, **kw):
        super(WatchdogManager, self).__init__(*args, **kw)
        self.app = app
        self.paths = []
        self.observer = self._meta.observer()

    def add(self, path, event_handler=None, recursive=True):
        """
        Add a directory path and event handler to the observer.

        :param path: A directory path to monitor (str)
        :param event_handler: An event handler class used to handle events for
         ``path`` (class)
        :param recursive: Whether to monitor the ``path`` recursively (bool)
        :return: Returns ``True`` if the path is added, ``False`` otherwise.
         (bool)
        """
        path = fs.abspath(path)
        if not os.path.exists(path):
            LOG.debug('watchdog path %s does not exist... ignoring' % path)
            return False

        if event_handler is None:
            event_handler = self._meta.default_event_handler
        LOG.debug('adding path %s with event handler %s' %
                  (path, event_handler))
        self.observer.schedule(event_handler(self.app),
                               path, recursive=recursive)
        return True

    def start(self, *args, **kw):
        """
        Start the observer.  All ``*args`` and ``**kwargs`` are passed down
        to the backend observer.
        """

        for res in self.app.hook.run('watchdog_pre_start', self.app):
            pass
        LOG.debug('starting watchdog observer')
        self.observer.start(*args, **kw)
        for res in self.app.hook.run('watchdog_post_start', self.app):
            pass

    def stop(self, *args, **kw):
        """
        Stop the observer.  All ``*args`` and ``**kwargs`` are passed down
        to the backend observer.
        """

        for res in self.app.hook.run('watchdog_pre_stop', self.app):
            pass
        LOG.debug('stopping watchdog observer')
        self.observer.stop(*args, **kw)
        for res in self.app.hook.run('watchdog_post_stop', self.app):
            pass

    def join(self, *args, **kw):
        """
        Join the observer with the parent process.  All ``*args`` and
        ``**kwargs`` are passed down to the backend observer.
        """

        for res in self.app.hook.run('watchdog_pre_join', self.app):
            pass
        LOG.debug('joining watchdog observer')
        self.observer.join(*args, **kw)
        for res in self.app.hook.run('watchdog_post_join', self.app):
            pass


def watchdog_extend_app(app):
    app.extend('watchdog', WatchdogManager(app))


def watchdog_start(app):
    app.watchdog.start()


def watchdog_cleanup(app):
    if app.watchdog.observer.is_alive():
        app.watchdog.stop()
        app.watchdog.join()


def watchdog_add_paths(app):
    if hasattr(app._meta, 'watchdog_paths'):
        for path_spec in app._meta.watchdog_paths:
            # odd... if a tuple is a single item it ends up as a str?
            if isinstance(path_spec, str):
                app.watchdog.add(path_spec)
            elif isinstance(path_spec, tuple):
                app.watchdog.add(*path_spec)
            else:
                raise FrameworkError(
                    "Watchdog path spec must be a tuple, not '%s' in: %s" %
                    (type(path_spec).__name__, path_spec)
                )


def load(app):
    app.hook.define('watchdog_pre_start')
    app.hook.define('watchdog_post_start')
    app.hook.define('watchdog_pre_stop')
    app.hook.define('watchdog_post_stop')
    app.hook.define('watchdog_pre_join')
    app.hook.define('watchdog_post_join')
    app.hook.register('post_setup', watchdog_extend_app, weight=-1)
    app.hook.register('post_setup', watchdog_add_paths)
    app.hook.register('pre_run', watchdog_start)
    app.hook.register('pre_close', watchdog_cleanup)