-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathqueue_respond.py
executable file
·87 lines (66 loc) · 2.47 KB
/
queue_respond.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from sys import stdout
import random
import string
import txnats
from twisted.logger import globalLogPublisher
from simple_log_observer import simpleObserver
from twisted.logger import Logger
log = Logger()
from twisted.internet import reactor
from twisted.internet.task import LoopingCall
from twisted.internet.endpoints import TCP4ClientEndpoint
from twisted.internet.endpoints import connectProtocol
responder_id = ''.join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(8))
def respond_on_msg(nats_protocol, sid, subject, reply_to, payload):
"""
Write the message payload to standard out, and if
there is a reply_to, publish a message to it.
"""
stdout.write(payload.decode())
stdout.write("\r\n")
if reply_to:
nats_protocol.pub(reply_to, "Roger, from {}!".format(responder_id))
def listen(nats_protocol):
"""
When the protocol is first connected, make a subscription.
"""
log.info("HELLO LISTEN")
nats_protocol.sub("a-queue", "1",
queue_group="excelsior",
on_msg=respond_on_msg)
pinger = LoopingCall(nats_protocol.ping)
pinger.reactor = nats_protocol.reactor
pinger.start(10, now=True)
def create_client(reactor, host, port):
"""
Start a Nats Protocol and connect it to a NATS endpoint over TCP4
which subscribes a subject with a callback that sends a response
if it gets a reply_to.
"""
log.info("Start client.")
point = TCP4ClientEndpoint(reactor, host, port)
nats_protocol = txnats.io.NatsProtocol(verbose=False, on_connect=listen)
# Because NatsProtocol implements the Protocol interface, Twisted's
# connectProtocol knows how to connected to the endpoint.
connecting = connectProtocol(point, nats_protocol)
# Log if there is an error making the connection.
connecting.addErrback(on_fail_to_connect, nats_protocol)
# Log what is returned by the connectProtocol.
connecting.addCallback(lambda np: log.info("{p}", p=np))
return connecting
def on_fail_to_connect(error, nats_protocol):
"""Exit on failure, the process manager
should try restarting, (systemd)"""
log.error("{error}", error=error)
nats_protocol.reactor.stop()
def main(reactor):
host = "demo.nats.io"
port = 4222
create_client(reactor, host, port)
if __name__ == '__main__':
globalLogPublisher.addObserver(simpleObserver)
main(reactor)
reactor.run()