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
|
"""A test that publishes NumPy arrays.
Uses REQ/REP (on PUB/SUB socket + 1) to synchronize
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2010 Brian Granger
#
# Distributed under the terms of the New BSD License. The full license is in
# the file COPYING.BSD, distributed as part of this software.
#-----------------------------------------------------------------------------
import sys
import time
import zmq
import numpy
def sync(bind_to):
# use bind socket + 1
sync_with = ':'.join(bind_to.split(':')[:-1] +
[str(int(bind_to.split(':')[-1]) + 1)])
ctx = zmq.Context.instance()
s = ctx.socket(zmq.REP)
s.bind(sync_with)
print("Waiting for subscriber to connect...")
s.recv()
print(" Done.")
s.send('GO')
def main():
if len (sys.argv) != 4:
print('usage: publisher <bind-to> <array-size> <array-count>')
sys.exit (1)
try:
bind_to = sys.argv[1]
array_size = int(sys.argv[2])
array_count = int (sys.argv[3])
except (ValueError, OverflowError) as e:
print('array-size and array-count must be integers')
sys.exit (1)
ctx = zmq.Context()
s = ctx.socket(zmq.PUB)
s.bind(bind_to)
sync(bind_to)
print("Sending arrays...")
for i in range(array_count):
a = numpy.random.rand(array_size, array_size)
s.send_pyobj(a)
print(" Done.")
if __name__ == "__main__":
main()
|