strafe-client/src/worker.rs

141 lines
4.1 KiB
Rust
Raw Normal View History

2023-10-04 08:30:33 +00:00
use std::thread;
use std::sync::{mpsc,Arc};
use parking_lot::Mutex;
//WorkerPool
struct Pool(u32);
enum PoolOrdering{
Single,//single thread cannot get out of order
Ordered(u32),//order matters and should be buffered/dropped according to ControlFlow
Unordered(u32),//order does not matter
}
//WorkerInput
enum Input{
//no input, workers have everything needed at creation
None,
//Immediate input to any available worker, dropped if they are overflowing (all workers are busy)
Immediate,
//Queued input is ordered, but serial jobs that mutate state (such as running physics) can only be done with a single worker
Queued,
}
//WorkerOutput
enum Output{
None(Pool),
Realtime(PoolOrdering),//outputs are dropped if they are out of order and order is demanded
Buffered(PoolOrdering),//outputs are held back internally if they are out of order and order is demanded
}
//realtime output is an arc mutex of the output value that is assigned every time a worker completes a job
//buffered output produces a receiver object that can be passed to the creation of another worker
//when ordering is requested, output is ordered by the order each thread is run
//which is the same as the order that the input data is processed except for Input::None which has no input data
//WorkerDescription
struct Description{
input:Input,
output:Output,
}
2023-10-04 08:30:33 +00:00
//The goal here is to have a worker thread that parks itself when it runs out of work.
//The worker thread publishes the result of its work back to the worker object for every item in the work queue.
//The physics (target use case) knows when it has not changed the body, so not updating the value is also an option.
2023-10-05 03:04:04 +00:00
pub struct Worker<Task:Send,Value:Clone> {
2023-10-04 08:30:33 +00:00
sender: mpsc::Sender<Task>,
value:Arc<Mutex<Value>>,
}
impl<Task:Send+'static,Value:Clone+Send+'static> Worker<Task,Value> {
2023-10-05 03:04:04 +00:00
pub fn new<F:FnMut(Task)->Value+Send+'static>(value:Value,mut f:F) -> Self {
2023-10-04 08:30:33 +00:00
let (sender, receiver) = mpsc::channel::<Task>();
let ret=Self {
sender,
value:Arc::new(Mutex::new(value)),
};
let value=ret.value.clone();
thread::spawn(move || {
loop {
match receiver.recv() {
Ok(task) => {
let v=f(task);//make sure function is evaluated before lock is acquired
*value.lock()=v;
}
Err(_) => {
println!("Worker stopping.",);
break;
}
}
}
});
ret
}
2023-10-05 03:04:04 +00:00
pub fn send(&self,task:Task)->Result<(), mpsc::SendError<Task>>{
2023-10-04 08:30:33 +00:00
self.sender.send(task)
}
2023-10-05 03:04:04 +00:00
pub fn grab_clone(&self)->Value{
2023-10-04 08:30:33 +00:00
self.value.lock().clone()
}
}
pub struct CompatWorker<Task,Value:Clone,F>{
data:std::marker::PhantomData<Task>,
f:F,
value:Value,
}
impl<Task,Value:Clone,F:FnMut(Task)->Value> CompatWorker<Task,Value,F> {
pub fn new(value:Value,f:F) -> Self {
Self {
f,
value,
data:std::marker::PhantomData,
}
}
pub fn send(&mut self,task:Task)->Result<(),()>{
self.value=(self.f)(task);
Ok(())
}
pub fn grab_clone(&self)->Value{
self.value.clone()
}
}
2023-10-04 08:30:33 +00:00
#[test]//How to run this test with printing: cargo test --release -- --nocapture
fn test_worker() {
println!("hiiiii");
// Create the worker thread
2023-09-27 09:12:20 +00:00
let worker = Worker::new(crate::physics::Body::with_pva(crate::integer::Planar64Vec3::ZERO,crate::integer::Planar64Vec3::ZERO,crate::integer::Planar64Vec3::ZERO),
|_|crate::physics::Body::with_pva(crate::integer::Planar64Vec3::ONE,crate::integer::Planar64Vec3::ONE,crate::integer::Planar64Vec3::ONE)
2023-10-04 08:30:33 +00:00
);
// Send tasks to the worker
2023-10-10 23:30:00 +00:00
for _ in 0..5 {
2023-10-04 08:30:33 +00:00
let task = crate::instruction::TimedInstruction{
2023-09-27 09:12:20 +00:00
time:crate::integer::Time::ZERO,
2023-10-04 22:58:02 +00:00
instruction:crate::physics::PhysicsInstruction::StrafeTick,
2023-10-04 08:30:33 +00:00
};
worker.send(task).unwrap();
}
// Optional: Signal the worker to stop (in a real-world scenario)
// sender.send("STOP".to_string()).unwrap();
// Sleep to allow the worker thread to finish processing
thread::sleep(std::time::Duration::from_secs(2));
// Send a new task
let task = crate::instruction::TimedInstruction{
2023-09-27 09:12:20 +00:00
time:crate::integer::Time::ZERO,
2023-10-04 22:58:02 +00:00
instruction:crate::physics::PhysicsInstruction::StrafeTick,
2023-10-04 08:30:33 +00:00
};
worker.send(task).unwrap();
2023-10-14 22:41:59 +00:00
println!("value={}",worker.grab_clone());
2023-10-04 08:30:33 +00:00
// wait long enough to see print from final task
thread::sleep(std::time::Duration::from_secs(1));
}