/usr/share/pyshared/juju/state/relation.py is in juju-0.7 0.7-0ubuntu2.
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 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 | import logging
from os.path import basename, dirname
import zookeeper
from twisted.internet.defer import (
inlineCallbacks, returnValue, maybeDeferred, Deferred)
from txzookeeper.utils import retry_change
from juju.lib import serializer
from juju.state.base import StateBase
from juju.state.errors import (
DuplicateEndpoints, IncompatibleEndpoints, RelationAlreadyExists,
RelationStateNotFound, StateChanged, UnitRelationStateNotFound,
UnknownRelationRole)
class RelationStateManager(StateBase):
"""Manages the state of relations in an environment."""
@inlineCallbacks
def add_relation_state(self, *endpoints):
"""Add new relation state with the common relation type of `endpoints`.
There must be one or two endpoints specified, with the same
`relation_type`. Their corresponding services will be assigned
atomically.
"""
# the TODOs in the following comments in this function are for
# type checking to be implemented ASAP. However, this will
# require some nontrivial test modification, so it's best to
# be done in a future branch. This is because these tests use
# such invalid role names as ``role``, ``dev``, and ``prod``;
# or they add non-peer relations of only one endpoint.
if len(endpoints) == 1:
# TODO verify that the endpoint is a peer endpoint only
pass
elif len(endpoints) == 2:
if endpoints[0] == endpoints[1]:
raise DuplicateEndpoints(endpoints)
# TODO verify that the relation roles are client or server
# only
if (endpoints[0].relation_role in ("client", "server") or
endpoints[1].relation_role in ("client", "server")):
if not endpoints[0].may_relate_to(endpoints[1]):
raise IncompatibleEndpoints(endpoints)
else:
raise TypeError("Requires 1 or 2 endpoints, %d given" % \
len(endpoints))
# first check so as to prevent unnecessary garbage in ZK in
# case this relation has been previously added
topology = yield self._read_topology()
if topology.has_relation_between_endpoints(endpoints):
raise RelationAlreadyExists(endpoints)
scope = "global"
for endpoint in endpoints:
if endpoint.relation_scope == "container":
scope = "container"
break
relation_type = endpoints[0].relation_type
relation_id = yield self._add_relation_state(relation_type, scope)
services = []
for endpoint in endpoints:
service_id = topology.find_service_with_name(
endpoint.service_name)
yield self._add_service_relation_state(
relation_id, service_id, endpoint, scope)
services.append(ServiceRelationState(self._client,
service_id,
relation_id,
scope,
endpoint.relation_role,
endpoint.relation_name))
def add_relation(topology):
if topology.has_relation_between_endpoints(endpoints):
raise RelationAlreadyExists(endpoints)
topology.add_relation(relation_id, relation_type,
relation_scope=scope)
for service_relation in services:
if not topology.has_service(
service_relation.internal_service_id):
# One of the service endpoints has gone away.
raise StateChanged()
topology.assign_service_to_relation(
relation_id,
service_relation.internal_service_id,
service_relation.relation_name,
service_relation.relation_role)
yield self._retry_topology_change(add_relation)
returnValue((RelationState(self._client, relation_id), services))
@inlineCallbacks
def _add_relation_state(self, relation_type, relation_scope):
path = yield self._client.create(
"/relations/relation-", flags=zookeeper.SEQUENCE)
internal_id = basename(path)
# Create the settings container, for individual units settings.
# Creation is per container for container scoped relations and
# occurs elsewhere.
if relation_scope == "global":
yield self._client.create(path + "/settings")
returnValue(internal_id)
@inlineCallbacks
def _add_service_relation_state(
self, relation_id, service_id, endpoint, relation_scope):
"""Add a service relation state.
"""
# while the full path is
# /relations/relation_id/optional_container_id/relation_role/...
# how far down the path we can create at this point depends on
# what type of relation we have.
if relation_scope == "global":
# Add service container in relation.
path = "/relations/%s/%s" % (relation_id, endpoint.relation_role)
else:
path = "/relations/%s" % (relation_id,)
try:
yield self._client.create(path)
except zookeeper.NodeExistsException:
pass
@inlineCallbacks
def remove_relation_state(self, relation_state):
"""Remove the relation of the given id.
:param relation_state: Either a relation state or a service relation
state.
The relation is removed from the topology, however its container
node is not removed, as associated units will still be processing
its removal.
"""
if isinstance(relation_state, RelationState):
relation_id = relation_state.internal_id
elif isinstance(relation_state, ServiceRelationState):
relation_id = relation_state.internal_relation_id
def remove_relation(topology):
if not topology.has_relation(relation_id):
raise StateChanged()
topology.remove_relation(relation_id)
yield self._retry_topology_change(remove_relation)
@inlineCallbacks
def get_relations_for_service(self, service_state):
"""Get the relations associated to the service.
"""
relations = []
internal_service_id = service_state.internal_id
topology = yield self._read_topology()
for info in topology.get_relations_for_service(internal_service_id):
service_info = info["service"]
relations.append(
ServiceRelationState(
self._client,
internal_service_id,
info["relation_id"],
info["scope"],
**service_info))
returnValue(relations)
@inlineCallbacks
def get_relation_state(self, *endpoints):
"""Return `relation_state` connecting the endpoints.
Raises `RelationStateNotFound if no such relation exists.
"""
topology = yield self._read_topology()
internal_id = topology.get_relation_between_endpoints(endpoints)
if internal_id is None:
raise RelationStateNotFound()
returnValue(RelationState(self._client, internal_id))
class RelationState(StateBase):
"""Represents a connection between one or more services.
The relation state is representative of the entire connection and its
endpoints, while the :class ServiceRelationState: is representative
of one of the service endpoints.
"""
def __init__(self, client, internal_relation_id):
super(RelationState, self).__init__(client)
self._internal_id = internal_relation_id
@property
def internal_id(self):
return self._internal_id
class ServiceRelationState(StateBase):
"""A state representative of a relation between one or more services."""
def __init__(self, client, service_id, relation_id, relation_scope,
role, name):
"""`client`: ZooKeeper client
`service_id`: service internal id
`relation_id`: relation internal id
`relation_scope`: the active scope of the service relation (global or
container)
`role`: the role of of the service in the relation
`name`: the name of the service in the relation
"""
super(ServiceRelationState, self).__init__(client)
self._service_id = service_id
self._relation_id = relation_id
self._relation_scope = relation_scope
self._role = role
self._name = name
def __repr__(self):
return "<ServiceRelationState name:%s role:%s id:%s scope:%s>" % (
self.relation_name,
self.relation_role,
self.internal_relation_id,
self.relation_scope)
@property
def internal_relation_id(self):
return self._relation_id
@staticmethod
def get_relation_ident(relation_name, internal_relation_id):
"""Returns <relation name>:<normalized internal relation id>"""
# NOTE: ideally this function would not be directly exposed,
# however, UnitRelationLifecycle currently uses internal
# relation ids, and needs to reconstruct the workflow, which
# requires an external relation id, from a file when a
# relation has departed.
# normalize internal ids like 'relation-0000000042' to '42'
digits = internal_relation_id.split('-')[1]
normalized = digits.lstrip("0")
if not normalized:
normalized = '0'
return "%s:%s" % (relation_name, normalized)
@property
def relation_ident(self):
"""Returns <relation name>:<normalized internal relation id>"""
return self.get_relation_ident(
self.relation_name, self.internal_relation_id)
@property
def internal_service_id(self):
return self._service_id
@property
def relation_name(self):
"""The service's name for the relation."""
return self._name
@property
def relation_role(self):
"""The service's role within the relation."""
return self._role
@property
def relation_scope(self):
"""The scope of the relationship."""
return self._relation_scope
def _get_scope_path(self, unit_state, container):
relation_scope = self._relation_scope
if relation_scope == "container":
if container is None:
relation_scope_value = unit_state.internal_id
else:
relation_scope_value = container.internal_id
else:
relation_scope_value = ""
scope_path = "/relations/%s/%s" % (
self._relation_id, relation_scope_value)
return scope_path.rstrip("/")
@inlineCallbacks
def _create_scope_container(self, scope_path, unit_name):
# this is a container scoped relation and we must add
# node_data as was done in _add_relation_state.
# before we can do that however we need to extract the
# proper relation information from the topology. This
# includes the relation name and the relation_role
from .service import parse_service_name
topology = yield self._read_topology()
service_id = topology.find_service_with_name(
parse_service_name(unit_name))
interface, relation_data = topology.get_relation_service(
self._relation_id, service_id)
try:
yield self._client.create(scope_path)
except zookeeper.NodeExistsException:
pass
node_data = serializer.dump(relation_data)
role_path = "%s/%s" % (scope_path, relation_data["role"])
yield retry_change(
self._client, role_path, lambda c, s: node_data)
yield retry_change(
self._client, "%s/settings" % scope_path, lambda c, s: "")
@inlineCallbacks
def add_unit_state(self, unit_state):
"""Add a unit to the service relation.
This api is intended for use by the unit agent, as it
also creates an ephemeral presence node, denoting the
active existence of the unit in the relation.
returns a unit relation state.
"""
container = yield unit_state.get_container()
scope_path = self._get_scope_path(unit_state, container)
settings_path = "%s/settings/%s" % (
scope_path, unit_state.internal_id)
# Pre-populate the relation node with the node's private address.
if self._relation_scope == "container":
# Create the service relation node data in the proper scope
yield self._create_scope_container(
scope_path, unit_state.unit_name)
if container:
private_address = yield container.get_private_address()
else:
private_address = yield unit_state.get_private_address()
def update_address(content, stat):
unit_map = None
if content:
unit_map = serializer.load(content)
if not unit_map:
unit_map = {}
unit_map["private-address"] = private_address
return serializer.dump(unit_map)
yield retry_change(self._client, settings_path, update_address)
# Update the unit name -> id mapping on the relation node
def update_unit_mapping(content, stat):
if content:
unit_map = serializer.load(content)
else:
unit_map = {}
# If it's already present, we're done, just return the
# existing content, to avoid unstable yaml dict
# serialization.
if unit_state.internal_id in unit_map:
return content
unit_map[unit_state.internal_id] = unit_state.unit_name
return serializer.dump(unit_map)
yield retry_change(self._client,
"/relations/%s" % self._relation_id,
update_unit_mapping)
# Create the presence node.
role_path = scope_path + "/" + self._role
alive_path = role_path + "/" + unit_state.internal_id
try:
# create the role node
yield self._client.create(role_path)
except zookeeper.NodeExistsException:
pass
try:
yield self._client.create(alive_path, flags=zookeeper.EPHEMERAL)
except zookeeper.NodeExistsException:
# Concurrent creation is okay, end state is the same.
pass
returnValue(
UnitRelationState(
self._client,
self._service_id,
unit_state.internal_id,
self._relation_id,
self._relation_scope))
@inlineCallbacks
def get_unit_state(self, unit_state):
"""Given a service unit state, return its unit relation state."""
if self._relation_scope == "global":
alive_path = "/relations/%s/%s/%s" % (
self._relation_id, self._role, unit_state.internal_id)
else:
container = yield unit_state.get_container()
scope_path = self._get_scope_path(unit_state, container)
alive_path = "%s/%s/%s" % (
scope_path, self._role, unit_state.internal_id)
stat = yield self._client.exists(alive_path)
if not stat:
raise UnitRelationStateNotFound(
self._relation_id, self._name, unit_state.unit_name)
returnValue(
UnitRelationState(
self._client,
self._service_id,
unit_state.internal_id,
self._relation_id,
self._relation_scope))
@inlineCallbacks
def get_service_states(self):
"""Get all the services associated with this relation.
@return: list of ServiceState instance associated with this relation.
"""
from juju.state.service import ServiceStateManager, ServiceState
service_manager = ServiceStateManager(self._client)
services = []
topology = yield service_manager._read_topology()
for service_id in topology.get_relation_services(
self.internal_relation_id):
service_name = topology.get_service_name(service_id)
service = ServiceState(self._client, service_id, service_name)
services.append(service)
returnValue(services)
class UnitRelationState(StateBase):
"""A service unit's relation state.
"""
def __init__(
self, client, service_id, unit_id, relation_id, relation_scope):
#
super(UnitRelationState, self).__init__(client)
self._service_id = service_id
self._unit_id = unit_id
self._relation_id = relation_id
self._relation_scope = relation_scope
# cached value
self._cached_relation_role = None
@property
def internal_service_id(self):
return self._service_id
@property
def internal_unit_id(self):
return self._unit_id
@property
def internal_relation_id(self):
return self._relation_id
@property
def relation_scope(self):
return self._relation_scope
@inlineCallbacks
def set_data(self, data):
"""Set the relation local configuration data for a unit.
This call overwrites any data currently in the node with the
dictionary supplied as `data`.
"""
path = yield self.get_settings_path()
# encode as a YAML string
data = serializer.dump(data)
yield retry_change(
self._client, path, lambda content, stat: data)
@inlineCallbacks
def get_data(self):
"""Get the relation local configuration data for a unit.
"""
path = yield self.get_settings_path()
data, stat = yield self._client.get(path)
returnValue(data)
@inlineCallbacks
def get_settings_path(self):
parts = ["/relations",
self.internal_relation_id,
(yield self._get_container_id()),
"settings",
self.internal_unit_id]
returnValue("/".join(filter(None, parts)))
@inlineCallbacks
def get_relation_role(self):
"""Return the service's role within the relation.
"""
if self._cached_relation_role is not None:
returnValue(self._cached_relation_role)
# Perhaps this information could be passed directly into the
# unit relation state constructor, its already got 4 params though.
topology = yield self._read_topology()
if not (topology.has_relation(self._relation_id) and \
topology.has_service(self._service_id)):
raise StateChanged()
relation_type, info = topology.get_relation_service(self._relation_id,
self._service_id)
relation_role = info["role"]
self._cached_relation_role = relation_role
returnValue(relation_role)
@inlineCallbacks
def _get_container_id(self):
topology = yield self._read_topology()
container_id = topology.get_service_unit_container(self._unit_id)
if container_id is None and self._relation_scope == "global":
return
elif container_id is None:
returnValue(self._unit_id)
# Container id comes back as as svc-id, rel-id, unit-id
returnValue(container_id[-1])
@inlineCallbacks
def get_related_unit_container(self):
"""Return the path to the relation role container of the related
units.
If container_unit_state is provided it will be used to compute
the path into a single container's scope for this
relationship.
"""
relation_role = yield self.get_relation_role()
endpoint_container = ["/relations", self._relation_id]
if self._relation_scope == "container":
container_id = yield self._get_container_id()
endpoint_container.append(container_id)
if relation_role == "server":
endpoint_container.append("client")
elif relation_role == "client":
endpoint_container.append("server")
elif relation_role == "peer":
endpoint_container.append("peer")
else:
topology = yield self._read_topology()
service_name = topology.get_service_name(self._service_id)
raise UnknownRelationRole(
self._relation_id, relation_role, service_name)
returnValue("/".join(endpoint_container))
@inlineCallbacks
def watch_related_units(self, cb_members, cb_settings):
"""Register a callback to be invoked when related units change.
@param: callback a function that gets invoked when related
units of the appropriate role are added, removed, or change
their settings. The callback should expect three keyword
arguments, old_units, new_units, and modified. If there is a
membership change, the old_units and new_units parameters will
be passed containing the related unit membership (as a list)
before and after the change. If a related unit changes, the
modified parameter will be passed with a list of changed
units.
The callback will be invoked in parallel for different changes
to different nodes. However it will be invoked serially for
changes to a single node.
This method returns a watcher instance, that exposes an api
for starting and stopping the watch and the callback
invocation.
See C{RelationUnitWatcherBase} for additional details.
"""
relation_role = yield self.get_relation_role()
endpoint_container = yield self.get_related_unit_container()
# Determine the watcher implementation.
if relation_role in ["server", "client"]:
watcher_factory = ClientServerUnitWatcher
elif relation_role == "peer":
watcher_factory = PeerUnitWatcher
watcher = watcher_factory(
self._client, self, endpoint_container, cb_members, cb_settings,
self._relation_scope)
returnValue(watcher)
class RelationUnitWatcherBase(StateBase):
"""Unit relation observation of other units.
When a service unit is participating in a relation, it needs to
watch other units within the relation to observe their setting
and membership changes in order to invoke its own charm hooks.
This base class provides for most of the behavior of watching
other units within a relation. Various subclasses provide for
concrete implementations of this logic based on the relation role
and thereby the units within the relation that need watching.
The two focus points of watching relations, deal with watching the
presence nodes of other units within the relation, and watching
their respective settings nodes. Which units in particular are
watched are determined by the relation role of the service as per
the charm specification.
The watcher will concurrently execute the callback in parallel for
changes to different nodes. However for changes to a single node
the callback will be executed serially.
"""
def __init__(self,
client,
watcher_unit,
unit_container_path,
cb_members,
cb_settings,
relation_scope=None):
super(RelationUnitWatcherBase, self).__init__(client)
self._units = []
self._watcher_unit = watcher_unit
self._container_path = unit_container_path
self._cb_members = cb_members
self._cb_settings = cb_settings
self._stopped = None
self._unit_name_map = None
self._relation_scope = relation_scope
self._scope_path = dirname(unit_container_path)
self._log = logging.getLogger("unit.relation.watch")
@property
def running(self):
return self._stopped is False
def _watch_container(self, watch_established_callback=None):
"""Watch the service role container, for related units.
"""
child_d, watch_d = self._client.get_children_and_watch(
self._container_path)
# After we've established a container watch we should
# invoke the watch established callback, if any.
if watch_established_callback is not None:
child_d.addCallback(watch_established_callback)
# Setup child watches, and invoke user callbacks for membership.
child_d.addCallback(self._cb_container_children)
# After processing children, setup the container watch callback.
child_d.addCallback(lambda result: watch_d.addCallback(
self._cb_container_child_change))
# Handle container nonexistant errors
child_d.addErrback(self._eb_no_container, watch_established_callback)
return child_d
def _eb_no_container(self, failure, watch_established_callback=None):
"""Handle the case where the service-role container does not exist.
We establish an existance watch with a callback to start the unit
watching.
"""
failure.trap(zookeeper.NoNodeException)
# Establish an exists watch on the container.
exists_d, watch_d = self._client.exists_and_watch(self._container_path)
# After the container watch is established, invoke any est. callback
if watch_established_callback:
exists_d.addCallback(watch_established_callback)
# Set a callback, to watch the container when its created.
watch_d.addCallback(self._cb_container_created)
# Check if the container has been created prior to exists call.
exists_d.addCallback(self._cb_container_exists)
# return an empty set of children (no container yet)
return []
def _cb_container_exists(self, stat):
"""If the container exists, start watching it.
This is used as a callback from the no container error
handler, as it establishes a watch on the container, to verify
that the container does not already exist.
"""
if stat:
return self._watch_container()
def _cb_container_created(self, event):
"""Once the service role container is created, establish watches for it
"""
if event.type_name == "created":
return self._watch_container()
@inlineCallbacks
def _resolve_unit_names(self, *unit_ids):
"""Resolve the names of units given their ids.
Takes multiple lists of unit ids as parameters, and returns
corresponding lists of unit names as results.
"""
if not self._unit_name_map:
relation_path = dirname(self._container_path)
if self._relation_scope == "container":
relation_path = dirname(relation_path)
content, stat = yield self._client.get(relation_path)
self._unit_name_map = serializer.load(content)
results = []
for unit_id_list in unit_ids:
names = []
for unit_id in unit_id_list:
names.append(self._unit_name_map[unit_id])
results.append(names)
returnValue(results)
def _cb_container_children(self, children):
"""Process children of the service role container.
Establishes watches on the settings of units in a relation
role container.
@param children: A list of unit ids within the relation role
container.
"""
# Filter the units we're interested in.
children = self._filter_units(children)
# If there is no delta from the last known state, we're done.
if self._units == children:
return
# Determine if we have any new nodes.
added = set(children) - set(self._units)
if added:
# If we do have new units, invalidate the unit name cache
self._unit_name_map = None
# Setup watches on new children so we catch all changes but
# don't attach handlers till after the container callback
# is complete. This way we ensure we get membership changes
# before modification changes.
settings_watches = self._watch_settings_for_units(added)
else:
settings_watches = []
# Resolve unit ids to names
callback_d = self._resolve_unit_names(self._units, children)
# Update the list of known children
self._units = children
# Invoke callback
callback_d.addCallback(
lambda (old_units, new_units): maybeDeferred(
self._cb_members, sorted(old_units), sorted(new_units)))
# Attach initial notifiers and change handlers to new nodes
if settings_watches:
def watch_unit_settings(_, watch_d):
watch_d.addCallback(self._cb_unit_change)
def track_all_unit_settings(_):
for (unit_id, exists_d, watch_d) in settings_watches:
exists_d.addCallback(
self._notify_unit_settings_version, unit_id)
exists_d.addCallback(watch_unit_settings, watch_d)
callback_d.addCallback(track_all_unit_settings)
return callback_d
@inlineCallbacks
def _notify_unit_settings_version(self, stat, unit_id):
if not stat:
return
((unit_name,),) = yield self._resolve_unit_names([unit_id])
node_info = (unit_name, stat["version"])
yield self._cb_settings((node_info,))
def _watch_settings_for_units(self, added):
"""Setup watches on new unit relation setting nodes.
"""
settings_watches = []
# Watch new settings node for changes.
for unit_id in added:
settings_path = "%s/settings/%s" % (
self._scope_path, unit_id)
# Since we have a concurrent execution model, unit tests,
# will error out since this callback might still be
# utilizing the zookeeper api, after the client is
# closed. Verify the connection is open, before we invoke
# zk apis.
if not self._client.connected:
return
# We always notify a modification, even on new nodes, so that
# the callback can know the versions of the settings nodes and
# take appropriate action. (Generally the appropriate action will
# be "do nothing", but it allows the unit agent's HookSchedulers
# to detect settings changes that occurred while the unit was not
# running.)
exists_d, watch_d = self._client.exists_and_watch(settings_path)
settings_watches.append((unit_id, exists_d, watch_d))
return settings_watches
def _cb_container_child_change(self, event):
"""Processes container child events.
These changes correspond to the addition and removal of unit
relation presence nodes within the relation.
"""
self._log.debug("relation membership change")
# If the watcher has been stopped, don't observe child changes.
if self._stopped:
return
# Restablish child watch on presence nodes and fetch children.
children_d, watch_d = self._client.get_children_and_watch(
self._container_path)
# Callback to set watches on children and notify membership changes.
children_d.addCallback(self._cb_container_children)
# After processing children, setup the container watch callback.
children_d.addCallback(lambda result: watch_d.addCallback(
self._cb_container_child_change))
return children_d
def _cb_unit_change(self, event):
"""Process a unit relation settings node change.
"""
self._log.debug("relation watcher settings change %s", event)
unit_id = basename(event.path)
# Don't process deleted units or if we've been stopped.
if self._stopped or not unit_id in self._units:
return
exists_d, watch_d = self._client.exists_and_watch(event.path)
exists_d.addCallback(self._notify_unit_settings_version, unit_id)
# Restablish the child watch callback after the user callback completes
exists_d.addCallback(
lambda result: watch_d.addCallback(self._cb_unit_change))
def _filter_units(self, units):
"""A utility method to filter the unit relations based on relation type
"""
return units
def stop(self):
"""Stops watch processing, and callback invocation.
After this method is invoked, no additional watches will be
established any existing watches will be ignored. The user
callback will not be invoked.
Start can be called after stop, however any modifications of
existing nodes will not be detected, only membership changes
from the stopped period will be sent after restarting.
"""
self._stopped = True
self._log.debug("relation watcher stop")
def start(self):
"""Start watching membership and settings changes of relation units.
Returns a deferred that fires, when the related unit container
has a child watch established, or a watch has been created on
the container existence. Individual watches on the children
will not yet have been established, but that property is O(n)
size of the container and requires as many communication
roundtrips. So the watch started callback is a more limited
guarantee that at least the container watch (children or
exists if the container does not already exist) has been
established.
"""
assert self._stopped or self._stopped is None, "Already started"
self._stopped = False
watcher_started = Deferred()
def on_container_watched(result):
self._log.debug("relation watcher start")
watcher_started.callback(True)
return result
self._watch_container(on_container_watched)
return watcher_started
class ClientServerUnitWatcher(RelationUnitWatcherBase):
pass
class PeerUnitWatcher(RelationUnitWatcherBase):
def _filter_units(self, units):
"""Units in the peer relation type, ignore themselves.
"""
return [unit_id for unit_id in units \
if unit_id != self._watcher_unit.internal_unit_id]
|