File: pysocket.py

package info (click to toggle)
pyzmq 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,252 kB
  • sloc: python: 6,538; ansic: 171; makefile: 156; sh: 29
file content (364 lines) | stat: -rw-r--r-- 11,649 bytes parent folder | download
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
"""0MQ Socket pure Python methods."""

#
#    Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley
#
#    This file is part of pyzmq.
#
#    pyzmq is free software; you can redistribute it and/or modify it under
#    the terms of the Lesser GNU General Public License as published by
#    the Free Software Foundation; either version 3 of the License, or
#    (at your option) any later version.
#
#    pyzmq is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    Lesser GNU General Public License for more details.
#
#    You should have received a copy of the Lesser GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

#-----------------------------------------------------------------------------
# Python Imports
#-----------------------------------------------------------------------------

import random
import codecs

import zmq
from zmq.core import constants
from zmq.core.constants import *
from zmq.core.error import ZMQError, ZMQBindError
from zmq.utils import jsonapi
from zmq.utils.strtypes import bytes,unicode,basestring

try:
    import cPickle
    pickle = cPickle
except:
    cPickle = None
    import pickle

#-----------------------------------------------------------------------------
# Code
#-----------------------------------------------------------------------------

def setsockopt_string(self, option, optval, encoding='utf-8'):
    """s.setsockopt_string(option, optval, encoding='utf-8')

    Set socket options with a unicode object it 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 : unicode string (unicode on py2, str on py3)
        The value of the option to set.
    encoding : str
        The encoding to be used, default is utf8
    """
    if not isinstance(optval, unicode):
        raise TypeError("unicode strings only")
    return self.setsockopt(option, optval.encode(encoding))

def setsockopt_string(self, option, optval, encoding='utf-8'):
    """s.setsockopt_string(option, optval, encoding='utf-8')

    Set socket options with a unicode object it 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 : unicode string (unicode on py2, str on py3)
        The value of the option to set.
    encoding : str
        The encoding to be used, default is utf8
    """
    if not isinstance(optval, unicode):
        raise TypeError("unicode strings only")
    return self.setsockopt(option, optval.encode(encoding))

def getsockopt_string(self, option, encoding='utf-8'):
    """s.getsockopt_string(option, encoding='utf-8')

    Get the value of a socket option.

    See the 0MQ documentation for details on specific options.

    Parameters
    ----------
    option : int
        The option to retrieve. Currently, IDENTITY is the only
        gettable option that can return a string.

    Returns
    -------
    optval : unicode string (unicode on py2, str on py3)
        The value of the option as a unicode string.
    """
    
    if option not in constants.bytes_sockopts:
        raise TypeError("option %i will not return a string to be decoded"%option)
    return self.getsockopt(option).decode(encoding)

def bind_to_random_port(self, addr, min_port=49152, max_port=65536, max_tries=100):
    """s.bind_to_random_port(addr, min_port=49152, max_port=65536, max_tries=100)

    Bind this socket to a random port in a range.

    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
    """
    for i in range(max_tries):
        try:
            port = random.randrange(min_port, max_port)
            self.bind('%s:%s' % (addr, port))
        except ZMQError:
            pass
        else:
            return port
    raise ZMQBindError("Could not bind socket to random port.")

#-------------------------------------------------------------------------
# Sending and receiving messages
#-------------------------------------------------------------------------

def send_multipart(self, msg_parts, flags=0, copy=True, track=False):
    """s.send_multipart(msg_parts, flags=0, copy=True, track=False)

    Send a sequence of buffers as a multipart message.

    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
        SNDMORE is handled automatically for frames before the last.
    copy : bool, optional
        Should the frame(s) be sent in a copying or non-copying manner.
    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 `pending` property will
        be True until the last send is completed.
    """
    for msg in msg_parts[:-1]:
        self.send(msg, 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)

def recv_multipart(self, flags=0, copy=True, track=False):
    """s.recv_multipart(flags=0, copy=True, track=False)

    Receive a multipart message as a list of bytes or Frame objects.

    Parameters
    ----------
    flags : int, optional
        Any supported flag: NOBLOCK. If NOBLOCK is set, this method
        will raise a ZMQError with EAGAIN if a message is not ready.
        If NOBLOCK is not set, then this method will block until a
        message arrives.
    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`.
    
    """
    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)
    
    return parts

def send_string(self, u, flags=0, copy=False, encoding='utf-8'):
    """s.send_string(u, flags=0, copy=False, encoding='utf-8')

    Send a Python unicode string as a message with an encoding.
    
    0MQ communicates with raw bytes, so you must encode/decode
    text (unicode on py2, str on py3) around 0MQ.

    Parameters
    ----------
    u : Python unicode string (unicode on py2, str on py3)
        The unicode string to send.
    flags : int, optional
        Any valid send flag.
    encoding : str [default: 'utf-8']
        The encoding to be used
    """
    if not isinstance(u, basestring):
        raise TypeError("unicode/str objects only")
    return self.send(u.encode(encoding), flags=flags, copy=copy)

def recv_string(self, flags=0, encoding='utf-8'):
    """s.recv_string(flags=0, encoding='utf-8')

    Receive a unicode string, as sent by send_string.
    
    Parameters
    ----------
    flags : int
        Any valid recv flag.
    encoding : str [default: 'utf-8']
        The encoding to be used

    Returns
    -------
    s : unicode string (unicode on py2, str on py3)
        The Python unicode string that arrives as encoded bytes.
    """
    msg = self.recv(flags=flags, copy=False)
    return codecs.decode(msg.bytes, encoding)

def send_pyobj(self, obj, flags=0, protocol=-1):
    """s.send_pyobj(obj, flags=0, protocol=-1)

    Send a Python object as a message using pickle to serialize.

    Parameters
    ----------
    obj : Python object
        The Python object to send.
    flags : int
        Any valid send flag.
    protocol : int
        The pickle protocol number to use. Default of -1 will select
        the highest supported number. Use 0 for multiple platform
        support.
    """
    msg = pickle.dumps(obj, protocol)
    return self.send(msg, flags)

def recv_pyobj(self, flags=0):
    """s.recv_pyobj(flags=0)

    Receive a Python object as a message using pickle to serialize.

    Parameters
    ----------
    flags : int
        Any valid recv flag.

    Returns
    -------
    obj : Python object
        The Python object that arrives as a message.
    """
    s = self.recv(flags)
    return pickle.loads(s)

def send_json(self, obj, flags=0):
    """s.send_json(obj, flags=0)

    Send a Python object as a message using json to serialize.

    Parameters
    ----------
    obj : Python object
        The Python object to send.
    flags : int
        Any valid send flag.
    """
    if jsonapi.jsonmod is None:
        raise ImportError('jsonlib{1,2}, json or simplejson library is required.')
    else:
        msg = jsonapi.dumps(obj)
        return self.send(msg, flags)

def recv_json(self, flags=0):
    """s.recv_json(flags=0)

    Receive a Python object as a message using json to serialize.

    Parameters
    ----------
    flags : int
        Any valid recv flag.

    Returns
    -------
    obj : Python object
        The Python object that arrives as a message.
    """
    if jsonapi.jsonmod is None:
        raise ImportError('jsonlib{1,2}, json or simplejson library is required.')
    else:
        msg = self.recv(flags)
        return jsonapi.loads(msg)

def poll(self, timeout=None, flags=POLLIN):
    """s.poll(timeout=None, flags=POLLIN)

    Poll the socket for events.  The default is to poll forever for incoming
    events.  Timeout is in milliseconds, if specified.

    Parameters
    ----------
    timeout : int [default: None]
        The timeout (in milliseconds) to wait for an event. If unspecified
        (or secified None), will wait forever for an event.
    flags : bitfield (int) [default: POLLIN]
        The event flags to poll for (any combination of POLLIN|POLLOUT).
        The default is to check for incoming events (POLLIN).

    Returns
    -------
    events : bitfield (int)
        The events that are ready and waiting.  Will be 0 if no events were ready
        by the time timeout was reached.
    """

    if self.closed:
        raise ZMQError(ENOTSUP)

    p = zmq.Poller()
    p.register(self, flags)
    evts = dict(p.poll(timeout))
    # return 0 if no events, otherwise return event bitfield
    return evts.get(self, 0)