-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote_thr.py
64 lines (45 loc) · 1.41 KB
/
remote_thr.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
#!/usr/bin/env python
# coding: utf-8
# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Modified BSD License.
#
# Some original test code Copyright (c) 2007-2010 iMatix Corporation,
# Used under LGPLv3
import sys
import time
import zmq
from parse_args import parse_args
def remote_thr(url, count, size, copy, poll):
"""send a bunch of messages on a PUSH socket"""
ctx = zmq.Context()
s = ctx.socket(zmq.PUSH)
# Add your socket options here.
# For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM.
if poll:
p = zmq.Poller()
p.register(s)
print("Connecting to: {url}".format(url=url))
s.connect(url)
print("Sending count={count}, size={size}".format(count=count, size=size))
msg = zmq.Message(b' ' * size)
block = zmq.NOBLOCK if poll else 0
for i in range(count):
if poll:
res = p.poll()
assert (res[0][1] & zmq.POLLOUT)
s.send(msg, block, copy=copy)
if i % 150 == 0:
sys.stdout.write('.')
sys.stdout.flush()
s.close()
ctx.term()
print("\nDone.")
def main():
args = parse_args()
tic = time.time()
remote_thr(args.url, args.count, args.size, args.poll, args.copy)
toc = time.time()
if (toc - tic) < 3:
print ("For best results, tests should take at least a few seconds.")
if __name__ == '__main__':
main()