2024-08-17 23:47:06 +02:00
|
|
|
use crate::buffer::Controller as BufferController;
|
|
|
|
use crate::cursor::Controller as CursorController;
|
|
|
|
use crate::workspace::Workspace;
|
|
|
|
use pyo3::prelude::*;
|
2024-08-17 01:09:29 +02:00
|
|
|
|
2024-08-20 11:22:45 +02:00
|
|
|
use crate::spawn_future;
|
|
|
|
|
2024-08-20 17:16:36 +02:00
|
|
|
use super::Promise;
|
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pymethods]
|
|
|
|
impl Workspace {
|
|
|
|
// join a workspace
|
|
|
|
#[pyo3(name = "create")]
|
|
|
|
async fn pycreate(&self, path: String) -> crate::Result<()> {
|
2024-08-20 11:22:45 +02:00
|
|
|
let rc = self.clone();
|
|
|
|
spawn_future!(rc.create(path.as_str())).await.unwrap()
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "attach")]
|
|
|
|
async fn pyattach(&self, path: String) -> crate::Result<BufferController> {
|
2024-08-20 11:22:45 +02:00
|
|
|
let rc = self.clone();
|
|
|
|
spawn_future!(rc.attach(path.as_str())).await.unwrap()
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "detach")]
|
|
|
|
fn pydetach(&self, path: String) -> bool {
|
|
|
|
match self.detach(path.as_str()) {
|
|
|
|
crate::workspace::worker::DetachResult::NotAttached => false,
|
|
|
|
crate::workspace::worker::DetachResult::Detaching => true,
|
|
|
|
crate::workspace::worker::DetachResult::AlreadyDetached => true,
|
|
|
|
}
|
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "event")]
|
2024-08-20 17:16:36 +02:00
|
|
|
fn pyevent(&self) -> Promise {
|
|
|
|
crate::a_sync! { self =>
|
|
|
|
self.event().await
|
|
|
|
}
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "fetch_buffers")]
|
|
|
|
async fn pyfetch_buffers(&self) -> crate::Result<()> {
|
2024-08-20 11:22:45 +02:00
|
|
|
let rc = self.clone();
|
|
|
|
spawn_future!(rc.fetch_buffers()).await.unwrap()
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "fetch_users")]
|
|
|
|
async fn pyfetch_users(&self) -> crate::Result<()> {
|
2024-08-20 11:22:45 +02:00
|
|
|
let rc = self.clone();
|
|
|
|
spawn_future!(rc.fetch_users()).await.unwrap()
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "list_buffer_users")]
|
|
|
|
async fn pylist_buffer_users(&self, path: String) -> crate::Result<Vec<crate::api::User>> {
|
2024-08-20 11:22:45 +02:00
|
|
|
let rc = self.clone();
|
|
|
|
spawn_future!(rc.list_buffer_users(path.as_str()))
|
|
|
|
.await
|
|
|
|
.unwrap()
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "delete")]
|
|
|
|
async fn pydelete(&self, path: String) -> crate::Result<()> {
|
2024-08-20 11:22:45 +02:00
|
|
|
let rc = self.clone();
|
|
|
|
spawn_future!(rc.delete(path.as_str())).await.unwrap()
|
2024-08-17 23:47:06 +02:00
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "id")]
|
|
|
|
fn pyid(&self) -> String {
|
|
|
|
self.id()
|
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "cursor")]
|
|
|
|
fn pycursor(&self) -> CursorController {
|
|
|
|
self.cursor()
|
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "buffer_by_name")]
|
|
|
|
fn pybuffer_by_name(&self, path: String) -> Option<BufferController> {
|
|
|
|
self.buffer_by_name(path.as_str())
|
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "buffer_list")]
|
|
|
|
fn pybuffer_list(&self) -> Vec<String> {
|
|
|
|
self.buffer_list()
|
|
|
|
}
|
2024-08-16 12:58:43 +02:00
|
|
|
|
2024-08-17 23:47:06 +02:00
|
|
|
#[pyo3(name = "filetree")]
|
|
|
|
fn pyfiletree(&self) -> Vec<String> {
|
|
|
|
self.filetree()
|
|
|
|
}
|
|
|
|
}
|