-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-cli.c
130 lines (106 loc) · 2.62 KB
/
ui-cli.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
/*
* Copyright (C) 2012 Przemyslaw Pawelczyk <[email protected]>
*
* This software is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2.
* See <http://www.gnu.org/licenses/gpl-2.0.txt>.
*
* This software 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.
*/
#include <stdarg.h>
#include <stdio.h>
#include "common.h"
#include "ui.h"
static int steps = 0;
static int step = 0;
static uint64_t pmax = 0;
static uint64_t pval = 0;
/* ==== Exposed functions prototypes ======================================== */
static int cli_log(const char *format, ...);
static int cli_yesno(const char *format, ...);
static int cli_start_op(const char *title, int steps_no);
static int cli_end_op();
static int cli_next_step(const char *name);
static int cli_set_step_prog_max(uint64_t max);
static int cli_set_step_prog_val(uint64_t val);
ui_ops_t ui_cli = {
.log = cli_log,
.yesno = cli_yesno,
.start_op = cli_start_op,
.end_op = cli_end_op,
.next_step = cli_next_step,
.set_step_prog_max = cli_set_step_prog_max,
.set_step_prog_val = cli_set_step_prog_val,
};
/* ==== Exposed functions definitions ======================================= */
static int cli_log(const char *format, ...)
{
va_list ap;
int ret;
if (step)
printf("[%d/%d] ", step, steps);
va_start(ap, format);
ret = vprintf(format, ap);
va_end(ap);
return ret;
}
static int cli_yesno(const char *format, ...)
{
va_list ap;
char buf[4];
puts("");
va_start(ap, format);
vprintf(format, ap);
va_end(ap);
printf(" (y/N) ");
fflush(stdout);
fgets(buf, sizeof(buf), stdin);
return (buf[0] == 'y' || buf[0] == 'Y') && buf[1] == '\n'
? SUCCESS : FAILURE;
}
static int cli_start_op(const char *title, int steps_no)
{
steps = steps_no;
step = 0;
return printf("\nOperation: %s\n", title);
}
static int cli_end_op()
{
step = 0;
steps = 0;
puts("Operation finished");
return 0;
}
static int cli_next_step(const char *name)
{
step++;
printf("[%d/%d] %s: ", step, steps, name);
cli_set_step_prog_max(1);
return 0;
}
static int cli_set_step_prog_max(uint64_t max)
{
pmax = max;
pval = 0;
return 0;
}
static int cli_set_step_prog_val(uint64_t val)
{
static int len = 0;
pval = val;
if (pmax > 1) {
while (len) {
putchar('\b');
len--;
}
len = printf("%"PRIu64"/%"PRIu64" ", pval, pmax);
}
if (pval == pmax) {
puts("Done");
len = 0;
}
return len;
}