summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 13aaf14)
raw | patch | inline | side by side (parent: 13aaf14)
author | Nicolas Pitre <nico@cam.org> | |
Fri, 20 Apr 2007 19:05:27 +0000 (15:05 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 23 Apr 2007 05:18:05 +0000 (22:18 -0700) |
This allows for progress to be displayed only if the progress has not
reached a specified percentage treshold within a given delay in seconds.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
reached a specified percentage treshold within a given delay in seconds.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
progress.c | patch | blob | history | |
progress.h | patch | blob | history |
diff --git a/progress.c b/progress.c
index 478134bc69ea89877523c7650e264cd94419ec9b..05f7890314e0bd596eb2e4110cdb98eeea61c9da 100644 (file)
--- a/progress.c
+++ b/progress.c
struct sigaction sa;
struct itimerval v;
+ progress_update = 0;
+
memset(&sa, 0, sizeof(sa));
sa.sa_handler = progress_interval;
sigemptyset(&sa.sa_mask);
int display_progress(struct progress *progress, unsigned n)
{
+ if (progress->delay) {
+ char buf[80];
+ if (!progress_update || --progress->delay)
+ return 0;
+ if (progress->total) {
+ unsigned percent = n * 100 / progress->total;
+ if (percent > progress->delayed_percent_treshold) {
+ /* inhibit this progress report entirely */
+ clear_progress_signal();
+ progress->delay = -1;
+ progress->total = 0;
+ return 0;
+ }
+ }
+ if (snprintf(buf, sizeof(buf),
+ progress->delayed_title, progress->total))
+ fprintf(stderr, "%s\n", buf);
+ }
if (progress->total) {
unsigned percent = n * 100 / progress->total;
if (percent != progress->last_percent || progress_update) {
progress->prefix = prefix;
progress->total = total;
progress->last_percent = -1;
+ progress->delay = 0;
if (snprintf(buf, sizeof(buf), title, total))
fprintf(stderr, "%s\n", buf);
set_progress_signal();
}
+void start_progress_delay(struct progress *progress, const char *title,
+ const char *prefix, unsigned total,
+ unsigned percent_treshold, unsigned delay)
+{
+ progress->prefix = prefix;
+ progress->total = total;
+ progress->last_percent = -1;
+ progress->delayed_percent_treshold = percent_treshold;
+ progress->delayed_title = title;
+ progress->delay = delay;
+ set_progress_signal();
+}
+
void stop_progress(struct progress *progress)
{
clear_progress_signal();
diff --git a/progress.h b/progress.h
index 1f2661e81094ce44a11223a2cb1880b302e88b7a..4ee851acfb286ded87c1ef8d40803c1d7d415db5 100644 (file)
--- a/progress.h
+++ b/progress.h
const char *prefix;
unsigned total;
unsigned last_percent;
+ unsigned delay;
+ unsigned delayed_percent_treshold;
+ const char *delayed_title;
};
int display_progress(struct progress *progress, unsigned n);
void start_progress(struct progress *progress, const char *title,
const char *prefix, unsigned total);
+void start_progress_delay(struct progress *progress, const char *title,
+ const char *prefix, unsigned total,
+ unsigned percent_treshold, unsigned delay);
void stop_progress(struct progress *progress);
#endif