rustlings/exercises/20_threads/threads3.rs

64 lines
1.3 KiB
Rust
Raw Normal View History

2022-07-15 14:28:49 +03:00
// threads3.rs
//
// Execute `rustlings hint threads3` or use the `hint` watch subcommand for a
// hint.
2022-07-15 14:28:49 +03:00
// I AM NOT DONE
use std::sync::mpsc;
use std::sync::Arc;
use std::thread;
use std::time::Duration;
struct Queue {
length: u32,
first_half: Vec<u32>,
second_half: Vec<u32>,
}
impl Queue {
fn new() -> Self {
Queue {
length: 10,
first_half: vec![1, 2, 3, 4, 5],
second_half: vec![6, 7, 8, 9, 10],
}
}
}
fn send_tx(q: Queue, tx: mpsc::Sender<u32>) -> () {
thread::spawn(move || {
2024-03-18 03:12:37 +03:00
for val in q.first_half {
2022-07-15 14:28:49 +03:00
println!("sending {:?}", val);
2024-03-18 03:12:37 +03:00
tx.send(val).unwrap();
2022-07-15 14:28:49 +03:00
thread::sleep(Duration::from_secs(1));
}
});
thread::spawn(move || {
2024-03-18 03:12:37 +03:00
for val in q.second_half {
2022-07-15 14:28:49 +03:00
println!("sending {:?}", val);
2024-03-18 03:12:37 +03:00
tx.send(val).unwrap();
2022-07-15 14:28:49 +03:00
thread::sleep(Duration::from_secs(1));
}
});
}
#[test]
2022-07-15 14:28:49 +03:00
fn main() {
let (tx, rx) = mpsc::channel();
let queue = Queue::new();
let queue_length = queue.length;
send_tx(queue, tx);
let mut total_received: u32 = 0;
for received in rx {
println!("Got: {}", received);
total_received += 1;
}
println!("total numbers received: {}", total_received);
assert_eq!(total_received, queue_length)
}