forked from celery/py-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.py
566 lines (475 loc) · 13.7 KB
/
types.py
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
"""Abstract types."""
import abc
import asyncio
import socket
from array import array
from datetime import datetime
from typing import (
Any, Awaitable, Callable, IO, List, Mapping,
MutableMapping, NamedTuple, Optional, Sequence, SupportsInt,
TypeVar, Tuple, Union,
)
from .protocol import queue_declare_ok_t
from .spec import method_sig_t
from vine import Thenable
Fd = TypeVar('Fd', int, IO)
Int = TypeVar('Int', SupportsInt, str)
class Frame(NamedTuple):
type: int
channel: int
data: bytes
ConnectionBlockedCallbackT = Callable[[str], Optional[Awaitable]]
ConnectionUnblockedCallbackT = Callable[[], Optional[Awaitable]]
ConnectionFrameHandlerT = Callable[[Frame], Awaitable]
ConnectionFrameWriterT = Callable[
[int,
int,
Optional[method_sig_t],
Optional[bytes],
Optional['MessageT'],
Optional[float]],
Awaitable,
]
WaitMethodT = Union[method_sig_t, Sequence[method_sig_t]]
class TransportT(metaclass=abc.ABCMeta):
"""Transport type."""
rstream: asyncio.StreamReader
wstream: asyncio.StreamWriter
connected: bool = False
host: str
port: int
ssl: Any
connect_timeout: float
read_timeout: float
write_timeout: float
socket_settings: Mapping
sock: socket.socket
@abc.abstractmethod
async def connect(self) -> None:
...
@abc.abstractmethod
def close(self) -> None:
...
@abc.abstractmethod
async def read_frame(self, timeout: float = None) -> Frame:
...
@abc.abstractmethod
async def write(self, s: bytes, timeout: float = None) -> None:
...
class ContentT(metaclass=abc.ABCMeta):
"""Generic content type."""
CLASS_ID: int
PROPERTIES: Sequence[Tuple[str, str]]
properties: MutableMapping
body_received: int = 0
body_size: int = 0
ready: bool = False
frame_method: method_sig_t
frame_args: str
@abc.abstractmethod
def _load_properties(
self,
class_id: int,
buf: bytes,
offset: int = 0,
classes: Mapping = None,
unpack_from: Callable = None) -> int:
...
@abc.abstractmethod
def _serialize_properties(self) -> bytes:
...
@abc.abstractmethod
def inbound_header(self, buf: bytes, offset: int = 0) -> int:
...
@abc.abstractmethod
def inbound_body(self, buf: bytes):
...
class MessageT(ContentT, metaclass=abc.ABCMeta):
"""Basic message type."""
body: bytes
children: Any
channel: 'ChannelT'
delivery_info: Mapping[str, Any]
content_type: str
content_encoding: str
application_headers: MutableMapping
delivery_mode: int
priority: int
correlation_id: str
reply_to: str
expiration: str
message_id: str
timestamp: datetime
type: str
user_id: str
app_id: str
cluster_id: str
@abc.abstractmethod
def __init__(self,
body: bytes=b'',
*,
children: Any = None,
channel: 'ChannelT' = None) -> None:
...
@property
@abc.abstractmethod
def headers(self) -> MutableMapping:
...
@property
@abc.abstractmethod
def delivery_tag(self) -> str:
...
class AbstractChannelT(metaclass=abc.ABCMeta):
"""Abstract channel type."""
connection: 'ConnectionT'
channel_id: int
auto_decode: bool = False
is_open: bool = False
@abc.abstractmethod
def __enter__(self) -> 'AbstractChannelT':
...
@abc.abstractmethod
def __exit__(self, *exc_info) -> None:
...
@abc.abstractmethod
async def __aenter__(self) -> 'AbstractChannelT':
...
@abc.abstractmethod
async def __aexit__(self, *exc_info) -> None:
...
@abc.abstractmethod
def _setup_listeners(self):
...
@abc.abstractmethod
async def send_method(
self, sig: method_sig_t,
format: str = None,
args: Sequence = None,
*,
content: MessageT = None,
wait: WaitMethodT = None,
callback: Callable = None,
returns_tuple: bool = False) -> Thenable:
...
@abc.abstractmethod
async def close(
self,
*,
reply_code: int = 0,
reply_text: str = '',
method_sig: method_sig_t = method_sig_t(0, 0),
argsig: str = 'BsBB') -> None:
...
@abc.abstractmethod
def collect(self) -> None:
...
@abc.abstractmethod
async def wait(
self,
method: WaitMethodT,
*,
callback: Callable = None,
timeout: float = None,
returns_tuple: bool = False) -> Any:
...
async def dispatch_method(
self,
method_sig: method_sig_t,
payload: bytes,
content: MessageT) -> None:
...
class ConnectionT(AbstractChannelT):
"""Connection channel type."""
Channel: type
Transport: type
host: str
userid: str
password: str
login_method: str
login_response: Any
virtual_host: str
locale: str
client_properties: MutableMapping
ssl: Any
channel_max: int
frame_max: int
on_open: Thenable
on_tune_ok: Thenable
confirm_publish: bool
connect_timeout: float
read_timeout: float
write_timeout: float
socket_settings: Mapping
negotiate_capabilities: Mapping[str, bool]
library_properties: Mapping[str, Any]
heartbeat: float
client_heartbeat: float
server_heartbeat: float
last_heartbeat_sent: float
last_heartbeat_received: float
bytes_sent: int = 0
bytes_recv: int = 0
prev_sent: int
prev_recv: int
connection_errors: Tuple[type, ...]
channel_errors: Tuple[type, ...]
recoverable_connection_errors: Tuple[type, ...]
recoverable_channel_errors: Tuple[type, ...]
transport: TransportT
channels: MutableMapping[int, AbstractChannelT]
loop: asyncio.AbstractEventLoop
mechanisms: List[str]
locales: List[str]
_avail_channel_ids: array
def __init__(
self,
host: str = 'localhost:5672',
userid: str = 'guest',
password: str = 'guest',
*,
login_method: str = 'AMQPLAIN',
login_response: Any = None,
virtual_host: str = '/',
locale: str = 'en_US',
client_properties: Mapping = None,
ssl: Any = False,
connect_timeout: float = None,
channel_max: int = None,
frame_max: int = None,
heartbeat: float = 0.0,
on_open: Thenable = None,
on_blocked: ConnectionBlockedCallbackT = None,
on_unblocked: ConnectionUnblockedCallbackT = None,
confirm_publish: bool = False,
on_tune_ok: Callable = None,
read_timeout: float = None,
write_timeout: float = None,
socket_settings: Mapping = None,
frame_handler: ConnectionFrameHandlerT = None,
frame_writer: ConnectionFrameWriterT = None,
loop: asyncio.AbstractEventLoop = None,
transport: TransportT = None,
**kwargs) -> None:
self.frame_writer = frame_writer
self.frame_handler = frame_handler
@property
@abc.abstractmethod
def server_capabilities(self) -> Mapping:
...
@property
@abc.abstractmethod
def sock(self) -> socket.socket:
pass
@abc.abstractmethod
async def connect(self, callback: Callable[[], None] = None) -> None:
...
@property
@abc.abstractmethod
def connected(self) -> bool:
...
@abc.abstractmethod
def channel(self, channel_id: int,
callback: Callable = None) -> 'AbstractChannelT':
...
@abc.abstractmethod
def is_alive(self) -> bool:
...
@abc.abstractmethod
async def drain_events(self, timeout: float = None) -> None:
...
@abc.abstractmethod
async def on_inbound_method(
self,
channel_id: int,
method_sig: method_sig_t,
payload: bytes,
content: MessageT) -> None:
...
@abc.abstractmethod
async def send_heartbeat(self) -> None:
...
@abc.abstractmethod
async def heartbeat_tick(self, rate: int = 2) -> None:
...
def _get_free_channel_id(self) -> int:
...
@abc.abstractmethod
def _claim_channel_id(self, channel_id: int) -> None:
...
class ChannelT(AbstractChannelT, metaclass=abc.ABCMeta):
"""Channel type."""
@abc.abstractmethod
async def flow(self, active: bool) -> None:
...
@abc.abstractmethod
async def open(self) -> None:
...
@abc.abstractmethod
async def exchange_declare(
self, exchange: str, type: str,
*,
passive: bool = False,
durable: bool = False,
auto_delete: bool = True,
nowait: bool = False,
arguments: Mapping[str, Any] = None,
argsig: str = 'BssbbbbbF') -> None:
...
@abc.abstractmethod
async def exchange_delete(
self, exchange: str,
*,
if_unused: bool = False,
nowait: bool = False,
argsig: str = 'Bsbb') -> None:
...
@abc.abstractmethod
async def exchange_bind(
self, destination: str,
source: str = '',
routing_key: str = '',
*,
nowait: bool = False,
arguments: Mapping[str, Any] = None,
argsig: str = 'BsssbF') -> None:
...
@abc.abstractmethod
async def exchange_unbind(
self, destination: str,
source: str = '',
routing_key: str = '',
*,
nowait: bool = False,
arguments: Mapping[str, Any] = None,
argsig: str = 'BsssbF') -> None:
...
@abc.abstractmethod
async def queue_bind(
self, queue: str,
exchange: str = '',
routing_key: str = '',
*,
nowait: bool = False,
arguments: Mapping[str, Any] = None,
argsig: str = 'BsssbF') -> None:
...
@abc.abstractmethod
async def queue_unbind(
self, queue: str, exchange: str,
routing_key: str = '',
*,
nowait: bool = False,
arguments: Mapping[str, Any] = None,
argsig: str = 'BsssF') -> None:
...
@abc.abstractmethod
async def queue_declare(
self,
queue: str = '',
*,
passive: bool = False,
durable: bool = False,
exclusive: bool = False,
auto_delete: bool = True,
nowait: bool = False,
arguments: Mapping[str, Any] = None,
argsig: str = 'BsbbbbbF') -> queue_declare_ok_t:
...
@abc.abstractmethod
async def queue_delete(
self,
queue: str = '',
*,
if_unused: bool = False,
if_empty: bool = False,
nowait: bool = False,
argsig: str = 'Bsbbb') -> None:
...
@abc.abstractmethod
async def queue_purge(
self,
queue: str = '',
*,
nowait: bool = False,
argsig: str = 'Bsb') -> Optional[int]:
...
@abc.abstractmethod
async def basic_ack(
self, delivery_tag: str,
*,
multiple: bool = False,
argsig: str = 'Lb') -> None:
...
@abc.abstractmethod
async def basic_cancel(
self, consumer_tag: str,
*,
nowait: bool = False,
argsig: str = 'sb') -> None:
...
@abc.abstractmethod
async def basic_consume(
self,
queue: str = '',
consumer_tag: str = '',
*,
no_local: bool = False,
no_ack: bool = False,
exclusive: bool = False,
nowait: bool = False,
callback: Callable = None,
arguments: Mapping[str, Any] = None,
on_cancel: Callable = None,
argsig: str = 'BssbbbbF') -> None:
...
@abc.abstractmethod
async def basic_get(
self,
queue: str = '',
*,
no_ack: bool = False,
argsig: str = 'Bsb') -> Optional[MessageT]:
...
@abc.abstractmethod
async def basic_publish(
self, msg: MessageT,
exchange: str = '',
routing_key: str = '',
*,
mandatory: bool = False,
immediate: bool = False,
timeout: float = None,
argsig: str = 'Bssbb') -> None:
...
@abc.abstractmethod
async def basic_qos(
self,
prefetch_size: int,
prefetch_count: int,
a_global: bool,
argsig: str = 'lBb') -> None:
...
@abc.abstractmethod
async def basic_recover(self, *, requeue: bool = False) -> None:
...
@abc.abstractmethod
async def basic_recover_async(self, *, requeue: bool = False) -> None:
...
@abc.abstractmethod
async def basic_reject(self, delivery_tag: str,
*,
requeue: bool = False,
argsig: str = 'Lb') -> None:
...
@abc.abstractmethod
async def tx_commit(self) -> None:
...
@abc.abstractmethod
async def tx_rollback(self) -> None:
...
@abc.abstractmethod
async def tx_select(self) -> None:
...
@abc.abstractmethod
async def confirm_select(self, *, nowait: bool = False) -> None:
...