codemp/src/tools.rs

49 lines
1.4 KiB
Rust
Raw Normal View History

use crate::{Error, api::Controller};
2023-11-30 03:30:50 +01:00
use std::sync::Arc;
use tokio::sync::mpsc;
/// invoke .poll() on all buffer controllers and wait, return name of first one ready
///
/// this will spawn tasks for each buffer controller, each blocked in a poll() call. as soon as
/// one finishes, all other tasks will be canceled and the name of ready controller will be
/// returned. just do client.get_buffer(name).try_recv()
///
/// this is not super efficient as of now but has room for improvement. using this API may
/// provide significant improvements on editor-side
2023-11-30 03:30:50 +01:00
pub async fn select_buffer(
buffers: &[Arc<crate::buffer::Controller>],
timeout: Option<std::time::Duration>,
) -> crate::Result<Option<Arc<crate::buffer::Controller>>> {
let (tx, mut rx) = mpsc::unbounded_channel();
let mut tasks = Vec::new();
for buffer in buffers {
let _tx = tx.clone();
let _buffer = buffer.clone();
tasks.push(tokio::spawn(async move {
match _buffer.poll().await {
2023-11-30 03:30:50 +01:00
Ok(()) => _tx.send(Ok(Some(_buffer))),
Err(_) => _tx.send(Err(Error::Channel { send: true })),
}
}))
}
2023-11-30 03:30:50 +01:00
if let Some(d) = timeout {
let _tx = tx.clone();
tasks.push(tokio::spawn(async move {
tokio::time::sleep(d).await;
_tx.send(Ok(None))
}));
}
loop {
match rx.recv().await {
None => return Err(Error::Channel { send: false }),
Some(Err(_)) => continue, // TODO log errors maybe?
Some(Ok(x)) => {
for t in tasks {
t.abort();
}
return Ok(x.clone());
},
}
}
}