-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgressBar.h
79 lines (57 loc) · 1.44 KB
/
ProgressBar.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// ProgressBar
// Karl Kosack <kosack@hbar.wustl.edu>
#ifndef PROGRESSBAR_H
#define PROGRESSBAR_H
#include <cstdio>
#include <sys/time.h>
#include <string>
/**
* Displays a text-based progress bar with estimated time to finish
* for a particular task.
*/
class ProgressBar {
public:
ProgressBar( int total, std::string name="Progress" );
~ProgressBar();
void setName( std::string name ){ _name=name; }
void print( int );
void printClear();
double getTime();
void start();
void stop();
private:
std::string _name;
int _last;
char _spinner[4];
int _total;
int _spin;
double _now;
double _before;
double _avgpersec;
double _is_ansi_term;
};
class ProgressBarHandler {
public:
static ProgressBarHandler *instance();
bool isRunning() { return _running; };
int getValue() { return _curval; }
void print() { if (_prog) _prog->print(_curval); }
void setValue(double val) { _curval = val; }
void setProg( ProgressBar &prog ){ _prog = &prog; }
void start() { _running=true; setitimer(ITIMER_REAL,&_timer,NULL); }
void stop() {
_running=false;
setitimer(ITIMER_REAL,NULL,NULL);
_prog->printClear();
}
protected:
ProgressBarHandler();
private:
static ProgressBarHandler *pinstance;
ProgressBar *_prog;
int _curval;
struct itimerval _timer;
bool _running;
};
void progressbar_signal_handler( int n );
#endif