-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathopendata-nationalrail-client.py
111 lines (87 loc) · 3.46 KB
/
opendata-nationalrail-client.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
#
# National Rail Open Data client demonstrator
# Copyright (C)2019-2024 OpenTrainTimes Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
import stomp
import zlib
import io
import time
import socket
import logging
logging.basicConfig(format='%(asctime)s %(levelname)s\t%(message)s', level=logging.INFO)
try:
import PPv16
except ModuleNotFoundError:
logging.error("Class files not found - please configure the client following steps in README.md!")
USERNAME = ''
PASSWORD = ''
HOSTNAME = 'darwin-dist-44ae45.nationalrail.co.uk'
HOSTPORT = 61613
# Always prefixed by /topic/ (it's not a queue, it's a topic)
TOPIC = '/topic/darwin.pushport-v16'
CLIENT_ID = socket.getfqdn()
HEARTBEAT_INTERVAL_MS = 15000
RECONNECT_DELAY_SECS = 15
if USERNAME == '':
logging.error("Username not set - please configure your username and password in opendata-nationalrail-client.py!")
def connect_and_subscribe(connection):
if stomp.__version__[0] < '5':
connection.start()
connect_header = {'client-id': USERNAME + '-' + CLIENT_ID}
subscribe_header = {'activemq.subscriptionName': CLIENT_ID}
connection.connect(username=USERNAME,
passcode=PASSWORD,
wait=True,
headers=connect_header)
connection.subscribe(destination=TOPIC,
id='1',
ack='auto',
headers=subscribe_header)
class StompClient(stomp.ConnectionListener):
def on_heartbeat(self):
logging.info('Received a heartbeat')
def on_heartbeat_timeout(self):
logging.error('Heartbeat timeout')
def on_error(self, message):
logging.error(message)
def on_disconnected(self):
logging.warning('Disconnected - waiting %s seconds before exiting' % RECONNECT_DELAY_SECS)
time.sleep(RECONNECT_DELAY_SECS)
exit(-1)
def on_connecting(self, host_and_port):
logging.info('Connecting to ' + host_and_port[0])
def on_message(self, frame):
try:
logging.info('Message sequence=%s, type=%s received', frame.headers['SequenceNumber'],
frame.headers['MessageType'])
bio = io.BytesIO()
bio.write(str.encode('utf-16'))
bio.seek(0)
msg = zlib.decompress(frame.body, zlib.MAX_WBITS | 32)
logging.debug(msg)
obj = PPv16.CreateFromDocument(msg)
logging.info("Successfully received a Darwin Push Port message from %s", obj.ts)
logging.debug('Raw XML=%s' % msg)
except Exception as e:
logging.error(str(e))
conn = stomp.Connection12([(HOSTNAME, HOSTPORT)],
auto_decode=False,
heartbeats=(HEARTBEAT_INTERVAL_MS, HEARTBEAT_INTERVAL_MS))
conn.set_listener('', StompClient())
connect_and_subscribe(conn)
while True:
time.sleep(1)
conn.disconnect()