vinyl-cache/bin/vinylstat/vinylstat_curses.c
0
/*-
1
 * Copyright (c) 2006 Verdens Gang AS
2
 * Copyright (c) 2006-2015 Varnish Software AS
3
 * All rights reserved.
4
 *
5
 * Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
6
 * Author: Dag-Erling Smørgrav <des@des.no>
7
 * Author: Martin Blix Grydeland <martin@varnish-software.com>
8
 *
9
 * SPDX-License-Identifier: BSD-2-Clause
10
 *
11
 * Redistribution and use in source and binary forms, with or without
12
 * modification, are permitted provided that the following conditions
13
 * are met:
14
 * 1. Redistributions of source code must retain the above copyright
15
 *    notice, this list of conditions and the following disclaimer.
16
 * 2. Redistributions in binary form must reproduce the above copyright
17
 *    notice, this list of conditions and the following disclaimer in the
18
 *    documentation and/or other materials provided with the distribution.
19
 *
20
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
 * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
24
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30
 * SUCH DAMAGE.
31
 *
32
 * Statistics output program
33
 */
34
35
#include "config.h"
36
37
#include <stdlib.h>
38
#include <unistd.h>
39
#include <string.h>
40
#include <stdint.h>
41
#include <math.h>
42
43
#include "vdef.h"
44
#include "vas.h"
45
#include "miniobj.h"
46
#include "vqueue.h"
47
#include "vtim.h"
48
#include "vapi/vsig.h"
49
50
#include "vinylstat.h"
51
#include "vcurses.h"
52
53
#define LINES_STATUS            3
54
#define LINES_BAR_T             1
55
#define LINES_BAR_B             1
56
#define LINES_INFO              3
57
#define LINES_POINTS_MIN        3
58
59
#define N_COL                   6
60
#define COLW                    14
61
#define COLW_NAME_MIN           24
62
63
#define VALUE_MAX               999999999999
64
65
#define REBUILD_NEXT            (1u << 0)
66
#define REBUILD_FIRST           (1u << 1)
67
68
enum kb_e {
69
#define BINDING(name, desc) KB_ ## name,
70
#define BINDING_SIG
71
#include "vinylstat_bindings.h"
72
};
73
74
struct ma {
75
        unsigned n, nmax;
76
        double acc;
77
};
78
79
struct pt {
80
        unsigned                magic;
81
#define PT_MAGIC                0x41698E4F
82
        VTAILQ_ENTRY(pt)        list;
83
84
        const struct VSC_point  *vpt;
85
86
        char                    seen;
87
88
        uint64_t                cur, last;
89
        double                  t_cur, t_last;
90
        double                  chg, avg;
91
92
        struct ma               ma_10, ma_100, ma_1000;
93
};
94
95
struct hitrate {
96
        uint64_t lhit, lmiss;
97
        struct ma hr_10;
98
        struct ma hr_100;
99
        struct ma hr_1000;
100
};
101
static struct hitrate hitrate;
102
103
static VTAILQ_HEAD(, pt) ptlist = VTAILQ_HEAD_INITIALIZER(ptlist);
104
static int n_ptlist = 0;
105
static int n_ptarray = 0;
106
static struct pt **ptarray = NULL;
107
static const volatile uint64_t *mgt_uptime;
108
static const volatile uint64_t *main_uptime;
109
static const volatile uint64_t *main_cache_hit;
110
static const volatile uint64_t *main_cache_miss;
111
112
static int l_status, l_bar_t, l_points, l_bar_b, l_info;
113
static unsigned colw_name = COLW_NAME_MIN;
114
static WINDOW *w_status = NULL;
115
static WINDOW *w_bar_t = NULL;
116
static WINDOW *w_points = NULL;
117
static WINDOW *w_bar_b = NULL;
118
static WINDOW *w_info = NULL;
119
120
static const struct VSC_level_desc *verbosity;
121
static int show_help = 0;
122
static int help_line = 0;
123
static int keep_running = 1;
124
static int hide_unseen = 1;
125
static int raw_vsc = 0;
126
static int page_start = 0;
127
static int current = 0;
128
static int rebuild = 0;
129
static int redraw = 0;
130
static int sample = 0;
131
static int reset_averages = 0;
132
static int scale = 1;
133
static double t_sample = 0.;
134
static double interval = 1.;
135
static unsigned vsm_status = 0;
136
137
#define NOTIF_MAXLEN 256
138
static char notification_message[NOTIF_MAXLEN] = "";
139
static vtim_mono notification_eol = 0.0;
140
141
static void
142 21
init_hitrate(void)
143
{
144 21
        memset(&hitrate, 0, sizeof (struct hitrate));
145 21
        if (main_cache_hit != NULL) {
146 21
                hitrate.lhit = *main_cache_hit;
147 21
                hitrate.lmiss = *main_cache_miss;
148 21
        }
149 21
        hitrate.hr_10.nmax = 10;
150 21
        hitrate.hr_100.nmax = 100;
151 21
        hitrate.hr_1000.nmax = 1000;
152 21
}
153
154
static void
155 17655
update_ma(struct ma *ma, double val)
156
{
157 17655
        AN(ma);
158 17655
        AN(ma->nmax);
159 17655
        if (ma->n < ma->nmax)
160 17655
                ma->n++;
161 17655
        ma->acc += (val - ma->acc) / (double)ma->n;
162 17655
}
163
164
static void
165 177
update_position(void)
166
{
167
        int old_current, old_page_start;
168
169 177
        old_current = current;
170 177
        old_page_start = page_start;
171
172 177
        if (n_ptarray == 0) {
173 78
                current = 0;
174 78
                page_start = 0;
175 78
        } else {
176 99
                current = vlimit_t(int, current, 0, n_ptarray - 1);
177 99
                page_start = vmin(page_start, current);
178 99
                if (current > page_start + (l_points - 1))
179 6
                        page_start = current - (l_points - 1);
180 99
                page_start = vlimit_t(int, page_start, 0, n_ptarray - 1);
181
        }
182
183 177
        if (current != old_current || page_start != old_page_start)
184 33
                redraw = 1;
185 177
}
186
187
static void
188 57
delete_pt_array(void)
189
{
190 57
        if (ptarray != NULL)
191 57
                free(ptarray);
192 57
        ptarray = NULL;
193 57
        n_ptarray = 0;
194
195 57
        update_position();
196 57
}
197
198
static void
199 78
build_pt_array(void)
200
{
201
        int i;
202
        struct pt *pt;
203 78
        struct pt *pt_current = NULL;
204 78
        int current_line = 0;
205
206 78
        if (current < n_ptarray) {
207 36
                pt_current = ptarray[current];
208 36
                current_line = current - page_start;
209 36
        }
210
211 78
        if (ptarray != NULL)
212 57
                delete_pt_array();
213 78
        AZ(n_ptarray);
214 78
        ptarray = calloc(n_ptlist, sizeof *ptarray);
215 78
        AN(ptarray);
216
217 28656
        VTAILQ_FOREACH(pt, &ptlist, list) {
218 28578
                CHECK_OBJ_NOTNULL(pt, PT_MAGIC);
219 28578
                if (pt->vpt->level > verbosity) {
220 16194
                        if (has_f && (rebuild & REBUILD_FIRST))
221 18
                                verbosity = VSC_ChangeLevel(verbosity,
222 9
                                    pt->vpt->level - verbosity);
223
                        else
224 16185
                                continue;
225 9
                }
226 12393
                if (!pt->seen && hide_unseen)
227 10102
                        continue;
228 2291
                assert(n_ptarray < n_ptlist);
229 2291
                ptarray[n_ptarray++] = pt;
230 2291
        }
231 78
        assert(n_ptarray <= n_ptlist);
232
233 1406
        for (i = 0; pt_current != NULL && i < n_ptarray; i++)
234 1364
                if (ptarray[i] == pt_current)
235 36
                        break;
236 78
        current = i;
237 78
        page_start = current - current_line;
238 78
        update_position();
239
240 78
        rebuild = 0;
241 78
        redraw = 1;
242 78
}
243
244
static void
245 84
sample_points(void)
246
{
247
        struct pt *pt;
248
        uint64_t v;
249
250 31188
        VTAILQ_FOREACH(pt, &ptlist, list) {
251 31104
                AN(pt->vpt);
252 31104
                AN(pt->vpt->ptr);
253 31104
                v = VSC_Value(pt->vpt);
254 31104
                if (v == 0 && !pt->seen)
255 23881
                        continue;
256 7223
                if (!pt->seen) {
257 1857
                        pt->seen = 1;
258 1857
                        rebuild = REBUILD_NEXT;
259 1857
                }
260 7223
                pt->last = pt->cur;
261 7223
                pt->cur = v;
262 7223
                pt->t_last = pt->t_cur;
263 7223
                pt->t_cur = VTIM_mono();
264
265 7223
                if (reset_averages) {
266 363
                        pt->chg = 0;
267 363
                        pt->ma_10.n = 0;
268 363
                        pt->ma_100.n = 0;
269 363
                        pt->ma_1000.n = 0;
270 363
                }
271 7223
                if (pt->t_last)
272 10732
                        pt->chg = ((int64_t)pt->cur - (int64_t)pt->last) /
273 5366
                            (pt->t_cur - pt->t_last);
274
275 7223
                if (pt->vpt->semantics == 'g') {
276 1989
                        pt->avg = 0.;
277 1989
                        update_ma(&pt->ma_10, (int64_t)pt->cur);
278 1989
                        update_ma(&pt->ma_100, (int64_t)pt->cur);
279 1989
                        update_ma(&pt->ma_1000, (int64_t)pt->cur);
280 7223
                } else if (pt->vpt->semantics == 'c') {
281 5165
                        if (main_uptime != NULL && *main_uptime)
282 4364
                                pt->avg = pt->cur / (double)*main_uptime;
283
                        else
284 801
                                pt->avg = 0.;
285 5165
                        if (pt->t_last) {
286 3812
                                update_ma(&pt->ma_10, pt->chg);
287 3812
                                update_ma(&pt->ma_100, pt->chg);
288 3812
                                update_ma(&pt->ma_1000, pt->chg);
289 3812
                        }
290 5165
                }
291 7223
        }
292 84
}
293
294
static void
295 84
sample_hitrate(void)
296
{
297
        double hr, mr, ratio;
298
        uint64_t hit, miss;
299
300 84
        if (main_cache_hit == NULL)
301 0
                return;
302
303 84
        hit = *main_cache_hit;
304 84
        miss = *main_cache_miss;
305 84
        hr = hit - hitrate.lhit;
306 84
        mr = miss - hitrate.lmiss;
307 84
        hitrate.lhit = hit;
308 84
        hitrate.lmiss = miss;
309
310 84
        if (hr + mr != 0)
311 12
                ratio = hr / (hr + mr);
312
        else
313 72
                ratio = 0;
314 84
        if (reset_averages) {
315 3
                hitrate.hr_10.n = 0;
316 3
                hitrate.hr_100.n = 0;
317 3
                hitrate.hr_1000.n = 0;
318 3
        }
319 84
        update_ma(&hitrate.hr_10, ratio);
320 84
        update_ma(&hitrate.hr_100, ratio);
321 84
        update_ma(&hitrate.hr_1000, ratio);
322 84
}
323
324
static void
325 84
sample_data(void)
326
{
327 84
        t_sample = VTIM_mono();
328 84
        sample = 0;
329 84
        redraw = 1;
330 84
        sample_points();
331 84
        sample_hitrate();
332 84
        reset_averages = 0;
333 84
}
334
335
static void
336 120
destroy_window(WINDOW **w)
337
{
338
339 120
        AN(w);
340 120
        if (*w == NULL)
341 105
                return;
342 15
        AC(delwin(*w));
343 15
        *w = NULL;
344 120
}
345
346
static void
347 24
make_windows(void)
348
{
349
        int Y, X;
350
        int y;
351
        int y_status, y_bar_t, y_points, y_bar_b, y_info;
352
353 24
        destroy_window(&w_status);
354 24
        destroy_window(&w_bar_t);
355 24
        destroy_window(&w_points);
356 24
        destroy_window(&w_bar_b);
357 24
        destroy_window(&w_info);
358
359 24
        Y = LINES;
360 24
        X = COLS;
361
362 24
        l_status = LINES_STATUS;
363 24
        l_bar_t = LINES_BAR_T;
364 24
        l_bar_b = LINES_BAR_B;
365 24
        l_info = LINES_INFO;
366 24
        l_points = Y - (l_status + l_bar_t + l_bar_b + l_info);
367 24
        if (l_points < LINES_POINTS_MIN) {
368 0
                l_points += l_info;
369 0
                l_info = 0;
370 0
        }
371 24
        l_points = vmax(l_points, LINES_POINTS_MIN);
372
373 24
        y = 0;
374 24
        y_status = y;
375 24
        y += l_status;
376 24
        y_bar_t = y;
377 24
        y += l_bar_t;
378 24
        y_points = y;
379 24
        y += l_points;
380 24
        y_bar_b = y;
381 24
        y += l_bar_b;
382 24
        y_info = y;
383 24
        y += l_info;
384 24
        assert(y >= Y);
385
386 24
        w_status = newwin(l_status, X, y_status, 0);
387 24
        AN(w_status);
388 24
        AC(nodelay(w_status, 1));
389 24
        AC(keypad(w_status, 1));
390 24
        AC(wnoutrefresh(w_status));
391
392 24
        w_bar_t = newwin(l_bar_t, X, y_bar_t, 0);
393 24
        AN(w_bar_t);
394 24
        wbkgd(w_bar_t, A_REVERSE);
395 24
        AC(wnoutrefresh(w_bar_t));
396
397 24
        w_points = newwin(l_points, X, y_points, 0);
398 24
        AN(w_points);
399 24
        AC(wnoutrefresh(w_points));
400
401 24
        w_bar_b = newwin(l_bar_b, X, y_bar_b, 0);
402 24
        AN(w_bar_b);
403 24
        wbkgd(w_bar_b, A_REVERSE);
404 24
        AC(wnoutrefresh(w_bar_b));
405
406 24
        if (l_info) {
407 24
                w_info = newwin(l_info, X, y_info, 0);
408 24
                AN(w_info);
409 24
                AC(wnoutrefresh(w_info));
410 24
        }
411
412 24
        if (X - COLW_NAME_MIN > N_COL * COLW)
413 3
                colw_name = X - (N_COL * COLW);
414
        else
415 21
                colw_name = COLW_NAME_MIN;
416
417 24
        redraw = 1;
418 24
}
419
420
static void
421 224
print_duration(WINDOW *w, uint64_t t)
422
{
423
424 224
        IC(wprintw(w, "%4ju+%02ju:%02ju:%02ju",
425
            (uintmax_t)t / 86400, (uintmax_t)(t % 86400) / 3600,
426
            (uintmax_t)(t % 3600) / 60, (uintmax_t)t % 60));
427 224
}
428
429
static void
430 282
running(WINDOW *w, uint64_t up, int flg)
431
{
432 282
        if (vsm_status & flg) {
433 221
                print_duration(w_status, up);
434 221
        } else {
435 61
                wattron(w, A_STANDOUT);
436 61
                IC(wprintw(w, "  Not Running"));
437 61
                wattroff(w, A_STANDOUT);
438
        }
439 282
}
440
441
static void
442 141
draw_status(void)
443
{
444 141
        uint64_t up_mgt = 0;
445 141
        uint64_t up_chld = 0;
446
447 141
        AN(w_status);
448
449 141
        AC(werase(w_status));
450
451 141
        if (mgt_uptime != NULL)
452 141
                up_mgt = *mgt_uptime;
453 141
        if (main_uptime != NULL)
454 141
                up_chld = *main_uptime;
455
456 141
        IC(mvwprintw(w_status, 0, 0, "Uptime mgt:   "));
457 141
        running(w_status, up_mgt, VSM_MGT_RUNNING);
458 141
        IC(mvwprintw(w_status, 1, 0, "Uptime child: "));
459 141
        running(w_status, up_chld, VSM_WRK_RUNNING);
460 141
        IC(mvwprintw(w_status, 2, 0, "Press <h> to toggle help screen"));
461
462 141
        if (VTIM_mono() < notification_eol)
463 60
                mvwaddstr(w_status, 2, 0, notification_message);
464
465 141
        if (COLS > 70) {
466 141
                IC(mvwprintw(w_status, 0, getmaxx(w_status) - 37,
467
                    "Hitrate n: %8u %8u %8u", hitrate.hr_10.n, hitrate.hr_100.n,
468
                    hitrate.hr_1000.n));
469 141
                IC(mvwprintw(w_status, 1, getmaxx(w_status) - 37,
470
                    "   avg(n): %8.4f %8.4f %8.4f", hitrate.hr_10.acc,
471
                    hitrate.hr_100.acc, hitrate.hr_1000.acc));
472 141
        }
473
474 141
        AC(wnoutrefresh(w_status));
475 141
}
476
477
static void
478 132
draw_bar_t(void)
479
{
480
        int X, x;
481
        enum {
482
                COL_CUR,
483
                COL_CHG,
484
                COL_AVG,
485
                COL_MA10,
486
                COL_MA100,
487
                COL_MA1000,
488
                COL_LAST
489
        } col;
490
491 132
        AN(w_bar_t);
492
493 132
        X = getmaxx(w_bar_t);
494 132
        x = 0;
495 132
        AC(werase(w_bar_t));
496 132
        if (page_start > 0)
497 84
                IC(mvwprintw(w_bar_t, 0, x, "^^^"));
498 132
        x += 4;
499 132
        IC(mvwprintw(w_bar_t, 0, x, "%.*s", colw_name - 4, "NAME"));
500 132
        x += colw_name - 4;
501 132
        col = COL_CUR;
502 702
        while (col < COL_LAST) {
503 681
                if (X - x < COLW)
504 111
                        break;
505 570
                switch (col) {
506
                case COL_CUR:
507 132
                        IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "CURRENT"));
508 132
                        break;
509
                case COL_CHG:
510 132
                        IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "CHANGE"));
511 132
                        break;
512
                case COL_AVG:
513 132
                        IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVERAGE"));
514 132
                        break;
515
                case COL_MA10:
516 132
                        IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVG_10"));
517 132
                        break;
518
                case COL_MA100:
519 21
                        IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVG_100"));
520 21
                        break;
521
                case COL_MA1000:
522 21
                        IC(mvwprintw(w_bar_t, 0, x, " %12.12s", "AVG_1000"));
523 21
                        break;
524
                default:
525 0
                        break;
526
                }
527 570
                x += COLW;
528 570
                col++;
529
        }
530
531 132
        AC(wnoutrefresh(w_bar_t));
532 132
}
533
534
static void
535 1002
draw_line_default(WINDOW *w, int y, int x, int X, const struct pt *pt)
536
{
537
        enum {
538
                COL_CUR,
539
                COL_CHG,
540
                COL_AVG,
541
                COL_MA10,
542
                COL_MA100,
543
                COL_MA1000,
544
                COL_LAST
545
        } col;
546
547 1002
        AN(w);
548 1002
        AN(pt);
549
550 1002
        col = COL_CUR;
551 5514
        while (col < COL_LAST) {
552 5262
                if (X - x < COLW)
553 750
                        break;
554 4512
                switch (col) {
555
                case COL_CUR:
556 1002
                        IC(mvwprintw(w, y, x, " %12ju", (uintmax_t)pt->cur));
557 1002
                        break;
558
                case COL_CHG:
559 1002
                        if (pt->t_last)
560 717
                                IC(mvwprintw(w, y, x, " %12.2f", pt->chg));
561
                        else
562 285
                                IC(mvwprintw(w, y, x, " %12s", ".  "));
563 1002
                        break;
564
                case COL_AVG:
565 1002
                        if (pt->avg)
566 282
                                IC(mvwprintw(w, y, x, " %12.2f", pt->avg));
567
                        else
568 720
                                IC(mvwprintw(w, y, x, " %12s", ".  "));
569 1002
                        break;
570
                case COL_MA10:
571 1002
                        IC(mvwprintw(w, y, x, " %12.2f", pt->ma_10.acc));
572 1002
                        break;
573
                case COL_MA100:
574 252
                        IC(mvwprintw(w, y, x, " %12.2f", pt->ma_100.acc));
575 252
                        break;
576
                case COL_MA1000:
577 252
                        IC(mvwprintw(w, y, x, " %12.2f", pt->ma_1000.acc));
578 252
                        break;
579
                default:
580 0
                        break;
581
                }
582 4512
                x += COLW;
583 4512
                col++;
584
        }
585 1002
}
586
587
static double
588 549
scale_bytes(double val, char *q)
589
{
590
        const char *p;
591
592 705
        for (p = " KMGTPEZY"; *p; p++) {
593 705
                if (fabs(val) < 1024.)
594 549
                        break;
595 156
                val /= 1024.;
596 156
        }
597 549
        *q = *p;
598 549
        return (val);
599
}
600
601
static void
602 951
print_bytes(WINDOW *w, double val)
603
{
604 951
        char q = ' ';
605
606 951
        if (scale)
607 549
                val = scale_bytes(val, &q);
608 951
        IC(wprintw(w, " %12.2f%c", val, q));
609 951
}
610
611
static void
612 351
print_trunc(WINDOW *w, uintmax_t val)
613
{
614 351
        if (val > VALUE_MAX) {
615 0
                while (val > VALUE_MAX)
616 0
                        val /= 1000;
617 0
                IC(wprintw(w, " %9ju...", val));
618 0
        } else
619 351
                IC(wprintw(w, " %12ju", val));
620 351
}
621
622
static void
623 399
draw_line_bytes(WINDOW *w, int y, int x, int X, const struct pt *pt)
624
{
625
        enum {
626
                COL_CUR,
627
                COL_CHG,
628
                COL_AVG,
629
                COL_MA10,
630
                COL_MA100,
631
                COL_MA1000,
632
                COL_LAST
633
        } col;
634
635 399
        AN(w);
636 399
        AN(pt);
637
638 399
        col = COL_CUR;
639 2127
        while (col < COL_LAST) {
640 2061
                if (X - x < COLW)
641 333
                        break;
642 1728
                wmove(w, y, x);
643 1728
                switch (col) {
644
                case COL_CUR:
645 399
                        if (scale && pt->cur > 1024)
646 48
                                print_bytes(w, (double)pt->cur);
647
                        else
648 351
                                print_trunc(w, (uintmax_t)pt->cur);
649 399
                        break;
650
                case COL_CHG:
651 399
                        if (pt->t_last)
652 210
                                print_bytes(w, pt->chg);
653
                        else
654 189
                                IC(wprintw(w, " %12s", ".  "));
655 399
                        break;
656
                case COL_AVG:
657 399
                        if (pt->avg)
658 162
                                print_bytes(w, pt->avg);
659
                        else
660 237
                                IC(wprintw(w, " %12s", ".  "));
661 399
                        break;
662
                case COL_MA10:
663 399
                        print_bytes(w, pt->ma_10.acc);
664 399
                        break;
665
                case COL_MA100:
666 66
                        print_bytes(w, pt->ma_100.acc);
667 66
                        break;
668
                case COL_MA1000:
669 66
                        print_bytes(w, pt->ma_1000.acc);
670 66
                        break;
671
                default:
672 0
                        break;
673
                }
674 1728
                x += COLW;
675 1728
                col++;
676
        }
677 399
}
678
679
static void
680 51
draw_line_bitmap(WINDOW *w, int y, int x, int X, const struct pt *pt)
681
{
682
        unsigned ch;
683
        enum {
684
                COL_VAL,
685
                COL_MAP,
686
                COL_LAST
687
        } col;
688
689 51
        AN(w);
690 51
        AN(pt);
691 51
        assert(pt->vpt->format == 'b');
692
693 51
        col = COL_VAL;
694 153
        while (col < COL_LAST) {
695 102
                switch (col) {
696
                case COL_VAL:
697 51
                        if (X - x < COLW)
698 0
                                return;
699 51
                        IC(mvwprintw(w, y, x, "   %10.10jx",
700
                            (uintmax_t)((pt->cur >> 24) & 0xffffffffffLL)));
701 51
                        x += COLW;
702 51
                        break;
703
                case COL_MAP:
704 51
                        if (X - x < 2 * COLW)
705 0
                                return;
706 51
                        x += (2 * COLW) - 24;
707 1275
                        for (ch = 0x800000; ch; ch >>= 1) {
708 1224
                                if (pt->cur & ch)
709 279
                                        mvwaddch(w, y, x, 'V');
710
                                else
711 945
                                        mvwaddch(w, y, x, '_');
712 1224
                                x++;
713 1224
                        }
714 51
                        break;
715
                default:
716 0
                        break;
717
                }
718 102
                col++;
719
        }
720 51
}
721
722
static void
723 9
draw_line_duration(WINDOW *w, int y, int x, int X, const struct pt *pt)
724
{
725
        enum {
726
                COL_DUR,
727
                COL_LAST
728
        } col;
729
730 9
        AN(w);
731 9
        AN(pt);
732
733 9
        col = COL_DUR;
734 18
        while (col < COL_LAST) {
735 9
                if (X - x < COLW)
736 0
                        break;
737 9
                switch (col) {
738
                case COL_DUR:
739 9
                        wmove(w, y, x);
740 9
                        if (scale)
741 3
                                print_duration(w, pt->cur);
742
                        else
743 6
                                IC(wprintw(w, " %12ju", (uintmax_t)pt->cur));
744 9
                        break;
745
                default:
746 0
                        break;
747
                }
748 9
                x += COLW;
749 9
                col++;
750
        }
751 9
}
752
753
static void
754 1461
draw_line(WINDOW *w, int y, const struct pt *pt)
755
{
756
        int x, X;
757
758 1461
        assert(colw_name >= COLW_NAME_MIN);
759 1461
        X = getmaxx(w);
760 1461
        x = 0;
761 1461
        if (vstrlen(pt->vpt->name) > colw_name)
762 96
                IC(mvwprintw(w, y, x, "%.*s...", colw_name - 3, pt->vpt->name));
763
        else
764 1365
                IC(mvwprintw(w, y, x, "%.*s", colw_name, pt->vpt->name));
765 1461
        x += colw_name;
766
767 1461
        switch (pt->vpt->format) {
768
        case 'b':
769 51
                draw_line_bitmap(w, y, x, X, pt);
770 51
                break;
771
        case 'B':
772 399
                draw_line_bytes(w, y, x, X, pt);
773 399
                break;
774
        case 'd':
775 9
                draw_line_duration(w, y, x, X, pt);
776 9
                break;
777
        default:
778 1002
                draw_line_default(w, y, x, X, pt);
779 1002
                break;
780
        }
781 1461
}
782
783
static void
784 132
draw_points(void)
785
{
786
        int line;
787
        int n;
788
789 132
        AN(w_points);
790
791 132
        AC(werase(w_points));
792 132
        if (n_ptarray == 0) {
793 21
                AC(wnoutrefresh(w_points));
794 21
                return;
795
        }
796
797 111
        assert(current >= 0);
798 111
        assert(current < n_ptarray);
799 111
        assert(page_start >= 0);
800 111
        assert(page_start < n_ptarray);
801 111
        assert(current >= page_start);
802 111
        assert(current - page_start < l_points);
803
804 1572
        for (line = 0; line < l_points; line++) {
805 1497
                n = line + page_start;
806 1497
                if (n >= n_ptarray)
807 36
                        break;
808 1461
                if (n == current)
809 111
                        wattron(w_points, A_BOLD);
810 1461
                draw_line(w_points, line, ptarray[n]);
811 1461
                if (n == current)
812 111
                        wattroff(w_points, A_BOLD);
813 1461
        }
814 111
        AC(wnoutrefresh(w_points));
815 132
}
816
817
static void
818 9
draw_help(void)
819
{
820
        const char *const *p;
821
        int l, y, X;
822
823 9
        if (l_points >= bindings_help_len) {
824 0
                assert(help_line == 0);
825 0
                l = bindings_help_len;
826 0
        } else {
827 9
                assert(help_line >= 0);
828 9
                assert(help_line <= bindings_help_len - l_points);
829 9
                l = l_points;
830
        }
831
832 9
        X = getmaxx(w_points);
833 9
        AC(werase(w_points));
834
835 153
        for (y = 0, p = bindings_help + help_line; y < l; y++, p++) {
836 144
                if (**p == '\t') {
837 75
                        IC(mvwprintw(w_points, y, 0, "    %.*s", X - 4, *p + 1));
838 75
                } else {
839 69
                        wattron(w_points, A_BOLD);
840 69
                        IC(mvwprintw(w_points, y, 0, "%.*s", X, *p));
841 69
                        wattroff(w_points, A_BOLD);
842
                }
843 144
        }
844
845 9
        AC(wnoutrefresh(w_points));
846 9
}
847
848
static void
849 132
draw_bar_b(void)
850
{
851
        int x, X;
852
        char buf[64];
853
854 132
        AN(w_bar_b);
855
856 132
        x = 0;
857 132
        X = getmaxx(w_bar_b);
858 132
        AC(werase(w_bar_b));
859 132
        if (page_start + l_points < n_ptarray)
860 66
                IC(mvwprintw(w_bar_b, 0, x, "vvv"));
861 132
        x += 4;
862 132
        if (current < n_ptarray)
863 111
                IC(mvwprintw(w_bar_b, 0, x, "%s", ptarray[current]->vpt->name));
864
865 132
        bprintf(buf, "%d-%d/%d", page_start + 1,
866
            page_start + l_points < n_ptarray ?
867
                page_start + l_points : n_ptarray,
868
            n_ptarray);
869 132
        IC(mvwprintw(w_bar_b, 0, X - vstrlen(buf), "%s", buf));
870 132
        X -= vstrlen(buf) + 2;
871
872 132
        if (verbosity != NULL) {
873 132
                IC(mvwprintw(w_bar_b, 0, X - vstrlen(verbosity->label), "%s",
874
                             verbosity->label));
875 132
                X -= vstrlen(verbosity->label) + 2;
876 132
        }
877 132
        if (!hide_unseen) {
878 36
                IC(mvwprintw(w_bar_b, 0, X - 6, "%s", "UNSEEN"));
879 36
                X -= 8;
880 36
        }
881 132
        if (raw_vsc)
882 0
                IC(mvwprintw(w_bar_b, 0, X - 3, "%s", "RAW"));
883
884 132
        AC(wnoutrefresh(w_bar_b));
885 132
}
886
887
static void
888 132
draw_info(void)
889
{
890
891 132
        if (w_info == NULL)
892 0
                return;
893
894 132
        AC(werase(w_info));
895 132
        if (current < n_ptarray) {
896
                /* XXX: Word wrapping, and overflow handling? */
897 111
                IC(mvwprintw(w_info, 0, 0, "%s:",
898
                    ptarray[current]->vpt->sdesc));
899 111
                IC(mvwprintw(w_info, 1, 0, "%s",
900
                    ptarray[current]->vpt->ldesc));
901 111
        }
902 132
        AC(wnoutrefresh(w_info));
903 132
}
904
905
static void
906 141
draw_screen(void)
907
{
908 141
        draw_status();
909 141
        if (show_help) {
910 9
                AC(werase(w_bar_t));
911 9
                AC(werase(w_bar_b));
912 9
                AC(werase(w_info));
913 9
                AC(wnoutrefresh(w_bar_t));
914 9
                AC(wnoutrefresh(w_bar_b));
915 9
                AC(wnoutrefresh(w_info));
916 9
                draw_help();
917 9
        } else {
918 132
                draw_bar_t();
919 132
                draw_points();
920 132
                draw_bar_b();
921 132
                draw_info();
922
        }
923 141
        AC(doupdate());
924 141
        redraw = 0;
925 141
}
926
927
static void
928 6
handle_common_keypress(enum kb_e kb)
929
{
930
931 6
        switch (kb) {
932
        case KB_QUIT:
933 6
                keep_running = 0;
934 6
                return;
935
        case KB_SIG_INT:
936 0
                AZ(raise(SIGINT));
937 0
                return;
938
        case KB_SIG_TSTP:
939 0
                AZ(raise(SIGTSTP));
940 0
                return;
941
        default:
942 0
                WRONG("unexpected key binding");
943 0
        }
944 6
}
945
946
static void
947 54
handle_points_keypress(struct vsc *vsc, enum kb_e kb)
948
{
949
950 54
        switch (kb) {
951
        case KB_HELP:
952 6
                show_help = 1;
953 6
                help_line = 0;
954 6
                redraw = 1;
955 6
                return;
956
        case KB_UP:
957 3
                if (current == 0)
958 0
                        return;
959 3
                current--;
960 3
                break;
961
        case KB_DOWN:
962 0
                if (current == n_ptarray - 1)
963 0
                        return;
964 0
                current++;
965 0
                break;
966
        case KB_PAGEUP:
967 6
                current -= l_points;
968 6
                page_start -= l_points;
969 6
                break;
970
        case KB_PAGEDOWN:
971 6
                current += l_points;
972 6
                if (page_start + l_points < n_ptarray - 1)
973 6
                        page_start += l_points;
974 6
                break;
975
        case KB_TOP:
976 3
                current = 0;
977 3
                break;
978
        case KB_BOTTOM:
979 6
                current = n_ptarray - 1;
980 6
                break;
981
        case KB_UNSEEN:
982 3
                hide_unseen = 1 - hide_unseen;
983 3
                rebuild = REBUILD_NEXT;
984 3
                break;
985
        case KB_RAW:
986 0
                AN(VSC_Arg(vsc, 'r', NULL));
987 0
                raw_vsc = VSC_IsRaw(vsc);
988 0
                rebuild = REBUILD_NEXT;
989 0
                break;
990
        case KB_SCALE:
991 3
                scale = 1 - scale;
992 3
                rebuild = REBUILD_NEXT;
993 3
                break;
994
        case KB_ACCEL:
995 3
                interval += 0.1;
996 3
                (void)snprintf(notification_message, NOTIF_MAXLEN,
997 3
                    "Refresh interval set to %.1f seconds.", interval);
998
999 3
                notification_eol = VTIM_mono() + 1.25;
1000 3
                break;
1001
        case KB_DECEL:
1002 3
                interval -= 0.1;
1003 3
                if (interval < 0.1)
1004 0
                        interval = 0.1;
1005 3
                (void)snprintf(notification_message, NOTIF_MAXLEN,
1006 3
                    "Refresh interval set to %.1f seconds.", interval);
1007
1008 3
                notification_eol = VTIM_mono() + 1.25;
1009 3
                break;
1010
        case KB_VERBOSE:
1011 3
                verbosity = VSC_ChangeLevel(verbosity, 1);
1012 3
                rebuild = REBUILD_NEXT;
1013 3
                break;
1014
        case KB_QUIET:
1015 0
                verbosity = VSC_ChangeLevel(verbosity, -1);
1016 0
                rebuild = REBUILD_NEXT;
1017 0
                break;
1018
        case KB_SAMPLE:
1019 0
                sample = 1;
1020 0
                return;
1021
        case KB_RESET_AVERAGES:
1022 3
                reset_averages = 1;
1023 3
                return;
1024
        case KB_QUIT:
1025
        case KB_SIG_INT:
1026
        case KB_SIG_TSTP:
1027 6
                handle_common_keypress(kb);
1028 6
                return;
1029
        default:
1030 0
                WRONG("unhandled key binding");
1031 0
        }
1032
1033 39
        update_position();
1034 39
        redraw = 1;
1035 54
}
1036
1037
static void
1038 9
handle_help_keypress(enum kb_e kb)
1039
{
1040 9
        int hl = help_line;
1041
1042 9
        switch (kb) {
1043
        case KB_HELP:
1044 6
                show_help = 0;
1045 6
                redraw = 1;
1046 6
                return;
1047
        case KB_UP:
1048 0
                help_line--;
1049 0
                break;
1050
        case KB_DOWN:
1051 0
                help_line++;
1052 0
                break;
1053
        case KB_PAGEUP:
1054 0
                help_line -= l_points;
1055 0
                break;
1056
        case KB_PAGEDOWN:
1057 0
                help_line += l_points;
1058 0
                break;
1059
        case KB_TOP:
1060 0
                help_line = 0;
1061 0
                break;
1062
        case KB_BOTTOM:
1063 3
                help_line = bindings_help_len;
1064 3
                break;
1065
        case KB_UNSEEN:
1066
        case KB_RAW:
1067
        case KB_SCALE:
1068
        case KB_ACCEL:
1069
        case KB_DECEL:
1070
        case KB_VERBOSE:
1071
        case KB_QUIET:
1072
        case KB_SAMPLE:
1073
        case KB_RESET_AVERAGES:
1074 0
                break;
1075
        case KB_QUIT:
1076
        case KB_SIG_INT:
1077
        case KB_SIG_TSTP:
1078 0
                handle_common_keypress(kb);
1079 0
                return;
1080
        default:
1081 0
                WRONG("unhandled key binding");
1082 0
        }
1083
1084 3
        help_line = vlimit_t(int, help_line, 0, bindings_help_len - l_points);
1085 3
        redraw = (help_line != hl);
1086 9
}
1087
1088
static void
1089 63
handle_keypress(struct vsc *vsc, int ch)
1090
{
1091
        enum kb_e kb;
1092
1093 63
        switch (ch) {
1094
#define BINDING_KEY(chr, name, or)      \
1095
        case chr:
1096
#define BINDING(name, desc)             \
1097
                kb = KB_ ## name;       \
1098
                break;
1099
#define BINDING_SIG
1100
#include "vinylstat_bindings.h"
1101
        default:
1102
                return;
1103
        }
1104
1105 63
        if (show_help)
1106 9
                handle_help_keypress(kb);
1107
        else
1108 54
                handle_points_keypress(vsc, kb);
1109 63
}
1110
1111
static void * v_matchproto_(VSC_new_f)
1112 7413
newpt(void *priv, const struct VSC_point *const vpt)
1113
{
1114
        struct pt *pt;
1115
1116 7413
        AZ(priv);
1117 7413
        ALLOC_OBJ(pt, PT_MAGIC);
1118 7413
        rebuild |= REBUILD_NEXT;
1119 7413
        AN(pt);
1120 7413
        pt->vpt = vpt;
1121 7413
        pt->last = VSC_Value(vpt);
1122 7413
        pt->ma_10.nmax = 10;
1123 7413
        pt->ma_100.nmax = 100;
1124 7413
        pt->ma_1000.nmax = 1000;
1125
1126 7413
        VTAILQ_INSERT_TAIL(&ptlist, pt, list);
1127 7413
        n_ptlist++;
1128
1129 7413
        AZ(vstrcmp(vpt->ctype, "uint64_t"));
1130
1131 7413
        if (!vstrcmp(vpt->name, "MGT.uptime"))
1132 21
                mgt_uptime = vpt->ptr;
1133 7413
        if (!vstrcmp(vpt->name, "MAIN.uptime"))
1134 21
                main_uptime = vpt->ptr;
1135 7413
        if (!vstrcmp(vpt->name, "MAIN.cache_hit"))
1136 21
                main_cache_hit = vpt->ptr;
1137 7413
        if (!vstrcmp(vpt->name, "MAIN.cache_miss"))
1138 21
                main_cache_miss = vpt->ptr;
1139 7413
        return (pt);
1140
}
1141
1142
static void v_matchproto_(VSC_destroy_f)
1143 7413
delpt(void *priv, const struct VSC_point *const vpt)
1144
{
1145
        struct pt *pt;
1146
1147 7413
        AZ(priv);
1148 7413
        CAST_OBJ_NOTNULL(pt, vpt->priv, PT_MAGIC);
1149 7413
        rebuild |= REBUILD_NEXT;
1150 7413
        VTAILQ_REMOVE(&ptlist, pt, list);
1151 7413
        n_ptlist--;
1152 7413
        FREE_OBJ(pt);
1153 7413
        if (vpt->ptr == mgt_uptime)
1154 21
                mgt_uptime = NULL;
1155 7413
        if (vpt->ptr == main_uptime)
1156 21
                main_uptime = NULL;
1157 7413
        if (vpt->ptr == main_cache_hit)
1158 21
                main_cache_hit = NULL;
1159 7413
        if (vpt->ptr == main_cache_miss)
1160 21
                main_cache_miss = NULL;
1161 7413
}
1162
1163
void
1164 21
do_curses(struct vsm *vsm, struct vsc *vsc)
1165
{
1166
        long t;
1167
        int ch;
1168
        double now;
1169
1170 21
        verbosity = VSC_ChangeLevel(NULL, 0);
1171
1172 21
        (void)initscr();
1173 21
        AC(raw());
1174 21
        AC(noecho());
1175 21
        AC(nonl());
1176 21
        IC(curs_set(0));
1177
1178 21
        make_windows();
1179 21
        AC(doupdate());
1180
1181 21
        VSC_State(vsc, newpt, delpt, NULL);
1182
1183 21
        raw_vsc = VSC_IsRaw(vsc);
1184 21
        rebuild |= REBUILD_FIRST;
1185 21
        (void)VSC_Iter(vsc, vsm, NULL, NULL);
1186 21
        build_pt_array();
1187 21
        init_hitrate();
1188
1189 165
        while (keep_running && !VSIG_int && !VSIG_term && !VSIG_hup) {
1190 144
                (void)VSC_Iter(vsc, vsm, NULL, NULL);
1191 144
                vsm_status = VSM_Status(vsm);
1192 144
                if (vsm_status & (VSM_MGT_RESTARTED|VSM_WRK_RESTARTED))
1193 0
                        init_hitrate();
1194 144
                if (rebuild)
1195 57
                        build_pt_array();
1196
1197 144
                now = VTIM_mono();
1198 144
                if (now - t_sample > interval)
1199 84
                        sample = 1;
1200 144
                if (sample)
1201 84
                        sample_data();
1202 144
                if (redraw)
1203 141
                        draw_screen();
1204
1205 144
                t = (long)((t_sample + interval - now) * 1000);
1206 144
                wtimeout(w_status, t);
1207
1208 144
                ch = wgetch(w_status);
1209 144
                switch (ch) {
1210
                case ERR:
1211 78
                        break;
1212
#ifdef KEY_RESIZE /* sigh, Solaris lacks this.. */
1213
                case KEY_RESIZE:
1214 3
                        make_windows();
1215 3
                        update_position();
1216 3
                        break;
1217
#endif
1218
                default:
1219 63
                        handle_keypress(vsc, ch);
1220 63
                        break;
1221
                }
1222
        }
1223 21
        VSC_Destroy(&vsc, vsm);
1224 21
        AN(VTAILQ_EMPTY(&ptlist));
1225 21
        VSM_Destroy(&vsm);
1226 21
        AZ(endwin());
1227 21
}