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
//! This contains the Collection of bounded-MPMC-Queues proposed in [the Paper](https://arxiv.org/pdf/1908.04511.pdf),
//! however you should basically always use [`scq`] over [`ncq`] as it scales better and in
//! general is the intended implementation.
//!
//! # Example
//! ```rust
//! # use nolock::queues::mpmc::bounded;
//! // Creates a new Queue with the Capacity for 10 Elements
//! let (rx, tx) = bounded::scq::queue::<u64>(10);
//!
//! // Insert a new Element into the Queue
//! assert_eq!(Ok(()), tx.try_enqueue(123));
//! // Dequeue the Element again
//! assert_eq!(Ok(123), rx.try_dequeue());
//! ```

use super::queue;

pub mod ncq {
    //! This Queue uses the Naive-Circular-Queue implementation provided in [the Paper](https://arxiv.org/pdf/1908.04511.pdf).
    //!
    //! This is mostly here for completness, but in all basically all real-world cases, you
    //! should use the [`scq`](super::scq)-based-Queue, as that one scales better with more
    //! producers/consumers
    //!
    //! # Example:
    //! ```rust
    //! # use nolock::queues::mpmc::bounded::ncq;
    //! // Create the Queue
    //! let (rx, tx) = ncq::queue::<u64>(10);
    //!
    //! // Insert an Item into the Queue
    //! assert_eq!(Ok(()), tx.try_enqueue(10));
    //! // Dequeue the previously inserted Item
    //! assert_eq!(Ok(10), rx.try_dequeue());
    //! ```

    use core::fmt::Debug;

    use crate::queues::{DequeueError, EnqueueError};

    use super::queue;

    /// The receiving Half for a NCQ based MPMC-Queue
    pub struct Receiver<T>(queue::BoundedReceiver<T, queue::ncq::Queue>);
    /// The sending Half for a NCQ based MPMC-Queue
    pub struct Sender<T>(queue::BoundedSender<T, queue::ncq::Queue>);

    impl<T> Debug for Receiver<T> {
        fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
            write!(f, "NCQ-Receiver<{}>()", core::any::type_name::<T>())
        }
    }
    impl<T> Debug for Sender<T> {
        fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
            write!(f, "NCQ-Sender<{}>()", core::any::type_name::<T>())
        }
    }

    /// Creates a new NCQ-Queue with the given Capacity
    pub fn queue<T>(capacity: usize) -> (Receiver<T>, Sender<T>) {
        let (rx, tx) = queue::queue_ncq(capacity);
        (Receiver(rx), Sender(tx))
    }

    impl<T> Sender<T> {
        /// Attempts to enqueue the Data on the Queue
        ///
        /// # Example
        /// ## Valid/Normal enqueue
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::ncq;
        /// let (rx, tx) = ncq::queue::<u64>(10);
        ///
        /// assert_eq!(Ok(()), tx.try_enqueue(13));
        /// # drop(rx);
        /// ```
        ///
        /// ## Queue is already full
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::ncq;
        /// # use nolock::queues::EnqueueError;
        /// let (rx, tx) = ncq::queue::<u64>(1);
        /// // Enqueue an Element to fill the Queue
        /// tx.try_enqueue(13);
        ///
        /// assert_eq!(Err((EnqueueError::Full, 13)), tx.try_enqueue(13));
        /// # drop(rx);
        /// ```
        pub fn try_enqueue(&self, data: T) -> Result<(), (EnqueueError, T)> {
            self.0.try_enqueue(data)
        }

        /// Checks if the Receiving Half has closed the Queue, meaning that
        /// no more Elements would be dequeued from the Queue and therefore
        /// also should not be inserted anymore.
        ///
        /// # Example
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::ncq;
        /// let (rx, tx) = ncq::queue::<u64>(10);
        ///
        /// assert_eq!(false, tx.is_closed());
        ///
        /// drop(rx);
        ///
        /// assert_eq!(true, tx.is_closed());
        /// ```
        pub fn is_closed(&self) -> bool {
            self.0.is_closed()
        }
    }

    impl<T> Receiver<T> {
        /// Attempts to dequeue an Item from the Queue
        ///
        /// # Example
        /// ## Successfully enqueue Element
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::ncq;
        /// let (rx, tx) = ncq::queue::<u64>(10);
        ///
        /// // Enqueue an Item
        /// tx.try_enqueue(13).unwrap();
        ///
        /// // Dequeue the Item
        /// assert_eq!(Ok(13), rx.try_dequeue());
        /// ```
        ///
        /// ## Enqueue from empty Queue
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::ncq;
        /// # use nolock::queues::DequeueError;
        /// let (rx, tx) = ncq::queue::<u64>(10);
        ///
        /// // Attempt to Dequeue an item
        /// assert_eq!(Err(DequeueError::Empty), rx.try_dequeue());
        /// # drop(tx);
        /// ```
        pub fn try_dequeue(&self) -> Result<T, DequeueError> {
            self.0.dequeue()
        }

        /// Checks if the Sending Half has closed the Queue, meaning that
        /// no more new Elements will be added to the Queue.
        ///
        /// # Note
        /// Even if this indicates that the Queue has been closed, by the
        /// Sender and no more new Elements will be inserted into the Queue,
        /// there might still be Elements left in the Queue that are waiting
        /// to be dequeued.
        ///
        /// # Example
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::ncq;
        /// let (rx, tx) = ncq::queue::<u64>(10);
        ///
        /// assert_eq!(false, rx.is_closed());
        ///
        /// tx.try_enqueue(13).unwrap();
        /// drop(tx);
        ///
        /// assert_eq!(true, rx.is_closed());
        /// ```
        pub fn is_closed(&self) -> bool {
            self.0.is_closed()
        }
    }
}

pub mod scq {
    //! This Queue uses the Scalable-Circular-Queue implementation provided in [the Paper](https://arxiv.org/pdf/1908.04511.pdf).
    //!
    //! # Example:
    //! ```rust
    //! # use nolock::queues::mpmc::bounded::scq;
    //! // Create the Queue
    //! let (rx, tx) = scq::queue::<u64>(10);
    //!
    //! // Insert an Item into the Queue
    //! assert_eq!(Ok(()), tx.try_enqueue(10));
    //! // Dequeue the previously inserted Item
    //! assert_eq!(Ok(10), rx.try_dequeue());
    //! ```

    use core::fmt::Debug;

    use crate::queues::{DequeueError, EnqueueError};

    use super::queue;

    /// The receiving Half for a SCQ based MPMC-Queue
    pub struct Receiver<T>(queue::BoundedReceiver<T, queue::scq::Queue>);
    /// The sending Half for a SCQ based MPMC-Queue
    pub struct Sender<T>(queue::BoundedSender<T, queue::scq::Queue>);

    impl<T> Debug for Receiver<T> {
        fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
            write!(f, "SCQ-Receiver<{}>()", core::any::type_name::<T>())
        }
    }
    impl<T> Debug for Sender<T> {
        fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
            write!(f, "SCQ-Sender<{}>()", core::any::type_name::<T>())
        }
    }

    /// Creates a new Queue with the given Capacity.
    ///
    /// Unlike the other Queues in this crate, this Queue combines the Producer and Consumer in
    /// a single Struct, as they dont have any restrictions that would limit the other half in
    /// some way and need to share certain state anyway.
    pub fn queue<T>(capacity: usize) -> (Receiver<T>, Sender<T>) {
        let (rx, tx) = queue::queue_scq(capacity);
        (Receiver(rx), Sender(tx))
    }

    impl<T> Sender<T> {
        /// Attempts to Enqueue the given Data
        ///
        /// # Example
        /// ## Valid/Normal enqueue
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::scq;
        /// let (rx, tx) = scq::queue::<u64>(10);
        ///
        /// assert_eq!(Ok(()), tx.try_enqueue(13));
        /// # drop(rx);
        /// ```
        ///
        /// ## Queue is already full
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::scq;
        /// # use nolock::queues::EnqueueError;
        /// let (rx, tx) = scq::queue::<u64>(1);
        /// // Enqueue an Element to fill the Queue
        /// tx.try_enqueue(13);
        ///
        /// assert_eq!(Err((EnqueueError::Full, 13)), tx.try_enqueue(13));
        /// # drop(rx);
        /// ```
        pub fn try_enqueue(&self, data: T) -> Result<(), (EnqueueError, T)> {
            self.0.try_enqueue(data)
        }

        /// Checks if the Receiving Half has closed the Queue, meaning that
        /// no more Elements would be dequeued from the Queue and therefore
        /// also should not be inserted anymore.
        ///
        /// # Example
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::scq;
        /// let (rx, tx) = scq::queue::<u64>(10);
        ///
        /// assert_eq!(false, tx.is_closed());
        ///
        /// drop(rx);
        ///
        /// assert_eq!(true, tx.is_closed());
        /// ```
        pub fn is_closed(&self) -> bool {
            self.0.is_closed()
        }
    }

    impl<T> Receiver<T> {
        /// Attempts to Dequeue an item from the Queue
        ///
        /// # Example
        /// ## Successfully enqueue Element
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::scq;
        /// let (rx, tx) = scq::queue::<u64>(10);
        ///
        /// // Enqueue an Item
        /// tx.try_enqueue(13).unwrap();
        ///
        /// // Dequeue the Item
        /// assert_eq!(Ok(13), rx.try_dequeue());
        /// ```
        ///
        /// ## Enqueue from empty Queue
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::scq;
        /// # use nolock::queues::DequeueError;
        /// let (rx, tx) = scq::queue::<u64>(10);
        ///
        /// // Attempt to Dequeue an item
        /// assert_eq!(Err(DequeueError::Empty), rx.try_dequeue());
        /// # drop(tx);
        /// ```
        pub fn try_dequeue(&self) -> Result<T, DequeueError> {
            self.0.dequeue()
        }

        /// Checks if the Sending Half has closed the Queue, meaning that
        /// no more new Elements will be added to the Queue.
        ///
        /// # Note
        /// Even if this indicates that the Queue has been closed, by the
        /// Sender and no more new Elements will be inserted into the Queue,
        /// there might still be Elements left in the Queue that are waiting
        /// to be dequeued.
        ///
        /// # Example
        /// ```rust
        /// # use nolock::queues::mpmc::bounded::scq;
        /// let (rx, tx) = scq::queue::<u64>(10);
        ///
        /// assert_eq!(false, rx.is_closed());
        ///
        /// tx.try_enqueue(13).unwrap();
        /// drop(tx);
        ///
        /// assert_eq!(true, rx.is_closed());
        /// ```
        pub fn is_closed(&self) -> bool {
            self.0.is_closed()
        }
    }
}