2024-02-21 23:59:49 +01:00
|
|
|
from __future__ import annotations
|
2024-08-23 20:59:06 +02:00
|
|
|
from typing import Optional, Dict
|
|
|
|
|
2023-08-17 18:39:47 +02:00
|
|
|
|
2024-02-23 13:25:01 +01:00
|
|
|
import sublime
|
2024-08-09 19:20:58 +02:00
|
|
|
import logging
|
2023-08-25 14:29:11 +02:00
|
|
|
|
2024-08-21 21:35:57 +02:00
|
|
|
import codemp
|
2024-08-09 15:54:12 +02:00
|
|
|
from Codemp.src import globals as g
|
|
|
|
from Codemp.src.workspace import VirtualWorkspace
|
2024-08-23 20:59:06 +02:00
|
|
|
from Codemp.src.buffers import VirtualBuffer
|
|
|
|
from Codemp.src.utils import bidict
|
2024-08-09 19:20:58 +02:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2024-02-21 23:59:49 +01:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
# the client will be responsible to keep track of everything!
|
|
|
|
# it will need 3 bidirectional dictionaries and 2 normal ones
|
|
|
|
# normal: workspace_id -> VirtualWorkspaces
|
|
|
|
# normal: buffer_id -> VirtualBuffer
|
|
|
|
# bidir: VirtualBuffer <-> VirtualWorkspace
|
|
|
|
# bidir: VirtualBuffer <-> Sublime.View
|
|
|
|
# bidir: VirtualWorkspace <-> Sublime.Window
|
2024-02-21 23:59:49 +01:00
|
|
|
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
class VirtualClient:
|
2024-08-04 19:57:59 +02:00
|
|
|
def __init__(self):
|
2024-08-23 20:59:06 +02:00
|
|
|
self.codemp: Optional[codemp.Client] = None
|
2024-08-21 21:35:57 +02:00
|
|
|
self.driver = codemp.init(lambda msg: logger.log(logger.level, msg), False)
|
2024-02-21 23:59:49 +01:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
# bookkeeping corner
|
|
|
|
self.__id2buffer: dict[str, VirtualBuffer] = {}
|
|
|
|
self.__id2workspace: dict[str, VirtualWorkspace] = {}
|
|
|
|
self.__view2buff: dict[sublime.View, VirtualBuffer] = {}
|
2024-02-23 17:49:26 +01:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
self.__buff2workspace: bidict[VirtualBuffer, VirtualWorkspace] = bidict()
|
|
|
|
self.__workspace2window: bidict[VirtualWorkspace, sublime.Window] = bidict()
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def valid_window(self, window: sublime.Window):
|
|
|
|
return window in self.__workspace2window.inverse
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def valid_workspace(self, workspace: VirtualWorkspace | str):
|
|
|
|
if isinstance(workspace, str):
|
|
|
|
return client.__id2workspace.get(workspace) is not None
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
return workspace in self.__workspace2window
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def all_workspaces(
|
|
|
|
self, window: Optional[sublime.Window] = None
|
|
|
|
) -> list[VirtualWorkspace]:
|
|
|
|
if window is None:
|
|
|
|
return list(self.__workspace2window.keys())
|
|
|
|
else:
|
|
|
|
return self.__workspace2window.inverse[window]
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def workspace_from_view(self, view: sublime.View) -> Optional[VirtualWorkspace]:
|
|
|
|
buff = self.__view2buff.get(view, None)
|
|
|
|
return self.__buff2workspace.get(buff, None)
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def workspace_from_buffer(self, buff: VirtualBuffer) -> Optional[VirtualWorkspace]:
|
|
|
|
return self.__buff2workspace.get(buff)
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def workspace_from_id(self, id: str) -> Optional[VirtualWorkspace]:
|
|
|
|
return self.__id2workspace.get(id)
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def all_buffers(
|
|
|
|
self, workspace: Optional[VirtualWorkspace | str] = None
|
|
|
|
) -> list[VirtualBuffer]:
|
|
|
|
if workspace is None:
|
|
|
|
return list(self.__buff2workspace.keys())
|
|
|
|
else:
|
|
|
|
if isinstance(workspace, str):
|
|
|
|
workspace = client.__id2workspace[workspace]
|
|
|
|
return self.__buff2workspace.inverse[workspace]
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def buffer_from_view(self, view: sublime.View) -> Optional[VirtualBuffer]:
|
|
|
|
return self.__view2buff.get(view)
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def buffer_from_id(self, id: str) -> Optional[VirtualBuffer]:
|
|
|
|
return self.__id2buffer.get(id)
|
2024-08-21 21:35:57 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def view_from_buffer(self, buff: VirtualBuffer) -> sublime.View:
|
|
|
|
return buff.view
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def disconnect(self):
|
|
|
|
if self.codemp is None:
|
2024-08-04 19:57:59 +02:00
|
|
|
return
|
2024-08-23 20:59:06 +02:00
|
|
|
logger.info("disconnecting from the current client")
|
|
|
|
# for each workspace tell it to clean up after itself.
|
|
|
|
for vws in self.all_workspaces():
|
|
|
|
vws.cleanup()
|
|
|
|
self.codemp.leave_workspace(vws.id)
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
self.__id2workspace.clear()
|
|
|
|
self.__id2buffer.clear()
|
|
|
|
self.__buff2workspace.clear()
|
|
|
|
self.__view2buff.clear()
|
|
|
|
self.__workspace2window.clear()
|
|
|
|
self.codemp = None
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def connect(self, host: str, user: str, password: str):
|
|
|
|
if self.codemp is not None:
|
|
|
|
logger.info("Disconnecting from previous client.")
|
|
|
|
return self.disconnect()
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
self.codemp = codemp.Client(host, user, password)
|
|
|
|
id = self.codemp.user_id()
|
|
|
|
logger.debug(f"Connected to '{host}' as user {user} (id: {id})")
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def install_workspace(
|
|
|
|
self, workspace: codemp.Workspace, window: sublime.Window
|
|
|
|
) -> VirtualWorkspace:
|
|
|
|
# we pass the window as well so if the window changes in the mean
|
|
|
|
# time we have the correct one!
|
|
|
|
vws = VirtualWorkspace(workspace, window)
|
|
|
|
self.__workspace2window[vws] = window
|
|
|
|
self.__id2workspace[vws.id] = vws
|
2024-08-09 09:17:38 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
vws.install()
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
return vws
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def uninstall_workspace(self, vws: VirtualWorkspace):
|
|
|
|
if vws not in self.__workspace2window:
|
|
|
|
raise
|
|
|
|
|
|
|
|
logger.info(f"Uninstalling workspace '{vws.id}'...")
|
|
|
|
vws.cleanup()
|
|
|
|
del self.__id2workspace[vws.id]
|
|
|
|
del self.__workspace2window[vws]
|
|
|
|
self.__buff2workspace.inverse_del(vws)
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def workspaces_in_server(self):
|
|
|
|
return self.codemp.active_workspaces() if self.codemp else []
|
2024-08-04 19:57:59 +02:00
|
|
|
|
2024-08-23 20:59:06 +02:00
|
|
|
def user_id(self):
|
|
|
|
return self.codemp.user_id() if self.codemp else None
|
2024-02-21 23:59:49 +01:00
|
|
|
|
|
|
|
|
2024-08-04 19:57:59 +02:00
|
|
|
client = VirtualClient()
|