mirror of
https://github.com/p-ranav/indicators.git
synced 2025-12-12 01:18:52 +08:00
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
#include <indicators/block_progress_bar.hpp>
|
|
#include <indicators/multi_progress.hpp>
|
|
|
|
int main() {
|
|
using namespace indicators;
|
|
BlockProgressBar bar1{option::BarWidth{50}, option::ForegroundColor{Color::yellow},
|
|
option::ShowElapsedTime{true}, option::ShowRemainingTime{true},
|
|
option::PrefixText{"Progress Bar #1 "}};
|
|
|
|
BlockProgressBar bar2{option::BarWidth{50}, option::ForegroundColor{Color::cyan},
|
|
option::ShowElapsedTime{true}, option::ShowRemainingTime{true},
|
|
option::PrefixText{"Progress Bar #2 "}};
|
|
|
|
BlockProgressBar bar3{option::BarWidth{50}, option::ForegroundColor{Color::red},
|
|
option::ShowElapsedTime{true}, option::ShowRemainingTime{true},
|
|
option::PrefixText{"Progress Bar #3 "}};
|
|
|
|
indicators::MultiProgress<indicators::BlockProgressBar, 3> bars(bar1, bar2, bar3);
|
|
|
|
std::cout << "Multiple Progress Bars:\n";
|
|
|
|
auto job1 = [&bars]() {
|
|
while (true) {
|
|
bars.tick<0>();
|
|
if (bars.is_completed<0>())
|
|
break;
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
}
|
|
};
|
|
|
|
auto job2 = [&bars]() {
|
|
while (true) {
|
|
bars.tick<1>();
|
|
if (bars.is_completed<1>())
|
|
break;
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(200));
|
|
}
|
|
};
|
|
|
|
auto job3 = [&bars]() {
|
|
while (true) {
|
|
bars.tick<2>();
|
|
if (bars.is_completed<2>())
|
|
break;
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(60));
|
|
}
|
|
};
|
|
|
|
std::thread first_job(job1);
|
|
std::thread second_job(job2);
|
|
std::thread third_job(job3);
|
|
|
|
first_job.join();
|
|
second_job.join();
|
|
third_job.join();
|
|
|
|
return 0;
|
|
}
|