mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-27 12:30:35 +00:00
277 lines
6.0 KiB
Rust
277 lines
6.0 KiB
Rust
#![cfg_attr(unstable_channel, feature(scoped_threads))]
|
|
#![deny(rust_2018_compatibility)]
|
|
#![deny(rust_2018_idioms)]
|
|
#![deny(warnings)]
|
|
|
|
use std::thread;
|
|
|
|
use heapless::spsc;
|
|
|
|
#[test]
|
|
fn once() {
|
|
static mut RB: spsc::Queue<i32, 4> = spsc::Queue::new();
|
|
|
|
let rb = unsafe { &mut RB };
|
|
|
|
rb.enqueue(0).unwrap();
|
|
|
|
let (mut p, mut c) = rb.split();
|
|
|
|
p.enqueue(1).unwrap();
|
|
|
|
thread::spawn(move || {
|
|
p.enqueue(1).unwrap();
|
|
});
|
|
|
|
thread::spawn(move || {
|
|
c.dequeue().unwrap();
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn twice() {
|
|
static mut RB: spsc::Queue<i32, 5> = spsc::Queue::new();
|
|
|
|
let rb = unsafe { &mut RB };
|
|
|
|
rb.enqueue(0).unwrap();
|
|
rb.enqueue(1).unwrap();
|
|
|
|
let (mut p, mut c) = rb.split();
|
|
|
|
thread::spawn(move || {
|
|
p.enqueue(2).unwrap();
|
|
p.enqueue(3).unwrap();
|
|
});
|
|
|
|
thread::spawn(move || {
|
|
c.dequeue().unwrap();
|
|
c.dequeue().unwrap();
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(unstable_channel)]
|
|
fn scoped() {
|
|
let mut rb: spsc::Queue<i32, 5> = spsc::Queue::new();
|
|
|
|
rb.enqueue(0).unwrap();
|
|
|
|
{
|
|
let (mut p, mut c) = rb.split();
|
|
|
|
thread::scope(move |scope| {
|
|
scope.spawn(move || {
|
|
p.enqueue(1).unwrap();
|
|
});
|
|
|
|
scope.spawn(move || {
|
|
c.dequeue().unwrap();
|
|
});
|
|
});
|
|
}
|
|
|
|
rb.dequeue().unwrap();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg_attr(miri, ignore)] // too slow
|
|
#[cfg(unstable_channel)]
|
|
fn contention() {
|
|
const N: usize = 1024;
|
|
|
|
let mut rb: spsc::Queue<u8, 4> = spsc::Queue::new();
|
|
|
|
{
|
|
let (mut p, mut c) = rb.split();
|
|
|
|
thread::scope(move |scope| {
|
|
scope.spawn(move || {
|
|
let mut sum: u32 = 0;
|
|
|
|
for i in 0..(2 * N) {
|
|
sum = sum.wrapping_add(i as u32);
|
|
while let Err(_) = p.enqueue(i as u8) {}
|
|
}
|
|
|
|
println!("producer: {}", sum);
|
|
});
|
|
|
|
scope.spawn(move || {
|
|
let mut sum: u32 = 0;
|
|
|
|
for _ in 0..(2 * N) {
|
|
loop {
|
|
match c.dequeue() {
|
|
Some(v) => {
|
|
sum = sum.wrapping_add(v as u32);
|
|
break;
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
}
|
|
|
|
println!("consumer: {}", sum);
|
|
});
|
|
});
|
|
}
|
|
|
|
assert!(rb.is_empty());
|
|
}
|
|
|
|
#[test]
|
|
#[cfg_attr(miri, ignore)] // too slow
|
|
#[cfg(unstable_channel)]
|
|
fn mpmc_contention() {
|
|
use std::sync::mpsc;
|
|
|
|
use heapless::mpmc::Q64;
|
|
|
|
const N: u32 = 64;
|
|
|
|
static Q: Q64<u32> = Q64::new();
|
|
|
|
let (s, r) = mpsc::channel();
|
|
thread::scope(|scope| {
|
|
let s1 = s.clone();
|
|
scope.spawn(move || {
|
|
let mut sum: u32 = 0;
|
|
|
|
for i in 0..(16 * N) {
|
|
sum = sum.wrapping_add(i);
|
|
println!("enqueue {}", i);
|
|
while let Err(_) = Q.enqueue(i) {}
|
|
}
|
|
|
|
s1.send(sum).unwrap();
|
|
});
|
|
|
|
let s2 = s.clone();
|
|
scope.spawn(move || {
|
|
let mut sum: u32 = 0;
|
|
|
|
for _ in 0..(16 * N) {
|
|
loop {
|
|
match Q.dequeue() {
|
|
Some(v) => {
|
|
sum = sum.wrapping_add(v);
|
|
println!("dequeue {}", v);
|
|
break;
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
}
|
|
|
|
s2.send(sum).unwrap();
|
|
});
|
|
});
|
|
|
|
assert_eq!(r.recv().unwrap(), r.recv().unwrap());
|
|
}
|
|
|
|
#[test]
|
|
#[cfg_attr(miri, ignore)] // too slow
|
|
#[cfg(unstable_channel)]
|
|
fn unchecked() {
|
|
const N: usize = 1024;
|
|
|
|
let mut rb: spsc::Queue<u8, N> = spsc::Queue::new();
|
|
|
|
for _ in 0..N / 2 - 1 {
|
|
rb.enqueue(1).unwrap();
|
|
}
|
|
|
|
{
|
|
let (mut p, mut c) = rb.split();
|
|
|
|
thread::scope(move |scope| {
|
|
scope.spawn(move || {
|
|
for _ in 0..N / 2 - 1 {
|
|
p.enqueue(2).unwrap();
|
|
}
|
|
});
|
|
|
|
scope.spawn(move || {
|
|
let mut sum: usize = 0;
|
|
|
|
for _ in 0..N / 2 - 1 {
|
|
sum = sum.wrapping_add(usize::from(c.dequeue().unwrap()));
|
|
}
|
|
|
|
assert_eq!(sum, N / 2 - 1);
|
|
});
|
|
});
|
|
}
|
|
|
|
assert_eq!(rb.len(), N / 2 - 1);
|
|
}
|
|
|
|
#[test]
|
|
fn len_properly_wraps() {
|
|
const N: usize = 4;
|
|
let mut rb: spsc::Queue<u8, N> = spsc::Queue::new();
|
|
|
|
rb.enqueue(1).unwrap();
|
|
assert_eq!(rb.len(), 1);
|
|
rb.dequeue();
|
|
assert_eq!(rb.len(), 0);
|
|
rb.enqueue(2).unwrap();
|
|
assert_eq!(rb.len(), 1);
|
|
rb.enqueue(3).unwrap();
|
|
assert_eq!(rb.len(), 2);
|
|
rb.enqueue(4).unwrap();
|
|
assert_eq!(rb.len(), 3);
|
|
}
|
|
|
|
#[test]
|
|
fn iterator_properly_wraps() {
|
|
const N: usize = 4;
|
|
let mut rb: spsc::Queue<u8, N> = spsc::Queue::new();
|
|
|
|
rb.enqueue(1).unwrap();
|
|
rb.dequeue();
|
|
rb.enqueue(2).unwrap();
|
|
rb.enqueue(3).unwrap();
|
|
rb.enqueue(4).unwrap();
|
|
let expected = [2, 3, 4];
|
|
let mut actual = [0, 0, 0];
|
|
for (idx, el) in rb.iter().enumerate() {
|
|
actual[idx] = *el;
|
|
}
|
|
assert_eq!(expected, actual)
|
|
}
|
|
|
|
#[cfg(all(target_arch = "x86_64", feature = "x86-sync-pool"))]
|
|
#[test]
|
|
fn pool() {
|
|
use heapless::pool::singleton::Pool as _;
|
|
|
|
static mut M: [u8; (N + 1) * 8] = [0; (N + 1) * 8];
|
|
const N: usize = 16 * 1024;
|
|
heapless::pool!(A: [u8; 8]);
|
|
|
|
A::grow(unsafe { &mut M });
|
|
|
|
thread::scope(move |scope| {
|
|
scope.spawn(move || {
|
|
for _ in 0..N / 4 {
|
|
let a = A::alloc().unwrap();
|
|
let b = A::alloc().unwrap();
|
|
drop(a);
|
|
let b = b.init([1; 8]);
|
|
drop(b);
|
|
}
|
|
});
|
|
|
|
scope.spawn(move || {
|
|
for _ in 0..N / 2 {
|
|
let a = A::alloc().unwrap();
|
|
let a = a.init([2; 8]);
|
|
drop(a);
|
|
}
|
|
});
|
|
});
|
|
}
|