qubit-atomic 0.10.3

User-friendly atomic operations wrapper providing JDK-like atomic API
Documentation
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/

//! # Atomic Signed Count
//!
//! Provides an atomic counter for values that may legitimately become
//! negative.
//!

use std::fmt;
use std::sync::atomic::{
    AtomicIsize as StdAtomicIsize,
    Ordering,
};

/// A signed atomic counter with synchronization-oriented operations.
///
/// Use this type when the counter models a delta, balance, backlog, offset, or
/// other quantity that may legitimately cross zero. Examples include producer
/// minus consumer deltas, permit debt, retry backlog changes, or accumulated
/// scheduling offsets.
///
/// For counters that must never be negative, prefer
/// [`AtomicCount`](crate::AtomicCount). For pure metrics or statistics,
/// prefer the regular atomic integer types such as
/// [`Atomic<isize>`](crate::Atomic).
///
/// This counter never wraps. Operations that would overflow the signed range
/// panic. Use [`try_add`](Self::try_add) or [`try_sub`](Self::try_sub) when
/// overflow is a normal business outcome.
///
/// # Example
///
/// ```rust
/// use qubit_atomic::AtomicSignedCount;
///
/// let backlog_delta = AtomicSignedCount::zero();
///
/// assert_eq!(backlog_delta.add(5), 5);
/// assert_eq!(backlog_delta.sub(8), -3);
/// assert!(backlog_delta.is_negative());
/// ```
///
#[repr(transparent)]
pub struct AtomicSignedCount {
    /// Standard-library atomic storage for the signed counter value.
    inner: StdAtomicIsize,
}

impl AtomicSignedCount {
    /// Creates a new signed atomic counter.
    ///
    /// # Parameters
    ///
    /// * `value` - The initial counter value.
    ///
    /// # Returns
    ///
    /// A signed counter initialized to `value`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(-3);
    /// assert_eq!(counter.get(), -3);
    /// ```
    #[inline]
    pub const fn new(value: isize) -> Self {
        Self {
            inner: StdAtomicIsize::new(value),
        }
    }

    /// Creates a new signed counter initialized to zero.
    ///
    /// # Returns
    ///
    /// A signed counter whose current value is zero.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::zero();
    /// assert!(counter.is_zero());
    /// ```
    #[inline]
    pub const fn zero() -> Self {
        Self::new(0)
    }

    /// Gets the current counter value.
    ///
    /// # Returns
    ///
    /// The current counter value.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(-7);
    /// assert_eq!(counter.get(), -7);
    /// ```
    #[inline]
    pub fn get(&self) -> isize {
        self.inner.load(Ordering::Acquire)
    }

    /// Returns whether the current counter value is zero.
    ///
    /// # Returns
    ///
    /// `true` if the current value is zero, otherwise `false`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::zero();
    /// assert!(counter.is_zero());
    /// ```
    #[inline]
    pub fn is_zero(&self) -> bool {
        self.get() == 0
    }

    /// Returns whether the current counter value is greater than zero.
    ///
    /// # Returns
    ///
    /// `true` if the current value is greater than zero, otherwise `false`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(1);
    /// assert!(counter.is_positive());
    /// ```
    #[inline]
    pub fn is_positive(&self) -> bool {
        self.get() > 0
    }

    /// Returns whether the current counter value is less than zero.
    ///
    /// # Returns
    ///
    /// `true` if the current value is less than zero, otherwise `false`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(-1);
    /// assert!(counter.is_negative());
    /// ```
    #[inline]
    pub fn is_negative(&self) -> bool {
        self.get() < 0
    }

    /// Increments the counter by one and returns the new value.
    ///
    /// # Returns
    ///
    /// The counter value after the increment.
    ///
    /// # Panics
    ///
    /// Panics if the increment would overflow [`isize::MAX`].
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::zero();
    /// assert_eq!(counter.inc(), 1);
    /// ```
    #[inline]
    pub fn inc(&self) -> isize {
        self.add(1)
    }

    /// Decrements the counter by one and returns the new value.
    ///
    /// # Returns
    ///
    /// The counter value after the decrement.
    ///
    /// # Panics
    ///
    /// Panics if the decrement would underflow [`isize::MIN`].
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::zero();
    /// assert_eq!(counter.dec(), -1);
    /// ```
    #[inline]
    pub fn dec(&self) -> isize {
        self.sub(1)
    }

    /// Adds `delta` to the counter and returns the new value.
    ///
    /// # Parameters
    ///
    /// * `delta` - The amount to add. It may be negative.
    ///
    /// # Returns
    ///
    /// The counter value after the addition.
    ///
    /// # Panics
    ///
    /// Panics if the addition would overflow or underflow the signed range.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(2);
    /// assert_eq!(counter.add(-5), -3);
    /// ```
    #[inline]
    pub fn add(&self, delta: isize) -> isize {
        self.try_add(delta)
            .expect("atomic signed counter out of range")
    }

    /// Tries to add `delta` to the counter.
    ///
    /// # Parameters
    ///
    /// * `delta` - The amount to add. It may be negative.
    ///
    /// # Returns
    ///
    /// `Some(new_value)` if the addition succeeds, or `None` if it would
    /// overflow or underflow the signed range. On `None`, the counter is left
    /// unchanged.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(-2);
    /// assert_eq!(counter.try_add(5), Some(3));
    /// ```
    #[inline]
    pub fn try_add(&self, delta: isize) -> Option<isize> {
        self.try_update(|current| current.checked_add(delta))
    }

    /// Subtracts `delta` from the counter and returns the new value.
    ///
    /// # Parameters
    ///
    /// * `delta` - The amount to subtract. It may be negative.
    ///
    /// # Returns
    ///
    /// The counter value after the subtraction.
    ///
    /// # Panics
    ///
    /// Panics if the subtraction would overflow or underflow the signed range.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(2);
    /// assert_eq!(counter.sub(5), -3);
    /// ```
    #[inline]
    pub fn sub(&self, delta: isize) -> isize {
        self.try_sub(delta)
            .expect("atomic signed counter out of range")
    }

    /// Tries to subtract `delta` from the counter.
    ///
    /// # Parameters
    ///
    /// * `delta` - The amount to subtract. It may be negative.
    ///
    /// # Returns
    ///
    /// `Some(new_value)` if the subtraction succeeds, or `None` if it would
    /// overflow or underflow the signed range. On `None`, the counter is left
    /// unchanged.
    ///
    /// # Example
    ///
    /// ```rust
    /// use qubit_atomic::AtomicSignedCount;
    ///
    /// let counter = AtomicSignedCount::new(2);
    /// assert_eq!(counter.try_sub(5), Some(-3));
    /// ```
    #[inline]
    pub fn try_sub(&self, delta: isize) -> Option<isize> {
        self.try_update(|current| current.checked_sub(delta))
    }

    /// Applies a checked update with synchronization semantics.
    ///
    /// # Parameters
    ///
    /// * `update` - A function that maps the current value to the next value,
    ///   or returns `None` to reject the update.
    ///
    /// # Returns
    ///
    /// `Some(new_value)` if the update succeeds, or `None` if `update`
    /// rejects the current value. A rejected update leaves the counter
    /// unchanged.
    #[inline]
    fn try_update<F>(&self, update: F) -> Option<isize>
    where
        F: Fn(isize) -> Option<isize>,
    {
        let mut current = self.get();
        loop {
            let next = update(current)?;
            match self.inner.compare_exchange_weak(
                current,
                next,
                Ordering::AcqRel,
                Ordering::Acquire,
            ) {
                Ok(_) => return Some(next),
                Err(actual) => current = actual,
            }
        }
    }
}

impl Default for AtomicSignedCount {
    /// Creates a zero-valued signed atomic counter.
    ///
    /// # Returns
    ///
    /// A signed counter whose current value is zero.
    #[inline]
    fn default() -> Self {
        Self::zero()
    }
}

impl From<isize> for AtomicSignedCount {
    /// Converts an initial counter value into an [`AtomicSignedCount`].
    ///
    /// # Parameters
    ///
    /// * `value` - The initial counter value.
    ///
    /// # Returns
    ///
    /// A signed counter initialized to `value`.
    #[inline]
    fn from(value: isize) -> Self {
        Self::new(value)
    }
}

impl fmt::Debug for AtomicSignedCount {
    /// Formats the current counter value for debugging.
    ///
    /// # Parameters
    ///
    /// * `f` - The formatter receiving the debug representation.
    ///
    /// # Returns
    ///
    /// A formatting result from the formatter.
    #[inline]
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("AtomicSignedCount")
            .field("value", &self.get())
            .finish()
    }
}

impl fmt::Display for AtomicSignedCount {
    /// Formats the current counter value with decimal display formatting.
    ///
    /// # Parameters
    ///
    /// * `f` - The formatter receiving the displayed value.
    ///
    /// # Returns
    ///
    /// A formatting result from the formatter.
    #[inline]
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.get())
    }
}