]> git.ipfire.org Git - thirdparty/git.git/blame - progress.c
progress: assemble percentage and counters in a strbuf before printing
[thirdparty/git.git] / progress.c
CommitLineData
74b6792f
NP
1/*
2 * Simple text-based progress display module for GIT
3 *
03aa8ff3 4 * Copyright (c) 2007 by Nicolas Pitre <nico@fluxnic.net>
74b6792f
NP
5 *
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 */
10
96a02f8f 11#include "git-compat-util.h"
754dbc43 12#include "gettext.h"
96a02f8f 13#include "progress.h"
079b546a 14#include "strbuf.h"
83d26fa7 15#include "trace.h"
96a02f8f 16
cf84d51c
NP
17#define TP_IDX_MAX 8
18
19struct throughput {
53ed7b5a 20 off_t curr_total;
218558af 21 off_t prev_total;
83d26fa7 22 uint64_t prev_ns;
218558af 23 unsigned int avg_bytes;
cf84d51c 24 unsigned int avg_misecs;
53ed7b5a 25 unsigned int last_bytes[TP_IDX_MAX];
cf84d51c
NP
26 unsigned int last_misecs[TP_IDX_MAX];
27 unsigned int idx;
3131977d 28 struct strbuf display;
cf84d51c
NP
29};
30
dc6a0757
NP
31struct progress {
32 const char *title;
d6861d02
EN
33 uint64_t last_value;
34 uint64_t total;
dc6a0757
NP
35 unsigned last_percent;
36 unsigned delay;
cf84d51c 37 struct throughput *throughput;
0fae1e07 38 uint64_t start_ns;
d53ba841 39 struct strbuf counters_sb;
dc6a0757
NP
40};
41
96a02f8f
NP
42static volatile sig_atomic_t progress_update;
43
44static void progress_interval(int signum)
45{
46 progress_update = 1;
47}
48
49static void set_progress_signal(void)
50{
51 struct sigaction sa;
52 struct itimerval v;
53
180a9f22
NP
54 progress_update = 0;
55
96a02f8f
NP
56 memset(&sa, 0, sizeof(sa));
57 sa.sa_handler = progress_interval;
58 sigemptyset(&sa.sa_mask);
59 sa.sa_flags = SA_RESTART;
60 sigaction(SIGALRM, &sa, NULL);
61
62 v.it_interval.tv_sec = 1;
63 v.it_interval.tv_usec = 0;
64 v.it_value = v.it_interval;
65 setitimer(ITIMER_REAL, &v, NULL);
66}
67
68static void clear_progress_signal(void)
69{
70 struct itimerval v = {{0,},};
71 setitimer(ITIMER_REAL, &v, NULL);
72 signal(SIGALRM, SIG_IGN);
73 progress_update = 0;
74}
75
85cb8906
LM
76static int is_foreground_fd(int fd)
77{
a4fb76ce
JK
78 int tpgrp = tcgetpgrp(fd);
79 return tpgrp < 0 || tpgrp == getpgid(0);
85cb8906
LM
80}
81
9219d127 82static void display(struct progress *progress, uint64_t n, const char *done)
96a02f8f 83{
d53ba841
SG
84 const char *tp;
85 struct strbuf *counters_sb = &progress->counters_sb;
86 int show_update = 0;
42e18fbf 87
9c5951ca 88 if (progress->delay && (!progress_update || --progress->delay))
9219d127 89 return;
42e18fbf
NP
90
91 progress->last_value = n;
3131977d 92 tp = (progress->throughput) ? progress->throughput->display.buf : "";
96a02f8f
NP
93 if (progress->total) {
94 unsigned percent = n * 100 / progress->total;
95 if (percent != progress->last_percent || progress_update) {
96 progress->last_percent = percent;
d53ba841
SG
97
98 strbuf_reset(counters_sb);
99 strbuf_addf(counters_sb,
100 "%3u%% (%"PRIuMAX"/%"PRIuMAX")%s", percent,
101 (uintmax_t)n, (uintmax_t)progress->total,
102 tp);
103 show_update = 1;
96a02f8f
NP
104 }
105 } else if (progress_update) {
d53ba841
SG
106 strbuf_reset(counters_sb);
107 strbuf_addf(counters_sb, "%"PRIuMAX"%s", (uintmax_t)n, tp);
108 show_update = 1;
109 }
110
111 if (show_update) {
85cb8906 112 if (is_foreground_fd(fileno(stderr)) || done) {
d53ba841
SG
113 const char *eol = done ? done : " \r";
114
115 fprintf(stderr, "%s: %s%s", progress->title,
116 counters_sb->buf, eol);
85cb8906
LM
117 fflush(stderr);
118 }
96a02f8f 119 progress_update = 0;
96a02f8f 120 }
96a02f8f
NP
121}
122
d6861d02 123static void throughput_string(struct strbuf *buf, uint64_t total,
53ed7b5a
NP
124 unsigned int rate)
125{
3131977d 126 strbuf_reset(buf);
079b546a
AP
127 strbuf_addstr(buf, ", ");
128 strbuf_humanise_bytes(buf, total);
129 strbuf_addstr(buf, " | ");
130 strbuf_humanise_bytes(buf, rate * 1024);
131 strbuf_addstr(buf, "/s");
53ed7b5a
NP
132}
133
d6861d02 134void display_throughput(struct progress *progress, uint64_t total)
cf84d51c
NP
135{
136 struct throughput *tp;
83d26fa7
KB
137 uint64_t now_ns;
138 unsigned int misecs, count, rate;
cf84d51c
NP
139
140 if (!progress)
141 return;
142 tp = progress->throughput;
143
83d26fa7 144 now_ns = getnanotime();
cf84d51c
NP
145
146 if (!tp) {
147 progress->throughput = tp = calloc(1, sizeof(*tp));
218558af 148 if (tp) {
53ed7b5a 149 tp->prev_total = tp->curr_total = total;
83d26fa7 150 tp->prev_ns = now_ns;
3131977d 151 strbuf_init(&tp->display, 0);
218558af 152 }
cf84d51c
NP
153 return;
154 }
53ed7b5a 155 tp->curr_total = total;
cf84d51c 156
83d26fa7
KB
157 /* only update throughput every 0.5 s */
158 if (now_ns - tp->prev_ns <= 500000000)
159 return;
160
cf84d51c 161 /*
83d26fa7 162 * We have x = bytes and y = nanosecs. We want z = KiB/s:
cf84d51c 163 *
83d26fa7
KB
164 * z = (x / 1024) / (y / 1000000000)
165 * z = x / y * 1000000000 / 1024
166 * z = x / (y * 1024 / 1000000000)
cf84d51c
NP
167 * z = x / y'
168 *
169 * To simplify things we'll keep track of misecs, or 1024th of a sec
170 * obtained with:
171 *
83d26fa7
KB
172 * y' = y * 1024 / 1000000000
173 * y' = y * (2^10 / 2^42) * (2^42 / 1000000000)
174 * y' = y / 2^32 * 4398
175 * y' = (y * 4398) >> 32
cf84d51c 176 */
83d26fa7
KB
177 misecs = ((now_ns - tp->prev_ns) * 4398) >> 32;
178
179 count = total - tp->prev_total;
180 tp->prev_total = total;
181 tp->prev_ns = now_ns;
182 tp->avg_bytes += count;
183 tp->avg_misecs += misecs;
184 rate = tp->avg_bytes / tp->avg_misecs;
185 tp->avg_bytes -= tp->last_bytes[tp->idx];
186 tp->avg_misecs -= tp->last_misecs[tp->idx];
187 tp->last_bytes[tp->idx] = count;
188 tp->last_misecs[tp->idx] = misecs;
189 tp->idx = (tp->idx + 1) % TP_IDX_MAX;
190
3131977d 191 throughput_string(&tp->display, total, rate);
83d26fa7
KB
192 if (progress->last_value != -1 && progress_update)
193 display(progress, progress->last_value, NULL);
cf84d51c
NP
194}
195
9219d127 196void display_progress(struct progress *progress, uint64_t n)
96a02f8f 197{
9219d127
SG
198 if (progress)
199 display(progress, n, NULL);
96a02f8f
NP
200}
201
d6861d02 202static struct progress *start_progress_delay(const char *title, uint64_t total,
9c5951ca 203 unsigned delay)
180a9f22 204{
dc6a0757
NP
205 struct progress *progress = malloc(sizeof(*progress));
206 if (!progress) {
207 /* unlikely, but here's a good fallback */
208 fprintf(stderr, "%s...\n", title);
137a0d0e 209 fflush(stderr);
dc6a0757
NP
210 return NULL;
211 }
42e18fbf 212 progress->title = title;
180a9f22 213 progress->total = total;
42e18fbf 214 progress->last_value = -1;
180a9f22 215 progress->last_percent = -1;
180a9f22 216 progress->delay = delay;
cf84d51c 217 progress->throughput = NULL;
0fae1e07 218 progress->start_ns = getnanotime();
d53ba841 219 strbuf_init(&progress->counters_sb, 0);
180a9f22 220 set_progress_signal();
dc6a0757 221 return progress;
180a9f22
NP
222}
223
d6861d02 224struct progress *start_delayed_progress(const char *title, uint64_t total)
8aade107 225{
9c5951ca 226 return start_progress_delay(title, total, 2);
8aade107
JH
227}
228
d6861d02 229struct progress *start_progress(const char *title, uint64_t total)
42e18fbf 230{
9c5951ca 231 return start_progress_delay(title, total, 0);
42e18fbf
NP
232}
233
dc6a0757 234void stop_progress(struct progress **p_progress)
a984a06a 235{
754dbc43 236 stop_progress_msg(p_progress, _("done"));
a984a06a
NP
237}
238
239void stop_progress_msg(struct progress **p_progress, const char *msg)
96a02f8f 240{
dc6a0757
NP
241 struct progress *progress = *p_progress;
242 if (!progress)
243 return;
244 *p_progress = NULL;
42e18fbf
NP
245 if (progress->last_value != -1) {
246 /* Force the last update */
fbd09439 247 char *buf;
53ed7b5a 248 struct throughput *tp = progress->throughput;
d4c44443 249
53ed7b5a 250 if (tp) {
0fae1e07
RS
251 uint64_t now_ns = getnanotime();
252 unsigned int misecs, rate;
253 misecs = ((now_ns - progress->start_ns) * 4398) >> 32;
254 rate = tp->curr_total / (misecs ? misecs : 1);
3131977d 255 throughput_string(&tp->display, tp->curr_total, rate);
53ed7b5a 256 }
42e18fbf 257 progress_update = 1;
fbd09439
MM
258 buf = xstrfmt(", %s.\n", msg);
259 display(progress, progress->last_value, buf);
260 free(buf);
42e18fbf 261 }
96a02f8f 262 clear_progress_signal();
d53ba841 263 strbuf_release(&progress->counters_sb);
3131977d
JK
264 if (progress->throughput)
265 strbuf_release(&progress->throughput->display);
cf84d51c 266 free(progress->throughput);
dc6a0757 267 free(progress);
96a02f8f 268}