mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
feat: poll doesn't ever lock the RwLock
to make try_recv deadlocks way more rare
This commit is contained in:
parent
1e39363815
commit
8df0b8ec41
2 changed files with 29 additions and 13 deletions
|
@ -5,6 +5,7 @@
|
|||
|
||||
use std::sync::Arc;
|
||||
|
||||
use tokio::sync::oneshot;
|
||||
use tokio::sync::{watch, mpsc, RwLock};
|
||||
use tonic::async_trait;
|
||||
|
||||
|
@ -33,6 +34,7 @@ pub struct BufferController {
|
|||
content: watch::Receiver<String>,
|
||||
seen: Arc<RwLock<String>>,
|
||||
operations: mpsc::UnboundedSender<TextChange>,
|
||||
poller: mpsc::Sender<oneshot::Sender<()>>,
|
||||
_stop: Arc<StopOnDrop>, // just exist
|
||||
}
|
||||
|
||||
|
@ -41,15 +43,20 @@ impl BufferController {
|
|||
name: String,
|
||||
content: watch::Receiver<String>,
|
||||
operations: mpsc::UnboundedSender<TextChange>,
|
||||
poller: mpsc::Sender<oneshot::Sender<()>>,
|
||||
stop: mpsc::UnboundedSender<()>,
|
||||
) -> Self {
|
||||
BufferController {
|
||||
name,
|
||||
content, operations,
|
||||
content, operations, poller,
|
||||
_stop: Arc::new(StopOnDrop(stop)),
|
||||
seen: Arc::new(RwLock::new("".into())),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn content(&self) -> String {
|
||||
self.content.borrow().clone()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -66,15 +73,9 @@ impl Controller<TextChange> for BufferController {
|
|||
type Input = TextChange;
|
||||
|
||||
async fn poll(&self) -> crate::Result<()> {
|
||||
let mut poller = self.content.clone();
|
||||
loop {
|
||||
poller.changed().await?;
|
||||
let seen = self.seen.read().await.clone();
|
||||
if *poller.borrow() != seen {
|
||||
break
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
let (tx, rx) = oneshot::channel::<()>();
|
||||
self.poller.send(tx);
|
||||
Ok(rx.await.map_err(|_| crate::Error::Channel { send: false })?)
|
||||
}
|
||||
|
||||
fn try_recv(&self) -> crate::Result<Option<TextChange>> {
|
||||
|
|
|
@ -2,7 +2,7 @@ use std::collections::hash_map::DefaultHasher;
|
|||
use std::hash::{Hash, Hasher};
|
||||
|
||||
use similar::{TextDiff, ChangeTag};
|
||||
use tokio::sync::{watch, mpsc};
|
||||
use tokio::sync::{watch, mpsc, oneshot};
|
||||
use tonic::transport::Channel;
|
||||
use tonic::{async_trait, Streaming};
|
||||
use woot::crdt::{Op, CRDT, TextEditor};
|
||||
|
@ -27,6 +27,9 @@ pub(crate) struct BufferControllerWorker {
|
|||
name: String,
|
||||
stop: mpsc::UnboundedReceiver<()>,
|
||||
stop_control: mpsc::UnboundedSender<()>,
|
||||
poller_rx: mpsc::Receiver<oneshot::Sender<()>>,
|
||||
poller_tx: mpsc::Sender<oneshot::Sender<()>>,
|
||||
pollers: Vec<oneshot::Sender<()>>,
|
||||
}
|
||||
|
||||
impl BufferControllerWorker {
|
||||
|
@ -34,11 +37,13 @@ impl BufferControllerWorker {
|
|||
let (txt_tx, txt_rx) = watch::channel("".to_string());
|
||||
let (op_tx, op_rx) = mpsc::unbounded_channel();
|
||||
let (end_tx, end_rx) = mpsc::unbounded_channel();
|
||||
let (poller_tx, poller_rx) = mpsc::channel(10);
|
||||
let mut hasher = DefaultHasher::new();
|
||||
uid.hash(&mut hasher);
|
||||
let site_id = hasher.finish() as usize;
|
||||
BufferControllerWorker {
|
||||
uid,
|
||||
uid, poller_rx, poller_tx,
|
||||
pollers: Vec::new(),
|
||||
content: txt_tx,
|
||||
operations: op_rx,
|
||||
receiver: txt_rx,
|
||||
|
@ -75,6 +80,7 @@ impl ControllerWorker<TextChange> for BufferControllerWorker {
|
|||
self.name.clone(),
|
||||
self.receiver.clone(),
|
||||
self.sender.clone(),
|
||||
self.poller_tx.clone(),
|
||||
self.stop_control.clone(),
|
||||
)
|
||||
}
|
||||
|
@ -88,6 +94,12 @@ impl ControllerWorker<TextChange> for BufferControllerWorker {
|
|||
// received stop signal
|
||||
_ = self.stop.recv() => break,
|
||||
|
||||
// received a new poller, add it to collection
|
||||
res = self.poller_rx.recv() => match res {
|
||||
None => break tracing::error!("poller channel closed"),
|
||||
Some(tx) => self.pollers.push(tx),
|
||||
},
|
||||
|
||||
// received a text change from editor
|
||||
res = self.operations.recv() => match res {
|
||||
None => break,
|
||||
|
@ -133,7 +145,7 @@ impl ControllerWorker<TextChange> for BufferControllerWorker {
|
|||
}
|
||||
},
|
||||
|
||||
// received a stop request (or channel got closed)
|
||||
// received a message from server
|
||||
res = rx.message() => match res {
|
||||
Err(_e) => break,
|
||||
Ok(None) => break,
|
||||
|
@ -141,6 +153,9 @@ impl ControllerWorker<TextChange> for BufferControllerWorker {
|
|||
Ok(op) => {
|
||||
self.buffer.merge(op);
|
||||
self.content.send(self.buffer.view()).unwrap_or_warn("could not send buffer update");
|
||||
for tx in self.pollers.drain(0..self.pollers.len()) {
|
||||
tx.send(()).unwrap_or_warn("could not wake up poller");
|
||||
}
|
||||
},
|
||||
Err(e) => tracing::error!("could not deserialize operation from server: {}", e),
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue