-
Notifications
You must be signed in to change notification settings - Fork 639
/
Copy pathsocket.py
1134 lines (932 loc) · 34.9 KB
/
socket.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
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
"""0MQ Socket pure Python methods."""
# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Modified BSD License.
from __future__ import annotations
import errno
import pickle
import random
import sys
from typing import (
Any,
Callable,
Generic,
List,
Sequence,
TypeVar,
Union,
cast,
overload,
)
from warnings import warn
import zmq
from zmq._typing import Literal, TypeAlias
from zmq.backend import Socket as SocketBase
from zmq.error import ZMQBindError, ZMQError
from zmq.utils import jsonapi
from zmq.utils.interop import cast_int_addr
from ..constants import SocketOption, SocketType, _OptType
from .attrsettr import AttributeSetter
from .poll import Poller
try:
DEFAULT_PROTOCOL = pickle.DEFAULT_PROTOCOL
except AttributeError:
DEFAULT_PROTOCOL = pickle.HIGHEST_PROTOCOL
_SocketType = TypeVar("_SocketType", bound="Socket")
class _SocketContext(Generic[_SocketType]):
"""Context Manager for socket bind/unbind"""
socket: _SocketType
kind: str
addr: str
def __repr__(self):
return f"<SocketContext({self.kind}={self.addr!r})>"
def __init__(
self: _SocketContext[_SocketType], socket: _SocketType, kind: str, addr: str
):
assert kind in {"bind", "connect"}
self.socket = socket
self.kind = kind
self.addr = addr
def __enter__(self: _SocketContext[_SocketType]) -> _SocketType:
return self.socket
def __exit__(self, *args):
if self.socket.closed:
return
if self.kind == "bind":
self.socket.unbind(self.addr)
elif self.kind == "connect":
self.socket.disconnect(self.addr)
SocketReturnType = TypeVar("SocketReturnType")
class Socket(SocketBase, AttributeSetter, Generic[SocketReturnType]):
"""The ZMQ socket object
To create a Socket, first create a Context::
ctx = zmq.Context.instance()
then call ``ctx.socket(socket_type)``::
s = ctx.socket(zmq.ROUTER)
.. versionadded:: 25
Sockets can now be shadowed by passing another Socket.
This helps in creating an async copy of a sync socket or vice versa::
s = zmq.Socket(async_socket)
Which previously had to be::
s = zmq.Socket.shadow(async_socket.underlying)
"""
_shadow = False
_shadow_obj = None
_monitor_socket = None
_type_name = 'UNKNOWN'
@overload
def __init__(
self: Socket[bytes],
ctx_or_socket: zmq.Context,
socket_type: int,
*,
copy_threshold: int | None = None,
): ...
@overload
def __init__(
self: Socket[bytes],
*,
shadow: Socket | int,
copy_threshold: int | None = None,
): ...
@overload
def __init__(
self: Socket[bytes],
ctx_or_socket: Socket,
): ...
def __init__(
self: Socket[bytes],
ctx_or_socket: zmq.Context | Socket | None = None,
socket_type: int = 0,
*,
shadow: Socket | int = 0,
copy_threshold: int | None = None,
):
shadow_context: zmq.Context | None = None
if isinstance(ctx_or_socket, zmq.Socket):
# positional Socket(other_socket)
shadow = ctx_or_socket
ctx_or_socket = None
shadow_address: int = 0
if shadow:
self._shadow = True
# hold a reference to the shadow object
self._shadow_obj = shadow
if not isinstance(shadow, int):
if isinstance(shadow, zmq.Socket):
shadow_context = shadow.context
try:
shadow = cast(int, shadow.underlying)
except AttributeError:
pass
shadow_address = cast_int_addr(shadow)
else:
self._shadow = False
super().__init__(
ctx_or_socket,
socket_type,
shadow=shadow_address,
copy_threshold=copy_threshold,
)
if self._shadow_obj and shadow_context:
# keep self.context reference if shadowing a Socket object
self.context = shadow_context
try:
socket_type = cast(int, self.get(zmq.TYPE))
except Exception:
pass
else:
try:
self.__dict__["type"] = stype = SocketType(socket_type)
except ValueError:
self._type_name = str(socket_type)
else:
self._type_name = stype.name
def __del__(self):
if not self._shadow and not self.closed:
if warn is not None:
# warn can be None during process teardown
warn(
f"Unclosed socket {self}",
ResourceWarning,
stacklevel=2,
source=self,
)
self.close()
_repr_cls = "zmq.Socket"
def __repr__(self):
cls = self.__class__
# look up _repr_cls on exact class, not inherited
_repr_cls = cls.__dict__.get("_repr_cls", None)
if _repr_cls is None:
_repr_cls = f"{cls.__module__}.{cls.__name__}"
closed = ' closed' if self._closed else ''
return f"<{_repr_cls}(zmq.{self._type_name}) at {hex(id(self))}{closed}>"
# socket as context manager:
def __enter__(self: _SocketType) -> _SocketType:
"""Sockets are context managers
.. versionadded:: 14.4
"""
return self
def __exit__(self, *args, **kwargs):
self.close()
# -------------------------------------------------------------------------
# Socket creation
# -------------------------------------------------------------------------
def __copy__(self: _SocketType, memo=None) -> _SocketType:
"""Copying a Socket creates a shadow copy"""
return self.__class__.shadow(self.underlying)
__deepcopy__ = __copy__
@classmethod
def shadow(cls: type[_SocketType], address: int | zmq.Socket) -> _SocketType:
"""Shadow an existing libzmq socket
address is a zmq.Socket or an integer (or FFI pointer)
representing the address of the libzmq socket.
.. versionadded:: 14.1
.. versionadded:: 25
Support for shadowing `zmq.Socket` objects,
instead of just integer addresses.
"""
return cls(shadow=address)
def close(self, linger=None) -> None:
"""
Close the socket.
If linger is specified, LINGER sockopt will be set prior to closing.
Note: closing a zmq Socket may not close the underlying sockets
if there are undelivered messages.
Only after all messages are delivered or discarded by reaching the socket's LINGER timeout
(default: forever)
will the underlying sockets be closed.
This can be called to close the socket by hand. If this is not
called, the socket will automatically be closed when it is
garbage collected,
in which case you may see a ResourceWarning about the unclosed socket.
"""
if self.context:
self.context._rm_socket(self)
super().close(linger=linger)
# -------------------------------------------------------------------------
# Connect/Bind context managers
# -------------------------------------------------------------------------
def _connect_cm(self: _SocketType, addr: str) -> _SocketContext[_SocketType]:
"""Context manager to disconnect on exit
.. versionadded:: 20.0
"""
return _SocketContext(self, 'connect', addr)
def _bind_cm(self: _SocketType, addr: str) -> _SocketContext[_SocketType]:
"""Context manager to unbind on exit
.. versionadded:: 20.0
"""
try:
# retrieve last_endpoint
# to support binding on random ports via
# `socket.bind('tcp://127.0.0.1:0')`
addr = cast(bytes, self.get(zmq.LAST_ENDPOINT)).decode("utf8")
except (AttributeError, ZMQError, UnicodeDecodeError):
pass
return _SocketContext(self, 'bind', addr)
def bind(self: _SocketType, addr: str) -> _SocketContext[_SocketType]:
"""s.bind(addr)
Bind the socket to an address.
This causes the socket to listen on a network port. Sockets on the
other side of this connection will use ``Socket.connect(addr)`` to
connect to this socket.
Returns a context manager which will call unbind on exit.
.. versionadded:: 20.0
Can be used as a context manager.
.. versionadded:: 26.0
binding to port 0 can be used as a context manager
for binding to a random port.
The URL can be retrieved as `socket.last_endpoint`.
Parameters
----------
addr : str
The address string. This has the form 'protocol://interface:port',
for example 'tcp://127.0.0.1:5555'. Protocols supported include
tcp, udp, pgm, epgm, inproc and ipc. If the address is unicode, it is
encoded to utf-8 first.
"""
try:
super().bind(addr)
except ZMQError as e:
e.strerror += f" (addr={addr!r})"
raise
return self._bind_cm(addr)
def connect(self: _SocketType, addr: str) -> _SocketContext[_SocketType]:
"""s.connect(addr)
Connect to a remote 0MQ socket.
Returns a context manager which will call disconnect on exit.
.. versionadded:: 20.0
Can be used as a context manager.
Parameters
----------
addr : str
The address string. This has the form 'protocol://interface:port',
for example 'tcp://127.0.0.1:5555'. Protocols supported are
tcp, udp, pgm, inproc and ipc. If the address is unicode, it is
encoded to utf-8 first.
"""
try:
super().connect(addr)
except ZMQError as e:
e.strerror += f" (addr={addr!r})"
raise
return self._connect_cm(addr)
# -------------------------------------------------------------------------
# Deprecated aliases
# -------------------------------------------------------------------------
@property
def socket_type(self) -> int:
warn("Socket.socket_type is deprecated, use Socket.type", DeprecationWarning)
return cast(int, self.type)
# -------------------------------------------------------------------------
# Hooks for sockopt completion
# -------------------------------------------------------------------------
def __dir__(self):
keys = dir(self.__class__)
keys.extend(SocketOption.__members__)
return keys
# -------------------------------------------------------------------------
# Getting/Setting options
# -------------------------------------------------------------------------
setsockopt = SocketBase.set
getsockopt = SocketBase.get
def __setattr__(self, key, value):
"""Override to allow setting zmq.[UN]SUBSCRIBE even though we have a subscribe method"""
if key in self.__dict__:
object.__setattr__(self, key, value)
return
_key = key.lower()
if _key in ('subscribe', 'unsubscribe'):
if isinstance(value, str):
value = value.encode('utf8')
if _key == 'subscribe':
self.set(zmq.SUBSCRIBE, value)
else:
self.set(zmq.UNSUBSCRIBE, value)
return
super().__setattr__(key, value)
def fileno(self) -> int:
"""Return edge-triggered file descriptor for this socket.
This is a read-only edge-triggered file descriptor for both read and write events on this socket.
It is important that all available events be consumed when an event is detected,
otherwise the read event will not trigger again.
.. versionadded:: 17.0
"""
return self.FD
def subscribe(self, topic: str | bytes) -> None:
"""Subscribe to a topic
Only for SUB sockets.
.. versionadded:: 15.3
"""
if isinstance(topic, str):
topic = topic.encode('utf8')
self.set(zmq.SUBSCRIBE, topic)
def unsubscribe(self, topic: str | bytes) -> None:
"""Unsubscribe from a topic
Only for SUB sockets.
.. versionadded:: 15.3
"""
if isinstance(topic, str):
topic = topic.encode('utf8')
self.set(zmq.UNSUBSCRIBE, topic)
def set_string(self, option: int, optval: str, encoding='utf-8') -> None:
"""Set socket options with a unicode object.
This is simply a wrapper for setsockopt to protect from encoding ambiguity.
See the 0MQ documentation for details on specific options.
Parameters
----------
option : int
The name of the option to set. Can be any of: SUBSCRIBE,
UNSUBSCRIBE, IDENTITY
optval : str
The value of the option to set.
encoding : str
The encoding to be used, default is utf8
"""
if not isinstance(optval, str):
raise TypeError(f"strings only, not {type(optval)}: {optval!r}")
return self.set(option, optval.encode(encoding))
setsockopt_unicode = setsockopt_string = set_string
def get_string(self, option: int, encoding='utf-8') -> str:
"""Get the value of a socket option.
See the 0MQ documentation for details on specific options.
Parameters
----------
option : int
The option to retrieve.
Returns
-------
optval : str
The value of the option as a unicode string.
"""
if SocketOption(option)._opt_type != _OptType.bytes:
raise TypeError(f"option {option} will not return a string to be decoded")
return cast(bytes, self.get(option)).decode(encoding)
getsockopt_unicode = getsockopt_string = get_string
def bind_to_random_port(
self: _SocketType,
addr: str,
min_port: int = 49152,
max_port: int = 65536,
max_tries: int = 100,
) -> int:
"""Bind this socket to a random port in a range.
If the port range is unspecified, the system will choose the port.
Parameters
----------
addr : str
The address string without the port to pass to ``Socket.bind()``.
min_port : int, optional
The minimum port in the range of ports to try (inclusive).
max_port : int, optional
The maximum port in the range of ports to try (exclusive).
max_tries : int, optional
The maximum number of bind attempts to make.
Returns
-------
port : int
The port the socket was bound to.
Raises
------
ZMQBindError
if `max_tries` reached before successful bind
"""
if (
(zmq.zmq_version_info() >= (3, 2))
and min_port == 49152
and max_port == 65536
):
# if LAST_ENDPOINT is supported, and min_port / max_port weren't specified,
# we can bind to port 0 and let the OS do the work
self.bind(f"{addr}:*")
url = cast(bytes, self.last_endpoint).decode('ascii', 'replace')
_, port_s = url.rsplit(':', 1)
return int(port_s)
for i in range(max_tries):
try:
port = random.randrange(min_port, max_port)
self.bind(f'{addr}:{port}')
except ZMQError as exception:
en = exception.errno
if en == zmq.EADDRINUSE:
continue
elif sys.platform == 'win32' and en == errno.EACCES:
continue
else:
raise
else:
return port
raise ZMQBindError("Could not bind socket to random port.")
def get_hwm(self) -> int:
"""Get the High Water Mark.
On libzmq ≥ 3, this gets SNDHWM if available, otherwise RCVHWM
"""
major = zmq.zmq_version_info()[0]
if major >= 3:
# return sndhwm, fallback on rcvhwm
try:
return cast(int, self.get(zmq.SNDHWM))
except zmq.ZMQError:
pass
return cast(int, self.get(zmq.RCVHWM))
else:
return cast(int, self.get(zmq.HWM))
def set_hwm(self, value: int) -> None:
"""Set the High Water Mark.
On libzmq ≥ 3, this sets both SNDHWM and RCVHWM
.. warning::
New values only take effect for subsequent socket
bind/connects.
"""
major = zmq.zmq_version_info()[0]
if major >= 3:
raised = None
try:
self.sndhwm = value
except Exception as e:
raised = e
try:
self.rcvhwm = value
except Exception as e:
raised = e
if raised:
raise raised
else:
self.set(zmq.HWM, value)
hwm = property(
get_hwm,
set_hwm,
None,
"""Property for High Water Mark.
Setting hwm sets both SNDHWM and RCVHWM as appropriate.
It gets SNDHWM if available, otherwise RCVHWM.
""",
)
# -------------------------------------------------------------------------
# Sending and receiving messages
# -------------------------------------------------------------------------
@overload
def send(
self,
data: Any,
flags: int = ...,
copy: bool = ...,
*,
track: Literal[True],
routing_id: int | None = ...,
group: str | None = ...,
) -> zmq.MessageTracker: ...
@overload
def send(
self,
data: Any,
flags: int = ...,
copy: bool = ...,
*,
track: Literal[False],
routing_id: int | None = ...,
group: str | None = ...,
) -> None: ...
@overload
def send(
self,
data: Any,
flags: int = ...,
*,
copy: bool = ...,
routing_id: int | None = ...,
group: str | None = ...,
) -> None: ...
@overload
def send(
self,
data: Any,
flags: int = ...,
copy: bool = ...,
track: bool = ...,
routing_id: int | None = ...,
group: str | None = ...,
) -> zmq.MessageTracker | None: ...
def send(
self,
data: Any,
flags: int = 0,
copy: bool = True,
track: bool = False,
routing_id: int | None = None,
group: str | None = None,
) -> zmq.MessageTracker | None:
"""Send a single zmq message frame on this socket.
This queues the message to be sent by the IO thread at a later time.
With flags=NOBLOCK, this raises :class:`ZMQError` if the queue is full;
otherwise, this waits until space is available.
See :class:`Poller` for more general non-blocking I/O.
Parameters
----------
data : bytes, Frame, memoryview
The content of the message. This can be any object that provides
the Python buffer API (i.e. `memoryview(data)` can be called).
flags : int
0, NOBLOCK, SNDMORE, or NOBLOCK|SNDMORE.
copy : bool
Should the message be sent in a copying or non-copying manner.
track : bool
Should the message be tracked for notification that ZMQ has
finished with it? (ignored if copy=True)
routing_id : int
For use with SERVER sockets
group : str
For use with RADIO sockets
Returns
-------
None : if `copy` or not track
None if message was sent, raises an exception otherwise.
MessageTracker : if track and not copy
a MessageTracker object, whose `done` property will
be False until the send is completed.
Raises
------
TypeError
If a unicode object is passed
ValueError
If `track=True`, but an untracked Frame is passed.
ZMQError
If the send does not succeed for any reason (including
if NOBLOCK is set and the outgoing queue is full).
.. versionchanged:: 17.0
DRAFT support for routing_id and group arguments.
"""
if routing_id is not None:
if not isinstance(data, zmq.Frame):
data = zmq.Frame(
data,
track=track,
copy=copy or None,
copy_threshold=self.copy_threshold,
)
data.routing_id = routing_id
if group is not None:
if not isinstance(data, zmq.Frame):
data = zmq.Frame(
data,
track=track,
copy=copy or None,
copy_threshold=self.copy_threshold,
)
data.group = group
return super().send(data, flags=flags, copy=copy, track=track)
def send_multipart(
self,
msg_parts: Sequence,
flags: int = 0,
copy: bool = True,
track: bool = False,
**kwargs,
):
"""Send a sequence of buffers as a multipart message.
The zmq.SNDMORE flag is added to all msg parts before the last.
Parameters
----------
msg_parts : iterable
A sequence of objects to send as a multipart message. Each element
can be any sendable object (Frame, bytes, buffer-providers)
flags : int, optional
Any valid flags for :func:`Socket.send`.
SNDMORE is added automatically for frames before the last.
copy : bool, optional
Should the frame(s) be sent in a copying or non-copying manner.
If copy=False, frames smaller than self.copy_threshold bytes
will be copied anyway.
track : bool, optional
Should the frame(s) be tracked for notification that ZMQ has
finished with it (ignored if copy=True).
Returns
-------
None : if copy or not track
MessageTracker : if track and not copy
a MessageTracker object, whose `done` property will
be False until the last send is completed.
"""
# typecheck parts before sending:
for i, msg in enumerate(msg_parts):
if isinstance(msg, (zmq.Frame, bytes, memoryview)):
continue
try:
memoryview(msg)
except Exception:
rmsg = repr(msg)
if len(rmsg) > 32:
rmsg = rmsg[:32] + '...'
raise TypeError(
f"Frame {i} ({rmsg}) does not support the buffer interface."
)
for msg in msg_parts[:-1]:
self.send(msg, zmq.SNDMORE | flags, copy=copy, track=track)
# Send the last part without the extra SNDMORE flag.
return self.send(msg_parts[-1], flags, copy=copy, track=track)
@overload
def recv_multipart(
self, flags: int = ..., *, copy: Literal[True], track: bool = ...
) -> list[bytes]: ...
@overload
def recv_multipart(
self, flags: int = ..., *, copy: Literal[False], track: bool = ...
) -> list[zmq.Frame]: ...
@overload
def recv_multipart(self, flags: int = ..., *, track: bool = ...) -> list[bytes]: ...
@overload
def recv_multipart(
self, flags: int = 0, copy: bool = True, track: bool = False
) -> list[zmq.Frame] | list[bytes]: ...
def recv_multipart(
self, flags: int = 0, copy: bool = True, track: bool = False
) -> list[zmq.Frame] | list[bytes]:
"""Receive a multipart message as a list of bytes or Frame objects
Parameters
----------
flags : int, optional
Any valid flags for :func:`Socket.recv`.
copy : bool, optional
Should the message frame(s) be received in a copying or non-copying manner?
If False a Frame object is returned for each part, if True a copy of
the bytes is made for each frame.
track : bool, optional
Should the message frame(s) be tracked for notification that ZMQ has
finished with it? (ignored if copy=True)
Returns
-------
msg_parts : list
A list of frames in the multipart message; either Frames or bytes,
depending on `copy`.
Raises
------
ZMQError
for any of the reasons :func:`~Socket.recv` might fail
"""
parts = [self.recv(flags, copy=copy, track=track)]
# have first part already, only loop while more to receive
while self.getsockopt(zmq.RCVMORE):
part = self.recv(flags, copy=copy, track=track)
parts.append(part)
# cast List[Union] to Union[List]
# how do we get mypy to recognize that return type is invariant on `copy`?
return cast(Union[List[zmq.Frame], List[bytes]], parts)
def _deserialize(
self,
recvd: bytes,
load: Callable[[bytes], Any],
) -> Any:
"""Deserialize a received message
Override in subclass (e.g. Futures) if recvd is not the raw bytes.
The default implementation expects bytes and returns the deserialized message immediately.
Parameters
----------
load: callable
Callable that deserializes bytes
recvd:
The object returned by self.recv
"""
return load(recvd)
def send_serialized(self, msg, serialize, flags=0, copy=True, **kwargs):
"""Send a message with a custom serialization function.
.. versionadded:: 17
Parameters
----------
msg : The message to be sent. Can be any object serializable by `serialize`.
serialize : callable
The serialization function to use.
serialize(msg) should return an iterable of sendable message frames
(e.g. bytes objects), which will be passed to send_multipart.
flags : int, optional
Any valid flags for :func:`Socket.send`.
copy : bool, optional
Whether to copy the frames.
"""
frames = serialize(msg)
return self.send_multipart(frames, flags=flags, copy=copy, **kwargs)
def recv_serialized(self, deserialize, flags=0, copy=True):
"""Receive a message with a custom deserialization function.
.. versionadded:: 17
Parameters
----------
deserialize : callable
The deserialization function to use.
deserialize will be called with one argument: the list of frames
returned by recv_multipart() and can return any object.
flags : int, optional
Any valid flags for :func:`Socket.recv`.
copy : bool, optional
Whether to recv bytes or Frame objects.
Returns
-------
obj : object
The object returned by the deserialization function.
Raises
------
ZMQError
for any of the reasons :func:`~Socket.recv` might fail
"""
frames = self.recv_multipart(flags=flags, copy=copy)
return self._deserialize(frames, deserialize)
def send_string(
self,
u: str,
flags: int = 0,
copy: bool = True,
encoding: str = 'utf-8',
**kwargs,
) -> zmq.Frame | None:
"""Send a Python unicode string as a message with an encoding.
0MQ communicates with raw bytes, so you must encode/decode
text (str) around 0MQ.
Parameters
----------
u : str
The unicode string to send.
flags : int, optional
Any valid flags for :func:`Socket.send`.
encoding : str
The encoding to be used
"""
if not isinstance(u, str):
raise TypeError("str objects only")
return self.send(u.encode(encoding), flags=flags, copy=copy, **kwargs)
send_unicode = send_string
def recv_string(self, flags: int = 0, encoding: str = 'utf-8') -> str:
"""Receive a unicode string, as sent by send_string.
Parameters
----------
flags : int
Any valid flags for :func:`Socket.recv`.
encoding : str
The encoding to be used
Returns
-------
s : str
The Python unicode string that arrives as encoded bytes.
Raises
------
ZMQError
for any of the reasons :func:`Socket.recv` might fail
"""
msg = self.recv(flags=flags)
return self._deserialize(msg, lambda buf: buf.decode(encoding))
recv_unicode = recv_string
def send_pyobj(
self, obj: Any, flags: int = 0, protocol: int = DEFAULT_PROTOCOL, **kwargs
) -> zmq.Frame | None:
"""
Send a Python object as a message using pickle to serialize.
.. warning::
Never deserialize an untrusted message with pickle,
which can involve arbitrary code execution.
Make sure to authenticate the sources of messages
before unpickling them, e.g. with transport-level security
(e.g. CURVE, ZAP, or IPC permissions)
or signed messages.
Parameters
----------
obj : Python object
The Python object to send.
flags : int
Any valid flags for :func:`Socket.send`.
protocol : int
The pickle protocol number to use. The default is pickle.DEFAULT_PROTOCOL
where defined, and pickle.HIGHEST_PROTOCOL elsewhere.
"""
msg = pickle.dumps(obj, protocol)
return self.send(msg, flags=flags, **kwargs)
def recv_pyobj(self, flags: int = 0) -> Any:
"""
Receive a Python object as a message using UNSAFE pickle to serialize.
.. warning::
Never deserialize an untrusted message with pickle,
which can involve arbitrary code execution.
Make sure to authenticate the sources of messages
before unpickling them, e.g. with transport-level security
(such as CURVE or IPC permissions)
or authenticating messages themselves before deserializing.
Parameters
----------
flags : int
Any valid flags for :func:`Socket.recv`.
Returns
-------
obj : Python object
The Python object that arrives as a message.
Raises
------
ZMQError
for any of the reasons :func:`~Socket.recv` might fail
"""
msg = self.recv(flags)
return self._deserialize(msg, pickle.loads)