/usr/lib/python2.7/dist-packages/obnamlib/hooks.py is in obnam 1.19.1-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 | # Copyright (C) 2009-2015 Lars Wirzenius
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
'''Hooks with callbacks.
In order to de-couple parts of the application, especially when plugins
are used, hooks can be used. A hook is a location in the application
code where plugins may want to do something. Each hook has a name and
a list of callbacks. The application defines the name and the location
where the hook will be invoked, and the plugins (or other parts of the
application) will register callbacks.
'''
import tracing
import obnamlib
class Hook(object):
'''A hook.'''
EARLY_PRIORITY = 250
DEFAULT_PRIORITY = 500
LATE_PRIORITY = 750
def __init__(self):
self.callbacks = []
self.priorities = {}
def add_callback(self, callback, priority=DEFAULT_PRIORITY):
'''Add a callback to this hook.
Return an identifier that can be used to remove this callback.
'''
if callback not in self.callbacks:
self.priorities[callback] = priority
self.callbacks.append(callback)
self.callbacks.sort(
lambda x, y: cmp(self.priorities[x], self.priorities[y]))
return callback
def call_callbacks(self, *args, **kwargs):
'''Call all callbacks with the given arguments.'''
for callback in self.callbacks:
callback(*args, **kwargs)
def remove_callback(self, callback_id):
'''Remove a specific callback.'''
if callback_id in self.callbacks:
self.callbacks.remove(callback_id)
del self.priorities[callback_id]
class MissingFilterError(obnamlib.ObnamError):
msg = 'Unknown filter tag: {tagname}'
class NoFilterTagError(obnamlib.ObnamError):
msg = 'No filter tag found'
class FilterHook(Hook):
'''A hook which filters data through callbacks.
Every hook of this type accepts a piece of data as its first argument
Each callback gets the return value of the previous one as its
argument. The caller gets the value of the final callback.
Other arguments (with or without keywords) are passed as-is to
each callback.
'''
def __init__(self):
Hook.__init__(self)
self.bytag = {}
def add_callback(self, callback, priority=Hook.DEFAULT_PRIORITY):
assert hasattr(callback, "tag")
assert hasattr(callback, "filter_read")
assert hasattr(callback, "filter_write")
self.bytag[callback.tag] = callback
return Hook.add_callback(self, callback, priority)
def remove_callback(self, callback_id):
Hook.remove_callback(self, callback_id)
del self.bytag[callback_id.tag]
def call_callbacks(self, data, *args, **kwargs):
raise NotImplementedError()
def run_filter_read(self, data, *args, **kwargs):
def filter_next_tag(data):
split = data.split('\0', 1)
if len(split) == 1:
raise NoFilterTagError()
tag, remaining = split
if tag == '':
return False, remaining
if tag not in self.bytag:
raise MissingFilterError(tagname=repr(tag))
callback = self.bytag[tag]
return True, callback.filter_read(remaining, *args, **kwargs)
more = True
while more:
more, data = filter_next_tag(data)
return data
def run_filter_write(self, data, *args, **kwargs):
tracing.trace('called')
data = "\0" + data
for filt in self.callbacks:
tracing.trace('calling %s' % filt)
new_data = filt.filter_write(data, *args, **kwargs)
assert new_data is not None, \
filt.tag + ": Returned None from filter_write()"
if data != new_data:
tracing.trace('filt.tag=%s' % filt.tag)
data = filt.tag + "\0" + new_data
tracing.trace('done')
return data
class HookManager(object):
'''Manage the set of hooks the application defines.'''
def __init__(self):
self.hooks = {}
self.filters = {}
def new(self, name):
'''Create a new hook.
If a hook with that name already exists, nothing happens.
'''
if name not in self.hooks:
self.hooks[name] = Hook()
def new_filter(self, name):
'''Create a new filter hook.'''
if name not in self.filters:
self.filters[name] = FilterHook()
def add_callback(self, name, callback, priority=Hook.DEFAULT_PRIORITY):
'''Add a callback to a named hook.'''
if name in self.hooks:
return self.hooks[name].add_callback(callback, priority)
else:
return self.filters[name].add_callback(callback, priority)
def remove_callback(self, name, callback_id):
'''Remove a specific callback from a named hook.'''
if name in self.hooks:
self.hooks[name].remove_callback(callback_id)
else:
self.filters[name].remove_callback(callback_id)
def call(self, name, *args, **kwargs):
'''Call callbacks for a named hook, using given arguments.'''
self.hooks[name].call_callbacks(*args, **kwargs)
def filter_read(self, name, *args, **kwargs):
'''Run reader filter for named filter, using given arguments.'''
return self.filters[name].run_filter_read(*args, **kwargs)
def filter_write(self, name, *args, **kwargs):
'''Run writer filter for named filter, using given arguments.'''
return self.filters[name].run_filter_write(*args, **kwargs)
|