Fourth batch
[git/raj.git] / progress.c
blob3eda914518bfdcd211552d41b5439125b1ea27ed
1 /*
2 * Simple text-based progress display module for GIT
4 * Copyright (c) 2007 by Nicolas Pitre <nico@fluxnic.net>
6 * This code is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
11 #define GIT_TEST_PROGRESS_ONLY
12 #include "cache.h"
13 #include "gettext.h"
14 #include "progress.h"
15 #include "strbuf.h"
16 #include "trace.h"
17 #include "utf8.h"
18 #include "config.h"
20 #define TP_IDX_MAX 8
22 struct throughput {
23 off_t curr_total;
24 off_t prev_total;
25 uint64_t prev_ns;
26 unsigned int avg_bytes;
27 unsigned int avg_misecs;
28 unsigned int last_bytes[TP_IDX_MAX];
29 unsigned int last_misecs[TP_IDX_MAX];
30 unsigned int idx;
31 struct strbuf display;
34 struct progress {
35 const char *title;
36 uint64_t last_value;
37 uint64_t total;
38 unsigned last_percent;
39 unsigned delay;
40 unsigned sparse;
41 struct throughput *throughput;
42 uint64_t start_ns;
43 struct strbuf counters_sb;
44 int title_len;
45 int split;
48 static volatile sig_atomic_t progress_update;
51 * These are only intended for testing the progress output, i.e. exclusively
52 * for 'test-tool progress'.
54 int progress_testing;
55 uint64_t progress_test_ns = 0;
56 void progress_test_force_update(void)
58 progress_update = 1;
62 static void progress_interval(int signum)
64 progress_update = 1;
67 static void set_progress_signal(void)
69 struct sigaction sa;
70 struct itimerval v;
72 if (progress_testing)
73 return;
75 progress_update = 0;
77 memset(&sa, 0, sizeof(sa));
78 sa.sa_handler = progress_interval;
79 sigemptyset(&sa.sa_mask);
80 sa.sa_flags = SA_RESTART;
81 sigaction(SIGALRM, &sa, NULL);
83 v.it_interval.tv_sec = 1;
84 v.it_interval.tv_usec = 0;
85 v.it_value = v.it_interval;
86 setitimer(ITIMER_REAL, &v, NULL);
89 static void clear_progress_signal(void)
91 struct itimerval v = {{0,},};
93 if (progress_testing)
94 return;
96 setitimer(ITIMER_REAL, &v, NULL);
97 signal(SIGALRM, SIG_IGN);
98 progress_update = 0;
101 static int is_foreground_fd(int fd)
103 int tpgrp = tcgetpgrp(fd);
104 return tpgrp < 0 || tpgrp == getpgid(0);
107 static void display(struct progress *progress, uint64_t n, const char *done)
109 const char *tp;
110 struct strbuf *counters_sb = &progress->counters_sb;
111 int show_update = 0;
112 int last_count_len = counters_sb->len;
114 if (progress->delay && (!progress_update || --progress->delay))
115 return;
117 progress->last_value = n;
118 tp = (progress->throughput) ? progress->throughput->display.buf : "";
119 if (progress->total) {
120 unsigned percent = n * 100 / progress->total;
121 if (percent != progress->last_percent || progress_update) {
122 progress->last_percent = percent;
124 strbuf_reset(counters_sb);
125 strbuf_addf(counters_sb,
126 "%3u%% (%"PRIuMAX"/%"PRIuMAX")%s", percent,
127 (uintmax_t)n, (uintmax_t)progress->total,
128 tp);
129 show_update = 1;
131 } else if (progress_update) {
132 strbuf_reset(counters_sb);
133 strbuf_addf(counters_sb, "%"PRIuMAX"%s", (uintmax_t)n, tp);
134 show_update = 1;
137 if (show_update) {
138 if (is_foreground_fd(fileno(stderr)) || done) {
139 const char *eol = done ? done : "\r";
140 size_t clear_len = counters_sb->len < last_count_len ?
141 last_count_len - counters_sb->len + 1 :
143 /* The "+ 2" accounts for the ": ". */
144 size_t progress_line_len = progress->title_len +
145 counters_sb->len + 2;
146 int cols = term_columns();
148 if (progress->split) {
149 fprintf(stderr, " %s%*s", counters_sb->buf,
150 (int) clear_len, eol);
151 } else if (!done && cols < progress_line_len) {
152 clear_len = progress->title_len + 1 < cols ?
153 cols - progress->title_len - 1 : 0;
154 fprintf(stderr, "%s:%*s\n %s%s",
155 progress->title, (int) clear_len, "",
156 counters_sb->buf, eol);
157 progress->split = 1;
158 } else {
159 fprintf(stderr, "%s: %s%*s", progress->title,
160 counters_sb->buf, (int) clear_len, eol);
162 fflush(stderr);
164 progress_update = 0;
168 static void throughput_string(struct strbuf *buf, uint64_t total,
169 unsigned int rate)
171 strbuf_reset(buf);
172 strbuf_addstr(buf, ", ");
173 strbuf_humanise_bytes(buf, total);
174 strbuf_addstr(buf, " | ");
175 strbuf_humanise_rate(buf, rate * 1024);
178 static uint64_t progress_getnanotime(struct progress *progress)
180 if (progress_testing)
181 return progress->start_ns + progress_test_ns;
182 else
183 return getnanotime();
186 void display_throughput(struct progress *progress, uint64_t total)
188 struct throughput *tp;
189 uint64_t now_ns;
190 unsigned int misecs, count, rate;
192 if (!progress)
193 return;
194 tp = progress->throughput;
196 now_ns = progress_getnanotime(progress);
198 if (!tp) {
199 progress->throughput = tp = xcalloc(1, sizeof(*tp));
200 tp->prev_total = tp->curr_total = total;
201 tp->prev_ns = now_ns;
202 strbuf_init(&tp->display, 0);
203 return;
205 tp->curr_total = total;
207 /* only update throughput every 0.5 s */
208 if (now_ns - tp->prev_ns <= 500000000)
209 return;
212 * We have x = bytes and y = nanosecs. We want z = KiB/s:
214 * z = (x / 1024) / (y / 1000000000)
215 * z = x / y * 1000000000 / 1024
216 * z = x / (y * 1024 / 1000000000)
217 * z = x / y'
219 * To simplify things we'll keep track of misecs, or 1024th of a sec
220 * obtained with:
222 * y' = y * 1024 / 1000000000
223 * y' = y * (2^10 / 2^42) * (2^42 / 1000000000)
224 * y' = y / 2^32 * 4398
225 * y' = (y * 4398) >> 32
227 misecs = ((now_ns - tp->prev_ns) * 4398) >> 32;
229 count = total - tp->prev_total;
230 tp->prev_total = total;
231 tp->prev_ns = now_ns;
232 tp->avg_bytes += count;
233 tp->avg_misecs += misecs;
234 rate = tp->avg_bytes / tp->avg_misecs;
235 tp->avg_bytes -= tp->last_bytes[tp->idx];
236 tp->avg_misecs -= tp->last_misecs[tp->idx];
237 tp->last_bytes[tp->idx] = count;
238 tp->last_misecs[tp->idx] = misecs;
239 tp->idx = (tp->idx + 1) % TP_IDX_MAX;
241 throughput_string(&tp->display, total, rate);
242 if (progress->last_value != -1 && progress_update)
243 display(progress, progress->last_value, NULL);
246 void display_progress(struct progress *progress, uint64_t n)
248 if (progress)
249 display(progress, n, NULL);
252 static struct progress *start_progress_delay(const char *title, uint64_t total,
253 unsigned delay, unsigned sparse)
255 struct progress *progress = xmalloc(sizeof(*progress));
256 progress->title = title;
257 progress->total = total;
258 progress->last_value = -1;
259 progress->last_percent = -1;
260 progress->delay = delay;
261 progress->sparse = sparse;
262 progress->throughput = NULL;
263 progress->start_ns = getnanotime();
264 strbuf_init(&progress->counters_sb, 0);
265 progress->title_len = utf8_strwidth(title);
266 progress->split = 0;
267 set_progress_signal();
268 trace2_region_enter("progress", title, the_repository);
269 return progress;
272 static int get_default_delay(void)
274 static int delay_in_secs = -1;
276 if (delay_in_secs < 0)
277 delay_in_secs = git_env_ulong("GIT_PROGRESS_DELAY", 2);
279 return delay_in_secs;
282 struct progress *start_delayed_progress(const char *title, uint64_t total)
284 return start_progress_delay(title, total, get_default_delay(), 0);
287 struct progress *start_progress(const char *title, uint64_t total)
289 return start_progress_delay(title, total, 0, 0);
293 * Here "sparse" means that the caller might use some sampling criteria to
294 * decide when to call display_progress() rather than calling it for every
295 * integer value in[0 .. total). In particular, the caller might not call
296 * display_progress() for the last value in the range.
298 * When "sparse" is set, stop_progress() will automatically force the done
299 * message to show 100%.
301 struct progress *start_sparse_progress(const char *title, uint64_t total)
303 return start_progress_delay(title, total, 0, 1);
306 struct progress *start_delayed_sparse_progress(const char *title,
307 uint64_t total)
309 return start_progress_delay(title, total, get_default_delay(), 1);
312 static void finish_if_sparse(struct progress *progress)
314 if (progress &&
315 progress->sparse &&
316 progress->last_value != progress->total)
317 display_progress(progress, progress->total);
320 void stop_progress(struct progress **p_progress)
322 finish_if_sparse(*p_progress);
324 if (p_progress && *p_progress) {
325 trace2_data_intmax("progress", the_repository, "total_objects",
326 (*p_progress)->total);
328 if ((*p_progress)->throughput)
329 trace2_data_intmax("progress", the_repository,
330 "total_bytes",
331 (*p_progress)->throughput->curr_total);
333 trace2_region_leave("progress", (*p_progress)->title, the_repository);
336 stop_progress_msg(p_progress, _("done"));
339 void stop_progress_msg(struct progress **p_progress, const char *msg)
341 struct progress *progress = *p_progress;
342 if (!progress)
343 return;
344 *p_progress = NULL;
345 if (progress->last_value != -1) {
346 /* Force the last update */
347 char *buf;
348 struct throughput *tp = progress->throughput;
350 if (tp) {
351 uint64_t now_ns = progress_getnanotime(progress);
352 unsigned int misecs, rate;
353 misecs = ((now_ns - progress->start_ns) * 4398) >> 32;
354 rate = tp->curr_total / (misecs ? misecs : 1);
355 throughput_string(&tp->display, tp->curr_total, rate);
357 progress_update = 1;
358 buf = xstrfmt(", %s.\n", msg);
359 display(progress, progress->last_value, buf);
360 free(buf);
362 clear_progress_signal();
363 strbuf_release(&progress->counters_sb);
364 if (progress->throughput)
365 strbuf_release(&progress->throughput->display);
366 free(progress->throughput);
367 free(progress);