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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
| | /*
* Simple text-based progress display module for GIT
*
* Copyright (c) 2007 by Nicolas Pitre <nico@fluxnic.net>
*
* This code is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include "cache.h"
#include "gettext.h"
#include "progress.h"
#include "strbuf.h"
#include "trace.h"
#include "utf8.h"
#include "config.h"
static volatile sig_atomic_t progress_update;
static struct progress *global_progress;
static int is_foreground_fd(int fd)
{
int tpgrp = tcgetpgrp(fd);
return tpgrp < 0 || tpgrp == getpgid(0);
}
static const char *counter_prefix(int split)
{
switch (split) {
case 1: return " ";
case 0: return ": ";
default: BUG("unknown split value");
}
}
static void display(struct progress *progress, uint64_t n,
const char *update_msg, int last_update)
{
const char *tp;
int show_update = 0;
progress->last_update = n;
if (progress->delay && (!progress_update || --progress->delay))
return;
tp = (progress->throughput) ? progress->throughput->display.buf : "";
if (progress->total) {
unsigned percent = n * 100 / progress->total;
if (percent != progress->last_percent || progress_update) {
progress->last_percent = percent;
strbuf_reset(&progress->status);
strbuf_addf(&progress->status,
"%s%3u%% (%"PRIuMAX"/%"PRIuMAX")%s",
counter_prefix(progress->split), percent,
(uintmax_t)n, (uintmax_t)progress->total,
tp);
show_update = 1;
}
} else if (progress_update) {
strbuf_reset(&progress->status);
strbuf_addf(&progress->status, "%s%"PRIuMAX"%s", counter_prefix(progress->split),
(uintmax_t)n, tp);
show_update = 1;
}
if (show_update && update_msg)
strbuf_addstr(&progress->status, update_msg);
if (show_update) {
int stderr_is_foreground_fd = is_foreground_fd(fileno(stderr));
if (stderr_is_foreground_fd || update_msg) {
const char *eol = last_update ? "\n" : "\r";
size_t status_len_utf8 = utf8_strwidth(progress->status.buf);
size_t progress_line_len = progress->title_len_utf8 + status_len_utf8;
/*
* We're back at the beginning, so we'll
* always print out the title, unless we're
* already split, then the title is on an
* earlier line.
*/
if (!progress->split)
fprintf(stderr, "%*s",
(int)(progress->title_len_utf8),
progress->title.buf);
/*
* Did the user resize the terminal and we're
* splitting this progress bar? Clear previous
* ": (X/Y) [msg]"
*/
if (!progress->split &&
term_columns() < progress_line_len) {
const char *split_prefix = counter_prefix(0);
const char *unsplit_prefix = counter_prefix(1);
const char *split_colon = ":";
progress->split = 1;
if (progress->last_value == -1) {
/*
* We've got no previous
* output whatsoever, so we
* were "always split". No
* previous status output to
* erase.
*/
fprintf(stderr, "%s\n", split_colon);
} else {
const char *split_colon = ":";
const size_t split_colon_len = strlen(split_colon);
/*
* Erase whatever we had, adding a
* trailing ":" (not ": ") to indicate
* the progress on the next line.
*/
fprintf(stderr, "%s%*s\n", split_colon,
(int)(progress->status_len_utf8 - split_colon_len),
"");
}
/*
* For the one-off switching from
* "!progress->split" to
* "progress->split" fake up the
* expected strbuf and replace the ":
* " with a " ".
*
* The length of the two delimiters
* must be the same for this trick to
* work.
*/
if (!starts_with(progress->status.buf, split_prefix))
BUG("switching from already true split mode to split mode?");
strbuf_splice(&progress->status, 0,
strlen(split_prefix),
unsplit_prefix,
strlen(unsplit_prefix));
fprintf(stderr, "%*s%s", (int)status_len_utf8,
progress->status.buf, eol);
} else {
/*
* Our current
* message may be larger or smaller than the
* last one. Either the progress bar went
* backards (smaller numbers), or we went back
* and forth with a status message.
*/
size_t clear_len = progress->status_len_utf8 > status_len_utf8
? progress->status_len_utf8 - status_len_utf8
: 0;
fprintf(stderr, "%*s%*s%s",
(int) status_len_utf8, progress->status.buf,
(int) clear_len, "",
eol);
}
progress->status_len_utf8 = status_len_utf8;
if (stderr_is_foreground_fd)
fflush(stderr);
}
progress_update = 0;
}
progress->last_value = n;
}
static void throughput_string(struct strbuf *buf, uint64_t total,
unsigned int rate)
{
strbuf_reset(buf);
strbuf_addstr(buf, ", ");
strbuf_humanise_bytes(buf, total);
strbuf_addstr(buf, " | ");
strbuf_humanise_rate(buf, rate * 1024);
}
static uint64_t progress_getnanotime(struct progress *progress)
{
if (progress->test_getnanotime)
return progress->start_ns + progress->test_getnanotime;
else
return getnanotime();
}
void display_throughput(struct progress *progress, uint64_t total)
{
struct throughput *tp;
uint64_t now_ns;
unsigned int misecs, count, rate;
if (!progress)
return;
tp = progress->throughput;
now_ns = progress_getnanotime(progress);
if (!tp) {
progress->throughput = CALLOC_ARRAY(tp, 1);
tp->prev_total = tp->curr_total = total;
tp->prev_ns = now_ns;
strbuf_init(&tp->display, 0);
return;
}
tp->curr_total = total;
/* only update throughput every 0.5 s */
if (now_ns - tp->prev_ns <= 500000000)
return;
/*
* We have x = bytes and y = nanosecs. We want z = KiB/s:
*
* z = (x / 1024) / (y / 1000000000)
* z = x / y * 1000000000 / 1024
* z = x / (y * 1024 / 1000000000)
* z = x / y'
*
* To simplify things we'll keep track of misecs, or 1024th of a sec
* obtained with:
*
* y' = y * 1024 / 1000000000
* y' = y * (2^10 / 2^42) * (2^42 / 1000000000)
* y' = y / 2^32 * 4398
* y' = (y * 4398) >> 32
*/
misecs = ((now_ns - tp->prev_ns) * 4398) >> 32;
count = total - tp->prev_total;
tp->prev_total = total;
tp->prev_ns = now_ns;
tp->avg_bytes += count;
tp->avg_misecs += misecs;
rate = tp->avg_bytes / tp->avg_misecs;
tp->avg_bytes -= tp->last_bytes[tp->idx];
tp->avg_misecs -= tp->last_misecs[tp->idx];
tp->last_bytes[tp->idx] = count;
tp->last_misecs[tp->idx] = misecs;
tp->idx = (tp->idx + 1) % PROGRESS_THROUGHPUT_IDX_MAX;
throughput_string(&tp->display, total, rate);
if (progress->last_value != -1 && progress_update)
display(progress, progress->last_value, NULL, 0);
}
void display_progress(struct progress *progress, uint64_t n)
{
if (progress)
display(progress, n, NULL, 0);
}
static void progress_interval(int signum)
{
progress_update = 1;
if (global_progress->last_value != -1)
return;
display(global_progress, 0, _(", stalled."), 0);
progress_update = 1;
return;
}
void test_progress_force_update(void)
{
progress_interval(SIGALRM);
}
static void set_progress_signal(struct progress *progress)
{
struct sigaction sa;
struct itimerval v;
if (global_progress)
BUG("should have no global_progress in set_progress_signal()");
global_progress = progress;
if (progress->test_mode)
return;
progress_update = 0;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = progress_interval;
sigemptyset(&sa.sa_mask);
sa.sa_flags = SA_RESTART;
sigaction(SIGALRM, &sa, NULL);
v.it_interval.tv_sec = 1;
v.it_interval.tv_usec = 0;
v.it_value = v.it_interval;
setitimer(ITIMER_REAL, &v, NULL);
}
static void clear_progress_signal(struct progress *progress)
{
struct itimerval v = {{0,},};
if (!global_progress)
BUG("should have a global_progress in clear_progress_signal()");
global_progress = NULL;
if (progress->test_mode)
return;
setitimer(ITIMER_REAL, &v, NULL);
signal(SIGALRM, SIG_IGN);
progress_update = 0;
}
static struct progress *start_progress_delay(const char *title, uint64_t total,
unsigned delay, int testing)
{
struct progress *progress = xmalloc(sizeof(*progress));
strbuf_init(&progress->title, 0);
strbuf_addstr(&progress->title, title);
progress->title_len_utf8 = utf8_strwidth(title);
strbuf_init(&progress->status, 0);
progress->status_len_utf8 = 0;
progress->total = total;
progress->last_value = -1;
progress->last_percent = -1;
progress->delay = delay;
progress->throughput = NULL;
progress->start_ns = getnanotime();
progress->split = 0;
progress->test_mode = testing;
set_progress_signal(progress);
trace2_region_enter("progress", title, the_repository);
return progress;
}
struct progress *start_progress_testing(const char *title, uint64_t total)
{
return start_progress_delay(title, total, 0, 1);
}
static int get_default_delay(void)
{
static int delay_in_secs = -1;
if (delay_in_secs < 0)
delay_in_secs = git_env_ulong("GIT_PROGRESS_DELAY", 2);
return delay_in_secs;
}
struct progress *start_delayed_progress(const char *title, uint64_t total)
{
return start_progress_delay(title, total, get_default_delay(), 0);
}
struct progress *start_progress(const char *title, uint64_t total)
{
return start_progress_delay(title, total, 0, 0);
}
void stop_progress(struct progress **p_progress)
{
if (!p_progress)
BUG("don't provide NULL to stop_progress");
if (*p_progress) {
struct progress *progress = *p_progress;
trace2_data_intmax("progress", the_repository, "total_objects",
(*p_progress)->total);
if ((*p_progress)->throughput)
trace2_data_intmax("progress", the_repository,
"total_bytes",
progress->throughput->curr_total);
trace2_region_leave("progress", progress->title.buf, the_repository);
}
stop_progress_msg(p_progress, _(", done."));
}
void stop_progress_msg(struct progress **p_progress, const char *msg)
{
struct progress *progress;
if (!p_progress)
BUG("don't provide NULL to stop_progress_msg");
progress = *p_progress;
if (!progress)
return;
*p_progress = NULL;
if (progress->last_value != -1) {
/* Force the last update */
struct throughput *tp = progress->throughput;
if (tp) {
uint64_t now_ns = progress_getnanotime(progress);
unsigned int misecs, rate;
misecs = ((now_ns - progress->start_ns) * 4398) >> 32;
rate = tp->curr_total / (misecs ? misecs : 1);
throughput_string(&tp->display, tp->curr_total, rate);
}
progress_update = 1;
display(progress, progress->last_value, msg, 1);
}
clear_progress_signal(progress);
strbuf_release(&progress->title);
strbuf_release(&progress->status);
if (progress->throughput)
strbuf_release(&progress->throughput->display);
free(progress->throughput);
free(progress);
}
void stop_progress_early(struct progress **p_progress)
{
struct progress *progress;
struct strbuf sb = STRBUF_INIT;
if (!p_progress)
BUG("don't provide NULL to stop_progress_early");
progress = *p_progress;
if (!progress)
return;
strbuf_addf(&sb, _(", done at %"PRIuMAX" items, expected %"PRIuMAX"."),
progress->total, progress->last_update);
progress->total = progress->last_update;
stop_progress_msg(p_progress, sb.buf);
strbuf_release(&sb);
}
|