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
|
#
# Copyright 2008 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio 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, or (at your option)
# any later version.
#
# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
##################################################
# conditional disconnections of wx flow graph
##################################################
import wx
def bind_to_visible_event(win, callback):
"""
Bind a callback to a window when its visibility changes.
Specifically, callback when the window changes visibility
when a update ui event in the window occurs.
@param win the wx window
@param callback a 1 param function
"""
#is the window visible in the hierarchy
def is_wx_window_visible(my_win):
while True:
parent = my_win.GetParent()
if not parent: return True #reached the top of the hierarchy
#if we are hidden, then finish, otherwise keep traversing up
if isinstance(parent, wx.Notebook) and parent.GetCurrentPage() != my_win: return False
my_win = parent
#call the callback, the arg is shown or not
def callback_factory(my_win, my_callback):
return lambda *args: my_callback(is_wx_window_visible(my_win))
handler = callback_factory(win, callback)
#bind the handler to all the parent notebooks
win.Bind(wx.EVT_UPDATE_UI, handler)
from gnuradio import gr
def conditional_connect_callback_factory(source, sink, hb, win, size):
nulls = list()
cache = [None]
def callback(visible, init=False):
if visible == cache[0]: return
cache[0] = visible
if not init: hb.lock()
#print 'visible', visible, source, sink
if visible:
if not init:
hb.disconnect(source, nulls[0])
hb.disconnect(nulls[1], nulls[2])
hb.disconnect(nulls[2], sink)
while nulls: nulls.pop()
hb.connect(source, sink)
else:
if not init: hb.disconnect(source, sink)
nulls.extend([gr.null_sink(size), gr.null_source(size), gr.head(size, 0)])
hb.connect(source, nulls[0])
hb.connect(nulls[1], nulls[2], sink)
if not init: hb.unlock()
return callback
def conditional_connect(source, sink, hb, win, size):
handler = conditional_connect_callback_factory(source, sink, hb, win, size)
handler(False, init=True) #initially connect
bind_to_visible_event(win, handler)
class wxgui_hb(object):
def wxgui_connect(self, *points):
"""
Use wxgui connect when the first point is the self source of the hb.
The win property of this object should be set to the wx window.
When this method tries to connect self to the next point,
it will conditionally make this connection based on the visibility state.
"""
try:
assert points[0] == self or points[0][0] == self
conditional_connect(
points[0], points[1],
win=self.win, hb=self,
size=self._hb.input_signature().sizeof_stream_item(0),
)
if len(points[1:]) > 1: self.connect(*points[1:])
except (AssertionError, IndexError): self.connect(*points)
#A macro to apply an index to a key
index_key = lambda key, i: "%s_%d"%(key, i+1)
def _register_access_method(destination, controller, key):
"""
Helper function for register access methods.
This helper creates distinct set and get methods for each key
and adds them to the destination object.
"""
def set(value): controller[key] = value
setattr(destination, 'set_'+key, set)
def get(): return controller[key]
setattr(destination, 'get_'+key, get)
def register_access_methods(destination, controller):
"""
Register setter and getter functions in the destination object for all keys in the controller.
@param destination the object to get new setter and getter methods
@param controller the pubsub controller
"""
for key in controller.keys(): _register_access_method(destination, controller, key)
##################################################
# Input Watcher Thread
##################################################
from gnuradio import gru
class input_watcher(gru.msgq_runner):
"""
Input watcher thread runs forever.
Read messages from the message queue.
Forward messages to the message handler.
"""
def __init__ (self, msgq, controller, msg_key, arg1_key='', arg2_key=''):
self._controller = controller
self._msg_key = msg_key
self._arg1_key = arg1_key
self._arg2_key = arg2_key
gru.msgq_runner.__init__(self, msgq, self.handle_msg)
def handle_msg(self, msg):
if self._arg1_key: self._controller[self._arg1_key] = msg.arg1()
if self._arg2_key: self._controller[self._arg2_key] = msg.arg2()
self._controller[self._msg_key] = msg.to_string()
##################################################
# Shared Functions
##################################################
import numpy
import math
def get_exp(num):
"""
Get the exponent of the number in base 10.
@param num the floating point number
@return the exponent as an integer
"""
if num == 0: return 0
return int(math.floor(math.log10(abs(num))))
def get_clean_num(num):
"""
Get the closest clean number match to num with bases 1, 2, 5.
@param num the number
@return the closest number
"""
if num == 0: return 0
sign = num > 0 and 1 or -1
exp = get_exp(num)
nums = numpy.array((1, 2, 5, 10))*(10**exp)
return sign*nums[numpy.argmin(numpy.abs(nums - abs(num)))]
def get_clean_incr(num):
"""
Get the next higher clean number with bases 1, 2, 5.
@param num the number
@return the next higher number
"""
num = get_clean_num(num)
exp = get_exp(num)
coeff = int(round(num/10**exp))
return {
-5: -2,
-2: -1,
-1: -.5,
1: 2,
2: 5,
5: 10,
}[coeff]*(10**exp)
def get_clean_decr(num):
"""
Get the next lower clean number with bases 1, 2, 5.
@param num the number
@return the next lower number
"""
num = get_clean_num(num)
exp = get_exp(num)
coeff = int(round(num/10**exp))
return {
-5: -10,
-2: -5,
-1: -2,
1: .5,
2: 1,
5: 2,
}[coeff]*(10**exp)
def get_min_max(samples):
"""
Get the minimum and maximum bounds for an array of samples.
@param samples the array of real values
@return a tuple of min, max
"""
scale_factor = 3
mean = numpy.average(samples)
rms = numpy.max([scale_factor*((numpy.sum((samples-mean)**2)/len(samples))**.5), .1])
min_val = mean - rms
max_val = mean + rms
return min_val, max_val
def get_min_max_fft(fft_samps):
"""
Get the minimum and maximum bounds for an array of fft samples.
@param samples the array of real values
@return a tuple of min, max
"""
#get the peak level (max of the samples)
peak_level = numpy.max(fft_samps)
#separate noise samples
noise_samps = numpy.sort(fft_samps)[:len(fft_samps)/2]
#get the noise floor
noise_floor = numpy.average(noise_samps)
#get the noise deviation
noise_dev = numpy.std(noise_samps)
#determine the maximum and minimum levels
max_level = peak_level
min_level = noise_floor - abs(2*noise_dev)
return min_level, max_level
|