static_storage.rs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. #![cfg(feature = "static")]
  2. use std::{
  3. fmt::Write,
  4. sync::atomic::{AtomicBool, Ordering},
  5. thread,
  6. };
  7. use thingbuf::{recycling, StaticThingBuf};
  8. #[test]
  9. fn static_storage_thingbuf() {
  10. static BUF: StaticThingBuf<i32, 16> = StaticThingBuf::new();
  11. static PRODUCER_LIVE: AtomicBool = AtomicBool::new(true);
  12. let producer = thread::spawn(move || {
  13. for i in 0..32 {
  14. let mut thing = 'write: loop {
  15. match BUF.push_ref() {
  16. Ok(thing) => break 'write thing,
  17. _ => thread::yield_now(),
  18. }
  19. };
  20. *thing = i;
  21. }
  22. PRODUCER_LIVE.store(false, Ordering::Release);
  23. });
  24. let mut i = 0;
  25. // While the producer is writing to the queue, push each entry to the
  26. // results string.
  27. while PRODUCER_LIVE.load(Ordering::Acquire) {
  28. match BUF.pop_ref() {
  29. Some(thing) => {
  30. assert_eq!(*thing, i);
  31. i += 1;
  32. }
  33. None => thread::yield_now(),
  34. }
  35. }
  36. producer.join().unwrap();
  37. // drain the queue.
  38. while let Some(thing) = BUF.pop_ref() {
  39. assert_eq!(*thing, i);
  40. i += 1;
  41. }
  42. }
  43. #[test]
  44. fn static_storage_stringbuf() {
  45. use recycling::WithCapacity;
  46. static BUF: StaticThingBuf<String, 8, WithCapacity> =
  47. StaticThingBuf::with_recycle(WithCapacity::new().with_max_capacity(8));
  48. static PRODUCER_LIVE: AtomicBool = AtomicBool::new(true);
  49. let producer = thread::spawn(move || {
  50. for i in 0..16 {
  51. let mut string = 'write: loop {
  52. match BUF.push_ref() {
  53. Ok(string) => break 'write string,
  54. _ => thread::yield_now(),
  55. }
  56. };
  57. write!(&mut string, "{:?}", i).unwrap();
  58. }
  59. PRODUCER_LIVE.store(false, Ordering::Release);
  60. println!("producer done");
  61. });
  62. let mut results = String::new();
  63. // While the producer is writing to the queue, push each entry to the
  64. // results string.
  65. while PRODUCER_LIVE.load(Ordering::Acquire) {
  66. if let Some(string) = BUF.pop_ref() {
  67. writeln!(results, "{}", string).unwrap();
  68. }
  69. thread::yield_now();
  70. }
  71. producer.join().unwrap();
  72. println!("producer done...");
  73. // drain the queue.
  74. while let Some(string) = BUF.pop_ref() {
  75. writeln!(results, "{}", string).unwrap();
  76. }
  77. println!("results:\n{}", results);
  78. for (n, ln) in results.lines().enumerate() {
  79. assert_eq!(ln.parse::<usize>(), Ok(n));
  80. }
  81. }
  82. #[tokio::test]
  83. async fn static_async_channel() {
  84. use std::collections::HashSet;
  85. use thingbuf::mpsc;
  86. const N_PRODUCERS: usize = 8;
  87. const N_SENDS: usize = N_PRODUCERS * 2;
  88. static CHANNEL: mpsc::StaticChannel<usize, N_PRODUCERS> = mpsc::StaticChannel::new();
  89. async fn do_producer(tx: mpsc::StaticSender<usize>, n: usize) {
  90. let tag = n * N_SENDS;
  91. for i in 0..N_SENDS {
  92. let msg = i + tag;
  93. println!("sending {}...", msg);
  94. tx.send(msg).await.unwrap();
  95. println!("sent {}!", msg);
  96. }
  97. println!("PRODUCER {} DONE!", n);
  98. }
  99. let (tx, rx) = CHANNEL.split();
  100. for n in 0..N_PRODUCERS {
  101. tokio::spawn(do_producer(tx.clone(), n));
  102. }
  103. drop(tx);
  104. let mut results = HashSet::new();
  105. while let Some(val) = {
  106. println!("receiving...");
  107. rx.recv().await
  108. } {
  109. println!("received {}!", val);
  110. results.insert(val);
  111. }
  112. let results = dbg!(results);
  113. for n in 0..N_PRODUCERS {
  114. let tag = n * N_SENDS;
  115. for i in 0..N_SENDS {
  116. let msg = i + tag;
  117. assert!(results.contains(&msg), "missing message {:?}", msg);
  118. }
  119. }
  120. }
  121. #[test]
  122. fn static_blocking_channel() {
  123. use std::collections::HashSet;
  124. use thingbuf::mpsc::blocking;
  125. const N_PRODUCERS: usize = 8;
  126. const N_SENDS: usize = N_PRODUCERS * 2;
  127. static CHANNEL: blocking::StaticChannel<usize, N_PRODUCERS> = blocking::StaticChannel::new();
  128. fn do_producer(tx: blocking::StaticSender<usize>, n: usize) -> impl FnOnce() {
  129. move || {
  130. let tag = n * N_SENDS;
  131. for i in 0..N_SENDS {
  132. let msg = i + tag;
  133. println!("sending {}...", msg);
  134. tx.send(msg).unwrap();
  135. println!("sent {}!", msg);
  136. }
  137. println!("PRODUCER {} DONE!", n);
  138. }
  139. }
  140. let (tx, rx) = CHANNEL.split();
  141. for n in 0..N_PRODUCERS {
  142. std::thread::spawn(do_producer(tx.clone(), n));
  143. }
  144. drop(tx);
  145. let mut results = HashSet::new();
  146. while let Some(val) = {
  147. println!("receiving...");
  148. rx.recv()
  149. } {
  150. println!("received {}!", val);
  151. results.insert(val);
  152. }
  153. let results = dbg!(results);
  154. for n in 0..N_PRODUCERS {
  155. let tag = n * N_SENDS;
  156. for i in 0..N_SENDS {
  157. let msg = i + tag;
  158. assert!(results.contains(&msg), "missing message {:?}", msg);
  159. }
  160. }
  161. }