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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*******************************************************************************
*
* Copyright (c) 2025 - 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
use ;
use crate::;
use ;
/// Runs periodic `running` progress reports for work tracked elsewhere.
///
/// `RunningProgressLoop` is useful when worker threads update shared state and
/// a separate reporter thread should periodically emit `running` events. The
/// loop owns only the signal receiver. Callers provide a [`Progress`] instance
/// and a snapshot closure that converts their domain state into
/// [`ProgressCounters`].
///
/// Use [`Self::channel`] to create a loop and its matching
/// [`RunningProgressNotifier`]. Move the loop into a reporter thread, clone the
/// notifier into workers when zero-interval wakeups are needed, and send
/// [`RunningProgressNotifier::stop`] when the operation is complete.
///
/// # Examples
///
/// ```
/// use std::{
/// sync::{
/// Arc,
/// atomic::{
/// AtomicUsize,
/// Ordering,
/// },
/// },
/// thread,
/// time::Duration,
/// };
///
/// use qubit_progress::{
/// NoOpProgressReporter,
/// Progress,
/// ProgressCounters,
/// RunningProgressLoop,
/// };
///
/// let reporter = NoOpProgressReporter;
/// let completed = Arc::new(AtomicUsize::new(0));
/// let (progress_loop, notifier) = RunningProgressLoop::channel();
///
/// thread::scope(|scope| {
/// let loop_completed = Arc::clone(&completed);
/// let reporter_ref = &reporter;
/// let progress_thread = scope.spawn(move || {
/// // This background reporter thread owns the loop. It does not own
/// // the operation state; it only reads a fresh counter snapshot when
/// // the interval is due or a worker sends a running point.
/// let progress = Progress::new(reporter_ref, Duration::ZERO);
/// progress_loop.run(progress, || {
/// ProgressCounters::new(Some(3))
/// .with_completed_count(loop_completed.load(Ordering::Acquire))
/// });
/// });
///
/// // Worker code updates domain state first, then wakes the loop. With a
/// // zero interval, each running point may emit a `running` event.
/// for _ in 0..3 {
/// completed.fetch_add(1, Ordering::AcqRel);
/// assert!(notifier.running_point());
/// }
///
/// // Stop the loop before leaving the scope so reporter panics can be
/// // propagated through the join handle.
/// assert!(notifier.stop());
/// progress_thread.join().expect("progress loop should stop");
/// });
/// ```
///
/// # Author
///
/// Haixing Hu
/// Result of waiting for a running progress loop signal.
/// Receives one running progress loop signal.
///
/// # Parameters
///
/// * `signal_receiver` - Signal receiver shared with notifiers.
/// * `report_interval` - Configured progress-report interval.
///
/// # Returns
///
/// A worker or stop signal, a timeout marker for positive intervals, or a
/// disconnected marker when all notifiers have disconnected.