-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathlhist_scr.c
293 lines (249 loc) · 7.36 KB
/
lhist_scr.c
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
/*
* wavemon - a wireless network monitoring application
*
* Copyright (c) 2001-2002 Jan Morgenstern <jan@jm-music.de>
*
* 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 <https://www.gnu.org/licenses/>.
*/
#include "iw_if.h"
#include "iw_nl80211.h"
/* Number of lines in the key window at the bottom */
#define KEY_WIN_HEIGHT 3
/* Total number of lines in the histogram window */
#define HIST_WIN_HEIGHT (WAV_HEIGHT - KEY_WIN_HEIGHT)
/*
* Analogous to MAXYLEN, the following sets both the
* - highest y/line index and the
* - total count of lines inside the histogram window.
*/
#define HIST_MAXYLEN (HIST_WIN_HEIGHT - 1)
/* Position (relative to right border) and maximum length of dBm level tags. */
#define LEVEL_TAG_POS 5
/* GLOBALS */
static WINDOW *w_lhist, *w_key;
/* Keep track of interface changes. */
static int last_if_idx = -1;
/*
* Keeping track of global minima/maxima
*/
static struct iw_extrema {
bool initialised;
float min;
float max;
} e_signal;
static void track_extrema(const float new_sample, struct iw_extrema *ie)
{
if (!ie->initialised) {
ie->initialised = true;
ie->min = ie->max = new_sample;
} else if (new_sample < ie->min) {
ie->min = new_sample;
} else if (new_sample > ie->max) {
ie->max = new_sample;
}
}
static char *fmt_extrema(const struct iw_extrema *ie, const char *unit)
{
static char range[256];
if (!ie->initialised)
snprintf(range, sizeof(range), "unknown");
else if (ie->min == ie->max)
snprintf(range, sizeof(range), "%+.0f %s", ie->min, unit);
else
snprintf(range, sizeof(range), "%+.0f %s ... %+.0f %s",
ie->min, unit, ie->max, unit);
return range;
}
/*
* Simple array-based circular FIFO buffer
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* Insertion works from lower to higher indices.
* Access works from higher down to lower indices.
*
* Cases & assumptions:
* ~~~~~~~~~~~~~~~~~~~~
* - principle: unsigned counter + hash function to handle array wrap-around;
* - buffer is empty if count == 0;
* - else count indicates the next place to insert(modulo %IW_STACKSIZE).
*/
#define IW_STACKSIZE 1024
static struct iw_levelstat iw_stats_cache[IW_STACKSIZE];
static uint32_t count;
static const uint32_t COUNTMAX = ~0;
static void iw_cache_insert(const struct iw_levelstat new)
{
iw_stats_cache[count % IW_STACKSIZE] = new;
/*
* Handle counter overflow by mapping into a smaller index which is
* identical (modulo %IW_STACKSIZE) to the old value. (The datatype
* of 'count' must be able to express at least 2 * IW_STACKSIZE.)
*/
if (++count == COUNTMAX)
count = IW_STACKSIZE + (COUNTMAX % IW_STACKSIZE);
}
static struct iw_levelstat iw_cache_get(const uint32_t index)
{
struct iw_levelstat zero = {.signal = 0, .valid = false};
if (index > IW_STACKSIZE || index > count)
return zero;
return iw_stats_cache[(count - index) % IW_STACKSIZE];
}
void iw_cache_update(struct iw_nl80211_linkstat *ls)
{
static struct iw_levelstat avg = {.signal = 0, .valid = false};
static int slot;
int sig_level = ls->signal;
/*
* Prefer signal level over average signal level.
* One card in particular (Intel 9260NGW) reported inconsistent
* station and beacon average signals.
* See https://github.com/uoaerg/wavemon/issues/47
*/
if (sig_level == 0)
sig_level = ls->signal_avg;
/*
* If hardware does not support dBm signal level, it will not
* be filled in, and show up as 0. Try to fall back to the BSS
* probe where again a 0 dBm value reflects 'not initialized'.
*/
if (sig_level == 0)
sig_level = ls->bss_signal;
/* If the signal level is positive, assume it is an absolute value (#100). */
if (sig_level > 0)
sig_level *= -1;
if (sig_level == 0) {
avg.valid = false;
} else {
avg.valid = true;
avg.signal += (float)sig_level / conf.slotsize;
track_extrema(sig_level, &e_signal);
}
if (++slot >= conf.slotsize) {
iw_cache_insert(avg);
avg.signal = slot = 0;
avg.valid = false;
}
}
/*
* Histogram-specific display functions
*/
static double hist_level(double val, int min, int max)
{
return map_range(val, min, max, 1, HIST_MAXYLEN);
}
static double hist_level_inverse(int y_level, int min, int max)
{
return map_range(y_level, 1, HIST_MAXYLEN, min, max);
}
/* Order needs to be reversed as y-coordinates grow downwards */
static int hist_y(int yval)
{
return reverse_range(yval, 1, HIST_MAXYLEN);
}
/* Values come in from the right, so 'x' also needs to be reversed */
static int hist_x(int xval)
{
return reverse_range(xval, 1, MAXXLEN);
}
/* plot single values, without clamping to min/max */
static void hist_plot(double yval, int xval, enum colour_pair plot_colour)
{
int level = round(yval);
if (in_range(level, 1, HIST_MAXYLEN)) {
wattrset(w_lhist, COLOR_PAIR(plot_colour) | A_BOLD);
#ifdef HAVE_LIBNCURSESW
mvwadd_wch(w_lhist, hist_y(level), hist_x(xval), WACS_HLINE);
#else
mvwaddch(w_lhist, hist_y(level), hist_x(xval), ACS_HLINE);
#endif
}
}
static void display_lhist(void)
{
struct iw_levelstat iwl;
double sig_level;
int x, y;
for (x = 1; x <= MAXXLEN; x++) {
iwl = iw_cache_get(x);
/* Clear screen and set up horizontal grid lines */
wattrset(w_lhist, COLOR_PAIR(CP_BLUE));
for (y = 1; y <= HIST_MAXYLEN; y++)
mvwaddch(w_lhist, hist_y(y), hist_x(x), (y % 5) ? ' ' : '-');
if (x == LEVEL_TAG_POS && iwl.valid) {
char tmp[LEVEL_TAG_POS + 1];
int len;
/*
* Tag the horizontal grid lines with dBm levels.
*/
wattrset(w_lhist, COLOR_PAIR(CP_GREEN));
for (y = 1; y <= HIST_MAXYLEN; y++) {
if (y != 1 && (y % 5) && y != HIST_MAXYLEN)
continue;
len = snprintf(tmp, sizeof(tmp), "%.0f",
hist_level_inverse(y, conf.sig_min,
conf.sig_max));
mvwaddstr(w_lhist, hist_y(y), hist_x(len), tmp);
}
}
if (iwl.valid) {
sig_level = hist_level(iwl.signal, conf.sig_min, conf.sig_max);
hist_plot(sig_level, x, CP_GREEN);
}
}
wrefresh(w_lhist);
}
static void display_key(WINDOW *w_key)
{
char buf[280];
/* Clear the (one-line) screen) */
wmove(w_key, 1, 1);
wclrtoborder(w_key);
wattrset(w_key, COLOR_PAIR(CP_STANDARD));
waddch(w_key, '[');
wattrset(w_key, COLOR_PAIR(CP_GREEN));
waddch(w_key, ACS_HLINE);
wattrset(w_key, COLOR_PAIR(CP_STANDARD));
snprintf(buf, sizeof(buf), "] signal level (%s)", fmt_extrema(&e_signal, "dBm"));
waddstr(w_key, buf);
wrefresh(w_key);
}
void scr_lhist_init(void)
{
w_lhist = newwin_title(0, HIST_WIN_HEIGHT, "Level histogram", true);
w_key = newwin_title(HIST_MAXYLEN + 1, KEY_WIN_HEIGHT, "Key", false);
if (last_if_idx != conf.if_idx) {
count = 0;
e_signal.initialised = false;
last_if_idx = conf.if_idx;
}
sampling_init(true);
display_key(w_key);
}
int scr_lhist_loop(WINDOW *w_menu)
{
static int vcount = 1;
if (!--vcount) {
vcount = conf.slotsize;
display_lhist();
display_key(w_key);
}
return wgetch(w_menu);
}
void scr_lhist_fini(void)
{
sampling_stop();
delwin(w_lhist);
delwin(w_key);
}