forked from jks-prv/kiwiclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kiwirecorder.py
executable file
·1116 lines (1008 loc) · 49.4 KB
/
kiwirecorder.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
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
## -*- python -*-
import array, logging, os, struct, sys, time, copy, threading, os
import gc
import math
import numpy as np
from copy import copy
from traceback import print_exc
import png
from kiwi import KiwiSDRStream, KiwiWorker
import optparse as optparse
from optparse import OptionParser
from optparse import OptionGroup
HAS_PyYAML = True
try:
## needed for the --agc-yaml option
import yaml
if yaml.__version__.split('.')[0] < '5':
print('wrong PyYAML version: %s < 5; PyYAML is only needed when using the --agc-yaml option' % yaml.__version__)
raise ImportError
except ImportError:
## (only) when needed an exception is raised, see below
HAS_PyYAML = False
HAS_RESAMPLER = True
try:
## if available use libsamplerate for resampling
from samplerate import Resampler
except ImportError:
## otherwise linear interpolation is used
HAS_RESAMPLER = False
try:
if os.environ['USE_LIBSAMPLERATE'] == 'False':
HAS_RESAMPLER = False
except KeyError:
pass
def clamp(x, xmin, xmax):
if x < xmin:
x = xmin
if x > xmax:
x = xmax
return x
def by_dBm(e):
return e['dBm']
def _write_wav_header(fp, filesize, samplerate, num_channels, is_kiwi_wav):
fp.write(struct.pack('<4sI4s', b'RIFF', filesize - 8, b'WAVE'))
bits_per_sample = 16
byte_rate = samplerate * num_channels * bits_per_sample // 8
block_align = num_channels * bits_per_sample // 8
fp.write(struct.pack('<4sIHHIIHH', b'fmt ', 16, 1, num_channels, int(samplerate+0.5), byte_rate, block_align, bits_per_sample))
if not is_kiwi_wav:
fp.write(struct.pack('<4sI', b'data', filesize - 12 - 8 - 16 - 8))
class RingBuffer(object):
def __init__(self, len):
self._array = np.zeros(len, dtype='float64')
self._index = 0
self._is_filled = False
def insert(self, sample):
self._array[self._index] = sample
self._index += 1
if self._index == len(self._array):
self._is_filled = True
self._index = 0
def is_filled(self):
return self._is_filled
def applyFn(self, fn):
return fn(self._array)
def max_abs(self):
return np.max(np.abs(self._array))
class GNSSPerformance(object):
def __init__(self):
self._last_solution = -1
self._last_ts = -1
self._num_frames = 0
self._buffer_dt_per_frame = RingBuffer(10)
self._buffer_num_frames = RingBuffer(10)
def analyze(self, filename, gps):
## gps = {'last_gps_solution': 1, 'dummy': 0, 'gpsnsec': 886417795, 'gpssec': 466823}
self._num_frames += 1
if gps['last_gps_solution'] == 0 and self._last_solution != 0:
ts = gps['gpssec'] + 1e-9 * gps['gpsnsec']
msg_gnss_drift = ''
if self._last_ts != -1:
dt = ts - self._last_ts
if dt < -12*3600*7:
dt += 24*3600*7
if abs(dt) < 10:
self._buffer_dt_per_frame.insert(dt / self._num_frames)
self._buffer_num_frames.insert(self._num_frames)
if self._buffer_dt_per_frame.is_filled():
std_dt_per_frame = self._buffer_dt_per_frame.applyFn(np.std)
mean_num_frames = self._buffer_num_frames.applyFn(np.mean)
msg_gnss_drift = 'std(clk drift)= %5.1f m' % (3e8 * std_dt_per_frame * mean_num_frames)
logging.info('%s: (%2d,%3d) t_gnss= %16.9f %s'
% (filename, self._last_solution, self._num_frames, ts, msg_gnss_drift))
self._num_frames = 0
self._last_ts = ts
self._last_solution = gps['last_gps_solution']
class Squelch(object):
def __init__(self, options):
self._status_msg = not options.quiet
self._threshold = options.sq_thresh
self._squelch_tail = options.squelch_tail ## in seconds
self._ring_buffer = RingBuffer(65)
self._squelch_on_seq = None
self.set_sample_rate(12000.0) ## default setting
def set_threshold(self, threshold):
self._threshold = threshold
return self
def set_sample_rate(self, fs):
self._tail_delay = round(self._squelch_tail*fs/512) ## seconds to number of buffers
def process(self, seq, rssi):
if not self._ring_buffer.is_filled() or self._squelch_on_seq is None:
self._ring_buffer.insert(rssi)
if not self._ring_buffer.is_filled():
return False
median_nf = self._ring_buffer.applyFn(np.median)
rssi_thresh = median_nf + self._threshold
is_open = self._squelch_on_seq is not None
if is_open:
rssi_thresh -= 6
rssi_green = rssi >= rssi_thresh
if rssi_green:
self._squelch_on_seq = seq
is_open = True
if self._status_msg:
sys.stdout.write('\r Median: %6.1f Thr: %6.1f %s ' % (median_nf, rssi_thresh, ("s", "S")[is_open]))
sys.stdout.flush()
self._need_nl = True
if not is_open:
return False
if seq > self._squelch_on_seq + self._tail_delay:
logging.info("\nSquelch closed")
self._squelch_on_seq = None
return False
return is_open
class KiwiSoundRecorder(KiwiSDRStream):
def __init__(self, options):
super(KiwiSoundRecorder, self).__init__()
self._options = options
self._type = 'SND'
freq = options.frequency
#logging.info("%s:%s freq=%d" % (options.server_host, options.server_port, freq))
self._freq = freq
self._freq_offset = options.freq_offset
self._start_ts = None
self._start_time = None
self._squelch = Squelch(self._options) if options.sq_thresh is not None else None
if options.scan_yaml is not None:
self._squelch = [Squelch(options).set_threshold(options.scan_yaml['threshold']) for _ in range(len(options.scan_yaml['frequencies']))]
self._last_gps = dict(zip(['last_gps_solution', 'dummy', 'gpssec', 'gpsnsec'], [0,0,0,0]))
self._resampler = None
self._gnss_performance = GNSSPerformance()
def set_freq(self, freq):
self._freq = freq
mod = self._options.modulation
lp_cut = self._options.lp_cut
hp_cut = self._options.hp_cut
if mod == 'am' or mod == 'amn':
# For AM, ignore the low pass filter cutoff
lp_cut = -hp_cut if hp_cut is not None else hp_cut
self.set_mod(mod, lp_cut, hp_cut, self._freq)
def _setup_rx_params(self):
if self._options.no_api:
self._setup_no_api()
return
self.set_name(self._options.user)
self.set_freq(self._freq)
if self._options.agc_gain != None: ## fixed gain (no AGC)
self.set_agc(on=False, gain=self._options.agc_gain)
elif self._options.agc_yaml_file != None: ## custon AGC parameters from YAML file
self.set_agc(**self._options.agc_yaml)
else: ## default is AGC ON (with default parameters)
self.set_agc(on=True)
if self._options.compression is False:
self._set_snd_comp(False)
if self._options.nb is True:
gate = self._options.nb_gate
if gate < 100 or gate > 5000:
gate = 100
nb_thresh = self._options.nb_thresh
if nb_thresh < 0 or nb_thresh > 100:
nb_thresh = 50
self.set_noise_blanker(gate, nb_thresh)
if self._options.de_emp is True:
self.set_de_emp(1)
self._output_sample_rate = self._sample_rate
if self._squelch:
if type(self._squelch) == list: ## scan mode
for s in self._squelch:
s.set_sample_rate(self._sample_rate)
else:
self._squelch.set_sample_rate(self._sample_rate)
if self._options.test_mode:
self._set_stats()
if self._options.resample > 0:
if not HAS_RESAMPLER:
self._output_sample_rate = self._options.resample
self._ratio = float(self._output_sample_rate)/self._sample_rate
logging.info("libsamplerate not available: linear interpolation is used for low-quality resampling. "
"(pip/pip3 install samplerate)")
logging.info('resampling from %g to %d Hz (ratio=%f)' % (self._sample_rate, self._options.resample, self._ratio))
else:
fs = 10*round(self._sample_rate/10) ## rounded sample rate
ratio = self._options.resample / fs
## work around a bug in python-libsamplerate:
## the following makes sure that ratio * 512 is an integer
## at the expense of resampling frequency precision for some resampling frequencies (it's ok for 375 Hz)
n = 512 ## KiwiSDR block length for samples
m = round(ratio*n)
self._ratio = m/n
self._output_sample_rate = self._ratio * self._sample_rate
logging.info('resampling from %g to %g Hz (ratio=%f)' % (self._sample_rate, self._output_sample_rate, self._ratio))
def _squelch_status(self, seq, samples, rssi):
if not self._options.quiet:
sys.stdout.write('\rBlock: %08x, RSSI: %6.1f ' % (seq, rssi))
self._need_nl = True
if self._squelch and type(self._squelch) == list: ## scan mode
if self._options.quiet:
sys.stdout.write('\r')
sys.stdout.write(" scan: [%s] freq = %g kHz " % (self._options.scan_state, self._freq))
self._need_nl = True
sys.stdout.flush()
is_open = True
if self._squelch:
if type(self._squelch) == list: ## scan mode
if self._options.scan_state == "WAIT":
is_open = False
now = time.time()
if now - self._options.scan_time > self._options.scan_yaml['wait']:
self._options.scan_time = now
self._options.scan_state = 'DWELL'
if self._options.scan_state == 'DWELL':
is_open = self._squelch[self._options.scan_index].process(seq, rssi)
now = time.time()
if not is_open and now - self._options.scan_time > self._options.scan_yaml['dwell']:
self._options.scan_index = (self._options.scan_index + 1) % len(self._options.scan_yaml['frequencies'])
self.set_freq(self._options.scan_yaml['frequencies'][self._options.scan_index])
self._options.scan_time = now
self._options.scan_state = 'WAIT'
self._start_ts = None
self._start_time = None
else: ## single channel mode
is_open = self._squelch.process(seq, rssi)
if not is_open:
self._start_ts = None
self._start_time = None
return is_open
def _process_audio_samples(self, seq, samples, rssi):
is_open = self._squelch_status(seq, samples, rssi)
if not is_open:
return
if self._options.resample > 0:
if HAS_RESAMPLER:
## libsamplerate resampling
if self._resampler is None:
self._resampler = Resampler(converter_type='sinc_best')
samples = np.round(self._resampler.process(samples, ratio=self._ratio)).astype(np.int16)
else:
## resampling by linear interpolation
n = len(samples)
xa = np.arange(round(n*self._ratio))/self._ratio
xp = np.arange(n)
samples = np.round(np.interp(xa,xp,samples)).astype(np.int16)
self._write_samples(samples, {})
def _process_iq_samples(self, seq, samples, rssi, gps):
if not self._squelch_status(seq, samples, rssi):
return
##print gps['gpsnsec']-self._last_gps['gpsnsec']
self._last_gps = gps
## convert list of complex numbers into an array
s = np.zeros(2*len(samples), dtype=np.int16)
s[0::2] = np.real(samples).astype(np.int16)
s[1::2] = np.imag(samples).astype(np.int16)
if self._options.resample > 0:
if HAS_RESAMPLER:
## libsamplerate resampling
if self._resampler is None:
self._resampler = Resampler(channels=2, converter_type='sinc_best')
s = self._resampler.process(s.reshape(len(samples),2), ratio=self._ratio)
s = np.round(s.flatten()).astype(np.int16)
else:
## resampling by linear interpolation
n = len(samples)
m = int(round(n*self._ratio))
xa = np.arange(m)/self._ratio
xp = np.arange(n)
s = np.zeros(2*m, dtype=np.int16)
s[0::2] = np.round(np.interp(xa,xp,np.real(samples))).astype(np.int16)
s[1::2] = np.round(np.interp(xa,xp,np.imag(samples))).astype(np.int16)
self._write_samples(s, gps)
# no GPS or no recent GPS solution
last = gps['last_gps_solution']
if last == 255 or last == 254:
self._options.status = 3
def _update_wav_header(self):
with open(self._get_output_filename(), 'r+b') as fp:
fp.seek(0, os.SEEK_END)
filesize = fp.tell()
fp.seek(0, os.SEEK_SET)
# fp.tell() sometimes returns zero. _write_wav_header writes filesize - 8
if filesize >= 8:
_write_wav_header(fp, filesize, int(self._output_sample_rate), self._num_channels, self._options.is_kiwi_wav)
def _write_samples(self, samples, *args):
"""Output to a file on the disk."""
now = time.gmtime()
sec_of_day = lambda x: 3600*x.tm_hour + 60*x.tm_min + x.tm_sec
dt_reached = self._options.dt != 0 and self._start_ts is not None and sec_of_day(now)//self._options.dt != sec_of_day(self._start_ts)//self._options.dt
if self._start_ts is None or (self._options.filename == '' and dt_reached):
self._start_ts = now
self._start_time = time.time()
# Write a static WAV header
with open(self._get_output_filename(), 'wb') as fp:
_write_wav_header(fp, 100, int(self._output_sample_rate), self._num_channels, self._options.is_kiwi_wav)
if self._options.is_kiwi_tdoa:
# NB for TDoA support: MUST be a print (i.e. not a logging.info)
print("file=%d %s" % (self._options.idx, self._get_output_filename()))
else:
logging.info("Started a new file: %s" % self._get_output_filename())
with open(self._get_output_filename(), 'ab') as fp:
if self._options.is_kiwi_wav:
gps = args[0]
self._gnss_performance.analyze(self._get_output_filename(), gps)
fp.write(struct.pack('<4sIBBII', b'kiwi', 10, gps['last_gps_solution'], 0, gps['gpssec'], gps['gpsnsec']))
sample_size = samples.itemsize * len(samples)
fp.write(struct.pack('<4sI', b'data', sample_size))
# TODO: something better than that
samples.tofile(fp)
self._update_wav_header()
def _on_gnss_position(self, pos):
pos_record = False
if self._options.dir is not None:
pos_dir = self._options.dir
pos_record = True
else:
if os.path.isdir('gnss_pos'):
pos_dir = 'gnss_pos'
pos_record = True
if pos_record:
station = 'kiwi_noname' if self._options.station is None else self._options.station
pos_filename = pos_dir +'/'+ station + '.txt'
with open(pos_filename, 'w') as f:
station = station.replace('-', '_') # since Octave var name
f.write("d.%s = struct('coord', [%f,%f], 'host', '%s', 'port', %d);\n"
% (station,
pos[0], pos[1],
self._options.server_host,
self._options.server_port))
class KiwiWaterfallRecorder(KiwiSDRStream):
def __init__(self, options):
super(KiwiWaterfallRecorder, self).__init__()
self._options = options
self._type = 'W/F'
freq = options.frequency
#logging.info "%s:%s freq=%d" % (options.server_host, options.server_port, freq)
self._freq = freq
self._freq_offset = options.freq_offset
self._start_ts = time.gmtime()
self._start_time = None
self._last_gps = dict(zip(['last_gps_solution', 'dummy', 'gpssec', 'gpsnsec'], [0,0,0,0]))
self.wf_pass = 0
self._rows = []
self._cmap_r = array.array('B')
self._cmap_g = array.array('B')
self._cmap_b = array.array('B')
# Kiwi color map
for i in range(256):
if i < 32:
r = 0
g = 0
b = i*255/31
elif i < 72:
r = 0
g = (i-32)*255/39
b = 255
elif i < 96:
r = 0
g = 255
b = 255-(i-72)*255/23
elif i < 116:
r = (i-96)*255/19
g = 255
b = 0
elif i < 184:
r = 255
g = 255-(i-116)*255/67
b = 0
else:
r = 255
g = 0
b = (i-184)*128/70
self._cmap_r.append(clamp(int(round(r)), 0, 255))
self._cmap_g.append(clamp(int(round(g)), 0, 255))
self._cmap_b.append(clamp(int(round(b)), 0, 255))
def _setup_rx_params(self):
baseband_freq = self._remove_freq_offset(self._freq)
self._set_zoom_cf(self._options.zoom, baseband_freq)
self._set_maxdb_mindb(-10, -110) # needed, but values don't matter
self._set_wf_speed(self._options.speed)
if self._options.no_api:
self._setup_no_api()
return
#self._set_wf_comp(True)
self._set_wf_comp(False)
self._set_wf_interp(self._options.interp)
self.set_name(self._options.user)
self._start_time = time.time()
span = self.zoom_to_span(self._options.zoom)
start = baseband_freq - span/2
stop = baseband_freq + span/2
if self._options.wf_cal is None:
self._options.wf_cal = -13 # pre v1.550 compatibility
logging.info("wf samples: start|center|stop %.1f|%.1f|%.1f kHz, zoom %d, span %d kHz, rbw %.3f kHz, cal %d dB"
% (start, baseband_freq, stop, self._options.zoom, span, span/self.WF_BINS, self._options.wf_cal))
if start < 0 or stop > self.MAX_FREQ:
s = "Frequency and zoom values result in span outside 0 - %d kHz range" % (self.MAX_FREQ)
raise Exception(s)
if self._options.wf_png is True:
logging.info("--wf_png: mindb %d, maxdb %d, cal %d dB" % (self._options.mindb, self._options.maxdb, self._options.wf_cal))
def _waterfall_color_index_max_min(self, value):
db_value = -(255 - value) # 55..255 => -200..0 dBm
db_value = clamp(db_value + self._options.wf_cal, self._options.mindb, self._options.maxdb)
relative_value = db_value - self._options.mindb
fullscale = self._options.maxdb - self._options.mindb
fullscale = fullscale if fullscale != 0 else 1 # can't be zero
value_percent = relative_value / fullscale
return clamp(int(round(value_percent * 255)), 0, 255)
def _process_waterfall_samples(self, seq, samples):
baseband_freq = self._remove_freq_offset(self._freq)
nbins = len(samples)
bins = nbins-1
i = 0
pwr = []
pixels = array.array('B')
do_wf = self._options.wf_png and (not self._options.wf_auto or (self._options.wf_auto and self.wf_pass != 0))
for s in samples:
dBm = s - 255
if i > 2 and dBm > -190: # skip DC offset notch in first two bins and also masked areas
pwr.append({ 'dBm':dBm, 'i':i })
i = i+1
if do_wf:
ci = self._waterfall_color_index_max_min(s)
pixels.append(self._cmap_r[ci])
pixels.append(self._cmap_g[ci])
pixels.append(self._cmap_b[ci])
pwr.sort(key = by_dBm)
length = len(pwr)
pmin = pwr[0]['dBm'] + self._options.wf_cal
bmin = pwr[0]['i']
pmax = pwr[length-1]['dBm'] + self._options.wf_cal
bmax = pwr[length-1]['i']
span = self.zoom_to_span(self._options.zoom)
start = baseband_freq - span/2
if (not self._options.wf_png and not self._options.quiet) or (self._options.wf_png and self._options.not_quiet):
logging.info("wf samples: %d bins, min %d dB @ %.2f kHz, max %d dB @ %.2f kHz"
% (nbins, pmin, start + span*bmin/bins, pmax, start + span*bmax/bins))
if self._options.wf_peaks > 0:
with open(self._get_output_filename("_peaks.txt"), 'a') as fp:
for i in range(self._options.wf_peaks):
j = length-1-i
bin_i = pwr[j]['i']
bin_f = float(bin_i)/bins
fp.write("%d %.2f %d " % (bin_i, start + span*bin_f, pwr[j]['dBm'] + self._options.wf_cal))
fp.write("\n")
if self._options.wf_png and self._options.wf_auto and self.wf_pass == 0:
noise = pwr[int(0.50 * length)]['dBm']
signal = pwr[int(0.95 * length)]['dBm']
# empirical adjustments
signal = signal + 30
if signal < -80:
signal = -80
noise -= 10
self._options.mindb = noise
self._options.maxdb = signal
logging.info("--wf_auto: mindb %d, maxdb %d, cal %d dB" % (self._options.mindb, self._options.maxdb, self._options.wf_cal))
self.wf_pass = self.wf_pass+1
if do_wf is True:
self._rows.append(pixels)
def _close_func(self):
if self._options.wf_png is True:
self._flush_rows()
if self._options.wf_peaks > 0:
logging.info("--wf-peaks: writing to file %s" % self._get_output_filename("_peaks.txt"))
def _flush_rows(self):
if not self._rows:
return
filename = self._get_output_filename(".png")
logging.info("--wf_png: writing file %s" % filename)
while True:
with open(filename, 'wb') as fp:
try:
png.Writer(len(self._rows[0]) // 3, len(self._rows)).write(fp, self._rows)
break
except KeyboardInterrupt:
pass
class KiwiExtensionRecorder(KiwiSDRStream):
def __init__(self, options):
super(KiwiExtensionRecorder, self).__init__()
self._options = options
self._type = 'EXT'
self._freq = None
self._start_ts = None
self._start_time = time.time()
def _setup_rx_params(self):
self.set_name(self._options.user)
# rx_chan deprecated, sent for backward compatibility only
self._send_message('SET ext_switch_to_client=%s first_time=1 rx_chan=0' % self._options.extension)
if (self._options.extension == 'DRM'):
if self._kiwi_version is not None and self._kiwi_version >= 1.550:
self._send_message('SET lock_set')
self._send_message('SET monitor=0')
self._send_message('SET send_iq=0')
self._send_message('SET run=1')
else:
raise Exception("KiwiSDR server v1.550 or later required for DRM")
if self._options.ext_test:
self._send_message('SET test=1')
def _process_ext_msg(self, log, name, value):
prefix = "EXT %s = " % name if name != None else ""
if log is True:
logging.info("recv %s%s" % (prefix, value))
else:
sys.stdout.write("%s%s%s\n" % ("\n" if self._need_nl else "", prefix, value))
self._need_nl = False if self._need_nl is True else False
def _process_ext(self, name, value):
if self._options.extension == 'DRM':
if self._options.stats and name == "drm_status_cb":
self._process_ext_msg(False, None, value)
elif name != "drm_status_cb" and name != "drm_bar_pct" and name != "annotate":
self._process_ext_msg(True, name, value)
if name == "locked" and value != "1":
raise Exception("No DRM when Kiwi running other extensions or too many connections active")
else:
self._process_ext_msg(True, name, value)
def options_cross_product(options):
"""build a list of options according to the number of servers specified"""
def _sel_entry(i, l):
"""if l is a list, return the element with index i, else return l"""
return l[min(i, len(l)-1)] if type(l) == list else l
l = []
multiple_connections = 0
for i,s in enumerate(options.server_host):
opt_single = copy(options)
opt_single.server_host = s
opt_single.status = 0
# time() returns seconds, so add pid and host index to make timestamp unique per connection
opt_single.ws_timestamp = int(time.time() + os.getpid() + i) & 0xffffffff
for x in ['server_port', 'password', 'tlimit_password', 'frequency', 'agc_gain', 'filename', 'station', 'user']:
opt_single.__dict__[x] = _sel_entry(i, opt_single.__dict__[x])
l.append(opt_single)
multiple_connections = i
return multiple_connections,l
def get_comma_separated_args(option, opt, value, parser, fn):
values = [fn(v.strip()) for v in value.split(',')]
setattr(parser.values, option.dest, values)
## setattr(parser.values, option.dest, map(fn, value.split(',')))
def join_threads(snd, wf, ext):
[r._event.set() for r in snd]
[r._event.set() for r in wf]
[r._event.set() for r in ext]
[t.join() for t in threading.enumerate() if t is not threading.current_thread()]
def main():
# extend the OptionParser so that we can print multiple paragraphs in
# the help text
class MyParser(OptionParser):
def format_description(self, formatter):
result = []
for paragraph in self.description:
result.append(formatter.format_description(paragraph))
return "\n".join(result[:-1]) # drop last \n
def format_epilog(self, formatter):
result = []
for paragraph in self.epilog:
result.append(formatter.format_epilog(paragraph))
return "".join(result)
usage = "%prog -s SERVER -p PORT -f FREQ -m MODE [other options]"
description = ["kiwirecorder.py records data from one or more KiwiSDRs to your disk."
" It takes a number of options as inputs, the most basic of which"
" are shown above.",
"To record data from multiple Kiwis at once, use the same syntax,"
" but pass a list of values (where applicable) instead of a single value."
" Each list of values should be comma-separated and without spaces."
" For instance, to record one Kiwi at localhost on port 80, and another Kiwi"
" at example.com port 8073, run the following:",
" kiwirecorder.py -s localhost,example.com -p 80,8073 -f 10000,10000 -m am",
"In this example, both Kiwis will record on 10,000 kHz (10 MHz) in AM mode."
" Any option that states \"can be a comma-separated list\" also means a single"
" value will be duplicated across multiple connection. In the above example"
" the simpler \"-f 10000\" can been used.", ""]
epilog = [] # text here would go after the options list
parser = MyParser(usage=usage, description=description, epilog=epilog)
parser.add_option('-s', '--server-host',
dest='server_host',
type='string', default='localhost',
help='Server host (can be a comma-separated list)',
action='callback',
callback_args=(str,),
callback=get_comma_separated_args)
parser.add_option('-p', '--server-port',
dest='server_port',
type='string', default=8073,
help='Server port, default 8073 (can be a comma-separated list)',
action='callback',
callback_args=(int,),
callback=get_comma_separated_args)
parser.add_option('--pw', '--password',
dest='password',
type='string', default='',
help='Kiwi login password (if required, can be a comma-separated list)',
action='callback',
callback_args=(str,),
callback=get_comma_separated_args)
parser.add_option('--tlimit-pw', '--tlimit-password',
dest='tlimit_password',
type='string', default='',
help='Connect time limit exemption password (if required, can be a comma-separated list)',
action='callback',
callback_args=(str,),
callback=get_comma_separated_args)
parser.add_option('-u', '--user',
dest='user',
type='string', default='kiwirecorder.py',
help='Kiwi connection user name (can be a comma-separated list)',
action='callback',
callback_args=(str,),
callback=get_comma_separated_args)
parser.add_option('--station',
dest='station',
type='string', default=None,
help='Station ID to be appended to filename (can be a comma-separated list)',
action='callback',
callback_args=(str,),
callback=get_comma_separated_args)
parser.add_option('--log', '--log-level', '--log_level',
dest='log_level',
type='choice', default='warn',
choices=['debug', 'info', 'warn', 'error', 'critical'],
help='Log level: debug|info|warn(default)|error|critical')
parser.add_option('-q', '--quiet',
dest='quiet',
action='store_true', default=False,
help='Don\'t print progress messages')
parser.add_option('--nq', '--not-quiet',
dest='not_quiet',
action='store_true', default=False,
help='Print progress messages')
parser.add_option('-d', '--dir',
dest='dir',
type='string', default=None,
help='Optional destination directory for files')
parser.add_option('--fn', '--filename',
dest='filename',
type='string', default='',
help='Use fixed filename instead of generated filenames (optional station ID(s) will apply, can be a comma-separated list)',
action='callback',
callback_args=(str,),
callback=get_comma_separated_args)
parser.add_option('--tlimit', '--time-limit',
dest='tlimit',
type='float', default=None,
help='Record time limit in seconds. Ignored when --dt-sec used.')
parser.add_option('--dt-sec',
dest='dt',
type='int', default=0,
help='Start a new file when mod(sec_of_day,dt) == 0')
parser.add_option('--launch-delay', '--launch_delay',
dest='launch_delay',
type='int', default=0,
help='Delay (secs) in launching multiple connections')
parser.add_option('--connect-retries', '--connect_retries',
dest='connect_retries',
type='int', default=0,
help='Number of retries when connecting to host (retries forever by default)')
parser.add_option('--connect-timeout', '--connect_timeout',
dest='connect_timeout',
type='int', default=15,
help='Retry timeout(sec) connecting to host')
parser.add_option('-k', '--socket-timeout', '--socket_timeout',
dest='socket_timeout',
type='int', default=10,
help='Socket timeout(sec) during data transfers')
parser.add_option('--OV',
dest='ADC_OV',
action='store_true', default=False,
help='Print "ADC OV" message when Kiwi ADC is overloaded')
parser.add_option('--ts', '--tstamp', '--timestamp',
dest='tstamp',
action='store_true', default=False,
help='Add timestamps to output. Applies only to S-meter mode currently.')
parser.add_option('--stats',
dest='stats',
action='store_true', default=False,
help='Print additional statistics. Applies to e.g. S-meter and extension modes.')
parser.add_option('-v', '-V', '--version',
dest='krec_version',
action='store_true', default=False,
help='Print version number and exit')
group = OptionGroup(parser, "Audio connection options", "")
group.add_option('-f', '--freq',
dest='frequency',
type='string', default=15000, # 15000 prevents --wf mode span error for zoom=0
help='Frequency to tune to, in kHz (can be a comma-separated list). '
'For sideband modes (lsb/lsn/usb/usn/cw/cwn) this is the carrier frequency. '
'See --pbc option below. Also sets waterfall mode center frequency.',
action='callback',
callback_args=(float,),
callback=get_comma_separated_args)
group.add_option('--pbc', '--freq-pbc',
dest='freq_pbc',
action='store_true', default=False,
help='For sideband modes (lsb/lsn/usb/usn/cw/cwn) interpret -f/--freq frequency as the passband center frequency.')
group.add_option('-o', '--offset', '--foffset',
dest='freq_offset',
type='int', default=0,
help='Frequency offset (kHz) subtracted from tuned frequency (for those Kiwis using an offset)')
group.add_option('-m', '--mode', '--modulation',
dest='modulation',
type='string', default='am',
help='Modulation; one of am/amn, sam/sau/sal/sas/qam, lsb/lsn, usb/usn, cw/cwn, nbfm, iq (default passband if -L/-H not specified)')
group.add_option('--ncomp', '--no_compression', '--no_compression',
dest='compression',
action='store_false', default=True,
help='Don\'t use audio compression')
group.add_option('-L', '--lp-cutoff',
dest='lp_cut',
type='float', default=None,
help='Low-pass cutoff frequency, in Hz')
group.add_option('-H', '--hp-cutoff',
dest='hp_cut',
type='float', default=None,
help='High-pass cutoff frequency, in Hz')
group.add_option('-r', '--resample',
dest='resample',
type='int', default=0,
help='Resample output file to new sample rate in Hz. The resampling ratio has to be in the range [1/256,256]')
group.add_option('-T', '--squelch-threshold',
dest='sq_thresh',
type='float', default=None,
help='Squelch threshold, in dB.')
group.add_option('--squelch-tail',
dest='squelch_tail',
type='float', default=1,
help='Time for which the squelch remains open after the signal is below threshold.')
group.add_option('-g', '--agc-gain',
dest='agc_gain',
type='string', default=None,
help='AGC gain; if set, AGC is turned off (can be a comma-separated list)',
action='callback',
callback_args=(float,),
callback=get_comma_separated_args)
group.add_option('--agc-yaml',
dest='agc_yaml_file',
type='string', default=None,
help='AGC options provided in a YAML-formatted file')
group.add_option('--scan-yaml',
dest='scan_yaml_file',
type='string', default=None,
help='Scan options provided in a YAML-formatted file')
group.add_option('--nb',
dest='nb',
action='store_true', default=False,
help='Enable noise blanker with default parameters.')
group.add_option('--nb-gate',
dest='nb_gate',
type='int', default=100,
help='Noise blanker gate time in usec (100 to 5000, default 100)')
group.add_option('--nb-th', '--nb-thresh',
dest='nb_thresh',
type='int', default=50,
help='Noise blanker threshold in percent (0 to 100, default 50)')
group.add_option('--de-emp',
dest='de_emp',
action='store_true', default=False,
help='Enable de-emphasis.')
group.add_option('-w', '--kiwi-wav',
dest='is_kiwi_wav',
action='store_true', default=False,
help='In the wav file include KIWI header containing GPS time-stamps (only for IQ mode)')
group.add_option('--kiwi-tdoa',
dest='is_kiwi_tdoa',
action='store_true', default=False,
help='Used when called by Kiwi TDoA extension')
group.add_option('--test-mode',
dest='test_mode',
action='store_true', default=False,
help='Write wav data to /dev/null (Linux) or NUL (Windows)')
group.add_option('--snd', '--sound',
dest='sound',
action='store_true', default=False,
help='Also process sound data when in waterfall or S-meter mode (sound connection options above apply)')
parser.add_option_group(group)
group = OptionGroup(parser, "S-meter mode options", "")
group.add_option('--S-meter', '--s-meter',
dest='S_meter',
type='int', default=-1,
help='Report S-meter (RSSI) value after S_METER number of averages. S_METER=0 does no averaging and reports each RSSI value received. Options --ts and --stats apply.')
group.add_option('--sdt-sec',
dest='sdt',
type='int', default=0,
help='S-meter measurement interval')
parser.add_option_group(group)
group = OptionGroup(parser, "Waterfall connection options", "")
group.add_option('--wf',
dest='waterfall',
action='store_true', default=False,
help='Process waterfall data instead of audio. Center frequency set by audio option --f/--freq')
group.add_option('-z', '--zoom',
dest='zoom',
type='int', default=0,
help='Zoom level 0-14')
group.add_option('--speed',
dest='speed',
type='int', default=0,
help='Waterfall update speed: 1=1Hz, 2=slow, 3=med, 4=fast')
group.add_option('--interp', '--wf-interp',
dest='interp',
type='int', default=-1,
help='Waterfall display interpolation 0-13')
group.add_option('--wf-png',
dest='wf_png',
action='store_true', default=False,
help='Create waterfall .png file. --station and --filename options apply')
group.add_option('--wf-peaks',
dest='wf_peaks',
type='int', default=0,
help='Save specified number of waterfall peaks to file. --station and --filename options apply')
group.add_option('--maxdb',
dest='maxdb',
type='int', default=-30,
help='Waterfall colormap max dB (-170 to -10)')
group.add_option('--mindb',
dest='mindb',
type='int', default=-155,
help='Waterfall colormap min dB (-190 to -30)')
group.add_option('--wf-auto',
dest='wf_auto',
action='store_true', default=False,
help='Auto set mindb/maxdb')
group.add_option('--wf-cal',
dest='wf_cal',
type='int', default=None,
help='Waterfall calibration correction (overrides Kiwi default value)')
parser.add_option_group(group)
group = OptionGroup(parser, "Extension connection options", "")
group.add_option('--ext',
dest='extension',
type='string', default=None,
help='Also open a connection to EXTENSION name')
group.add_option('--ext-test',
dest='ext_test',
action='store_true', default=False,
help='Start extension in its test mode (if applicable)')
parser.add_option_group(group)
group = OptionGroup(parser, "KiwiSDR development options", "")
group.add_option('--gc-stats',
dest='gc_stats',
action='store_true', default=False,
help='Print garbage collection stats')
group.add_option('--nolocal',
dest='nolocal',
action='store_true', default=False,
help='Make local network connections appear non-local')
group.add_option('--no-api',
dest='no_api',
action='store_true', default=False,
help='Simulate connection to Kiwi using improper/incomplete API')
parser.add_option_group(group)
opts_no_defaults = optparse.Values()
__, args = parser.parse_args(values=opts_no_defaults)
options = optparse.Values(parser.get_default_values().__dict__)
options._update_careful(opts_no_defaults.__dict__)
## clean up OptionParser which has cyclic references
parser.destroy()
if options.krec_version:
print('kiwirecorder v1.2')
sys.exit()
FORMAT = '%(asctime)-15s pid %(process)5d %(message)s'
logging.basicConfig(level=logging.getLevelName(options.log_level.upper()), format=FORMAT)
if options.gc_stats:
gc.set_debug(gc.DEBUG_SAVEALL | gc.DEBUG_LEAK | gc.DEBUG_UNCOLLECTABLE)
run_event = threading.Event()
run_event.set()
if options.S_meter >= 0:
if options.S_meter > 0 and options.sdt != 0:
raise Exception('Options --S-meter > 0 and --sdt-sec != 0 are incompatible. Did you mean to use --S-meter=0 ?')
options.quiet = True
if options.tlimit is not None and options.dt != 0:
print('Warning: --tlimit ignored when --dt-sec option used')
if options.wf_png is True:
if options.waterfall is False:
options.waterfall = True
print('--wf-png note: assuming --wf')
if options.speed == 0:
options.speed = 4
print('--wf-png note: no --speed specified, so using fast (=4)')
options.quite = True # specify "--not-quiet" to see all progress messages during --wf-png
if options.wf_peaks > 0:
if options.interp == -1:
options.interp = 10
print('--wf-peaks note: no --wf-interp specified, so using MAX+CIC (=10)')
### decode AGC YAML file options
options.agc_yaml = None
if options.agc_yaml_file:
try:
if not HAS_PyYAML:
raise Exception('PyYAML not installed: sudo apt install python-yaml / sudo apt install python3-yaml / pip install pyyaml / pip3 install pyyaml')
with open(options.agc_yaml_file) as yaml_file:
documents = yaml.full_load(yaml_file)