-
Notifications
You must be signed in to change notification settings - Fork 20
/
JChipFake.py
127 lines (111 loc) · 4.07 KB
/
JChipFake.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
#!/usr/bin/env python
#------------------------------------------------------------------------------
# JChipFake.py: program for communicating with CrossMgr.
#
# Copyright (C) Edward Sitarski, 2017.
import time
import socket
import datetime
import threading
from queue import Queue
#------------------------------------------------------------------------------
# CrossMgr's port.
DEFAULT_PORT = 53135
DEFAULT_HOST = '127.0.0.1'
#------------------------------------------------------------------------------
# JChip delimiter (CR, **not** LF)
CR = '\r'
class JChipFake( threading.Thread ):
def __init__( self, q, host=DEFAULT_HOST, port=DEFAULT_PORT, connectionName='JChipFake', group=None, target=None, name=None ):
super().__init__( group=group, target=target, name=name )
self.daemon = True
self.q = q
self.host = host
self.port = port
self.connectionName = connectionName
self.count = 0
self.sock = None
def connect( self ):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.settimeout( 3.0 )
print( 'Trying to connect to CrossMgr...' )
self.sock.connect((self.host, self.port))
#------------------------------------------------------------------------------
print( 'Connection succeeded!' )
print( 'Sending connection name...', self.connectionName )
message = 'N0000{}{}'.format(self.connectionName, CR)
self.sock.send( message.encode() )
#------------------------------------------------------------------------------
print( 'Waiting for get time command...' )
while True:
received = self.sock.recv(1).decode()
if received == 'G':
while received[-1] != CR:
received += self.sock.recv(1).decode()
print( 'Received cmd: "{}" from CrossMgr'.format(received[:-1]) )
break
#------------------------------------------------------------------------------
print( 'Send gettime data...' )
# format is GT0HHMMSShh<CR> where hh is 100's of a second.
# The '0' (zero) after GT is the number of days running and is ignored by CrossMgr.
# The date can be sent in the form date=YYYYMMDD.
self.dBase = datetime.datetime.now()
message = 'GT0%02d%02d%02d%02d date=%s%s' % (
self.dBase.hour, self.dBase.minute, self.dBase.second, int((self.dBase.microsecond / 1000000.0) * 100.0),
self.dBase.strftime('%Y%m%d'),
CR
)
print( message[:-1] )
self.sock.send( message.encode() )
#------------------------------------------------------------------------------
print( 'Waiting for send command from CrossMgr...' )
while 1:
received = self.sock.recv(1).decode()
if received == 'S':
while received[-1] != CR:
received += self.sock.recv(1).decode()
print( 'Received cmd: "%s" from CrossMgr' % received[:-1] )
break
#------------------------------------------------------------------------------
# Function to format tag and time in JChip format.
# Parameter t must be a Python datetime.
# eg. Z413A35 10:11:16.4433 10 10000 C7
def formatMessage( self, tag, t ):
message = "DJ%s %s 10 %05X C7 date=%s%s" % (
tag, # Tag code
t.strftime('%H:%M:%S.%f'), # hh:mm:ss.ff
self.count, # Data index number in hex.
t.strftime('%Y%m%d'),
CR
)
self.count += 1
return message
def run( self ):
while 1:
tag, t = q.get()
while 1:
if not self.sock:
try:
self.connect()
except Exception as e:
print( 'connection error:', e )
print( 'waiting 5 seconds...' )
time.sleep( 5 )
self.sock = None
continue
message = self.formatMessage( tag, t )
print( 'sending:', message[:-1] )
try:
self.sock.send( message.encode() )
break
except Exception as e:
print( 'communication error:', e )
self.sock = None
if __name__ == '__main__':
# Use a queue and thread so we won't lose drop reads if we have a communcation failure.
q = Queue()
sender = JChipFake( q, host=DEFAULT_HOST, connectionName='JChipFake' )
sender.start()
for i in range(10,1000,10):
q.put( (i, datetime.datetime.now()) ) # put tag (or bib) and datetime on queue to transmit (no wait).
time.sleep( 1.5 )