mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
feat: implemented AsyncReceiver for Workspace...
... its very bad tho, very very bad Co-authored-by: zaaarf <me@zaaarf.foo>
This commit is contained in:
parent
1b16d4af59
commit
ddbad59ae2
1 changed files with 36 additions and 14 deletions
|
@ -4,7 +4,7 @@
|
||||||
//! Buffers are typically organized in a filetree-like reminiscent of POSIX filesystems.
|
//! Buffers are typically organized in a filetree-like reminiscent of POSIX filesystems.
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
api::{Event, User},
|
api::{controller::{AsyncReceiver, ControllerCallback}, Event, User},
|
||||||
buffer, cursor,
|
buffer, cursor,
|
||||||
errors::{ConnectionResult, ControllerResult, RemoteResult},
|
errors::{ConnectionResult, ControllerResult, RemoteResult},
|
||||||
ext::InternallyMutable,
|
ext::InternallyMutable,
|
||||||
|
@ -24,7 +24,7 @@ use codemp_proto::{
|
||||||
|
|
||||||
use dashmap::{DashMap, DashSet};
|
use dashmap::{DashMap, DashSet};
|
||||||
use std::{collections::BTreeSet, sync::Arc};
|
use std::{collections::BTreeSet, sync::Arc};
|
||||||
use tokio::sync::mpsc;
|
use tokio::sync::{mpsc::error::TryRecvError, mpsc};
|
||||||
use tonic::Streaming;
|
use tonic::Streaming;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
@ -55,6 +55,39 @@ struct WorkspaceInner {
|
||||||
users: Arc<DashMap<Uuid, User>>,
|
users: Arc<DashMap<Uuid, User>>,
|
||||||
// TODO can we drop the mutex?
|
// TODO can we drop the mutex?
|
||||||
events: tokio::sync::Mutex<mpsc::UnboundedReceiver<crate::api::Event>>,
|
events: tokio::sync::Mutex<mpsc::UnboundedReceiver<crate::api::Event>>,
|
||||||
|
callback: std::sync::Mutex<Option<ControllerCallback<Workspace>>>, // TODO lmao another one
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AsyncReceiver<Event> for Workspace {
|
||||||
|
async fn try_recv(&self) -> ControllerResult<Option<Event>> {
|
||||||
|
match self.0
|
||||||
|
.events
|
||||||
|
.lock()
|
||||||
|
.await
|
||||||
|
.try_recv()
|
||||||
|
{
|
||||||
|
Ok(x) => Ok(Some(x)),
|
||||||
|
Err(TryRecvError::Empty) => Ok(None),
|
||||||
|
Err(TryRecvError::Disconnected) => Err(crate::errors::ControllerError::Stopped),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn poll(&self) -> ControllerResult<()> {
|
||||||
|
loop {
|
||||||
|
if !self.0.events.lock().await.is_empty() { break Ok(()) }
|
||||||
|
// TODO disgusting, please send help
|
||||||
|
tokio::time::sleep(std::time::Duration::from_millis(200)).await;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO please send HELP ASAP this is hurting me emotionally
|
||||||
|
fn clear_callback(&self) {
|
||||||
|
*self.0.callback.lock().expect("mutex poisoned") = None;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn callback(&self, cb: impl Into<ControllerCallback<Self>>) {
|
||||||
|
*self.0.callback.lock().expect("mutex poisoned") = Some(cb.into());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Workspace {
|
impl Workspace {
|
||||||
|
@ -91,6 +124,7 @@ impl Workspace {
|
||||||
users,
|
users,
|
||||||
events: tokio::sync::Mutex::new(ev_rx),
|
events: tokio::sync::Mutex::new(ev_rx),
|
||||||
services,
|
services,
|
||||||
|
callback: std::sync::Mutex::new(None),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
ws.fetch_users().await?;
|
ws.fetch_users().await?;
|
||||||
|
@ -161,18 +195,6 @@ impl Workspace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Await next workspace [Event] and return it when it arrives.
|
|
||||||
// TODO this method is weird and ugly, can we make it more standard?
|
|
||||||
pub async fn event(&self) -> ControllerResult<Event> {
|
|
||||||
self.0
|
|
||||||
.events
|
|
||||||
.lock()
|
|
||||||
.await
|
|
||||||
.recv()
|
|
||||||
.await
|
|
||||||
.ok_or(crate::errors::ControllerError::Unfulfilled)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Re-fetch the list of available buffers in the workspace.
|
/// Re-fetch the list of available buffers in the workspace.
|
||||||
pub async fn fetch_buffers(&self) -> RemoteResult<()> {
|
pub async fn fetch_buffers(&self) -> RemoteResult<()> {
|
||||||
let mut workspace_client = self.0.services.ws();
|
let mut workspace_client = self.0.services.ws();
|
||||||
|
|
Loading…
Reference in a new issue