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 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
|
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
import errno
import logging
import socket
import time
import weakref
from ._condition import Condition
from ._delivery import Delivery
from ._endpoints import Endpoint
from ._events import Event, Handler, _dispatch
from ._exceptions import ProtonException
from ._io import IO
from ._message import Message
from ._selectable import Selectable
from ._transport import Transport
from ._url import Url
from typing import Any, List, Optional, Tuple, Union, TYPE_CHECKING, TypeVar
if TYPE_CHECKING:
from ._delivery import DispositionType
from ._reactor import Container, Transaction
from ._endpoints import Sender, Receiver
log = logging.getLogger("proton")
class OutgoingMessageHandler(Handler):
"""
A utility for simpler and more intuitive handling of delivery
events related to outgoing i.e. sent messages.
:param auto_settle: If ``True`` (default), automatically settle messages
upon receiving a settled disposition for that delivery. Otherwise
messages must be explicitly settled.
:type auto_settle: ``bool``
:param delegate: A client handler for the endpoint event
"""
def __init__(self, auto_settle=True, delegate=None):
self.auto_settle = auto_settle
self.delegate = delegate
def on_link_flow(self, event: Event):
if event.link.is_sender and event.link.credit \
and event.link.state & Endpoint.LOCAL_ACTIVE \
and event.link.state & Endpoint.REMOTE_ACTIVE:
self.on_sendable(event)
def on_delivery(self, event: Event):
dlv = event.delivery
if dlv.link.is_sender and dlv.updated:
if dlv.remote_state == Delivery.ACCEPTED:
self.on_accepted(event)
elif dlv.remote_state == Delivery.REJECTED:
self.on_rejected(event)
elif dlv.remote_state == Delivery.RELEASED or dlv.remote_state == Delivery.MODIFIED:
self.on_released(event)
if dlv.settled:
self.on_settled(event)
if self.auto_settle:
dlv.settle()
def on_sendable(self, event: Event):
"""
Called when the sender link has credit and messages can
therefore be transferred.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_sendable', event)
def on_accepted(self, event: Event):
"""
Called when the remote peer accepts an outgoing message.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_accepted', event)
def on_rejected(self, event: Event):
"""
Called when the remote peer rejects an outgoing message.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_rejected', event)
def on_released(self, event: Event):
"""
Called when the remote peer releases an outgoing message. Note
that this may be in response to either the ``RELEASE`` or ``MODIFIED``
state as defined by the AMQP specification.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_released', event)
def on_settled(self, event: Event):
"""
Called when the remote peer has settled the outgoing
message. This is the point at which it should never be
retransmitted.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_settled', event)
def recv_msg(delivery: Delivery) -> Message:
msg = Message()
msg.decode(delivery.link.recv(delivery.pending))
delivery.link.advance()
return msg
class Reject(ProtonException):
"""
An exception that indicates a message should be rejected.
"""
pass
class Release(ProtonException):
"""
An exception that indicates a message should be released.
"""
pass
class Acking(object):
"""
A class containing methods for handling received messages.
"""
def accept(self, delivery: Delivery) -> None:
"""
Accepts a received message.
.. note:: This method cannot currently be used in combination
with transactions. See :class:`proton.reactor.Transaction`
for transactional methods.
:param delivery: The message delivery tracking object
"""
self.settle(delivery, Delivery.ACCEPTED)
def reject(self, delivery: Delivery) -> None:
"""
Rejects a received message that is considered invalid or
unprocessable.
.. note:: This method cannot currently be used in combination
with transactions. See :class:`proton.reactor.Transaction`
for transactional methods.
:param delivery: The message delivery tracking object
"""
self.settle(delivery, Delivery.REJECTED)
def release(self, delivery: Delivery, delivered: bool = True) -> None:
"""
Releases a received message, making it available at the source
for any (other) interested receiver. The ``delivered``
parameter indicates whether this should be considered a
delivery attempt (and the delivery count updated) or not.
.. note:: This method cannot currently be used in combination
with transactions. See :class:`proton.reactor.Transaction`
for transactional methods.
:param delivery: The message delivery tracking object
:param delivered: If ``True``, the message will be annotated
with a delivery attempt (setting delivery flag
:const:`proton.Delivery.MODIFIED`). Otherwise, the message
will be returned without the annotation and released (setting
delivery flag :const:`proton.Delivery.RELEASED`
"""
if delivered:
self.settle(delivery, Delivery.MODIFIED)
else:
self.settle(delivery, Delivery.RELEASED)
def settle(self, delivery: Delivery, state: Optional['DispositionType'] = None) -> None:
"""
Settles the message delivery, and optionally updating the
delivery state.
:param delivery: The message delivery tracking object
:param state: The delivery state, or ``None`` if no update
is to be performed.
"""
if state:
delivery.update(state)
delivery.settle()
class IncomingMessageHandler(Handler, Acking):
"""
A utility for simpler and more intuitive handling of delivery
events related to incoming i.e. received messages.
:param auto_accept: If ``True``, accept all messages (default). Otherwise
messages must be individually accepted or rejected.
:param delegate: A client handler for the endpoint event
"""
def __init__(self, auto_accept: bool = True, delegate: Optional[Handler] = None) -> None:
self.delegate = delegate
self.auto_accept = auto_accept
def on_delivery(self, event: Event) -> None:
dlv = event.delivery
if not dlv.link.is_receiver:
return
if dlv.aborted:
self.on_aborted(event)
dlv.settle()
elif dlv.readable and not dlv.partial:
event.message = recv_msg(dlv)
if event.link.state & Endpoint.LOCAL_CLOSED:
if self.auto_accept:
dlv.update(Delivery.RELEASED)
dlv.settle()
else:
try:
self.on_message(event)
if self.auto_accept:
dlv.update(Delivery.ACCEPTED)
dlv.settle()
except Reject:
dlv.update(Delivery.REJECTED)
dlv.settle()
except Release:
dlv.update(Delivery.MODIFIED)
dlv.settle()
elif dlv.updated and dlv.settled:
self.on_settled(event)
def on_message(self, event: Event):
"""
Called when a message is received. The message itself can be
obtained as a property on the event. For the purpose of
referring to this message in further actions (e.g. if
explicitly accepting it, the ``delivery`` should be used, also
obtainable via a property on the event.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_message', event)
def on_settled(self, event: Event):
"""
Callback for when a message delivery is settled by the remote peer.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_settled', event)
def on_aborted(self, event: Event):
"""
Callback for when a message delivery is aborted by the remote peer.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_aborted', event)
class EndpointStateHandler(Handler):
"""
A utility that exposes 'endpoint' events - ie the open/close for
links, sessions and connections in a more intuitive manner. A
``XXX_opened()`` method will be called when both local and remote peers
have opened the link, session or connection. This can be used to
confirm a locally initiated action for example. A ``XXX_opening()``
method will be called when the remote peer has requested an open
that was not initiated locally. By default this will simply open
locally, which then triggers the ``XXX_opened()`` call. The same applies
to close.
:param peer_close_is_error: If ``True``, a peer endpoint closing will be
treated as an error with an error callback. Otherwise (default), the
normal callbacks for the closing will occur.
:param delegate: A client handler for the endpoint event
"""
def __init__(self, peer_close_is_error: bool = False, delegate: Optional[Handler] = None) -> None:
self.delegate = delegate
self.peer_close_is_error = peer_close_is_error
@classmethod
def is_local_open(cls, endpoint: Endpoint) -> bool:
"""
Test if local ``endpoint`` is open (ie has state
:const:`proton.Endpoint.LOCAL_ACTIVE`).
:param endpoint: The local endpoint to be tested.
:return: ``True`` if local endpoint is in state
:const:`proton.Endpoint.LOCAL_ACTIVE`, ``False`` otherwise.
"""
return bool(endpoint.state & Endpoint.LOCAL_ACTIVE)
@classmethod
def is_local_uninitialised(cls, endpoint: Endpoint) -> bool:
"""
Test if local ``endpoint`` is uninitialised (ie has state
:const:`proton.Endpoint.LOCAL_UNINIT`).
:param endpoint: The local endpoint to be tested.
:return: ``True`` if local endpoint is in state
:const:`proton.Endpoint.LOCAL_UNINIT`, ``False`` otherwise.
"""
return bool(endpoint.state & Endpoint.LOCAL_UNINIT)
@classmethod
def is_local_closed(cls, endpoint: Endpoint) -> bool:
"""
Test if local ``endpoint`` is closed (ie has state
:const:`proton.Endpoint.LOCAL_CLOSED`).
:param endpoint: The local endpoint to be tested.
:return: ``True`` if local endpoint is in state
:const:`proton.Endpoint.LOCAL_CLOSED`, ``False`` otherwise.
"""
return bool(endpoint.state & Endpoint.LOCAL_CLOSED)
@classmethod
def is_remote_open(cls, endpoint: Endpoint) -> bool:
"""
Test if remote ``endpoint`` is open (ie has state
:const:`proton.Endpoint.LOCAL_ACTIVE`).
:param endpoint: The remote endpoint to be tested.
:return: ``True`` if remote endpoint is in state
:const:`proton.Endpoint.LOCAL_ACTIVE`, ``False`` otherwise.
"""
return bool(endpoint.state & Endpoint.REMOTE_ACTIVE)
@classmethod
def is_remote_closed(cls, endpoint: Endpoint) -> bool:
"""
Test if remote ``endpoint`` is closed (ie has state
:const:`proton.Endpoint.REMOTE_CLOSED`).
:param endpoint: The remote endpoint to be tested.
:return: ``True`` if remote endpoint is in state
:const:`proton.Endpoint.REMOTE_CLOSED`, ``False`` otherwise.
"""
return bool(endpoint.state & Endpoint.REMOTE_CLOSED)
@classmethod
def print_error(cls, endpoint: Endpoint, endpoint_type: str) -> None:
"""
Logs an error message related to an error condition at an endpoint.
:param endpoint: The endpoint to be tested
:param endpoint_type: The endpoint type as a string to be printed
in the log message.
"""
if endpoint.remote_condition:
log.error(endpoint.remote_condition.description or endpoint.remote_condition.name)
elif cls.is_local_open(endpoint) and cls.is_remote_closed(endpoint):
log.error("%s closed by peer" % endpoint_type)
def on_link_remote_close(self, event: Event) -> None:
if event.link.remote_condition:
self.on_link_error(event)
elif self.is_local_closed(event.link):
self.on_link_closed(event)
else:
self.on_link_closing(event)
event.link.close()
def on_session_remote_close(self, event: Event) -> None:
if event.session.remote_condition:
self.on_session_error(event)
elif self.is_local_closed(event.session):
self.on_session_closed(event)
else:
self.on_session_closing(event)
event.session.close()
def on_connection_remote_close(self, event: Event) -> None:
if event.connection.remote_condition:
if event.connection.remote_condition.name == "amqp:connection:forced":
# Treat this the same as just having the transport closed by the peer without
# sending any events. Allow reconnection to happen transparently.
return
self.on_connection_error(event)
elif self.is_local_closed(event.connection):
self.on_connection_closed(event)
else:
self.on_connection_closing(event)
event.connection.close()
def on_connection_local_open(self, event: Event) -> None:
if self.is_remote_open(event.connection):
self.on_connection_opened(event)
def on_connection_remote_open(self, event: Event) -> None:
if self.is_local_open(event.connection):
self.on_connection_opened(event)
elif self.is_local_uninitialised(event.connection):
self.on_connection_opening(event)
event.connection.open()
def on_session_local_open(self, event: Event) -> None:
if self.is_remote_open(event.session):
self.on_session_opened(event)
def on_session_remote_open(self, event: Event) -> None:
if self.is_local_open(event.session):
self.on_session_opened(event)
elif self.is_local_uninitialised(event.session):
self.on_session_opening(event)
event.session.open()
def on_link_local_open(self, event: Event) -> None:
if self.is_remote_open(event.link):
self.on_link_opened(event)
def on_link_remote_open(self, event: Event) -> None:
if self.is_local_open(event.link):
self.on_link_opened(event)
elif self.is_local_uninitialised(event.link):
self.on_link_opening(event)
event.link.open()
def on_connection_opened(self, event: Event) -> None:
"""
Callback for when both the local and remote endpoints of a
connection have opened.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_connection_opened', event)
def on_session_opened(self, event: Event) -> None:
"""
Callback for when both the local and remote endpoints of a
session have opened.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_session_opened', event)
def on_link_opened(self, event: Event) -> None:
"""
Callback for when both the local and remote endpoints of a
link have opened.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_link_opened', event)
def on_connection_opening(self, event: Event) -> None:
"""
Callback for when a remote peer initiates the opening of
a connection.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_connection_opening', event)
def on_session_opening(self, event: Event) -> None:
"""
Callback for when a remote peer initiates the opening of
a session.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_session_opening', event)
def on_link_opening(self, event: Event) -> None:
"""
Callback for when a remote peer initiates the opening of
a link.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_link_opening', event)
def on_connection_error(self, event: Event) -> None:
"""
Callback for when an initiated connection open fails.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_connection_error', event)
else:
self.print_error(event.connection, "connection")
def on_session_error(self, event: Event) -> None:
"""
Callback for when an initiated session open fails.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_session_error', event)
else:
self.print_error(event.session, "session")
event.connection.close()
def on_link_error(self, event: Event) -> None:
"""
Callback for when an initiated link open fails.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_link_error', event)
else:
self.print_error(event.link, "link")
event.connection.close()
def on_connection_closed(self, event: Event) -> None:
"""
Callback for when both the local and remote endpoints of a
connection have closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_connection_closed', event)
def on_session_closed(self, event: Event) -> None:
"""
Callback for when both the local and remote endpoints of a
session have closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_session_closed', event)
def on_link_closed(self, event: Event) -> None:
"""
Callback for when both the local and remote endpoints of a
link have closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_link_closed', event)
def on_connection_closing(self, event: Event) -> None:
"""
Callback for when a remote peer initiates the closing of
a connection.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_connection_closing', event)
elif self.peer_close_is_error:
self.on_connection_error(event)
def on_session_closing(self, event: Event) -> None:
"""
Callback for when a remote peer initiates the closing of
a session.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_session_closing', event)
elif self.peer_close_is_error:
self.on_session_error(event)
def on_link_closing(self, event: Event) -> None:
"""
Callback for when a remote peer initiates the closing of
a link.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None:
_dispatch(self.delegate, 'on_link_closing', event)
elif self.peer_close_is_error:
self.on_link_error(event)
def on_transport_tail_closed(self, event: Event) -> None:
"""
Callback for when the transport tail has closed (ie no further input will
be accepted by the transport).
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
self.on_transport_closed(event)
def on_transport_closed(self, event: Event) -> None:
"""
Callback for when the transport has closed - ie both the head (input) and
tail (output) of the transport pipeline are closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if self.delegate is not None and event.connection and self.is_local_open(event.connection):
_dispatch(self.delegate, 'on_disconnected', event)
class MessagingHandler(Handler, Acking):
"""
A general purpose handler that makes the proton-c events somewhat
simpler to deal with and/or avoids repetitive tasks for common use
cases.
:param prefetch: Initial flow credit for receiving messages, defaults to 10.
:param auto_accept: If ``True``, accept all messages (default). Otherwise
messages must be individually accepted or rejected.
:param auto_settle: If ``True`` (default), automatically settle messages
upon receiving a settled disposition for that delivery. Otherwise
messages must be explicitly settled.
:param peer_close_is_error: If ``True``, a peer endpoint closing will be
treated as an error with an error callback. Otherwise (default), the
normal callbacks for the closing will occur.
"""
def __init__(
self,
prefetch: int = 10,
auto_accept: bool = True,
auto_settle: bool = True,
peer_close_is_error: bool = False
) -> None:
self.handlers = []
if prefetch:
self.handlers.append(FlowController(prefetch))
self.handlers.append(EndpointStateHandler(peer_close_is_error, weakref.proxy(self)))
self.handlers.append(IncomingMessageHandler(auto_accept, weakref.proxy(self)))
self.handlers.append(OutgoingMessageHandler(auto_settle, weakref.proxy(self)))
self.fatal_conditions = ["amqp:unauthorized-access"]
def on_transport_error(self, event: Event) -> None:
"""
Called when some error is encountered with the transport over
which the AMQP connection is to be established. This includes
authentication errors as well as socket errors.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if event.transport.condition:
if event.transport.condition.info:
log.error("%s: %s: %s" % (
event.transport.condition.name, event.transport.condition.description,
event.transport.condition.info))
else:
log.error("%s: %s" % (event.transport.condition.name, event.transport.condition.description))
if event.transport.condition.name in self.fatal_conditions:
event.connection.close()
else:
logging.error("Unspecified transport error")
def on_connection_error(self, event: Event) -> None:
"""
Called when the peer closes the connection with an error condition.
:param event: The underlying event object. Use this to obtain further
information on the event.
:type event: :class:`proton.Event`
"""
EndpointStateHandler.print_error(event.connection, "connection")
def on_session_error(self, event: Event) -> None:
"""
Called when the peer closes the session with an error condition.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
EndpointStateHandler.print_error(event.session, "session")
event.connection.close()
def on_link_error(self, event: Event) -> None:
"""
Called when the peer closes the link with an error condition.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
EndpointStateHandler.print_error(event.link, "link")
event.connection.close()
def on_reactor_init(self, event: Event) -> None:
"""
Called when the event loop - the reactor - starts.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
if hasattr(event.reactor, 'subclass'):
setattr(event, event.reactor.subclass.__name__.lower(), event.reactor)
self.on_start(event)
def on_start(self, event: Event) -> None:
"""
Called when the event loop starts. (Just an alias for on_reactor_init)
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_connection_closed(self, event: Event) -> None:
"""
Called when the connection is closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_session_closed(self, event: Event) -> None:
"""
Called when the session is closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_link_closed(self, event: Event) -> None:
"""
Called when the link is closed.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_connection_closing(self, event: Event) -> None:
"""
Called when the peer initiates the closing of the connection.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_session_closing(self, event: Event) -> None:
"""
Called when the peer initiates the closing of the session.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_link_closing(self, event: Event) -> None:
"""
Called when the peer initiates the closing of the link.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_disconnected(self, event: Event) -> None:
"""
Called when the socket is disconnected.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_sendable(self, event: Event) -> None:
"""
Called when the sender link has credit and messages can
therefore be transferred.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_accepted(self, event: Event) -> None:
"""
Called when the remote peer accepts an outgoing message.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_rejected(self, event: Event) -> None:
"""
Called when the remote peer rejects an outgoing message.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_released(self, event: Event) -> None:
"""
Called when the remote peer releases an outgoing message. Note
that this may be in response to either the RELEASE or MODIFIED
state as defined by the AMQP specification.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_settled(self, event: Event) -> None:
"""
Called when the remote peer has settled the outgoing
message. This is the point at which it should never be
retransmitted.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_message(self, event: Event) -> None:
"""
Called when a message is received. The message itself can be
obtained as a property on the event. For the purpose of
referring to this message in further actions (e.g. if
explicitly accepting it, the ``delivery`` should be used, also
obtainable via a property on the event.
:param event: The underlying event object. Use this to obtain further
information on the event. In particular, the message itself may
be obtained by accessing ``event.message``.
"""
pass
class TransactionHandler(object):
"""
The interface for transaction handlers - ie objects that want to
be notified of state changes related to a transaction.
"""
def on_transaction_declared(self, event: Event) -> None:
"""
Called when a local transaction is declared.
:param event: The underlying event object. Use this to obtain further
information on the event. In particular, the :class:`proton.reactor.Transaction`
object may be obtained by accessing ``event.transaction``.
"""
pass
def on_transaction_committed(self, event: Event) -> None:
"""
Called when a local transaction is discharged successfully
(committed).
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_transaction_aborted(self, event: Event) -> None:
"""
Called when a local transaction is discharged unsuccessfully
(aborted).
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_transaction_declare_failed(self, event: Event) -> None:
"""
Called when a local transaction declare fails.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
def on_transaction_commit_failed(self, event: Event) -> None:
"""
Called when the commit of a local transaction fails.
:param event: The underlying event object. Use this to obtain further
information on the event.
"""
pass
class TransactionalClientHandler(MessagingHandler, TransactionHandler):
"""
An extension to the MessagingHandler for applications using
transactions. This handler provides all of the callbacks found
in :class:`MessagingHandler` and :class:`TransactionHandler`,
and provides a convenience method :meth:`accept` for performing
a transactional acceptance of received messages.
:param prefetch: Initial flow credit for receiving messages, defaults to 10.
:param auto_accept: If ``True``, accept all messages (default). Otherwise
messages must be individually accepted or rejected.
:param auto_settle: If ``True`` (default), automatically settle messages
upon receiving a settled disposition for that delivery. Otherwise
messages must be explicitly settled.
:param peer_close_is_error: If ``True``, a peer endpoint closing will be
treated as an error with an error callback. Otherwise (default), the
normal callbacks for the closing will occur.
"""
def __init__(
self,
prefetch: int = 10,
auto_accept: bool = False,
auto_settle: bool = True,
peer_close_is_error: bool = False
) -> None:
super(TransactionalClientHandler, self).__init__(prefetch, auto_accept, auto_settle, peer_close_is_error)
def accept(self, delivery: Delivery, transaction: Optional['Transaction'] = None):
"""
A convenience method for accepting a received message as part of a
transaction. If no transaction object is supplied, a regular
non-transactional acceptance will be performed.
:param delivery: Delivery tracking object for received message.
:param transaction: Transaction tracking object which is required if
the message is being accepted under the transaction. If ``None`` (default),
then a normal non-transactional accept occurs.
"""
if transaction:
transaction.accept(delivery)
else:
super(TransactionalClientHandler, self).accept(delivery)
class FlowController(Handler):
def __init__(self, window: int = 1024) -> None:
self._window = window
self._drained = 0
def on_link_local_open(self, event: Event) -> None:
self._flow(event.link)
def on_link_remote_open(self, event: Event) -> None:
self._flow(event.link)
def on_link_flow(self, event: Event) -> None:
self._flow(event.link)
def on_delivery(self, event: Event) -> None:
self._flow(event.link)
def _flow(self, link: Union['Sender', 'Receiver']) -> None:
if link.is_receiver:
self._drained += link.drained()
if self._drained == 0:
delta = self._window - link.credit
link.flow(delta)
class Handshaker(Handler):
@staticmethod
def on_connection_remote_open(event: Event) -> None:
conn = event.connection
if conn.state & Endpoint.LOCAL_UNINIT:
conn.open()
@staticmethod
def on_session_remote_open(event: Event) -> None:
ssn = event.session
if ssn.state & Endpoint.LOCAL_UNINIT:
ssn.open()
@staticmethod
def on_link_remote_open(event: Event) -> None:
link = event.link
if link.state & Endpoint.LOCAL_UNINIT:
link.source.copy(link.remote_source)
link.target.copy(link.remote_target)
link.open()
@staticmethod
def on_connection_remote_close(event: Event) -> None:
conn = event.connection
if not conn.state & Endpoint.LOCAL_CLOSED:
conn.close()
@staticmethod
def on_session_remote_close(event: Event) -> None:
ssn = event.session
if not ssn.state & Endpoint.LOCAL_CLOSED:
ssn.close()
@staticmethod
def on_link_remote_close(event: Event) -> None:
link = event.link
if not link.state & Endpoint.LOCAL_CLOSED:
link.close()
# Back compatibility definitions
CFlowController = FlowController
CHandshaker = Handshaker
class PythonIO:
def __init__(self) -> None:
self.selectables = []
self.delegate = IOHandler()
def on_unhandled(self, method: str, event: Event) -> None:
event.dispatch(self.delegate)
def on_selectable_init(self, event: Event) -> None:
self.selectables.append(event.context)
def on_selectable_updated(self, event: Event) -> None:
pass
def on_selectable_final(self, event: Event) -> None:
sel = event.context
if sel.is_terminal:
self.selectables.remove(sel)
sel.close()
def on_reactor_quiesced(self, event: Event) -> None:
reactor = event.reactor
# check if we are still quiesced, other handlers of
# on_reactor_quiesced could have produced events to process
if not reactor.quiesced:
return
reading = []
writing = []
deadline = None
for sel in self.selectables:
if sel.reading:
reading.append(sel)
if sel.writing:
writing.append(sel)
if sel.deadline:
if deadline is None:
deadline = sel.deadline
else:
deadline = min(sel.deadline, deadline)
if deadline is not None:
timeout = deadline - time.time()
else:
timeout = reactor.timeout
if timeout < 0:
timeout = 0
timeout = min(timeout, reactor.timeout)
readable, writable, _ = IO.select(reading, writing, [], timeout)
now = reactor.mark()
for s in readable:
s.readable()
for s in writable:
s.writable()
for s in self.selectables:
if s.deadline and now > s.deadline:
s.expired()
reactor.yield_()
# For C style IO handler need to implement Selector
class IOHandler(Handler):
def __init__(self) -> None:
self._selector = IO.Selector()
def on_selectable_init(self, event: Event) -> None:
s = event.selectable
self._selector.add(s)
s._reactor._selectables += 1
def on_selectable_updated(self, event: Event) -> None:
s = event.selectable
self._selector.update(s)
def on_selectable_final(self, event: Event) -> None:
s = event.selectable
self._selector.remove(s)
s._reactor._selectables -= 1
s.close()
def on_reactor_quiesced(self, event: Event) -> None:
r = event.reactor
if not r.quiesced:
return
d = r.timer_deadline
readable, writable, expired = self._selector.select(r.timeout)
now = r.mark()
for s in readable:
s.readable()
for s in writable:
s.writable()
for s in expired:
s.expired()
r.yield_()
def on_selectable_readable(self, event: Event) -> None:
s = event.selectable
t = s._transport
# If we're an acceptor we can't have a transport
# and we don't want to do anything here in any case
if not t:
return
capacity = t.capacity()
if capacity > 0:
try:
b = s.recv(capacity)
if len(b) > 0:
n = t.push(b)
else:
# EOF handling
self.on_selectable_error(event)
except socket.error as e:
# TODO: What's the error handling to be here?
log.error("Couldn't recv: %r" % e)
t.close_tail()
# Always update as we may have gone to not reading or from
# not writing to writing when processing the incoming bytes
r = s._reactor
self.update(t, s, r.now)
def on_selectable_writable(self, event: Event) -> None:
s = event.selectable
t = s._transport
# If we're an acceptor we can't have a transport
# and we don't want to do anything here in any case
if not t:
return
pending = t.pending()
if pending > 0:
try:
n = s.send(t.peek(pending))
t.pop(n)
except socket.error as e:
log.error("Couldn't send: %r" % e)
# TODO: Error? or actually an exception
t.close_head()
newpending = t.pending()
if newpending != pending:
r = s._reactor
self.update(t, s, r.now)
def on_selectable_error(self, event: Event) -> None:
s = event.selectable
t = s._transport
t.close_head()
t.close_tail()
s.terminate()
s._transport = None
t._selectable = None
s.update()
def on_selectable_expired(self, event: Event) -> None:
s = event.selectable
t = s._transport
r = s._reactor
self.update(t, s, r.now)
def on_connection_local_open(self, event: Event) -> None:
c = event.connection
if not c.state & Endpoint.REMOTE_UNINIT:
return
t = Transport()
# It seems perverse, but the C code ignores bind errors too!
# and this is required or you get errors because Connector() has already
# bound the transport and connection!
t.bind_nothrow(c)
def on_connection_bound(self, event: Event) -> None:
c = event.connection
t = event.transport
reactor = c._reactor
# link the new transport to its reactor:
t._reactor = reactor
if c._acceptor:
# this connection was created by the acceptor. There is already a
# socket assigned to this connection. Nothing needs to be done.
return
url = c.url or Url(c.hostname)
url.defaults()
host = url.host
port = int(url.port)
if not c.user:
user = url.username
if user:
c.user = user
password = url.password
if password:
c.password = password
addrs = socket.getaddrinfo(host, port, socket.AF_UNSPEC, socket.SOCK_STREAM)
# Try first possible address
log.debug("Connect trying first transport address: %s", addrs[0])
sock = IO.connect(addrs[0])
# At this point we need to arrange to be called back when the socket is writable
ConnectSelectable(sock, reactor, addrs[1:], t, self)
# TODO: Don't understand why we need this now - how can we get PN_TRANSPORT until the connection succeeds?
t._selectable = None
@staticmethod
def update(transport: Transport, selectable: Selectable, now: float) -> None:
try:
capacity = transport.capacity()
selectable.reading = capacity > 0
except:
if transport.closed:
selectable.terminate()
selectable._transport = None
transport._selectable = None
try:
pending = transport.pending()
selectable.writing = pending > 0
except:
if transport.closed:
selectable.terminate()
selectable._transport = None
transport._selectable = None
selectable.deadline = transport.tick(now)
selectable.update()
def on_transport(self, event: Event) -> None:
t = event.transport
r = t._reactor
s = t._selectable
if s and not s.is_terminal:
self.update(t, s, r.now)
def on_transport_closed(self, event: Event) -> None:
t = event.transport
r = t._reactor
s = t._selectable
if s and not s.is_terminal:
s.terminate()
s._transport = None
t._selectable = None
r.update(s)
t.unbind()
class ConnectSelectable(Selectable):
def __init__(
self,
sock: socket.socket,
reactor: 'Container',
addrs: List[Any],
transport: Transport,
iohandler: IOHandler
) -> None:
super(ConnectSelectable, self).__init__(sock, reactor)
self.writing = True
self._addrs = addrs
self._transport = transport
self._iohandler = iohandler
transport._connect_selectable = self
def readable(self) -> None:
pass
def writable(self) -> None:
e = self._delegate.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)
t = self._transport
t._connect_selectable = None
# Always cleanup this ConnectSelectable: either we failed or created a new one
# Do it first to ensure the socket gets deregistered before being registered again
# in the case of connecting
self.terminate()
self._transport = None
self.update()
if e == 0:
log.debug("Connection succeeded")
# Disassociate from the socket (which will be passed on)
self.release()
s = self._reactor.selectable(delegate=self._delegate)
s._transport = t
t._selectable = s
self._iohandler.update(t, s, t._reactor.now)
return
elif e == errno.ECONNREFUSED:
if len(self._addrs) > 0:
log.debug("Connection refused: trying next transport address: %s", self._addrs[0])
sock = IO.connect(self._addrs[0])
# New ConnectSelectable for the new socket with rest of addresses
ConnectSelectable(sock, self._reactor, self._addrs[1:], t, self._iohandler)
return
else:
log.debug("Connection refused, but tried all transport addresses")
t.condition = Condition("proton.pythonio", "Connection refused to all addresses")
else:
log.error("Couldn't connect: %s", e)
t.condition = Condition("proton.pythonio", "Connection error: %s" % e)
t.close_tail()
t.close_head()
|