-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathProgressBar.hpp
More file actions
55 lines (44 loc) · 1.68 KB
/
ProgressBar.hpp
File metadata and controls
55 lines (44 loc) · 1.68 KB
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
#pragma once
#include <chrono>
#include <iostream>
#include <mutex>
namespace progresscpp {
class ProgressBar {
private:
unsigned int ticks = 0;
mutable std::mutex mtx;
const unsigned int total_ticks;
const unsigned int bar_width;
const char complete_char = '=';
const char incomplete_char = ' ';
const std::chrono::steady_clock::time_point start_time = std::chrono::steady_clock::now();
public:
ProgressBar(unsigned int total, unsigned int width, char complete, char incomplete) :
total_ticks{total}, bar_width{width}, complete_char{complete}, incomplete_char{incomplete} {}
ProgressBar(unsigned int total, unsigned int width) : total_ticks{total}, bar_width{width} {}
unsigned int operator++() {
std::unique_lock<std::mutex> lck (mtx);
return ++ticks;
}
void display() const {
float progress = (float) ticks / total_ticks;
int pos = (int) (bar_width * progress);
std::chrono::steady_clock::time_point now = std::chrono::steady_clock::now();
auto time_elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time).count();
std::unique_lock<std::mutex> lck (mtx); // stdout must be accessed in mutual exclusion
std::cout << "[";
for (int i = 0; i < bar_width; ++i) {
if (i < pos) std::cout << complete_char;
else if (i == pos) std::cout << ">";
else std::cout << incomplete_char;
}
std::cout << "] " << int(progress * 100.0) << "% "
<< float(time_elapsed) / 1000.0 << "s\r";
std::cout.flush();
}
void done() const {
display();
std::cout << std::endl;
}
};
}