/usr/lib/python2.7/dist-packages/foolscap/broker.py is in python-foolscap 0.13.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 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 | # This module is responsible for the per-connection Broker object
import types, time
from itertools import count
from zope.interface import implements
from twisted.python import failure
from twisted.internet import defer, error
from twisted.internet import interfaces as twinterfaces
from twisted.internet.protocol import connectionDone
from foolscap import banana, tokens, ipb, vocab
from foolscap import call, slicer, referenceable, copyable, remoteinterface
from foolscap.constraint import Any
from foolscap.tokens import Violation, BananaError
from foolscap.ipb import DeadReferenceError, IBroker
from foolscap.slicers.root import RootSlicer, RootUnslicer, ScopedRootSlicer
from foolscap.eventual import eventually
from foolscap.logging import log
LOST_CONNECTION_ERRORS = [error.ConnectionLost, error.ConnectionDone]
try:
from OpenSSL import SSL
LOST_CONNECTION_ERRORS.append(SSL.Error)
except ImportError:
pass
PBTopRegistry = {
("call",): call.CallUnslicer,
("answer",): call.AnswerUnslicer,
("error",): call.ErrorUnslicer,
}
PBOpenRegistry = {
('arguments',): call.ArgumentUnslicer,
('my-reference',): referenceable.ReferenceUnslicer,
('your-reference',): referenceable.YourReferenceUnslicer,
('their-reference',): referenceable.TheirReferenceUnslicer,
# ('copyable', classname) is handled inline, through the CopyableRegistry
}
class PBRootUnslicer(RootUnslicer):
# topRegistries defines what objects are allowed at the top-level
topRegistries = [PBTopRegistry]
# openRegistries defines what objects are allowed at the second level and
# below
openRegistries = [slicer.UnslicerRegistry, PBOpenRegistry]
logViolations = False
def checkToken(self, typebyte, size):
if typebyte != tokens.OPEN:
raise BananaError("top-level must be OPEN")
def openerCheckToken(self, typebyte, size, opentype):
if typebyte == tokens.STRING:
if len(opentype) == 0:
if size > self.maxIndexLength:
why = "first opentype STRING token is too long, %d>%d" % \
(size, self.maxIndexLength)
raise Violation(why)
if opentype == ("copyable",):
# TODO: this is silly, of course (should pre-compute maxlen)
maxlen = reduce(max,
[len(cname) \
for cname in copyable.CopyableRegistry.keys()]
)
if size > maxlen:
why = "copyable-classname token is too long, %d>%d" % \
(size, maxlen)
raise Violation(why)
elif typebyte == tokens.VOCAB:
return
else:
# TODO: hack for testing
raise Violation("index token 0x%02x not STRING or VOCAB" % \
ord(typebyte))
raise BananaError("index token 0x%02x not STRING or VOCAB" % \
ord(typebyte))
def open(self, opentype):
# used for lower-level objects, delegated up from childunslicer.open
child = RootUnslicer.open(self, opentype)
if child:
child.broker = self.broker
return child
def doOpen(self, opentype):
child = RootUnslicer.doOpen(self, opentype)
if child:
child.broker = self.broker
return child
def reportViolation(self, f):
if self.logViolations:
print "hey, something failed:", f
return None # absorb the failure
def receiveChild(self, token, ready_deferred):
if isinstance(token, call.InboundDelivery):
self.broker.scheduleCall(token, ready_deferred)
class PBRootSlicer(RootSlicer):
slicerTable = {types.MethodType: referenceable.CallableSlicer,
types.FunctionType: referenceable.CallableSlicer,
}
def registerRefID(self, refid, obj):
# references are never Broker-scoped: they're always scoped more
# narrowly, by the CallSlicer or the AnswerSlicer.
assert 0
class RIBroker(remoteinterface.RemoteInterface):
def getReferenceByName(name=str):
"""If I have published an object by that name, return a reference to
it."""
# return Remote(interface=any)
return Any()
def decref(clid=int, count=int):
"""Release some references to my-reference 'clid'. I will return an
ack when the operation has completed."""
return None
def decgift(giftID=int, count=int):
"""Release some reference to a their-reference 'giftID' that was
sent earlier."""
return None
class Broker(banana.Banana, referenceable.Referenceable):
"""I manage a connection to a remote Broker.
@ivar tub: the L{Tub} which contains us
@ivar yourReferenceByCLID: maps your CLID to a RemoteReferenceData
#@ivar yourReferenceByName: maps a per-Tub name to a RemoteReferenceData
@ivar yourReferenceByURL: maps a global URL to a RemoteReferenceData
"""
implements(RIBroker, IBroker)
slicerClass = PBRootSlicer
unslicerClass = PBRootUnslicer
unsafeTracebacks = True
requireSchema = False
disconnected = False
factory = None
tub = None
remote_broker = None
startingTLS = False
startedTLS = False
use_remote_broker = True
def __init__(self, remote_tubref, params={},
keepaliveTimeout=None, disconnectTimeout=None,
connectionInfo=None):
banana.Banana.__init__(self, params)
self._expose_remote_exception_types = True
self.remote_tubref = remote_tubref
self.keepaliveTimeout = keepaliveTimeout
self.disconnectTimeout = disconnectTimeout
self._banana_decision_version = params.get("banana-decision-version")
vocab_table_index = params.get('initial-vocab-table-index')
if vocab_table_index:
table = vocab.INITIAL_VOCAB_TABLES[vocab_table_index]
self.populateVocabTable(table)
self.initBroker()
self.current_slave_IR = params.get('current-slave-IR')
self.current_seqnum = params.get('current-seqnum')
self.creation_timestamp = time.time()
self._connectionInfo = connectionInfo
def initBroker(self):
# tracking Referenceables
# sending side uses these
self.nextCLID = count(1).next # 0 is for the broker
self.myReferenceByPUID = {} # maps ref.processUniqueID to a tracker
self.myReferenceByCLID = {} # maps CLID to a tracker
# receiving side uses these
self.yourReferenceByCLID = {}
self.yourReferenceByURL = {}
# tracking Gifts
self.nextGiftID = count(1).next
self.myGifts = {} # maps (broker,clid) to (rref, giftID, count)
self.myGiftsByGiftID = {} # maps giftID to (broker,clid)
# remote calls
# sending side uses these
self.nextReqID = count(1).next # 0 means "we don't want a response"
self.waitingForAnswers = {} # we wait for the other side to answer
self.disconnectWatchers = []
# Callables waiting to hear about connectionLost.
self._connectionLostWatchers = []
# receiving side uses these
self.inboundDeliveryQueue = []
self._waiting_for_call_to_be_ready = False
self.activeLocalCalls = {} # the other side wants an answer from us
def setTub(self, tub):
assert ipb.ITub.providedBy(tub)
self.tub = tub
self.unsafeTracebacks = tub.unsafeTracebacks
self._expose_remote_exception_types = tub._expose_remote_exception_types
if tub.debugBanana:
self.debugSend = True
self.debugReceive = True
def connectionMade(self):
banana.Banana.connectionMade(self)
self.rootSlicer.broker = self
self.rootUnslicer.broker = self
if self.use_remote_broker:
self._create_remote_broker()
def _create_remote_broker(self):
# create the remote_broker object. We don't use the usual
# reference-counting mechanism here, because this is a synthetic
# object that lives forever.
tracker = referenceable.RemoteReferenceTracker(self, 0, None,
"RIBroker")
self.remote_broker = referenceable.RemoteReference(tracker)
# connectionTimedOut is called in response to the Banana layer detecting
# the lack of connection activity
def connectionTimedOut(self):
err = error.ConnectionLost("banana timeout: connection dropped")
why = failure.Failure(err)
self.shutdown(why)
def shutdown(self, why, fireDisconnectWatchers=True):
"""Stop using this connection. If fireDisconnectWatchers is False,
all disconnect watchers are removed before shutdown, so they will not
be called (this is appropriate when the Broker is shutting down
because the whole Tub is being shut down). We terminate the
connection quickly, rather than waiting for the transmit queue to
drain.
"""
assert isinstance(why, failure.Failure)
if not fireDisconnectWatchers:
self.disconnectWatchers = []
self.finish(why)
# loseConnection eventually provokes connectionLost()
self.transport.loseConnection()
def connectionLost(self, why):
tubid = "?"
if self.remote_tubref:
tubid = self.remote_tubref.getShortTubID()
log.msg("connection to %s lost" % tubid, facility="foolscap.connection")
banana.Banana.connectionLost(self, why)
self.finish(why)
self._notifyConnectionLostWatchers()
def _notifyConnectionLostWatchers(self):
"""
Call all functions waiting to learn about the loss of the connection of
this broker.
"""
watchers = self._connectionLostWatchers
self._connectionLostWatchers = None
for w in watchers:
eventually(w)
def finish(self, why):
if self.disconnected:
return
assert isinstance(why, failure.Failure), why
self.disconnected = True
self.remote_broker = None
self.abandonAllRequests(why)
# TODO: why reset all the tables to something useable? There may be
# outstanding RemoteReferences that point to us, but I don't see why
# that requires all these empty dictionaries.
self.myReferenceByPUID = {}
self.myReferenceByCLID = {}
self.yourReferenceByCLID = {}
self.yourReferenceByURL = {}
self.myGifts = {}
self.myGiftsByGiftID = {}
for (cb,args,kwargs) in self.disconnectWatchers:
eventually(cb, *args, **kwargs)
self.disconnectWatchers = []
if self.tub:
# TODO: remove the conditional. It is only here to accomodate
# some tests: test_pb.TestCall.testDisconnect[123]
self.tub.brokerDetached(self, why)
def _notifyOnConnectionLost(self, callback):
"""
Arrange to have C{callback} called when this broker loses its connection.
"""
self._connectionLostWatchers.append(callback)
def notifyOnDisconnect(self, callback, *args, **kwargs):
marker = (callback, args, kwargs)
if self.disconnected:
eventually(callback, *args, **kwargs)
else:
self.disconnectWatchers.append(marker)
return marker
def dontNotifyOnDisconnect(self, marker):
if self.disconnected:
return
# be tolerant of attempts to unregister a callback that has already
# fired. I think it is hard to write safe code without this
# tolerance.
# TODO: on the other hand, I'm not sure this is the best policy,
# since you lose the feedback that tells you about
# unregistering-the-wrong-thing bugs. We need to look at the way that
# register/unregister gets used and see if there is a way to retain
# the typechecking that results from insisting that you can only
# remove something that was stil in the list.
if marker in self.disconnectWatchers:
self.disconnectWatchers.remove(marker)
def getConnectionInfo(self):
return self._connectionInfo
# methods to send my Referenceables to the other side
def getTrackerForMyReference(self, puid, obj):
tracker = self.myReferenceByPUID.get(puid)
if not tracker:
# need to add one
clid = self.nextCLID()
tracker = referenceable.ReferenceableTracker(self.tub,
obj, puid, clid)
self.myReferenceByPUID[puid] = tracker
self.myReferenceByCLID[clid] = tracker
return tracker
def getTrackerForMyCall(self, puid, obj):
# just like getTrackerForMyReference, but with a negative clid
tracker = self.myReferenceByPUID.get(puid)
if not tracker:
# need to add one
clid = self.nextCLID()
clid = -clid
tracker = referenceable.ReferenceableTracker(self.tub,
obj, puid, clid)
self.myReferenceByPUID[puid] = tracker
self.myReferenceByCLID[clid] = tracker
return tracker
# methods to handle inbound 'my-reference' sequences
def getTrackerForYourReference(self, clid, interfaceName=None, url=None):
"""The far end holds a Referenceable and has just sent us a reference
to it (expressed as a small integer). If this is a new reference,
they will give us an interface name too, and possibly a global URL
for it. Obtain a RemoteReference object (creating it if necessary) to
give to the local recipient.
The sender remembers that we hold a reference to their object. When
our RemoteReference goes away, we send a decref message to them, so
they can possibly free their object. """
assert type(interfaceName) is str or interfaceName is None
if url is not None:
assert type(url) is str
tracker = self.yourReferenceByCLID.get(clid)
if not tracker:
# TODO: translate interfaceNames to RemoteInterfaces
if clid >= 0:
trackerclass = referenceable.RemoteReferenceTracker
else:
trackerclass = referenceable.RemoteMethodReferenceTracker
tracker = trackerclass(self, clid, url, interfaceName)
self.yourReferenceByCLID[clid] = tracker
if url:
self.yourReferenceByURL[url] = tracker
return tracker
def freeYourReference(self, tracker, count):
# this is called when the RemoteReference is deleted
if not self.remote_broker: # tests do not set this up
self.freeYourReferenceTracker(None, tracker)
return
try:
rb = self.remote_broker
# TODO: do we want callRemoteOnly here? is there a way we can
# avoid wanting to know when the decref has completed? Only if we
# send the interface list and URL on every occurrence of the
# my-reference sequence. Either A) we use callRemote("decref")
# and wait until the ack to free the tracker, or B) we use
# callRemoteOnly("decref") and free the tracker right away. In
# case B, the far end has no way to know that we've just freed
# the tracker and will therefore forget about everything they
# told us (including the interface list), so they cannot
# accurately do anything special on the "first" send of this
# reference. Which means that if we do B, we must either send
# that extra information on every my-reference sequence, or do
# without it, or make it optional, or retrieve it separately, or
# something.
# rb.callRemoteOnly("decref", clid=tracker.clid, count=count)
# self.freeYourReferenceTracker('bogus', tracker)
# return
d = rb.callRemote("decref", clid=tracker.clid, count=count)
# if the connection was lost before we can get an ack, we're
# tearing this down anyway
def _ignore_loss(f):
f.trap(DeadReferenceError, *LOST_CONNECTION_ERRORS)
return None
d.addErrback(_ignore_loss)
# once the ack comes back, or if we know we'll never get one,
# release the tracker
d.addCallback(self.freeYourReferenceTracker, tracker)
except:
f = failure.Failure()
log.msg("failure during freeRemoteReference", facility="foolscap",
level=log.UNUSUAL, failure=f)
def freeYourReferenceTracker(self, res, tracker):
if tracker.received_count != 0:
return
if self.yourReferenceByCLID.has_key(tracker.clid):
del self.yourReferenceByCLID[tracker.clid]
if tracker.url and self.yourReferenceByURL.has_key(tracker.url):
del self.yourReferenceByURL[tracker.url]
# methods to handle inbound 'your-reference' sequences
def getMyReferenceByCLID(self, clid):
"""clid is the connection-local ID of the Referenceable the other
end is trying to invoke or point to. If it is a number, they want an
implicitly-created per-connection object that we sent to them at
some point in the past. If it is a string, they want an object that
was registered with our Factory.
"""
assert isinstance(clid, (int, long))
if clid == 0:
return self
return self.myReferenceByCLID[clid].obj
# obj = IReferenceable(obj)
# assert isinstance(obj, pb.Referenceable)
# obj needs .getMethodSchema, which needs .getArgConstraint
def remote_decref(self, clid, count):
# invoked when the other side sends us a decref message
assert isinstance(clid, (int, long))
assert clid != 0
tracker = self.myReferenceByCLID.get(clid, None)
if not tracker:
return # already gone, probably because we're shutting down
done = tracker.decref(count)
if done:
del self.myReferenceByPUID[tracker.puid]
del self.myReferenceByCLID[clid]
# methods to send RemoteReference 'gifts' to third-parties
def makeGift(self, rref):
# return the giftid
broker, clid = rref.tracker.broker, rref.tracker.clid
i = (broker, clid)
old = self.myGifts.get(i)
if old:
rref, giftID, count = old
self.myGifts[i] = (rref, giftID, count+1)
else:
giftID = self.nextGiftID()
self.myGiftsByGiftID[giftID] = i
self.myGifts[i] = (rref, giftID, 1)
return giftID
def remote_decgift(self, giftID, count):
broker, clid = self.myGiftsByGiftID[giftID]
rref, giftID, gift_count = self.myGifts[(broker, clid)]
gift_count -= count
if gift_count == 0:
del self.myGiftsByGiftID[giftID]
del self.myGifts[(broker, clid)]
else:
self.myGifts[(broker, clid)] = (rref, giftID, gift_count)
# methods to deal with URLs
def getYourReferenceByName(self, name):
d = self.remote_broker.callRemote("getReferenceByName", name=name)
return d
def remote_getReferenceByName(self, name):
return self.tub.getReferenceForName(name)
# remote-method-invocation methods, calling side, invoked by
# RemoteReference.callRemote and CallSlicer
def newRequestID(self):
if self.disconnected:
raise DeadReferenceError("Calling Stale Broker")
return self.nextReqID()
def addRequest(self, req):
req.broker = self
self.waitingForAnswers[req.reqID] = req
def removeRequest(self, req):
del self.waitingForAnswers[req.reqID]
def getRequest(self, reqID):
# invoked by AnswerUnslicer and ErrorUnslicer
try:
return self.waitingForAnswers[reqID]
except KeyError:
raise Violation("non-existent reqID '%d'" % reqID)
def abandonAllRequests(self, why):
for req in self.waitingForAnswers.values():
if why.check(*LOST_CONNECTION_ERRORS):
# map all connection-lost errors to DeadReferenceError, so
# application code only needs to check for one exception type
tubid = None
# since we're creating a new exception object for each call,
# let's add more information to it
if self.remote_tubref:
tubid = self.remote_tubref.getShortTubID()
e = DeadReferenceError("Connection was lost", tubid, req)
why = failure.Failure(e)
eventually(req.fail, why)
# target-side, invoked by CallUnslicer
def getRemoteInterfaceByName(self, riname):
# this lives in the broker because it ought to be per-connection
return remoteinterface.RemoteInterfaceRegistry[riname]
def getSchemaForMethod(self, rifaces, methodname):
# this lives in the Broker so it can override the resolution order,
# not that overlapping RemoteInterfaces should be allowed to happen
# all that often
for ri in rifaces:
m = ri.get(methodname)
if m:
return m
return None
def scheduleCall(self, delivery, ready_deferred):
self.inboundDeliveryQueue.append( (delivery,ready_deferred) )
eventually(self.doNextCall)
def doNextCall(self):
if self.disconnected:
return
if self._waiting_for_call_to_be_ready:
return
if not self.inboundDeliveryQueue:
return
delivery, ready_deferred = self.inboundDeliveryQueue.pop(0)
self._waiting_for_call_to_be_ready = True
if not ready_deferred:
ready_deferred = defer.succeed(None)
d = ready_deferred
def _ready(res):
self._waiting_for_call_to_be_ready = False
eventually(self.doNextCall)
return res
d.addBoth(_ready)
# at this point, the Deferred chain for this one delivery runs
# independently of any other, and methods which take a long time to
# complete will not hold up other methods. We must call _doCall and
# let the remote_ method get control before we process any other
# message, but the eventually() above insures we'll have a chance to
# do that before we give up control.
d.addCallback(lambda res: self._doCall(delivery))
d.addCallback(self._callFinished, delivery)
d.addErrback(self.callFailed, delivery.reqID, delivery)
d.addErrback(log.err)
return None
def _doCall(self, delivery):
# our ordering rules require that the order in which each
# remote_foo() method gets control is exactly the same as the order
# in which the original caller invoked callRemote(). To insure this,
# _startCall() is not allowed to insert additional delays before it
# runs doRemoteCall() on the target object.
obj = delivery.obj
args = delivery.allargs.args
kwargs = delivery.allargs.kwargs
for i in args + kwargs.values():
assert not isinstance(i, defer.Deferred)
if delivery.methodSchema:
# we asked about each argument on the way in, but ask again so
# they can look for missing arguments. TODO: see if we can remove
# the redundant per-argument checks.
delivery.methodSchema.checkAllArgs(args, kwargs, True)
# interesting case: if the method completes successfully, but
# our schema prohibits us from sending the result (perhaps the
# method returned an int but the schema insists upon a string).
# TODO: move the return-value schema check into
# Referenceable.doRemoteCall, so the exception's traceback will be
# attached to the object that caused it
if delivery.methodname is None:
assert callable(obj)
return obj(*args, **kwargs)
else:
obj = ipb.IRemotelyCallable(obj)
return obj.doRemoteCall(delivery.methodname, args, kwargs)
def _callFinished(self, res, delivery):
reqID = delivery.reqID
if reqID == 0:
return
methodSchema = delivery.methodSchema
assert self.activeLocalCalls[reqID]
methodName = None
if methodSchema:
methodName = methodSchema.name
try:
methodSchema.checkResults(res, False) # may raise Violation
except Violation, v:
v.prependLocation("in return value of %s.%s" %
(delivery.obj, methodSchema.name))
raise
answer = call.AnswerSlicer(reqID, res, methodName)
# once the answer has started transmitting, any exceptions must be
# logged and dropped, and not turned into an Error to be sent.
try:
self.send(answer)
# TODO: .send should return a Deferred that fires when the last
# byte has been queued, and we should delete the local note then
except:
f = failure.Failure()
log.msg("Broker._callfinished unable to send",
facility="foolscap", level=log.UNUSUAL, failure=f)
del self.activeLocalCalls[reqID]
def callFailed(self, f, reqID, delivery=None):
# this may be called either when an inbound schema is violated, or
# when the method is run and raises an exception. If a Violation is
# raised after we receive the reqID but before we've actually invoked
# the method, we are called by CallUnslicer.reportViolation and don't
# get a delivery= argument.
if delivery:
if (self.tub and self.tub.logLocalFailures) or not self.tub:
# the 'not self.tub' case is for unit tests
delivery.logFailure(f)
if reqID != 0:
assert self.activeLocalCalls[reqID]
self.send(call.ErrorSlicer(reqID, f))
del self.activeLocalCalls[reqID]
class StorageBrokerRootSlicer(ScopedRootSlicer):
# each StorageBroker is a single serialization domain, so we inherit from
# ScopedRootSlicer
slicerTable = {types.MethodType: referenceable.CallableSlicer,
types.FunctionType: referenceable.CallableSlicer,
}
PBStorageOpenRegistry = {
('their-reference',): referenceable.TheirReferenceUnslicer,
}
class StorageBrokerRootUnslicer(PBRootUnslicer):
# we want all the behavior of PBRootUnslicer, plus the scopedness of a
# ScopedRootUnslicer. TODO: find some way to refactor all of this,
# probably by making the scopedness a mixin.
openRegistries = [slicer.UnslicerRegistry, PBStorageOpenRegistry]
topRegistries = openRegistries
def __init__(self, protocol):
PBRootUnslicer.__init__(self, protocol)
self.references = {}
def setObject(self, counter, obj):
self.references[counter] = obj
def getObject(self, counter):
obj = self.references.get(counter)
return obj
def receiveChild(self, obj, ready_deferred):
self.protocol.receiveChild(obj, ready_deferred)
def reportViolation(self, why):
# unlike PBRootUnslicer, we do *not* absorb the failure. Any error
# during deserialization is fatal to the process. We give it to the
# StorageBroker, which will eventually fire the unserialization
# Deferred.
self.protocol.reportViolation(why)
class StorageBroker(Broker):
# like Broker, but used to serialize data for storage rather than for
# transmission over a specific connection.
slicerClass = StorageBrokerRootSlicer
unslicerClass = StorageBrokerRootUnslicer
object = None
violation = None
disconnectReason = None
use_remote_broker = False
def prepare(self):
self.d = defer.Deferred()
return self.d
def receiveChild(self, obj, ready_deferred):
if ready_deferred:
ready_deferred.addBoth(self.d.callback)
self.d.addCallback(lambda res: obj)
else:
self.d.callback(obj)
del self.d
def reportViolation(self, why):
self.violation = why
eventually(self.d.callback, None)
return None
def reportReceiveError(self, f):
self.disconnectReason = f
f.raiseException()
# this loopback stuff is based upon twisted.protocols.loopback, except that
# we use it for real, not just for testing. The IConsumer stuff hasn't been
# tested at all.
class LoopbackAddress(object):
implements(twinterfaces.IAddress)
class LoopbackTransport(object):
# we always create these in pairs, with .peer pointing at each other
implements(twinterfaces.ITransport, twinterfaces.IConsumer)
producer = None
def __init__(self):
self.connected = True
def setPeer(self, peer):
self.peer = peer
def write(self, bytes):
eventually(self.peer.dataReceived, bytes)
def writeSequence(self, iovec):
self.write(''.join(iovec))
def dataReceived(self, data):
if self.connected:
self.protocol.dataReceived(data)
def loseConnection(self, _connDone=connectionDone):
if not self.connected:
return
self.connected = False
eventually(self.peer.connectionLost, _connDone)
eventually(self.protocol.connectionLost, _connDone)
def connectionLost(self, reason):
if not self.connected:
return
self.connected = False
self.protocol.connectionLost(reason)
def getPeer(self):
return LoopbackAddress()
def getHost(self):
return LoopbackAddress()
# IConsumer
def registerProducer(self, producer, streaming):
assert self.producer is None
self.producer = producer
self.streamingProducer = streaming
self._pollProducer()
def unregisterProducer(self):
assert self.producer is not None
self.producer = None
def _pollProducer(self):
if self.producer is not None and not self.streamingProducer:
self.producer.resumeProducing()
|