DD2-monitor/essai.c

75 lines
1.4 KiB
C
Raw Normal View History

2018-12-08 13:02:24 +01:00
/*
* essai.c
*/
2019-02-06 17:22:32 +01:00
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
2019-01-30 19:14:40 +01:00
#include <curses.h>
2019-02-06 17:22:32 +01:00
#include <time.h>
2018-12-08 13:02:24 +01:00
2019-02-06 17:22:32 +01:00
#include "core/utils.h"
#include "core/sysmetrics.h"
#include "viz/curses/ecran.h"
2018-12-08 13:02:24 +01:00
2019-01-17 18:37:30 +01:00
int verbosity;
/* --------------------------------------------------------------- */
2019-01-30 19:14:40 +01:00
int affiche_loadavg(int nbloops, int k)
{
int idx, foo;
float lds[3];
for (idx=0; idx<nbloops; idx++) {
foo = get_loadavg(lds);
if (foo) fprintf(stderr, "get loadavg -> %d\n", foo);
foo = aff7segs_float(stdscr, 4, 9, lds[0]);
foo = aff7segs_float(stdscr, 14, 9, lds[1]);
foo = aff7segs_float(stdscr, 24, 9, lds[2]);
usleep(200*1000);
}
return 0;
}
/* --------------------------------------------------------------- */
static void finish(int signal)
{
2019-02-02 03:52:30 +01:00
endwin();
fprintf(stderr, "end of pid %d\n", getpid());
exit(0);
2019-01-30 19:14:40 +01:00
}
2018-12-08 13:02:24 +01:00
/* --------------------------------------------------------------- */
int main(int argc, char *argv[])
{
int opt, foo;
2019-01-17 18:37:30 +01:00
while ((opt = getopt(argc, argv, "v")) != -1) {
2018-12-08 13:02:24 +01:00
switch (opt) {
case 'v': verbosity++; break;
default: break;
}
}
2019-01-30 19:14:40 +01:00
initscr();
nonl(); cbreak(); noecho();
keypad(stdscr, TRUE); /* acces aux touches 'curseur' */
fond_ecran(" Demonstrator ");
affiche_loadavg(10000, 0);
/*
* plop, on a fini, il faut restaurer la console
*/
finish(0);
2018-12-08 13:02:24 +01:00
return 0;
}
/* --------------------------------------------------------------- */