/usr/share/pyshared/txzookeeper/node.py is in python-txzookeeper 0.9.5-0ubuntu1.
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 | #
# Copyright (C) 2010-2011 Canonical Ltd. All Rights Reserved
#
# This file is part of txzookeeper.
#
# Authors:
# Kapil Thangavelu
#
# txzookeeper is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# txzookeeper 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with txzookeeper. If not, see <http://www.gnu.org/licenses/>.
#
from collections import namedtuple
from zookeeper import NoNodeException, BadVersionException
from twisted.internet.defer import Deferred
from txzookeeper.client import ZOO_OPEN_ACL_UNSAFE
class NodeEvent(namedtuple("NodeEvent", 'type, connection_state, node')):
"""
A node event is returned when a watch deferred fires. It denotes
some event on the zookeeper node that the watch was requested on.
@ivar path: Path to the node the event was about.
@ivar type: An integer corresponding to the event type. The symbolic
name mapping is available from the zookeeper module attributes. For
convience one is included on the C{NodeEvent} class.
@ivar kind: A symbolic name for the event's type.
@ivar connection_state: integer representing the state of the
zookeeper connection.
"""
type_name_map = {
1: 'created',
2: 'deleted',
3: 'changed',
4: 'child'}
@property
def path(self):
return self.node.path
@property
def type_name(self):
return self.type_name_map[self.type]
def __repr__(self):
return "<NodeEvent %s at %r>" % (self.type_name, self.path)
class ZNode(object):
"""
A minimal object abstraction over a zookeeper node, utilizes no caching
outside of trying to keep track of node existance and the last read
version. It will attempt to utilize the last read version when modifying
the node. On a bad version exception this values are cleared and the
except reraised (errback chain continue.)
"""
def __init__(self, path, context):
self._path = path
self._name = path.split("/")[-1]
self._context = context
self._node_stat = None
@property
def path(self):
"""
The path to the node from the zookeeper root.
"""
return self._path
@property
def name(self):
"""
The name of the node in its container.
"""
return self._name
def _get_version(self):
if not self._node_stat:
return -1
return self._node_stat["version"]
def _on_error_bad_version(self, failure):
failure.trap(BadVersionException)
self._node_stat = None
return failure
def create(self, data="", acl=None, flags=0):
"""
Create the node with the given data, acl, and persistence flags. If no
acl is given the default public acl is used. The default creation flag
is persistent.
"""
if acl is None:
acl = [ZOO_OPEN_ACL_UNSAFE]
d = self._context.create(self.path, data, acl, flags)
return d
def _on_exists_success(self, node_stat):
if node_stat is None:
return False
self._node_stat = node_stat
return True
def exists(self):
"""
Does the node exist or not, returns a boolean.
"""
d = self._context.exists(self.path)
d.addCallback(self._on_exists_success)
return d
def exists_and_watch(self):
"""
Returns a boolean based on the node's existence. Also returns a
deferred that fires when the node is modified/created/added/deleted.
"""
node_changed = Deferred()
def on_node_event((event, state, path)):
return node_changed.callback(
NodeEvent(event, state, self))
d, w = self._context.exists_and_watch(self.path)
w.addCallback(on_node_event)
d.addCallback(self._on_exists_success)
return d, node_changed
def _on_get_node_error(self, failure):
failure.trap(NoNodeException)
self._node_stat = None
return failure
def _on_get_node_success(self, data):
(node_data, node_stat) = data
self._node_stat = node_stat
return node_data
def get_data(self):
"""
Retrieve the node's data.
"""
d = self._context.get(self.path)
d.addCallback(self._on_get_node_success)
d.addErrback(self._on_get_node_error)
return d
def get_data_and_watch(self):
"""
Retrieve the node's data and a deferred that fires when this data
changes.
"""
node_changed = Deferred()
def on_node_change((event, status, path)):
node_changed.callback(
NodeEvent(event, status, self))
d, w = self._context.get_and_watch(self.path)
w.addCallback(on_node_change)
d.addCallback(self._on_get_node_success)
d.addErrback(self._on_get_node_error)
return d, node_changed
def set_data(self, data):
"""Set the node's data."""
def on_success(value):
self._node_stat = None
return self
version = self._get_version()
d = self._context.set(self.path, data, version)
d.addErrback(self._on_error_bad_version)
d.addCallback(on_success)
return d
def get_acl(self):
"""
Get the ACL for this node. An ACL is a list of access control
entity dictionaries.
"""
def on_success((acl, stat)):
if stat is not None:
self._node_stat = stat
return acl
d = self._context.get_acl(self.path)
d.addCallback(on_success)
return d
def set_acl(self, acl):
"""
Set the ACL for this node.
"""
d = self._context.set_acl(
self.path, acl, self._get_version())
d.addErrback(self._on_error_bad_version)
return d
def _on_get_children_filter_results(self, children, prefix):
if prefix:
children = [
name for name in children if name.startswith(prefix)]
return [
self.__class__("/".join((self.path, name)), self._context)
for name in children]
def get_children(self, prefix=None):
"""
Get the children of this node, as ZNode objects. Optionally
a name prefix may be passed which the child node must abide.
"""
d = self._context.get_children(self.path)
d.addCallback(self._on_get_children_filter_results, prefix)
return d
def get_children_and_watch(self, prefix=None):
"""
Get the children of this node, as ZNode objects, and also return
a deferred that fires if a child is added or deleted. Optionally
a name prefix may be passed which the child node must abide.
"""
children_changed = Deferred()
def on_child_added_removed((event, status, path)):
# path is the container not the child.
children_changed.callback(
NodeEvent(event, status, self))
d, w = self._context.get_children_and_watch(self.path)
w.addCallback(on_child_added_removed)
d.addCallback(self._on_get_children_filter_results, prefix)
return d, children_changed
def __cmp__(self, other):
return cmp(self.path, other.path)
|