This repository has been archived by the owner on Jul 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdvs-daemon.py
executable file
·779 lines (627 loc) · 32.7 KB
/
dvs-daemon.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
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
#!/usr/bin/env python
"""
InfoPlus DVS Daemon, voor het verwerken en opvragen van NS InfoPlus-DVS berichten.
Copyright (C) 2013-2016 Geert Wirken
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 <http://www.gnu.org/licenses/>.
"""
import sys
import zmq
from gzip import GzipFile
from cStringIO import StringIO
import pytz
from datetime import datetime, timedelta
import cPickle as pickle
import argparse
import gc
import logging
import logging.config
import threading
from collections import deque
from Queue import Queue
import infoplus_dvs
import dvs_util
def main():
"""
Main loop
"""
global station_store, trein_store, counters, locks, configs, system_status, message_queue
# Maak output in utf-8 mogelijk in Python 2.x:
reload(sys)
sys.setdefaultencoding("utf-8")
gc.set_debug(gc.DEBUG_UNCOLLECTABLE | gc.DEBUG_INSTANCES | gc.DEBUG_OBJECTS)
# Default config (nog naar losse configfile):
dvs_server = "tcp://127.0.0.1:8100"
dvs_client_bind = "tcp://0.0.0.0:8120"
# Initialiseer argparse
parser = argparse.ArgumentParser(description='RDT InfoPlus DVS daemon')
parser.add_argument('-c', '--config', dest='configFile', default='config/dvs-server.yaml',
action='store', help='Configuratiebestand')
parser.add_argument('-ls', '--laad-stations', dest='laadStations',
action='store_true', help='Laad station_store')
parser.add_argument('-lt', '--laad-treinen', dest='laadTreinen',
action='store_true', help='Laad trein_store')
args = parser.parse_args()
# Laad configuratie:
config = dvs_util.load_config(args.configFile)
# Stel logging in:
dvs_util.setup_logging(config)
# Geef logger instance:
logger = logging.getLogger(__name__)
logger.info('Server start op')
# Verwerk configuratie:
try:
dvs_server = config['bindings']['dvs_server']
dvs_client_bind = config['bindings']['client_server']
injector_bind = config['bindings']['injector_server']
except:
logger.exception("Configuratiefout, server wordt afgesloten")
sys.exit(1)
# Initialiseer datastores:
station_store = { }
trein_store = { }
# Initialiseer datastore locks
locks = { }
locks['trein'] = threading.Lock()
locks['station'] = threading.Lock()
# Initialiseer counters voor aantal verwerkte berichten,
# aantal dubbele berichten, aantal verouderde berichten,
# aantal keren GC op trein- en station store
counters = {}
counters['msg'] = 0
counters['dubbel'] = 0
counters['ouder'] = 0
counters['laat'] = 0
counters['gc_station'] = 0
counters['gc_trein'] = 0
counters['injecties'] = 0
counters['msg_time'] = {}
# Initialiseer system_status:
system_status = {}
system_status['status'] = 'UNKNOWN' # of DOWN of UP of RECOVERING
system_status['down_since'] = None
system_status['recovering_since'] = None
# Laad oude datastores in (indien gespecifeerd):
if args.laadStations == True:
station_store = laad_stations()
if args.laadTreinen == True:
trein_store = laad_treinen()
# Socket to talk to server
context = zmq.Context()
message_queue = Queue()
keep_departures = False
if 'debug' in config:
if config['debug']['keep_departures'] == True:
keep_departures = True
logger.warn("Debug optie 'keep_departures' actief: ritten worden niet gewist")
# Start een nieuwe thread om messages te verwerken
worker_thread = WorkerThread(keep_departures)
worker_thread.daemon = True
worker_thread.start()
# Start een nieuwe thread om client requests uit te lezen
client_thread = ClientThread(dvs_client_bind)
client_thread.daemon = True
client_thread.start()
# Start een nieuwe injector thread om client requests uit te lezen
injector_thread = InjectorThread(injector_bind)
injector_thread.daemon = True
injector_thread.start()
# Stel ZeroMQ in:
server_socket = context.socket(zmq.SUB)
# High water mark op 10.000 berichten:
server_socket.set_hwm(10000)
server_socket.connect(dvs_server)
# Stel envelope in:
envelope = ''
if 'zmq' in config and 'envelope' in config['zmq']:
envelope = config['zmq']['envelope']
server_socket.setsockopt(zmq.SUBSCRIBE, envelope)
# Registreer starttijd server:
starttime = datetime.now()
# Start nieuwe thread voor garbage collecting:
gc_stopped = threading.Event()
gc_thread = GarbageThread(gc_stopped, config, keep_departures)
gc_thread.daemon = True
gc_thread.start()
logger.info("Gereed voor ontvangen DVS berichten (van server %s), envelope: %s", dvs_server, envelope)
try:
while True:
multipart = server_socket.recv_multipart()
content = multipart[1:]
message_queue.put(content)
except KeyboardInterrupt:
logger.info('Afsluiten...')
server_socket.close()
context.term()
gc_stopped.set()
logger.info("Station store opslaan...")
pickle.dump(station_store, open('datadump/station.store', 'wb'), -1)
logger.info("Trein store opslaan...")
pickle.dump(trein_store, open('datadump/trein.store', 'wb'), -1)
logger.info(
"Statistieken: %s berichten verwerkt sinds %s", counters['msg'], starttime)
except Exception:
logger.error("Fout in main loop", exc_info=True)
def laad_stations():
"""
Laad stations uit pickle dump
"""
logger = logging.getLogger(__name__)
logger.info('Inladen station_store...')
station_store_file = open('datadump/station.store', 'rb')
store = pickle.load(station_store_file)
station_store_file.close()
return store
def laad_treinen():
"""
Laad treinen uit pickle dump
"""
logger = logging.getLogger(__name__)
logger.info('Inladen trein_store...')
trein_store_file = open('datadump/trein.store', 'rb')
store = pickle.load(trein_store_file)
trein_store_file.close()
return store
class WorkerThread(threading.Thread):
"""
Worker thread voor het verwerken van DVS berichten.
"""
logger = None
keep_departures = False
def __init__ (self, keep_departures):
self.logger = logging.getLogger(__name__)
self.keep_departures = keep_departures
threading.Thread.__init__(self, name='WorkerThread')
def run(self):
self.logger.info('Consumer thread gestart')
while True:
message = message_queue.get()
content = GzipFile('', 'r', 0 ,
StringIO(''.join(message))).read()
# Parse trein xml:
try:
trein = infoplus_dvs.parse_trein(content)
rit_station_code = trein.rit_station.code
if trein.status == '5':
# Markeer als vertrokken, zodat er een timestamp op staat
trein.markeer_vertrokken()
# Maak item in trein_store indien niet aanwezig
if trein.treinnr not in trein_store:
with locks['trein']:
trein_store[trein.treinnr] = {}
# Maak item in station_store indien niet aanwezig:
if rit_station_code not in station_store:
with locks['station']:
station_store[rit_station_code] = {}
# Update of insert trein aan station store:
if trein.treinnr in station_store[rit_station_code]:
# Trein komt reeds voor in station store voor dit station
if trein.rit_timestamp > station_store[rit_station_code][trein.treinnr].rit_timestamp:
# Bericht is nieuwer, update store:
station_store[rit_station_code][trein.treinnr] = trein
elif trein.rit_timestamp == station_store[rit_station_code][trein.treinnr].rit_timestamp:
# Bericht is nieuwer, update store:
self.logger.info('Dubbel bericht ontvangen: %s == %s, niet verwerkt (trein %s/%s)',
trein.rit_timestamp, station_store[rit_station_code][trein.treinnr].rit_timestamp,
trein.treinnr, trein.rit_station.code)
# Update counter voor dubbele berichten:
counters['dubbel'] += 1
# Update of insert trein aan trein store:
if rit_station_code in trein_store[trein.treinnr]:
# Trein komt reeds voor in trein store voor dit treinnr
if trein.rit_timestamp > trein_store[trein.treinnr][rit_station_code].rit_timestamp:
# Bericht is nieuwer, update store:
trein_store[trein.treinnr][rit_station_code] = trein
else:
# Bepaal 1 seconde threshold:
warn_threshold = station_store[rit_station_code][trein.treinnr].rit_timestamp - timedelta(seconds=5)
# Warning log message indien threshold van 1 seconde overschreden is:
if trein.rit_timestamp <= warn_threshold:
log_level = logging.WARNING
else:
log_level = logging.INFO
self.logger.log(log_level, 'Ouder bericht ontvangen: %s < %s, niet verwerkt (trein %s/%s)',
trein.rit_timestamp, station_store[rit_station_code][trein.treinnr].rit_timestamp,
trein.treinnr, trein.rit_station.code)
# Update counter voor verouderde berichten:
counters['ouder'] += 1
else:
# Trein kwam op dit station nog niet voor, voeg toe:
station_store[rit_station_code][trein.treinnr] = trein
if system_status['status'] == 'UP':
# Check op timestamp bericht:
# Tel als te laat indien vertrek < 70 minuten vanaf nu
verschil_vertrektijd = trein.vertrek - datetime.now(pytz.utc)
if verschil_vertrektijd.total_seconds() < 69 * 60:
counters['laat'] += 1
self.logger.warn('Trein %s/%s: te laat ontvangen: vertrek over %d minuten',
trein.treinnr, trein.rit_station.code, float(verschil_vertrektijd.total_seconds()) / 60)
# Update of insert trein aan trein store:
if rit_station_code in trein_store[trein.treinnr]:
# Trein komt reeds voor in trein store voor dit treinnr
if trein.rit_timestamp > trein_store[trein.treinnr][rit_station_code].rit_timestamp:
# Bericht is nieuwer, update store:
trein_store[trein.treinnr][rit_station_code] = trein
else:
# Treinnr kwam op dit station nog niet voor, voeg toe:
trein_store[trein.treinnr][rit_station_code] = trein
counters['msg'] += + 1
except infoplus_dvs.OngeldigDvsBericht:
self.logger.error('Ongeldig DVS bericht')
self.logger.debug('Ongeldig DVS bericht: %s', content)
except Exception:
self.logger.error(
'Fout tijdens DVS bericht verwerken', exc_info=True)
self.logger.error('DVS crash bericht: %s', content)
pass
class ClientThread(threading.Thread):
"""
Client thread voor verwerken requests van clients
"""
logger = None
dvs_client_bind = None
def __init__ (self, dvs_client_bind):
self.dvs_client_bind = dvs_client_bind
self.logger = logging.getLogger(__name__)
threading.Thread.__init__(self, name='ClientThread')
def run(self):
self.logger.info('Client thread gestart')
context = zmq.Context()
client_socket = context.socket(zmq.REP)
client_socket.bind(self.dvs_client_bind)
self.logger.info('Client thread gereed voor verbindingen (%s)', self.dvs_client_bind)
while True:
url = client_socket.recv()
try:
arguments = url.split('/')
if arguments[0] == 'station' and len(arguments) == 2:
# Haal alle treinen op voor gegeven station
station_code = arguments[1].upper()
if station_code in station_store:
with locks['station']:
client_socket.send_pyobj(
{'status': system_status,
'data': station_store[station_code]},
zmq.NOBLOCK)
else:
client_socket.send_pyobj({})
elif arguments[0] == 'trein' and len(arguments) == 2:
# Haal alle stations op voor gegeven trein
trein_nr = arguments[1]
if trein_nr in trein_store:
with locks['trein']:
client_socket.send_pyobj(
{'status': system_status,
'data': trein_store[trein_nr]}, zmq.NOBLOCK)
else:
client_socket.send_pyobj({})
elif arguments[0] == 'store' and len(arguments) == 2:
# Haal de volledige datastore op...
if arguments[1] == 'trein':
# Volledige trein store:
with locks['trein']:
client_socket.send_pyobj(trein_store, zmq.NOBLOCK)
elif arguments[1] == 'station':
# Volledige station store:
with locks['station']:
client_socket.send_pyobj(station_store, zmq.NOBLOCK)
else:
client_socket.send_pyobj(None)
elif arguments[0] == 'count' and len(arguments) == 2:
# Haal de grootte van de store op:
if arguments[1] == 'trein':
# Grootte van trein store:
client_socket.send_pyobj(len(trein_store))
elif arguments[1] == 'station':
# Grootte van station store:
client_socket.send_pyobj(len(station_store))
elif arguments[1] in counters:
# Standaard counter:
client_socket.send_pyobj(counters[arguments[1]])
else:
# Onbekend type:
client_socket.send_pyobj(None)
elif arguments[0] == 'status':
# Stuur statusinformatie terug:
if len(arguments) == 2 and arguments[1] == 'status':
client_socket.send_pyobj(system_status['status'])
else:
client_socket.send_pyobj(system_status)
else:
# Standaard antwoord
client_socket.send_pyobj(None)
except Exception:
client_socket.send_pyobj(None)
self.logger.exception('Fout bij sturen client response')
# Garbage collection thread:
class GarbageThread(threading.Thread):
"""
Thread die verantwoordelijk is voor garbage collection
"""
stopped = None
logger = None
msg_count_queue = None
count_time_window = 10 # 10 minuten
count_threshold = 1 # minimaal 1 bericht in 10m
recovery_time = 70 # 70 minuten voor volledig herstel
gc_threshold = 10 # 10 minuten na gepland vertrek wissen
gc_threshold_static = 0 # injecties: 0 minuten na gepland vertrek wissen
gc_threshold_departed = 120 # ritten 120 minuten na vertrek wissen
keep_departures = False # debugoptie
"""
Initialiseer GC thread
Paremeters:
- event: threading.Event() object
- configuration: config dict, bevat optioneel een key 'gc' met optioneel
waarden 'count_time_window', 'count_threshold', 'recovery_time', 'gc_threshold'
"""
def __init__(self, event, configuration, keep_departures):
threading.Thread.__init__(self, name='GarbageThread')
self.logger = logging.getLogger(__name__)
# Initialiseer downtime detectie queue
self.msg_count_queue = deque()
if 'downtime_detection' in configuration:
if 'count_time_window' in configuration['downtime_detection']:
self.count_time_window = int(configuration['downtime_detection']['count_time_window'])
if 'count_threshold' in configuration['downtime_detection']:
self.count_threshold = int(configuration['downtime_detection']['count_threshold'])
if 'recovery_time' in configuration['downtime_detection']:
self.recovery_time = int(configuration['downtime_detection']['recovery_time'])
if 'garbage_collection' in configuration:
if 'gc_threshold' in configuration['garbage_collection']:
self.gc_threshold = int(configuration['garbage_collection']['gc_threshold'])
if 'gc_threshold_static' in configuration['garbage_collection']:
self.gc_threshold_static = int(configuration['garbage_collection']['gc_threshold_static'])
if 'gc_threshold_departed' in configuration['garbage_collection']:
self.gc_threshold_departed = int(configuration['garbage_collection']['gc_threshold_departed'])
self.logger.info("GC thread geinitialiseerd")
self.logger.info("Configuratie downtimedetectie: window: %sm, threshold: >=%s bericht/min, recovery time: %sm",
self.count_time_window,
self.count_threshold,
self.recovery_time)
self.logger.info("Configuratie garbage collection: threshold: %sm, threshold statisch: %sm, threshold vertrokken: %sm",
self.gc_threshold,
self.gc_threshold_static,
self.gc_threshold_departed)
self.stopped = event
self.keep_departures = keep_departures
def run(self):
self.logger.debug("Initiele garbage collecting")
self.garbage_collect()
# Loop over garbage collecting iedere 1m:
while not self.stopped.wait(60):
try:
self.logger.debug("Periodieke garbage collecting")
self.garbage_collect()
self.logger.info(
"Statistieken: station_store=%s, trein_store=%s, status=%s",
len(station_store),
len(trein_store),
system_status['status'])
# Voeg nieuwe meting toe aan self.msg_count_queue
total_msg_now = counters['msg']
self.msg_count_queue.append(total_msg_now)
# Controleer aantal meetpunten:
if len(self.msg_count_queue) >= self.count_time_window:
# Bereken aantal ontvangen berichten:
total_msg_ago = self.msg_count_queue.popleft()
msg_received = total_msg_now - total_msg_ago
# Log aantal ontvangen berichten binnen tijdwindow:
self.logger.info('Ontvangen berichten (%sm window): %s (%.2f/m)',
self.count_time_window,
msg_received,
(msg_received / self.count_time_window))
# Bepaal eventuele downtime:
if msg_received < self.count_threshold:
self.logger.warning('Downtime gedetecteerd, %s berichten ontvangen (%sm window)',
msg_received, self.count_time_window)
# Registreer downtime status, en eventueel tijdstip van downtime
# (indien nog niet bekend)
system_status['status'] = 'DOWN'
if system_status['down_since'] == None:
# Downtime start nu
system_status['down_since'] = datetime.utcnow()
system_status['recovering_since'] = None
else:
self.logger.debug('Geen downtime gedetecteerd')
# Controleer status voor juiste actie:
if system_status['status'] == 'UNKNOWN' or \
system_status['status'] == 'DOWN':
# Systeem was down of past gestart. Nu komt betrouwbaar
# data binnen, zet status naar RECOVERING
self.logger.warning('Systeem is RECOVERING na downtime (gestart om %s)',
system_status['down_since'])
system_status['status'] = 'RECOVERING'
system_status['recovering_since'] = datetime.now()
elif system_status['status'] == 'RECOVERING':
# Systeem is aan het recoveren na downtime. Indien recovery-
# tijd voorbij is kan systeem weer naar UP
# Controleer recovery tijd:
recover_threshold_time = system_status['recovering_since'] + \
timedelta(minutes = self.recovery_time)
# Ook recovery tijd voorbij, systeemstatus is OK:
if datetime.now() >= recover_threshold_time:
system_status['status'] = 'UP'
self.logger.warning('Systeem weer UP na downtime (%s t/m %s) en recovery. Duur downtime %s',
system_status['down_since'], system_status['recovering_since'],
(system_status['recovering_since'] - system_status['down_since']))
system_status['down_since'] = None
system_status['recovering_since'] = None
else:
self.logger.debug('Onvoldoende data voor downtime-detectie')
# Stel downtime status in op UNKOWN en behandel verder als normale
# downtime (log starttijd, etc.)
system_status['status'] = 'UNKNOWN'
system_status['recovering_since'] = None
if system_status['down_since'] is None:
system_status['down_since'] = datetime.now()
except Exception:
self.logger.error('Fout in GC thread', exc_info=True)
def garbage_collect(self):
"""
Garbage collecting.
Ruimt alle treinen op welke nog niet vertrokken zijn, maar welke
al wel 10 minuten weg hadden moeten zijn (volgens actuele vertrektijd)
"""
global station_store, trein_store, counters
# Bereken threshold:
threshold = datetime.now(pytz.utc) - timedelta(minutes=self.gc_threshold)
threshold_statisch = datetime.now(pytz.utc) - timedelta(minutes=self.gc_threshold_static)
threshold_departed = datetime.now(pytz.utc) - timedelta(minutes=self.gc_threshold_departed)
# Performance controle; start:
start = datetime.now()
verwerkte_items = 0
# Check alle treinen in station_store:
for station in station_store:
try:
for trein_rit, trein in station_store[station].items():
if trein.is_vertrokken():
if trein.vertrokken_timestamp is None:
# Timestamp ontbreekt, voeg alsnog toe:
trein.markeer_vertrokken()
else:
# Controleer of threshold_departed overschreden is
try:
if trein.vertrokken_timestamp < threshold_departed and self.keep_departures is False:
del(station_store[station][trein_rit])
except KeyError:
self.logger.debug("GC: %s/%s al verwijderd", trein_rit, station)
else:
# Trein is nog niet vertrokken, controleer threshold om rit
# als vertrokken te markeren:
if (trein.statisch == False and trein.vertrek_actueel < threshold) \
or (trein.statisch == True and trein.vertrek_actueel + timedelta(seconds=trein.vertraging) < threshold_statisch):
try:
with locks['station']:
station_store[station][trein_rit].markeer_vertrokken()
verwerkte_items += 1
if trein.is_opgeheven():
# Voor opgeheven treinen komt geen wisbericht,
# daarom is het te verwachten dat deze GC'd worden
# Log alleen debug melding
self.logger.debug('GC [SS] %s/%s gemarkeerd als vertrokken (opgeheven)' % (trein_rit, station))
elif trein.statisch == True:
self.logger.debug('GC [SS] %s/%s gemarkeerd als vertrokken (statisch)' % (trein_rit, station))
else:
# Waarschuwing indien trein niet opgeheven, maar
# wel 10-minuten window overschreden:
self.logger.warn('GC [SS] %s/%s gemarkeerd als vertrokken (geen wisbericht ontvangen)' % (trein_rit, station))
counters['gc_station'] = counters['gc_station'] + 1
except KeyError:
self.logger.debug('GC [SS] Al verwijderd %s/%s', trein_rit, station)
except KeyError:
self.logger.warn('GC [SS] Station verwijderd %s', station)
# Bereken duur voor GC en duur per item
if verwerkte_items > 0:
duur = datetime.now() - start
self.logger.info("GC [SS] * %s items verwerkt in %s (%s per verwerking)", verwerkte_items, duur, (duur / verwerkte_items))
# Performance controle; start:
start = datetime.now()
verwerkte_items = 0
# Check alle treinen in trein_store:
for trein_rit in trein_store.keys():
try:
for station, trein in trein_store[trein_rit].items():
if trein.is_vertrokken():
if trein.vertrokken_timestamp is None:
# Timestamp ontbreekt, voeg alsnog toe:
trein.markeer_vertrokken()
self.logger.warning("GC: trein %s/%s vertrokken maar timestamp leeg", trein_rit, station)
else:
# Controleer of threshold_departed overschreden is
try:
if trein.vertrokken_timestamp < threshold_departed and self.keep_departures is False:
del(trein_store[trein_rit][station])
self.logger.debug("GC: TS, trein %s/%s verwijderd", trein_rit, station)
except KeyError:
self.logger.debug("GC: %s/%s al verwijderd", trein_rit, station)
else:
# Trein is nog niet vertrokken, controleer threshold om rit
# als vertrokken te markeren:
if (trein.statisch == False and trein.vertrek_actueel < threshold) \
or (trein.statisch == True and trein.vertrek_actueel + timedelta(seconds=trein.vertraging) < threshold_statisch):
# Geen trein verwerken die al als vertrokken is gemarkeerd:
try:
with locks['trein']:
trein_store[trein_rit][station].markeer_vertrokken()
verwerkte_items += 1
if trein.is_opgeheven():
# Voor opgeheven treinen komt geen wisbericht,
# daarom is het te verwachten dat deze GC'd worden
# Log alleen debug melding
self.logger.debug('GC [TS] %s/%s gemarkeerd als vertrokken (opgeheven)' % (trein_rit, station))
elif trein.statisch == True:
self.logger.debug('GC [TS] %s/%s gemarkeerd als vertrokken (statisch)' % (trein_rit, station))
else:
# Waarschuwing indien trein niet opgeheven, maar
# wel 10-minuten window overschreden:
self.logger.warn('GC [TS] %s/%s gemarkeerd als vertrokken (geen wisbericht ontvangen)' % (trein_rit, station))
counters['gc_trein'] = counters['gc_trein'] + 1
except KeyError:
self.logger.debug('GC [TS] Al verwijderd %s/%s', trein_rit, station)
except KeyError:
self.logger.debug('GC [TS] Al verwijderd %s', trein_rit)
# Verwijder treinen uit trein_store dict
# indien geen informatie meer:
if trein_rit in trein_store and len(trein_store[trein_rit]) == 0:
del(trein_store[trein_rit])
# Bereken duur voor GC en duur per item
if verwerkte_items > 0:
duur = datetime.now() - start
self.logger.debug("GC [TS] * %s items verwerkt in %s (%s per verwerking)", verwerkte_items, duur, (duur / verwerkte_items))
# Trigger Python GC na deze opruimronde:
gc.collect()
return
# Injector thread:
class InjectorThread(threading.Thread):
"""
Thread die verantwoordelijk is voor verwerken van DVS injecties
"""
logger = None
injector_bind = None
def __init__(self, injector_bind):
threading.Thread.__init__(self, name='InjectorThread')
self.logger = logging.getLogger(__name__)
self.logger.info("Injector geinitialiseerd")
self.injector_bind = injector_bind
def run(self):
# Bereid ZeroMQ voor:
context = zmq.Context()
client_socket = context.socket(zmq.REP)
client_socket.bind(self.injector_bind)
self.logger.info('Injector thread gereed (%s)', self.injector_bind)
while True:
try:
# Ontvang injection dict
trein_dict = client_socket.recv_json()
self.logger.debug("Nieuwe injectie: %s", trein_dict)
counters['injecties'] += 1
# Converteer ontvangen dict naar
trein = infoplus_dvs.parse_trein_dict(trein_dict, True)
rit_id = trein.rit_id
# Voeg trein toe aan stores:
with locks['trein']:
if rit_id not in trein_store:
trein_store[rit_id] = {}
# Maak item in station_store indien niet aanwezig:
with locks['station']:
if trein.rit_station.code not in station_store:
station_store[trein.rit_station.code] = {}
# Voeg geinjecteerde trein toe aan station en trein stores:
station_store[trein.rit_station.code][rit_id] = trein
trein_store[rit_id][trein.rit_station.code] = trein
# Stuur response naar injector
client_socket.send_json({'result': True})
except Exception as e:
self.logger.exception("Fout tijdens verwerken injectie: %s", e)
client_socket.send_json({'result': False, 'error': str(e)})
if __name__ == "__main__":
main()