2024-08-17 23:47:28 +02:00
|
|
|
from typing import Tuple, Optional
|
2024-08-06 23:28:09 +02:00
|
|
|
|
|
|
|
class PyLogger:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
A python wrapper for the tracing subscriber so that we can
|
|
|
|
receive logging messages from the library.
|
|
|
|
"""
|
2024-08-09 09:14:27 +02:00
|
|
|
def __init__(self, debug) -> None: ...
|
2024-08-17 23:47:28 +02:00
|
|
|
async def listen(self) -> Optional[str]: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
|
|
|
|
|
2024-08-09 09:14:27 +02:00
|
|
|
class TextChange:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
Editor agnostic representation of a text change, it translate between internal
|
|
|
|
codemp text operations and editor operations
|
|
|
|
"""
|
2024-08-09 09:14:27 +02:00
|
|
|
start: int
|
|
|
|
end: int
|
2024-08-06 23:28:09 +02:00
|
|
|
content: str
|
|
|
|
|
2024-08-17 23:47:28 +02:00
|
|
|
def is_delete(self) -> bool: ...
|
|
|
|
def is_insert(self) -> bool: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
def is_empty(self) -> bool: ...
|
|
|
|
def apply(self, txt: str) -> str: ...
|
|
|
|
|
|
|
|
|
2024-08-09 09:14:27 +02:00
|
|
|
class BufferController:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
Handle to the controller for a specific buffer, which manages the back and forth
|
|
|
|
of operations to and from other peers.
|
|
|
|
"""
|
|
|
|
async def content(self) -> str: ...
|
|
|
|
async def send(self, start: int, end: int, txt: str) -> None: ...
|
|
|
|
async def try_recv(self) -> Optional[TextChange]: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
async def recv(self) -> TextChange: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
async def poll(self) -> None: ...
|
|
|
|
|
|
|
|
|
2024-08-09 09:14:27 +02:00
|
|
|
|
|
|
|
class Cursor:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
An Editor agnostic cursor position representation
|
|
|
|
"""
|
2024-08-06 23:28:09 +02:00
|
|
|
start: Tuple[int, int]
|
|
|
|
end: Tuple[int, int]
|
|
|
|
buffer: str
|
2024-08-17 23:47:28 +02:00
|
|
|
user: Optional[str] # can be an empty string
|
2024-08-06 23:28:09 +02:00
|
|
|
|
|
|
|
|
2024-08-09 09:14:27 +02:00
|
|
|
class CursorController:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
Handle to the controller for a workspace, which manages the back and forth of
|
|
|
|
cursor movements to and from other peers
|
|
|
|
"""
|
|
|
|
async def send(self, path: str, start: Tuple[int, int], end: Tuple[int, int]) -> None: ...
|
|
|
|
async def try_recv(self) -> Optional[Cursor]: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
async def recv(self) -> Cursor: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
async def poll(self) -> None: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
def stop(self) -> bool: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
|
|
|
|
|
2024-08-09 09:14:27 +02:00
|
|
|
class Workspace:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
Handle to a workspace inside codemp. It manages buffers.
|
|
|
|
A cursor is tied to the single workspace.
|
|
|
|
"""
|
2024-08-06 23:28:09 +02:00
|
|
|
async def create(self, path: str) -> None: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
async def attach(self, path: str) -> BufferController: ...
|
|
|
|
def detach(self, path: str) -> bool: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
async def fetch_buffers(self) -> None: ...
|
|
|
|
async def fetch_users(self) -> None: ...
|
|
|
|
async def list_buffer_users(self, path: str) -> list[str]: ...
|
|
|
|
async def delete(self, path: str) -> None: ...
|
|
|
|
def id(self) -> str: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
def cursor(self) -> CursorController: ...
|
2024-08-17 23:47:28 +02:00
|
|
|
def buffer_by_name(self, path: str) -> Optional[BufferController]: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
def buffer_list(self) -> list[str]: ...
|
2024-08-06 23:28:09 +02:00
|
|
|
def filetree(self) -> list[str]: ...
|
|
|
|
|
|
|
|
|
|
|
|
class Client:
|
2024-08-17 23:47:28 +02:00
|
|
|
"""
|
|
|
|
Handle to the actual client that manages the session. It manages the connection
|
|
|
|
to a server and joining/creating new workspaces
|
|
|
|
"""
|
|
|
|
def __new__(cls, host: str, username: str, password: str) -> None: ...
|
2024-08-09 09:14:27 +02:00
|
|
|
async def join_workspace(self, workspace: str) -> Workspace: ...
|
|
|
|
def leave_workspace(self, workspace: str) -> bool: ...
|
|
|
|
def get_workspace(self, id: str) -> Workspace: ...
|
|
|
|
def active_workspaces(self) -> list[str]: ...
|
|
|
|
def user_id(self) -> str: ...
|