Go to the documentation of this file.
26 static const char*
const ETA_FORMAT =
"t: %-6.2f ETA:%2dh%02dm%02ds";
62 if (new_bar ==
nullptr) {
71 new_bar->start = time(
nullptr);
72 assert(3 == strlen(format) &&
"format must be 3 characters in length");
73 new_bar->format.begin = format[0];
74 new_bar->format.fill = format[1];
75 new_bar->format.end = format[2];
79 new_bar->prev_t = difftime(time(
nullptr), new_bar->start);
80 new_bar->drawn_count = 1;
113 int sim_time = difftime(time(
nullptr), bar->
start);
154 for (std::size_t
i = 0;
i < times; ++
i) {
160 return x > y ? x : y;
184 double offset = difftime(time(
nullptr), bar->
start);
185 if (bar->
value > 0 && offset > 0) {
186 return (offset / (
double) bar->
value) * (bar->
max - bar->
value);
193 int hours = seconds / 3600;
194 seconds -= hours * 3600;
195 int minutes = seconds / 60;
196 seconds -= minutes * 60;
204 int label_length = strlen(bar->
label);
208 int progressbar_completed = (bar->
value >= bar->
max);
210 int bar_piece_current = (progressbar_completed)
212 : bar_piece_count * ((
double) bar->
value / bar->
max);
215 (progressbar_completed)
219 if (label_width == 0) {
225 fwrite(bar->
label, 1, label_width, stdout);
250 fprintf(stdout,
"\n");
double t
current time (added for simulation)
static const char *const ETA_FORMAT
The format in which the estimated remaining time will be reported.
static void progressbar_draw(const progressbar *bar)
void progressbar_finish(progressbar *bar)
Finish a progressbar, indicating 100% completion, and free it.
static int progressbar_max(int x, int y)
void progressbar_inc(progressbar *bar, double t)
Increment an existing progressbar by a single step.
void progressbar_update(progressbar *bar, unsigned long value, double t)
Increment an existing progressbar by value steps.
progressbar * progressbar_new_with_format(const char *label, unsigned long max, const char *format)
Create a new progress bar with the specified label, max number of steps, and format string.
unsigned long value
current value
static progressbar_time_components progressbar_calc_time_components(int seconds)
Progressbar data structure (do not modify or create directly)
unsigned long max
maximum value
static int progressbar_remaining_seconds(const progressbar *bar)
void progressbar_update_label(progressbar *bar, const char *label)
Set the label of the progressbar.
time_t draw_time_interval
time interval between consecutive bar redraws (seconds)
time_t start
time progressbar was started
struct progressbar::@8 format
characters for the beginning, filling and end of the progressbar.
void progressbar_free(progressbar *bar)
Delete an existing progress bar.
progressbar * progressbar_new(const char *label, unsigned long max)
Create a new progress bar with the specified label and max number of steps.
static void progressbar_write_char(FILE *file, const int ch, const size_t times)
static unsigned int get_screen_width(void)
unsigned long drawn_count
number of redrawn bars
time_t prev_t
time progressbar was drawn for last time
@ BAR_DRAW_INTERVAL_NOTTY
Models a duration of time broken into hour/minute/second components.
static int progressbar_label_width(int screen_width, int label_length, int bar_width)
static int progressbar_bar_width(int screen_width, int label_length)