-
Notifications
You must be signed in to change notification settings - Fork 18
/
gpsfake.py.in
executable file
·474 lines (441 loc) · 13.9 KB
/
gpsfake.py.in
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
#!@PYSHEBANG@
# @GENERATED@
"""gpsfake -- test harness for gpsd.
Simulates one or more GPSes, playing back logfiles.
Most of the logic for this now lives in gps.fake,
factored out so we can write other test programs with it.
"""
#
#
# This file is Copyright 2010 by the GPSD project
# SPDX-License-Identifier: BSD-2-clause
# This code runs compatibly under Python 2 and 3.x for x >= 2.
# Preserve this property!
# Codacy D203 and D211 conflict, I choose D203
# Codacy D212 and D213 conflict, I choose D212
from __future__ import absolute_import, print_function, division
import argparse
import os
import platform
import pty
import shutil
import socket
import sys
import time
try:
fake_which = shutil.which # Available in Python 3.3 and later
except AttributeError:
import distutils.spawn # Deprecated as of Python 3.10
fake_which = distutils.spawn.find_executable
# pylint wants local modules last
try:
import gps
import gps.fake as gpsfake # The "as" pacifies pychecker
import gps.misc # for polybyte() polystr()
except ImportError as e:
sys.stderr.write(
"gpsfake: can't load Python gps libraries -- check PYTHONPATH.\n")
sys.stderr.write("%s\n" % e)
sys.exit(1)
gps_version = '@VERSION@'
if gps.__version__ != gps_version:
sys.stderr.write("gpsfake: ERROR: need gps module version %s, got %s\n" %
(gps_version, gps.__version__))
sys.exit(1)
try:
my_input = raw_input
except NameError:
my_input = input
# Get version of stdout for bytes data (NOP in Python 2)
bytesout = gps.get_bytes_stream(sys.stdout)
def hexdump(s):
"""Convert string to hex"""
rep = ""
for c in s:
rep += "%02x" % ord(c)
return rep
def check_xterm():
"""Check whether xterm and DISPLAY are available."""
xterm = fake_which('xterm')
return xterm and os.access(xterm, os.X_OK) and os.environ.get('DISPLAY')
def fakehook(linenumber, fakegps):
"""Do the real work."""
if not fakegps.testload.sentences:
sys.stderr.write("fakegps: no sentences in test load.\n")
raise SystemExit(1)
if linenumber % len(fakegps.testload.sentences) == 0:
if ((options.singleshot and
0 < linenumber)):
return False
if options.progress:
baton.twirl('*\b')
elif not options.singleshot:
if not options.quiet:
sys.stderr.write("gpsfake: log cycle of %s begins.\n"
% fakegps.testload.name)
time.sleep(options.cycle)
if ((options.linedump and
fakegps.testload.legend)):
ml = fakegps.testload.sentences[
linenumber % len(fakegps.testload.sentences)].strip()
if not fakegps.testload.textual:
ml = hexdump(ml)
announce = ((fakegps.testload.legend %
(linenumber % len(fakegps.testload.sentences) + 1)) +
gps.polystr(ml))
if options.promptme:
my_input(announce + "? ")
else:
print(announce)
if options.progress:
baton.twirl()
return True
if __name__ == '__main__':
description = 'Fake gpsd from a log file.'
usage = '%(prog)s [OPTIONS] logfile...'
epilog = ('BSD terms apply: see the file COPYING in the distribution root'
' for details.')
parser = argparse.ArgumentParser(
description=description,
epilog=epilog,
formatter_class=argparse.RawDescriptionHelpFormatter,
usage=usage)
parser.add_argument(
'-?',
action="help",
help='show this help message and exit'
)
parser.add_argument(
'-1',
'--singleshot',
dest='singleshot',
default=False,
action="store_true",
help=('Logfile is interpreted once only rather than repeatedly. '
'[Default %(default)s]')
)
parser.add_argument(
'-b',
'--baton',
dest='progress',
default=False,
action="store_true",
help=('Enable a twirling-baton progress indicator. '
'[Default %(default)s]')
)
parser.add_argument(
'-c',
'--cycle',
default=0.0,
dest='cycle',
metavar='CYCLE',
type=float,
help=('Sets the delay between sentences in seconds. '
'[Default %(default)s]'),
)
parser.add_argument(
'-D',
'--debug',
action='append',
dest='debug',
metavar='OPT',
help='Pass a -D option OPT to the daemon.',
)
parser.add_argument(
'-g',
'--gdb',
dest='gdb',
default=False,
action="store_true",
help='Run the gpsd instance within gpsfake under control of gdb.',
)
parser.add_argument(
'-G',
'--lldb',
dest='lldb',
default=False,
action="store_true",
help='Run the gpsd instance within gpsfake under control of lldb.',
)
parser.add_argument(
'-i',
'--promptme',
dest='promptme',
default=False,
action="store_true",
help=('Single-stepping through logfile. [Default %(default)s]'),
)
parser.add_argument(
'-l',
'--linedump',
dest='linedump',
default=False,
action="store_true",
help=('Dump a line or packet number just before each sentence. '
'[Default %(default)s]'),
)
parser.add_argument(
'-m',
'--monitor',
default=None,
dest='mon',
metavar='PROG',
help='Specifies a monitor program under which the daemon is run.',
)
parser.add_argument(
'-n',
'--nowait',
dest='nowait',
default=False,
action="store_true",
help=('Start the daemon reading from gpsfake without '
'waiting for a client.'),
)
parser.add_argument(
'-o',
'--options',
dest='options',
metavar='="OPT"',
help=('Pass options ="OPT" to the daemon.\n'
'The equal sign and Quotes required.'),
)
parser.add_argument(
'-p',
'--pipe',
dest='pipe',
default=False,
action="store_true",
help='Sets watcher mode and dump to stdout. [Default %(default)s]',
)
parser.add_argument(
'-P',
'--port',
default=None,
dest='port',
metavar='PORT',
type=int,
help="Sets the daemon's listening port to PORT [Default %(default)s]",
)
parser.add_argument(
'-q',
'--quiet',
dest='quiet',
default=False,
action="store_true",
help='Act in a quiet manner. [Default %(default)s]',
)
parser.add_argument(
'-r',
'--clientinit',
default='?WATCH={"json":true,"nmea":true}',
dest='client_init',
metavar='STR',
help=('Specifies an initialization command to use in pipe mode. '
'[Default %(default)s]'),
)
parser.add_argument(
'-s',
'--speed',
default=4800,
dest='speed',
metavar='SPEED',
type=int,
help='Sets the baud rate for the slave tty. [Default %(default)s]',
)
parser.add_argument(
'-S',
'--slow',
dest='slow',
default=False,
action="store_true",
help=('Insert realistic delays in the test input. '
'[Default %(default)s]'),
)
parser.add_argument(
'-t',
'--tcp',
dest='tcp',
default=False,
action="store_true",
help='Force TCP. [Default %(default)s]',
)
parser.add_argument(
'-T',
'--sysinfo',
dest='sysinfo',
default=False,
action="store_true",
help='Print some system information and exit.',
)
parser.add_argument(
'-u',
'--udp',
dest='udp',
default=False,
action="store_true",
help='Force UDP. [Default %(default)s]',
)
parser.add_argument(
'-v',
'--verbose',
dest='verbose',
default=0,
action='count',
help='Verbose. Repeat for more verbosity. [Default %(default)s]',
)
parser.add_argument(
'-W',
'--timeout',
default=60,
dest='timeout',
metavar='SEC',
type=int,
help='Specify timeout. [Default %(default)s]',
)
parser.add_argument(
'-V', '--version',
action='version',
version="%(prog)s: Version " + gps_version + "\n",
help='Output version to stderr, then exit'
)
parser.add_argument(
'-x',
'--predump',
dest='predump',
default=False,
action="store_true",
help='Dump packets as gpsfake gathers them. [Default %(default)s]',
)
parser.add_argument(
'arguments',
metavar='logfile',
nargs='*',
help='Logfile(s) to read and feed to gpsd. At least one required.'
)
options = parser.parse_args()
if options.sysinfo:
sys.stdout.write("sys %s platform %s\nWRITE_PAD = %.5f\n"
% (sys.platform, platform.platform(),
gpsfake.GetDelay(options.slow)))
raise SystemExit(0)
if not options.arguments:
sys.stderr.write("gpsfake: requires at least one logfile argument.\n")
raise SystemExit(0)
if options.promptme:
options.linedump = True
# debug options to pass to gpsd
doptions = ''
if options.debug:
doptions += "-D " + options.debug[0] + " "
if options.nowait:
doptions += "-n "
if options.options:
doptions += options.options
monitor = ()
timeout = 0
if options.gdb:
if check_xterm():
monitor = "xterm -e gdb -tui --args "
else:
monitor = "gdb --args "
timeout = 0
elif options.lldb:
if check_xterm():
monitor = "xterm -e lldb -- "
else:
monitor = "lldb -- "
timeout = 0
elif options.mon:
monitor = options.mon + " "
if options.timeout:
timeout = options.timeout
if ((not options.tcp and
not options.udp)):
try:
pty.openpty()
except (AttributeError, OSError):
sys.stderr.write('gpsfake: ptys not available, falling back'
' to UDP.\n')
options.udp = True
if options.progress:
baton = gps.client.baton("Processing %s" %
",".join(options.arguments), "done")
elif not options.quiet:
sys.stderr.write("Processing %s\n" % ",".join(options.arguments))
# Don't allocate a private port when cycling logs for client testing.
if ((options.port is None and
not options.pipe)):
options.port = int(gps.GPSD_PORT)
test = gpsfake.TestSession(options=doptions,
prefix=monitor,
predump=options.predump,
port=options.port,
slow=options.slow,
tcp=options.tcp,
timeout=timeout,
udp=options.udp,
verbose=options.verbose)
if options.pipe:
test.reporter = bytesout.write
if options.verbose:
options.progress = False
test.progress = sys.stderr.write
test.spawn()
try:
for logfile in options.arguments:
try:
test.gps_add(logfile, speed=options.speed, pred=fakehook,
oneshot=options.singleshot)
except gpsfake.TestLoadError as e:
sys.stderr.write("gpsfake: " + e.msg + "\n")
raise SystemExit(1)
except gpsfake.PacketError as e:
sys.stderr.write("gpsfake: " + e.msg + "\n")
raise SystemExit(1)
except gpsfake.DaemonError as e:
sys.stderr.write("gpsfake: " + e.msg + "\n")
raise SystemExit(1)
except IOError as e:
if e.filename is None:
sys.stderr.write("gpsfake: unknown internal I/O error %s\n"
% e)
else:
sys.stderr.write("gpsfake: no such file as %s or "
"file unreadable\n" % e.filename)
raise SystemExit(1)
except OSError:
sys.stderr.write("gpsfake: can't open pty.\n")
raise SystemExit(1)
try:
if options.pipe:
test.client_add(options.client_init + "\n")
# Give daemon time to get ready for the feeds.
# Without a delay here there's a window for test
# sentences to arrive before the watch takes effect.
# This needs to increase if leading sentences in
# test loads aren't being processed.
# Until the ISYNC driver was introduced, 1 sec was
# sufficient here. The extra 0.4s allows for the
# additional two 200ms delays introduced by the
# calls to gpsd_set_speed() in isync_detect()
time.sleep(1.4)
test.run()
except socket.error as msg:
sys.stderr.write("gpsfake: socket error %s.\n" % msg)
raise SystemExit(1)
except gps.client.json_error as e:
sys.stderr.write("gpsfake: JSON error on line %s is %s.\n"
% (repr(e.data), e.explanation))
raise SystemExit(1)
except KeyboardInterrupt:
sys.stderr.write("gpsfake: aborted\n")
raise SystemExit(1)
finally:
test.cleanup()
if options.progress:
baton.end()
# The following sets edit modes for GNU EMACS
# Local Variables:
# mode:python
# End:
# vim: set expandtab shiftwidth=4