CoreNEURON
progressbar.hpp
Go to the documentation of this file.
1 /**
2  * \file
3  * \author Trevor Fountain
4  * \author Johannes Buchner
5  * \author Erik Garrison
6  * \date 2010-2014
7  * \copyright BSD 3-Clause
8  *
9  * progressbar -- a C class (by convention) for displaying progress
10  * on the command line (to stderr).
11  */
12 #pragma once
13 #include <time.h>
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17 
18 /**
19  * Progressbar data structure (do not modify or create directly)
20  */
21 struct progressbar {
22  /// maximum value
23  unsigned long max;
24 
25  /// current value
26  unsigned long value;
27 
28  /// value of the previous progress bar drawn in output
29  unsigned long prev_sample_value;
30 
31  /// time interval between consecutive bar redraws (seconds)
33 
34  /// number of redrawn bars
35  unsigned long drawn_count;
36 
37  /// time progressbar was started
38  time_t start;
39 
40  /// time progressbar was drawn for last time
41  time_t prev_t;
42 
43  /// label
44  const char* label;
45 
46  /// current time (added for simulation)
47  double t;
48 
49  /// characters for the beginning, filling and end of the
50  /// progressbar. E.g. |### | has |#|
51  struct {
52  char begin;
53  char fill;
54  char end;
55  } format;
56 };
57 
58 /// Create a new progressbar with the specified label and number of steps.
59 ///
60 /// @param label The label that will prefix the progressbar.
61 /// @param max The number of times the progressbar must be incremented before it is considered
62 /// complete, or, in other words, the number of tasks that this progressbar is tracking.
63 /// @return A progressbar configured with the provided arguments. Note that the user is responsible
64 /// for disposing of the progressbar via progressbar_finish when finished with the object.
65 progressbar* progressbar_new(const char* label, unsigned long max);
66 
67 /// Create a new progressbar with the specified label, number of steps, and format string.
68 ///
69 /// @param label The label that will prefix the progressbar.
70 /// @param max The number of times the progressbar must be incremented before it is considered
71 /// complete, or, in other words, the number of tasks that this progressbar is tracking.
72 /// @param format The format of the progressbar. The string provided must be three characters, and
73 /// it will be interpretted with the first character as the left border of the bar, the second
74 /// character of the bar and the third character as the right border of the bar. For example,
75 /// "<->" would result in a bar formatted like "<------ >".
76 ///
77 /// @return A progressbar configured with the provided arguments. Note that the user is responsible
78 /// for disposing of the progressbar via progressbar_finish when finished with the object.
79 progressbar* progressbar_new_with_format(const char* label, unsigned long max, const char* format);
80 
81 /// Free an existing progress bar. Don't call this directly; call *progressbar_finish* instead.
82 void progressbar_free(progressbar* bar);
83 
84 /// Increment the given progressbar. Don't increment past the initialized # of steps, though.
85 void progressbar_inc(progressbar* bar, double t);
86 
87 /// Set the current status on the given progressbar.
88 void progressbar_update(progressbar* bar, unsigned long value, double t);
89 
90 /// Set the label of the progressbar. Note that no rendering is done. The label is simply set so
91 /// that the next rendering will use the new label. To immediately see the new label, call
92 /// progressbar_draw.
93 /// Does not update display or copy the label
94 void progressbar_update_label(progressbar* bar, const char* label);
95 
96 /// Finalize (and free!) a progressbar. Call this when you're done, or if you break out
97 /// partway through.
progressbar::t
double t
current time (added for simulation)
Definition: progressbar.hpp:47
progressbar::value
unsigned long value
current value
Definition: progressbar.hpp:26
progressbar
Progressbar data structure (do not modify or create directly)
Definition: progressbar.hpp:21
progressbar_inc
void progressbar_inc(progressbar *bar, double t)
Increment the given progressbar. Don't increment past the initialized # of steps, though.
Definition: progressbar.cpp:149
progressbar::max
unsigned long max
maximum value
Definition: progressbar.hpp:23
progressbar::draw_time_interval
time_t draw_time_interval
time interval between consecutive bar redraws (seconds)
Definition: progressbar.hpp:32
progressbar::start
time_t start
time progressbar was started
Definition: progressbar.hpp:38
coreneuron::t
double t
Definition: register_mech.cpp:22
progressbar::format
struct progressbar::@8 format
characters for the beginning, filling and end of the progressbar.
progressbar::prev_sample_value
unsigned long prev_sample_value
value of the previous progress bar drawn in output
Definition: progressbar.hpp:29
progressbar::fill
char fill
Definition: progressbar.hpp:53
progressbar_new
progressbar * progressbar_new(const char *label, unsigned long max)
Create a new progressbar with the specified label and number of steps.
Definition: progressbar.cpp:88
progressbar_new_with_format
progressbar * progressbar_new_with_format(const char *label, unsigned long max, const char *format)
Create a new progressbar with the specified label, number of steps, and format string.
Definition: progressbar.cpp:60
progressbar_finish
void progressbar_finish(progressbar *bar)
Finalize (and free!) a progressbar.
Definition: progressbar.cpp:245
progressbar::drawn_count
unsigned long drawn_count
number of redrawn bars
Definition: progressbar.hpp:35
progressbar::end
char end
Definition: progressbar.hpp:54
progressbar::prev_t
time_t prev_t
time progressbar was drawn for last time
Definition: progressbar.hpp:41
progressbar::label
const char * label
label
Definition: progressbar.hpp:44
progressbar::begin
char begin
Definition: progressbar.hpp:52
progressbar_update
void progressbar_update(progressbar *bar, unsigned long value, double t)
Set the current status on the given progressbar.
Definition: progressbar.cpp:110
progressbar_free
void progressbar_free(progressbar *bar)
Free an existing progress bar. Don't call this directly; call progressbar_finish instead.
Definition: progressbar.cpp:99
progressbar_update_label
void progressbar_update_label(progressbar *bar, const char *label)
Set the label of the progressbar.
Definition: progressbar.cpp:92