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
use crate::mutex::{Mutex, SpinLock};
use crate::queue::*;
use crate::semaphore::*;
use crate::ThreadFunctions;
use alloc::boxed::Box;
use alloc::collections::VecDeque;
use async_trait::async_trait;
use core::time::Duration;
use num::Zero;

/// A queue based on a semaphore to block on.
#[derive(Debug)]
pub struct SemaphoreQueue<T, S, CS> {
    queue: SpinLock<VecDeque<T>, CS>,
    semaphore: S,
}
impl<T, S, CS> SemaphoreQueue<T, S, CS>
where
    S: ReadoutSemaphore,
{
    /// Gets the length of the queue.
    pub fn len(&self) -> S::Count {
        self.semaphore.count()
    }

    /// Tells whether the queue is empty.
    pub fn is_empty(&self) -> bool
    where
        S::Count: Zero,
    {
        self.semaphore.count().is_zero()
    }
}
impl<T, S, CS> Default for SemaphoreQueue<T, S, CS>
where
    S: Default,
{
    fn default() -> Self {
        Self {
            queue: Default::default(),
            semaphore: S::default(),
        }
    }
}

impl<T, S, CS> TryQueue for SemaphoreQueue<T, S, CS>
where
    S: TrySemaphore,
    CS: ThreadFunctions,
{
    type Item = T;

    fn try_push(&self, value: Self::Item) -> Result<(), Self::Item> {
        self.queue.lock().push_back(value);
        self.semaphore.signal();
        Ok(())
    }

    fn try_pop(&self) -> Option<Self::Item> {
        match self.semaphore.try_wait() {
            true => Some(self.queue.lock().pop_front().unwrap()),
            false => None,
        }
    }
}
impl<T, S, CS> Queue for SemaphoreQueue<T, S, CS>
where
    S: Semaphore,
    CS: ThreadFunctions,
{
    fn push(&self, value: Self::Item) {
        self.try_push(value)
            .unwrap_or_else(|_| panic!("try_push failed!"));
    }

    fn pop(&self) -> Self::Item {
        self.semaphore.wait();
        self.queue.lock().pop_front().unwrap()
    }
}
#[async_trait]
impl<T, S, CS> AsyncQueue for SemaphoreQueue<T, S, CS>
where
    T: Send,
    S: AsyncSemaphore + Send + Sync,
    CS: ThreadFunctions,
{
    async fn push_async(&self, value: Self::Item) {
        self.try_push(value)
            .unwrap_or_else(|_| panic!("try_push failed!"))
    }

    async fn pop_async(&self) -> Self::Item {
        self.semaphore.wait_async().await;
        self.queue.lock().pop_back().unwrap()
    }
}

impl<T, S, CS> TryPrependQueue for SemaphoreQueue<T, S, CS>
where
    S: TrySemaphore,
    CS: ThreadFunctions,
{
    fn try_push_front(&self, value: Self::Item) -> Result<(), Self::Item> {
        self.queue.lock().push_front(value);
        self.semaphore.signal();
        Ok(())
    }
}
impl<T, S, CS> PrependQueue for SemaphoreQueue<T, S, CS>
where
    S: Semaphore,
    CS: ThreadFunctions,
{
    fn push_front(&self, value: Self::Item) {
        self.try_push_front(value)
            .unwrap_or_else(|_| panic!("try_push_front failed!"));
    }
}
#[async_trait]
impl<T, S, CS> AsyncPrependQueue for SemaphoreQueue<T, S, CS>
where
    T: Send,
    S: AsyncSemaphore + Send + Sync,
    CS: ThreadFunctions,
{
    async fn push_front_async(&self, value: Self::Item) {
        self.try_push_front(value)
            .unwrap_or_else(|_| panic!("try_push_front failed!"));
    }
}

impl<T, S, CS> TryReverseQueue for SemaphoreQueue<T, S, CS>
where
    S: TrySemaphore,
    CS: ThreadFunctions,
{
    fn try_pop_back(&self) -> Option<Self::Item> {
        match self.semaphore.try_wait() {
            true => Some(self.queue.lock().pop_back().unwrap()),
            false => None,
        }
    }
}
impl<T, S, CS> ReverseQueue for SemaphoreQueue<T, S, CS>
where
    S: Semaphore,
    CS: ThreadFunctions,
{
    fn pop_back(&self) -> Self::Item {
        self.try_pop_back().unwrap()
    }
}
#[async_trait]
impl<T, S, CS> AsyncReverseQueue for SemaphoreQueue<T, S, CS>
where
    T: Send,
    S: AsyncSemaphore + Send + Sync,
    CS: ThreadFunctions,
{
    async fn pop_back_async(&self) -> Self::Item {
        self.semaphore.wait_async().await;
        self.queue.lock().pop_back().unwrap()
    }
}

impl<T, S, CS> TryDoubleEndedQueue for SemaphoreQueue<T, S, CS>
where
    S: TrySemaphore,
    CS: ThreadFunctions,
{
}
impl<T, S, CS> DoubleEndedQueue for SemaphoreQueue<T, S, CS>
where
    S: Semaphore,
    CS: ThreadFunctions,
{
}
impl<T, S, CS> AsyncDoubleEndedQueue for SemaphoreQueue<T, S, CS>
where
    T: Send,
    S: AsyncSemaphore + Send + Sync,
    CS: ThreadFunctions,
{
}

impl<T, S, CS> TimeoutQueue for SemaphoreQueue<T, S, CS>
where
    S: TimeoutSemaphore,
    CS: ThreadFunctions,
{
    fn push_timeout(&self, value: Self::Item, _: Duration) -> Result<(), Self::Item> {
        self.try_push(value)
    }

    fn pop_timeout(&self, timeout: Duration) -> Option<Self::Item> {
        match self.semaphore.wait_timeout(timeout) {
            true => Some(self.queue.lock().pop_front().unwrap()),
            false => None,
        }
    }
}
#[async_trait]
impl<T, S, CS> AsyncTimeoutQueue for SemaphoreQueue<T, S, CS>
where
    T: Send,
    S: AsyncTimeoutSemaphore + Send + Sync,
    CS: ThreadFunctions,
{
    async fn push_timeout_async(&self, value: Self::Item, _: Duration) -> Result<(), Self::Item> {
        self.try_push(value)
    }

    async fn pop_timeout_async(&self, timeout: Duration) -> Option<Self::Item> {
        match self.semaphore.wait_timeout_async(timeout).await {
            true => Some(self.queue.lock().pop_front().unwrap()),
            false => None,
        }
    }
}