mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
feat: plainer names and prefixed prelude
This commit is contained in:
parent
b8578a89a4
commit
fecd28165a
7 changed files with 60 additions and 47 deletions
|
@ -2,7 +2,7 @@ use operational_transform::OperationSeq;
|
||||||
use tokio::sync::{watch, mpsc, broadcast, Mutex};
|
use tokio::sync::{watch, mpsc, broadcast, Mutex};
|
||||||
use tonic::async_trait;
|
use tonic::async_trait;
|
||||||
|
|
||||||
use crate::{Controller, CodempError};
|
use crate::{Controller, Error};
|
||||||
use crate::buffer::factory::{leading_noop, tailing_noop, OperationFactory};
|
use crate::buffer::factory::{leading_noop, tailing_noop, OperationFactory};
|
||||||
|
|
||||||
use super::TextChange;
|
use super::TextChange;
|
||||||
|
@ -34,7 +34,7 @@ impl OperationFactory for BufferController {
|
||||||
impl Controller<TextChange> for BufferController {
|
impl Controller<TextChange> for BufferController {
|
||||||
type Input = OperationSeq;
|
type Input = OperationSeq;
|
||||||
|
|
||||||
async fn recv(&self) -> Result<TextChange, CodempError> {
|
async fn recv(&self) -> Result<TextChange, Error> {
|
||||||
let op = self.stream.lock().await.recv().await?;
|
let op = self.stream.lock().await.recv().await?;
|
||||||
let after = self.content.borrow().clone();
|
let after = self.content.borrow().clone();
|
||||||
let skip = leading_noop(op.ops()) as usize;
|
let skip = leading_noop(op.ops()) as usize;
|
||||||
|
@ -45,7 +45,7 @@ impl Controller<TextChange> for BufferController {
|
||||||
Ok(TextChange { span, content })
|
Ok(TextChange { span, content })
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn send(&self, op: OperationSeq) -> Result<(), CodempError> {
|
async fn send(&self, op: OperationSeq) -> Result<(), Error> {
|
||||||
Ok(self.operations.send(op).await?)
|
Ok(self.operations.send(op).await?)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,17 +7,17 @@ use crate::{
|
||||||
proto::{
|
proto::{
|
||||||
buffer_client::BufferClient, cursor_client::CursorClient, UserIdentity, BufferPayload,
|
buffer_client::BufferClient, cursor_client::CursorClient, UserIdentity, BufferPayload,
|
||||||
},
|
},
|
||||||
CodempError, ControllerWorker, buffer::{controller::BufferController, worker::BufferControllerWorker},
|
Error, ControllerWorker, buffer::{controller::BufferController, worker::BufferControllerWorker},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
pub struct CodempClient {
|
pub struct Client {
|
||||||
id: String,
|
id: String,
|
||||||
client: ServiceClients,
|
client: Services,
|
||||||
workspace: Option<Workspace>,
|
workspace: Option<Workspace>,
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ServiceClients {
|
struct Services {
|
||||||
buffer: BufferClient<Channel>,
|
buffer: BufferClient<Channel>,
|
||||||
cursor: CursorClient<Channel>,
|
cursor: CursorClient<Channel>,
|
||||||
}
|
}
|
||||||
|
@ -28,13 +28,13 @@ struct Workspace {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
impl CodempClient {
|
impl Client {
|
||||||
pub async fn new(dst: &str) -> Result<Self, tonic::transport::Error> {
|
pub async fn new(dst: &str) -> Result<Self, tonic::transport::Error> {
|
||||||
let buffer = BufferClient::connect(dst.to_string()).await?;
|
let buffer = BufferClient::connect(dst.to_string()).await?;
|
||||||
let cursor = CursorClient::connect(dst.to_string()).await?;
|
let cursor = CursorClient::connect(dst.to_string()).await?;
|
||||||
let id = uuid::Uuid::new_v4().to_string();
|
let id = uuid::Uuid::new_v4().to_string();
|
||||||
|
|
||||||
Ok(CodempClient { id, client: ServiceClients { buffer, cursor}, workspace: None })
|
Ok(Client { id, client: Services { buffer, cursor}, workspace: None })
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_cursor(&self) -> Option<Arc<CursorController>> {
|
pub fn get_cursor(&self) -> Option<Arc<CursorController>> {
|
||||||
|
@ -45,7 +45,7 @@ impl CodempClient {
|
||||||
self.workspace.as_ref()?.buffers.get(path).cloned()
|
self.workspace.as_ref()?.buffers.get(path).cloned()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn join(&mut self, _session: &str) -> Result<Arc<CursorController>, CodempError> {
|
pub async fn join(&mut self, _session: &str) -> Result<Arc<CursorController>, Error> {
|
||||||
// TODO there is no real workspace handling in codemp server so it behaves like one big global
|
// TODO there is no real workspace handling in codemp server so it behaves like one big global
|
||||||
// session. I'm still creating this to start laying out the proper use flow
|
// session. I'm still creating this to start laying out the proper use flow
|
||||||
let stream = self.client.cursor.listen(UserIdentity { id: "".into() }).await?.into_inner();
|
let stream = self.client.cursor.listen(UserIdentity { id: "".into() }).await?.into_inner();
|
||||||
|
@ -71,7 +71,7 @@ impl CodempClient {
|
||||||
Ok(handle)
|
Ok(handle)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn create(&mut self, path: &str, content: Option<&str>) -> Result<(), CodempError> {
|
pub async fn create(&mut self, path: &str, content: Option<&str>) -> Result<(), Error> {
|
||||||
if let Some(_workspace) = &self.workspace {
|
if let Some(_workspace) = &self.workspace {
|
||||||
self.client.buffer
|
self.client.buffer
|
||||||
.create(BufferPayload {
|
.create(BufferPayload {
|
||||||
|
@ -82,11 +82,11 @@ impl CodempClient {
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(CodempError::InvalidState { msg: "join a workspace first".into() })
|
Err(Error::InvalidState { msg: "join a workspace first".into() })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn attach(&mut self, path: &str) -> Result<Arc<BufferController>, CodempError> {
|
pub async fn attach(&mut self, path: &str) -> Result<Arc<BufferController>, Error> {
|
||||||
if let Some(workspace) = &mut self.workspace {
|
if let Some(workspace) = &mut self.workspace {
|
||||||
let mut client = self.client.buffer.clone();
|
let mut client = self.client.buffer.clone();
|
||||||
let req = BufferPayload {
|
let req = BufferPayload {
|
||||||
|
@ -111,7 +111,7 @@ impl CodempClient {
|
||||||
|
|
||||||
Ok(handler)
|
Ok(handler)
|
||||||
} else {
|
} else {
|
||||||
Err(CodempError::InvalidState { msg: "join a workspace first".into() })
|
Err(Error::InvalidState { msg: "join a workspace first".into() })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use tokio::sync::{mpsc, broadcast::{self, error::RecvError}, Mutex};
|
use tokio::sync::{mpsc, broadcast::{self, error::RecvError}, Mutex};
|
||||||
use tonic::async_trait;
|
use tonic::async_trait;
|
||||||
|
|
||||||
use crate::{proto::{CursorPosition, CursorEvent}, CodempError, Controller};
|
use crate::{proto::{CursorPosition, CursorEvent}, Error, Controller};
|
||||||
|
|
||||||
pub struct CursorController {
|
pub struct CursorController {
|
||||||
uid: String,
|
uid: String,
|
||||||
|
@ -23,7 +23,7 @@ impl CursorController {
|
||||||
impl Controller<CursorEvent> for CursorController {
|
impl Controller<CursorEvent> for CursorController {
|
||||||
type Input = CursorPosition;
|
type Input = CursorPosition;
|
||||||
|
|
||||||
async fn send(&self, cursor: CursorPosition) -> Result<(), CodempError> {
|
async fn send(&self, cursor: CursorPosition) -> Result<(), Error> {
|
||||||
Ok(self.op.send(CursorEvent {
|
Ok(self.op.send(CursorEvent {
|
||||||
user: self.uid.clone(),
|
user: self.uid.clone(),
|
||||||
position: Some(cursor),
|
position: Some(cursor),
|
||||||
|
@ -32,11 +32,11 @@ impl Controller<CursorEvent> for CursorController {
|
||||||
|
|
||||||
// TODO is this cancelable? so it can be used in tokio::select!
|
// TODO is this cancelable? so it can be used in tokio::select!
|
||||||
// TODO is the result type overkill? should be an option?
|
// TODO is the result type overkill? should be an option?
|
||||||
async fn recv(&self) -> Result<CursorEvent, CodempError> {
|
async fn recv(&self) -> Result<CursorEvent, Error> {
|
||||||
let mut stream = self.stream.lock().await;
|
let mut stream = self.stream.lock().await;
|
||||||
match stream.recv().await {
|
match stream.recv().await {
|
||||||
Ok(x) => Ok(x),
|
Ok(x) => Ok(x),
|
||||||
Err(RecvError::Closed) => Err(CodempError::Channel { send: false }),
|
Err(RecvError::Closed) => Err(Error::Channel { send: false }),
|
||||||
Err(RecvError::Lagged(n)) => {
|
Err(RecvError::Lagged(n)) => {
|
||||||
tracing::error!("cursor channel lagged behind, skipping {} events", n);
|
tracing::error!("cursor channel lagged behind, skipping {} events", n);
|
||||||
Ok(stream.recv().await.expect("could not receive after lagging"))
|
Ok(stream.recv().await.expect("could not receive after lagging"))
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{error::Error, fmt::Display};
|
use std::{error::Error as StdError, fmt::Display};
|
||||||
|
|
||||||
use tokio::sync::{mpsc, broadcast};
|
use tokio::sync::{mpsc, broadcast};
|
||||||
use tonic::{Status, Code};
|
use tonic::{Status, Code};
|
||||||
|
@ -20,7 +20,7 @@ where E : std::fmt::Display {
|
||||||
|
|
||||||
// TODO split this into specific errors for various parts of the library
|
// TODO split this into specific errors for various parts of the library
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum CodempError {
|
pub enum Error {
|
||||||
Transport {
|
Transport {
|
||||||
status: Code,
|
status: Code,
|
||||||
message: String,
|
message: String,
|
||||||
|
@ -38,9 +38,9 @@ pub enum CodempError {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Error for CodempError {}
|
impl StdError for Error {}
|
||||||
|
|
||||||
impl Display for CodempError {
|
impl Display for Error {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
match self {
|
match self {
|
||||||
Self::Transport { status, message } => write!(f, "Transport error: ({}) {}", status, message),
|
Self::Transport { status, message } => write!(f, "Transport error: ({}) {}", status, message),
|
||||||
|
@ -50,28 +50,28 @@ impl Display for CodempError {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<Status> for CodempError {
|
impl From<Status> for Error {
|
||||||
fn from(status: Status) -> Self {
|
fn from(status: Status) -> Self {
|
||||||
CodempError::Transport { status: status.code(), message: status.message().to_string() }
|
Error::Transport { status: status.code(), message: status.message().to_string() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<tonic::transport::Error> for CodempError {
|
impl From<tonic::transport::Error> for Error {
|
||||||
fn from(err: tonic::transport::Error) -> Self {
|
fn from(err: tonic::transport::Error) -> Self {
|
||||||
CodempError::Transport {
|
Error::Transport {
|
||||||
status: Code::Unknown, message: format!("underlying transport error: {:?}", err)
|
status: Code::Unknown, message: format!("underlying transport error: {:?}", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> From<mpsc::error::SendError<T>> for CodempError {
|
impl<T> From<mpsc::error::SendError<T>> for Error {
|
||||||
fn from(_value: mpsc::error::SendError<T>) -> Self {
|
fn from(_value: mpsc::error::SendError<T>) -> Self {
|
||||||
CodempError::Channel { send: true }
|
Error::Channel { send: true }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<broadcast::error::RecvError> for CodempError {
|
impl From<broadcast::error::RecvError> for Error {
|
||||||
fn from(_value: broadcast::error::RecvError) -> Self {
|
fn from(_value: broadcast::error::RecvError) -> Self {
|
||||||
CodempError::Channel { send: false }
|
Error::Channel { send: false }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ use tokio::sync::Mutex;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
buffer::controller::BufferController,
|
buffer::controller::BufferController,
|
||||||
errors::CodempError, client::CodempClient, cursor::controller::CursorController,
|
errors::Error, client::Client, cursor::controller::CursorController,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ lazy_static::lazy_static! {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Instance {
|
pub struct Instance {
|
||||||
client: Mutex<Option<CodempClient>>,
|
client: Mutex<Option<Client>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Instance {
|
impl Default for Instance {
|
||||||
|
@ -28,52 +28,52 @@ impl Default for Instance {
|
||||||
// TODO these methods repeat a lot of code but Mutex makes it hard to simplify
|
// TODO these methods repeat a lot of code but Mutex makes it hard to simplify
|
||||||
|
|
||||||
impl Instance {
|
impl Instance {
|
||||||
pub async fn connect(&self, addr: &str) -> Result<(), CodempError> {
|
pub async fn connect(&self, addr: &str) -> Result<(), Error> {
|
||||||
*self.client.lock().await = Some(CodempClient::new(addr).await?);
|
*self.client.lock().await = Some(Client::new(addr).await?);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn join(&self, session: &str) -> Result<(), CodempError> {
|
pub async fn join(&self, session: &str) -> Result<(), Error> {
|
||||||
self.client
|
self.client
|
||||||
.lock()
|
.lock()
|
||||||
.await
|
.await
|
||||||
.as_mut()
|
.as_mut()
|
||||||
.ok_or(CodempError::InvalidState { msg: "connect first".into() })?
|
.ok_or(Error::InvalidState { msg: "connect first".into() })?
|
||||||
.join(session)
|
.join(session)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn create(&self, path: &str, content: Option<&str>) -> Result<(), CodempError> {
|
pub async fn create(&self, path: &str, content: Option<&str>) -> Result<(), Error> {
|
||||||
self.client
|
self.client
|
||||||
.lock()
|
.lock()
|
||||||
.await
|
.await
|
||||||
.as_mut()
|
.as_mut()
|
||||||
.ok_or(CodempError::InvalidState { msg: "connect first".into() })?
|
.ok_or(Error::InvalidState { msg: "connect first".into() })?
|
||||||
.create(path, content)
|
.create(path, content)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn get_cursor(&self) -> Result<Arc<CursorController>, CodempError> {
|
pub async fn get_cursor(&self) -> Result<Arc<CursorController>, Error> {
|
||||||
self.client
|
self.client
|
||||||
.lock()
|
.lock()
|
||||||
.await
|
.await
|
||||||
.as_mut()
|
.as_mut()
|
||||||
.ok_or(CodempError::InvalidState { msg: "connect first".into() })?
|
.ok_or(Error::InvalidState { msg: "connect first".into() })?
|
||||||
.get_cursor()
|
.get_cursor()
|
||||||
.ok_or(CodempError::InvalidState { msg: "join a workspace first".into() })
|
.ok_or(Error::InvalidState { msg: "join a workspace first".into() })
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn get_buffer(&self, path: &str) -> Result<Arc<BufferController>, CodempError> {
|
pub async fn get_buffer(&self, path: &str) -> Result<Arc<BufferController>, Error> {
|
||||||
self.client
|
self.client
|
||||||
.lock()
|
.lock()
|
||||||
.await
|
.await
|
||||||
.as_mut()
|
.as_mut()
|
||||||
.ok_or(CodempError::InvalidState { msg: "connect first".into() })?
|
.ok_or(Error::InvalidState { msg: "connect first".into() })?
|
||||||
.get_buffer(path)
|
.get_buffer(path)
|
||||||
.ok_or(CodempError::InvalidState { msg: "join a workspace or create requested buffer first".into() })
|
.ok_or(Error::InvalidState { msg: "join a workspace or create requested buffer first".into() })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,8 @@ pub mod client;
|
||||||
#[cfg(feature = "static")]
|
#[cfg(feature = "static")]
|
||||||
pub mod instance;
|
pub mod instance;
|
||||||
|
|
||||||
|
pub mod prelude;
|
||||||
|
|
||||||
pub use tonic;
|
pub use tonic;
|
||||||
pub use tokio;
|
pub use tokio;
|
||||||
pub use operational_transform as ot;
|
pub use operational_transform as ot;
|
||||||
|
@ -18,7 +20,7 @@ pub mod proto {
|
||||||
tonic::include_proto!("codemp.cursor");
|
tonic::include_proto!("codemp.cursor");
|
||||||
}
|
}
|
||||||
|
|
||||||
pub use errors::CodempError;
|
pub use errors::Error;
|
||||||
|
|
||||||
#[tonic::async_trait] // TODO move this somewhere?
|
#[tonic::async_trait] // TODO move this somewhere?
|
||||||
pub(crate) trait ControllerWorker<T> {
|
pub(crate) trait ControllerWorker<T> {
|
||||||
|
@ -34,6 +36,6 @@ pub(crate) trait ControllerWorker<T> {
|
||||||
pub trait Controller<T> {
|
pub trait Controller<T> {
|
||||||
type Input;
|
type Input;
|
||||||
|
|
||||||
async fn send(&self, x: Self::Input) -> Result<(), CodempError>;
|
async fn send(&self, x: Self::Input) -> Result<(), Error>;
|
||||||
async fn recv(&self) -> Result<T, CodempError>;
|
async fn recv(&self) -> Result<T, Error>;
|
||||||
}
|
}
|
||||||
|
|
11
src/prelude.rs
Normal file
11
src/prelude.rs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
pub use crate::client::Client as CodempClient;
|
||||||
|
pub use crate::errors::Error as CodempError;
|
||||||
|
|
||||||
|
pub use crate::cursor::controller::CursorController as CodempCursorController;
|
||||||
|
pub use crate::buffer::controller::BufferController as CodempBufferController;
|
||||||
|
|
||||||
|
pub use crate::buffer::TextChange as CodempTextChange;
|
||||||
|
pub use crate::proto::CursorPosition as CodempCursorPosition;
|
||||||
|
|
||||||
|
#[cfg(feature = "static")]
|
||||||
|
pub use crate::instance::Instance as CodempInstance;
|
Loading…
Reference in a new issue