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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*******************************************************************************
*
* Copyright (c) 2025 - 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
use ;
use ;
/// Owns a scoped running progress reporter thread.
///
/// `RunningProgressGuard` is created by
/// [`Progress::spawn_running_reporter`](crate::Progress::spawn_running_reporter).
/// Keep this guard on the coordinating thread, pass
/// [`RunningProgressPointHandle`] clones to workers, and call
/// [`Self::stop_and_join`] after worker execution completes.
///
/// # Examples
///
/// ```
/// use std::{
/// sync::{
/// Arc,
/// atomic::{
/// AtomicUsize,
/// Ordering,
/// },
/// },
/// thread,
/// time::Duration,
/// };
///
/// use qubit_progress::{
/// NoOpProgressReporter,
/// Progress,
/// ProgressCounters,
/// };
///
/// let reporter = NoOpProgressReporter;
/// let completed = Arc::new(AtomicUsize::new(0));
///
/// thread::scope(|scope| {
/// let loop_completed = Arc::clone(&completed);
/// let progress = Progress::new(&reporter, Duration::ZERO);
/// let running_progress =
/// progress.spawn_running_reporter(scope, move || {
/// ProgressCounters::new(Some(3))
/// .with_completed_count(loop_completed.load(Ordering::Acquire))
/// });
/// let progress_point_handle = running_progress.point_handle();
///
/// let mut handles = Vec::new();
/// for _ in 0..3 {
/// let c = Arc::clone(&completed);
/// let p = progress_point_handle.clone();
/// handles.push(scope.spawn(move || {
/// c.fetch_add(1, Ordering::AcqRel);
/// assert!(p.report());
/// }));
/// }
/// for h in handles {
/// h.join().unwrap();
/// }
///
/// running_progress.stop_and_join();
/// });
/// ```
///
/// # Author
///
/// Haixing Hu