12#include <shared_mutex>
52 virtual void set(_In_ T value)
90 lazy_progress(_In_
const std::chrono::nanoseconds& timeout = std::chrono::milliseconds(500)) :
114 virtual void set(_In_ T value)
116 if (value == m_start || value == m_end)
117 m_last = std::chrono::high_resolution_clock::now();
118 else if (value == m_value)
121 auto now = std::chrono::high_resolution_clock::now();
122 if (now - m_last < m_timeout)
137 std::chrono::nanoseconds m_timeout;
138 std::chrono::system_clock::time_point m_last;
139 T m_start, m_end, m_value;
158 m_deadline(std::chrono::high_resolution_clock::now() + timeout)
169 m_host->set_text(msg);
181 m_host->set_range(start, end);
189 virtual void set(_In_ T value)
212 (m_host && m_host->cancel()) ||
213 m_deadline < std::chrono::high_resolution_clock::now();
218 std::chrono::high_resolution_clock::time_point m_deadline;
268 m_global.start = start;
271 m_host->set_range(m_global.start, m_global.end);
282 m_section.start = start;
294 m_host->set_text(msg);
305 m_local.start = start;
314 virtual void set(_In_ T value)
317 T size = m_local.size();
320 m_host->set(((value - m_local.start) * m_section.size() / size) + m_section.start);
341 return m_host && m_host->cancel();
367 m_host_ref = this->
detach();
390 T m_start, m_end, m_value;
395 m_start(0), m_end(0),
406 std::shared_lock<std::shared_mutex> lk(m_host.m_mutex);
408 m_host.m_host->set_text(msg);
420 combined_start = m_host.m_start += start - m_start,
421 combined_end = m_host.m_end += end - m_end;
424 std::shared_lock<std::shared_mutex> lk(m_host.m_mutex);
426 m_host.m_host->set_range(combined_start, combined_end);
434 virtual void set(_In_ T value)
436 T combined_value = m_host.m_value += value - m_value;
438 std::shared_lock<std::shared_mutex> lk(m_host.m_mutex);
440 m_host.m_host->set(combined_value);
450 std::shared_lock<std::shared_mutex> lk(m_host.m_mutex);
452 m_host.m_host->show(
show);
460 std::shared_lock<std::shared_mutex> lk(m_host.m_mutex);
461 return m_host.m_host && m_host.m_host->cancel();
466 std::atomic<T> m_start, m_end, m_value;
467 std::vector<worker_progress> m_workers;
468 std::shared_mutex m_mutex;
479 m_start(0), m_end(0),
482 m_workers.reserve(num_workers);
483 for (
size_t i = 0; i < num_workers; ++i)
487 m_host->
set(m_value);
498 std::unique_lock<std::shared_mutex> lk(m_mutex);
502 m_host->
set(m_value);
513 std::unique_lock<std::shared_mutex> lk(m_mutex);
528 return m_workers[index];
Progress indicator for individual worker.
Definition progress.hpp:387
virtual void set(T value)
Set local current progress.
Definition progress.hpp:434
virtual bool cancel()
Query whether user requested abort.
Definition progress.hpp:458
virtual void show(bool show=true)
Show or hide progress.
Definition progress.hpp:448
virtual void set_range(T start, T end)
Set local extend of the progress indicator.
Definition progress.hpp:417
virtual void set_text(const char *msg)
Set progress indicator text.
Definition progress.hpp:404
Aggregated progress indicator.
Definition progress.hpp:381
progress< T > & operator[](size_t index)
Returns progress indicator for specific worker.
Definition progress.hpp:526
void attach(progress< T > *host)
Attach to a host progress indicator.
Definition progress.hpp:496
progress< T > * detach()
Detach host progress indicator.
Definition progress.hpp:511
aggregate_progress(size_t num_workers, progress< T > *host=nullptr)
Constructs a progress indicator.
Definition progress.hpp:477
Global progress indicator.
Definition progress.hpp:228
void set_section_range(T start, T end)
Set section extend of the progress indicator.
Definition progress.hpp:280
virtual void show(bool show=true)
Show or hide progress.
Definition progress.hpp:330
virtual bool cancel()
Query whether user requested abort.
Definition progress.hpp:339
virtual void set(T value)
Set local current progress.
Definition progress.hpp:314
virtual void set_text(const char *msg)
Set progress indicator text.
Definition progress.hpp:291
progress< T > * detach()
Detach host progress indicator.
Definition progress.hpp:253
void set_global_range(T start, T end)
Set global extend of the progress indicator.
Definition progress.hpp:266
global_progress(progress< T > *host=nullptr)
Constructs a progress indicator.
Definition progress.hpp:235
void attach(progress< T > *host)
Attach to a host progress indicator.
Definition progress.hpp:243
virtual void set_range(T start, T end)
Set local extend of the progress indicator.
Definition progress.hpp:303
Lazy progress indicator.
Definition progress.hpp:83
lazy_progress(const std::chrono::nanoseconds &timeout=std::chrono::milliseconds(500))
Constructs a lazy progress indicator.
Definition progress.hpp:90
virtual void set(T value)
Set current progress.
Definition progress.hpp:114
virtual void do_set()
Called when progress reporting is due. Should override this method to implement actual progress refre...
Definition progress.hpp:134
virtual void set_range(T start, T end)
Set progress range extent.
Definition progress.hpp:103
Progress indicator switcher.
Definition progress.hpp:356
Progress indicator base class.
Definition progress.hpp:22
virtual bool cancel()
Query whether user requested abort.
Definition progress.hpp:70
virtual void set_text(const char *msg)
Set progress indicator text.
Definition progress.hpp:31
virtual void show(bool show=true)
Show or hide progress.
Definition progress.hpp:62
virtual void set(T value)
Set current progress.
Definition progress.hpp:52
virtual void set_range(T start, T end)
Set progress range extent.
Definition progress.hpp:42
Timeout progress indicator.
Definition progress.hpp:149
virtual void set_range(T start, T end)
Set progress range extent.
Definition progress.hpp:178
virtual void set_text(const char *msg)
Set progress indicator text.
Definition progress.hpp:166
virtual void set(T value)
Set current progress.
Definition progress.hpp:189
virtual bool cancel()
Query whether user requested abort.
Definition progress.hpp:209
timeout_progress(const std::chrono::nanoseconds &timeout=std::chrono::seconds(60), progress< T > *host=nullptr)
Constructs a timeout progress indicator.
Definition progress.hpp:156
virtual void show(bool show=true)
Show or hide progress.
Definition progress.hpp:200
Numerical interval.
Definition interval.hpp:18