mirror of
https://github.com/hexedtech/codemp-sublime.git
synced 2024-11-25 00:04:49 +01:00
Rearranged some code. Implemented a python buffer class to abstract the differences between buffers on the server and on the editor. Switched to a single event listener that we move around.
Former-commit-id: 836dfe91f89bf25fa408cc3be8ecc4e0679e10d1
This commit is contained in:
parent
4005d9bd86
commit
9a964a099b
2 changed files with 248 additions and 138 deletions
|
@ -23,23 +23,25 @@
|
||||||
"caption": "Codemp: Connect",
|
"caption": "Codemp: Connect",
|
||||||
// # on_window_command, does not trigger when called from the command palette
|
// # on_window_command, does not trigger when called from the command palette
|
||||||
// # See: https://github.com/sublimehq/sublime_text/issues/2234
|
// # See: https://github.com/sublimehq/sublime_text/issues/2234
|
||||||
"command": "proxy_codemp_connect",
|
"command": "codemp_connect",
|
||||||
"args": {
|
"args": {
|
||||||
// "server_host": "http://[::1]:50051"
|
// "server_host": "http://[::1]:50051"
|
||||||
|
// 'session' : 'default' (the name of the workspace to join)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"caption": "Codemp: Share",
|
"caption": "Codemp: Share",
|
||||||
"command": "proxy_codemp_share",
|
"command": "codemp_share",
|
||||||
"arg": {
|
"arg": {
|
||||||
//
|
// 'sublime_buffer' : /path/to/buffer/to/share
|
||||||
|
// 'server_id' : 'how to call the buffer on the server'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"caption": "Codemp: Join",
|
"caption": "Codemp: Join",
|
||||||
"command": "proxy_codemp_join",
|
"command": "codemp_join",
|
||||||
"arg": {
|
"arg": {
|
||||||
//
|
// 'server_buffer' : 'test'
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
]
|
]
|
366
plugin.py
366
plugin.py
|
@ -5,15 +5,15 @@ import sublime_plugin
|
||||||
from Codemp.src.codemp_client import *
|
from Codemp.src.codemp_client import *
|
||||||
import Codemp.ext.sublime_asyncio as sublime_asyncio
|
import Codemp.ext.sublime_asyncio as sublime_asyncio
|
||||||
import asyncio
|
import asyncio
|
||||||
|
import os
|
||||||
import time
|
import time
|
||||||
|
|
||||||
# UGLYYYY, find a way to not have global variables laying around.
|
# UGLYYYY, find a way to not have global variables laying around.
|
||||||
_tasks = []
|
_tasks = []
|
||||||
|
_buffers = []
|
||||||
_client = None
|
_client = None
|
||||||
_cursor_controller = None
|
_cursor_controller = None
|
||||||
_buffer_controller = None
|
|
||||||
_txt_change_listener = None
|
_txt_change_listener = None
|
||||||
_skip_resend = False
|
|
||||||
|
|
||||||
_regions_colors = [
|
_regions_colors = [
|
||||||
"region.redish",
|
"region.redish",
|
||||||
|
@ -26,6 +26,39 @@ _regions_colors = [
|
||||||
"region.pinkish"
|
"region.pinkish"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# WIP ##
|
||||||
|
class CodempSublimeBuffer():
|
||||||
|
def __init__(self, sublime_buffer, server_id):
|
||||||
|
self.buffer = sublime_buffer
|
||||||
|
self.server_id = server_id
|
||||||
|
self.skip_resend = False
|
||||||
|
|
||||||
|
async def attach(self, client, cb):
|
||||||
|
self.controller = await client.attach(self.server_id)
|
||||||
|
status_log("registring callback for buffer: {}".format(self.buffer.primary_view().file_name()))
|
||||||
|
self.controller.callback(cb(self.buffer))
|
||||||
|
for v in self.buffer.views():
|
||||||
|
v.settings()["codemp_buffer"] = True
|
||||||
|
|
||||||
|
async def detach(self, client):
|
||||||
|
await client.disconnect_buffer(self.server_id)
|
||||||
|
self.controller.drop_callback()
|
||||||
|
for v in self.buffer.views():
|
||||||
|
del v.settings()["codemp_buffer"]
|
||||||
|
v.erase_regions("codemp_cursors")
|
||||||
|
|
||||||
|
def get_matching_codemp_buffer_from_buffer_id(buffer_id):
|
||||||
|
global _buffers
|
||||||
|
for b in _buffers:
|
||||||
|
if b.buffer.id() == buffer_id:
|
||||||
|
return b
|
||||||
|
def get_matching_codemp_buffer_from_server_id(server_id):
|
||||||
|
global _buffers
|
||||||
|
for b in _buffers:
|
||||||
|
if b.server_id == server_id:
|
||||||
|
return b
|
||||||
|
# WIP ##
|
||||||
|
|
||||||
def status_log(msg):
|
def status_log(msg):
|
||||||
sublime.status_message("[codemp] {}".format(msg))
|
sublime.status_message("[codemp] {}".format(msg))
|
||||||
print("[codemp] {}".format(msg))
|
print("[codemp] {}".format(msg))
|
||||||
|
@ -42,7 +75,14 @@ def get_contents(view):
|
||||||
r = sublime.Region(0, view.size())
|
r = sublime.Region(0, view.size())
|
||||||
return view.substr(r)
|
return view.substr(r)
|
||||||
|
|
||||||
def get_matching_view(path):
|
def populate_view(view, content):
|
||||||
|
view.run_command("codemp_replace_text", {
|
||||||
|
"start": 0,
|
||||||
|
"end": view.size(),
|
||||||
|
"content": content
|
||||||
|
})
|
||||||
|
|
||||||
|
def get_matching_view_from_local_path(path):
|
||||||
for window in sublime.windows():
|
for window in sublime.windows():
|
||||||
for view in window.views():
|
for view in window.views():
|
||||||
if view.file_name() == path:
|
if view.file_name() == path:
|
||||||
|
@ -53,29 +93,25 @@ def rowcol_to_region(view, start, end):
|
||||||
b = view.text_point(end[0], end[1])
|
b = view.text_point(end[0], end[1])
|
||||||
return sublime.Region(a, b)
|
return sublime.Region(a, b)
|
||||||
|
|
||||||
|
|
||||||
def plugin_loaded():
|
def plugin_loaded():
|
||||||
global _client
|
global _client
|
||||||
|
global _txt_change_listener
|
||||||
_client = CodempClient() # create an empty instance of the codemp client.
|
_client = CodempClient() # create an empty instance of the codemp client.
|
||||||
|
_txt_change_listener = CodempClientTextChangeListener() # instantiate the listener to attach around.
|
||||||
sublime_asyncio.acquire() # instantiate and start a global asyncio event loop.
|
sublime_asyncio.acquire() # instantiate and start a global asyncio event loop.
|
||||||
|
|
||||||
def plugin_unloaded():
|
def plugin_unloaded():
|
||||||
global _client
|
global _client
|
||||||
global _cursor_controller
|
global _cursor_controller
|
||||||
global _buffer_controller
|
global _buffers
|
||||||
global _txt_change_listener
|
global _txt_change_listener
|
||||||
for window in sublime.windows():
|
for buff in _buffers:
|
||||||
for view in window.views():
|
sublime_asyncio.dispatch(buff.detach(_client))
|
||||||
if view.settings().get("codemp_buffer", False):
|
|
||||||
sublime_asyncio.dispatch(_client.disconnect_buffer(view.file_name()))
|
|
||||||
del view.settings()["codemp_buffer"]
|
|
||||||
view.erase_regions("codemp_cursors")
|
|
||||||
|
|
||||||
if _cursor_controller:
|
if _cursor_controller:
|
||||||
_cursor_controller.drop_callback()
|
_cursor_controller.drop_callback()
|
||||||
|
|
||||||
if _buffer_controller:
|
|
||||||
_buffer_controller.drop_callback()
|
|
||||||
|
|
||||||
if _txt_change_listener:
|
if _txt_change_listener:
|
||||||
if _txt_change_listener.is_attached():
|
if _txt_change_listener.is_attached():
|
||||||
_txt_change_listener.detach()
|
_txt_change_listener.detach()
|
||||||
|
@ -85,11 +121,6 @@ def plugin_unloaded():
|
||||||
sublime_asyncio.dispatch(_client.leave_workspace())
|
sublime_asyncio.dispatch(_client.leave_workspace())
|
||||||
print("unloading")
|
print("unloading")
|
||||||
|
|
||||||
async def connect_command(server_host, session="default"):
|
|
||||||
global _client
|
|
||||||
status_log("Connecting to {}".format(server_host))
|
|
||||||
await _client.connect(server_host)
|
|
||||||
await join_workspace(session)
|
|
||||||
|
|
||||||
async def join_workspace(session):
|
async def join_workspace(session):
|
||||||
global _client
|
global _client
|
||||||
|
@ -97,43 +128,69 @@ async def join_workspace(session):
|
||||||
|
|
||||||
status_log("Joining workspace: {}".format(session))
|
status_log("Joining workspace: {}".format(session))
|
||||||
_cursor_controller = await _client.join(session)
|
_cursor_controller = await _client.join(session)
|
||||||
_cursor_controller.callback(move_cursor)
|
_cursor_controller.callback(move_cursor_cb)
|
||||||
|
|
||||||
async def share_buffer_command(buffer):
|
async def connect_command(server_host, session):
|
||||||
global _client
|
global _client
|
||||||
global _cursor_controller
|
status_log("Connecting to {}".format(server_host))
|
||||||
global _buffer_controller
|
await _client.connect(server_host)
|
||||||
global _txt_change_listener
|
await join_workspace(session)
|
||||||
|
|
||||||
status_log("Sharing buffer {}".format(buffer))
|
async def join_buffer_command(view, buffer_path):
|
||||||
|
global _client
|
||||||
|
global _buffers
|
||||||
|
|
||||||
view = get_matching_view(buffer)
|
try:
|
||||||
|
buffer = CodempSublimeBuffer(view.buffer(), buffer_path)
|
||||||
|
await buffer.attach(_client, apply_buffer_change_cb)
|
||||||
|
_buffers.append(buffer)
|
||||||
|
|
||||||
|
content = buffer.controller.get_content()
|
||||||
|
populate_view(view, content)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
sublime.error_message("Could not join buffer: {}".format(e))
|
||||||
|
return
|
||||||
|
|
||||||
|
view.window().focus_view(view)
|
||||||
|
view.set_status("z_codemp_buffer", "[Codemp]")
|
||||||
|
|
||||||
|
async def share_buffer_command(buffer_path, server_id = "test"):
|
||||||
|
global _client
|
||||||
|
global _buffers
|
||||||
|
|
||||||
|
status_log("Sharing buffer {}".format(buffer_path))
|
||||||
|
|
||||||
|
view = get_matching_view_from_local_path(buffer_path)
|
||||||
contents = get_contents(view)
|
contents = get_contents(view)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
await _client.create(buffer, contents)
|
await _client.create(server_id, contents)
|
||||||
|
|
||||||
_buffer_controller = await _client.attach(buffer)
|
buffer = CodempSublimeBuffer(view.buffer(), server_id)
|
||||||
# apply_buffer_change returns a "lambda" that internalises the buffer it is being called on.
|
await buffer.attach(_client, apply_buffer_change_cb)
|
||||||
_buffer_controller.callback(apply_buffer_change(view.buffer()))
|
|
||||||
|
|
||||||
# we create a new event listener and attach it to the shared buffer.
|
_buffers.append(buffer)
|
||||||
_txt_change_listener = CodempClientTextChangeListener()
|
|
||||||
_txt_change_listener.attach(view.buffer())
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
sublime.error_message("Could not share buffer: {}".format(e))
|
sublime.error_message("Could not share buffer: {}".format(e))
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# we need to focus the view to trigger the on_activate for the text
|
||||||
|
# change event listener attach
|
||||||
|
view.window().focus_view(view)
|
||||||
view.set_status("z_codemp_buffer", "[Codemp]")
|
view.set_status("z_codemp_buffer", "[Codemp]")
|
||||||
view.settings()["codemp_buffer"] = True
|
|
||||||
|
|
||||||
def move_cursor(cursor_event):
|
|
||||||
|
def move_cursor_cb(cursor_event):
|
||||||
global _regions_colors
|
global _regions_colors
|
||||||
|
# print("received cursor event", cursor_event.start, cursor_event.end, cursor_event.buffer)
|
||||||
|
|
||||||
# TODO: make the matching user/color more solid. now all users have one color cursor.
|
# TODO: make the matching user/color more solid. now all users have one color cursor.
|
||||||
# Maybe make all cursors the same color and only use annotations as a discriminant.
|
# Maybe make all cursors the same color and only use annotations as a discriminant.
|
||||||
view = get_matching_view(cursor_event.buffer)
|
# idea: use a user id hash map that maps to a color.
|
||||||
if view.settings().get("codemp_buffer", False):
|
buffer = get_matching_codemp_buffer_from_server_id(cursor_event.buffer)
|
||||||
|
if buffer:
|
||||||
|
view = buffer.buffer.primary_view()
|
||||||
reg = rowcol_to_region(view, cursor_event.start, cursor_event.end)
|
reg = rowcol_to_region(view, cursor_event.start, cursor_event.end)
|
||||||
reg_flags = sublime.RegionFlags.DRAW_EMPTY | sublime.RegionFlags.DRAW_NO_FILL
|
reg_flags = sublime.RegionFlags.DRAW_EMPTY | sublime.RegionFlags.DRAW_NO_FILL
|
||||||
|
|
||||||
|
@ -148,27 +205,48 @@ def move_cursor(cursor_event):
|
||||||
def send_cursor(view):
|
def send_cursor(view):
|
||||||
global _cursor_controller
|
global _cursor_controller
|
||||||
|
|
||||||
path = view.file_name()
|
server_id = get_matching_codemp_buffer_from_buffer_id(view.buffer_id()).server_id
|
||||||
region = view.sel()[0] # TODO: only the last placed cursor/selection.
|
region = view.sel()[0] # TODO: only the last placed cursor/selection.
|
||||||
start = view.rowcol(region.begin()) #only counts UTF8 chars
|
start = view.rowcol(region.begin()) #only counts UTF8 chars
|
||||||
end = view.rowcol(region.end())
|
end = view.rowcol(region.end())
|
||||||
|
|
||||||
_cursor_controller.send(path, start, end)
|
_cursor_controller.send(server_id, start, end)
|
||||||
|
|
||||||
|
def apply_buffer_change_cb(buffer):
|
||||||
|
def buffer_callback(text_change):
|
||||||
|
global _txt_change_listener
|
||||||
|
|
||||||
|
# In case a change arrives to a background buffer, just apply it. We are not listening on it.
|
||||||
|
# Otherwise, interrupt the listening to avoid echoing back the change just received.
|
||||||
|
is_active_view = buffer.view().window().active_view() == buffer.view()
|
||||||
|
if is_active_view:
|
||||||
|
_txt_change_listener.detach()
|
||||||
|
|
||||||
|
# we need to go through a sublime text command, since the method, view.replace
|
||||||
|
# needs an edit token, that is obtained only when calling a textcommand associated with a view.
|
||||||
|
view.run_command("codemp_replace_text", {
|
||||||
|
"start": text_change.start_incl,
|
||||||
|
"end": text_change.end_excl,
|
||||||
|
"content": text_change.content
|
||||||
|
})
|
||||||
|
if is_active_view:
|
||||||
|
_txt_change_listener.attach(buffer)
|
||||||
|
|
||||||
|
return buffer_callback
|
||||||
|
|
||||||
def send_buffer_change(buffer, changes):
|
def send_buffer_change(buffer, changes):
|
||||||
global _buffer_controller
|
codemp_buffer = get_matching_codemp_buffer_from_buffer_id(buffer.id())
|
||||||
|
|
||||||
view = buffer.primary_view()
|
view = buffer.primary_view()
|
||||||
start, txt, end = compress_changes(view, changes)
|
start, txt, end = compress_changes(view, changes)
|
||||||
|
|
||||||
# we can't use view.size() since now view has the already modified buffer,
|
# we can't use view.size() since now view has the already modified buffer,
|
||||||
# but we need to clip wrt the unmodified buffer.
|
# but we need to clip wrt the unmodified buffer.
|
||||||
contlen = len(_buffer_controller.get_content())
|
contlen = len(codemp_buffer.controller.get_content())
|
||||||
_buffer_controller.delta(max(0, start), txt, min(end, contlen))
|
codemp_buffer.controller.delta(max(0, start), txt, min(end, contlen))
|
||||||
|
|
||||||
time.sleep(0.1)
|
# time.sleep(0.1)
|
||||||
print("server buffer: -------")
|
# print("server buffer: -------")
|
||||||
print(_buffer_controller.get_content())
|
# print(codemp_buffer.controller.get_content())
|
||||||
|
|
||||||
def compress_changes(view, changes):
|
def compress_changes(view, changes):
|
||||||
# Sublime text on_text_changed events, gives a list of changes.
|
# Sublime text on_text_changed events, gives a list of changes.
|
||||||
|
@ -248,72 +326,39 @@ def walk_compress_changes(view, changes):
|
||||||
# print("[walking reg]", "[", reg_a, reg_b, "]")
|
# print("[walking reg]", "[", reg_a, reg_b, "]")
|
||||||
return reg_a, txt, reg_b
|
return reg_a, txt, reg_b
|
||||||
|
|
||||||
def apply_buffer_change(buffer):
|
|
||||||
status_log("registring callback for buffer: {}".format(buffer.primary_view().file_name()))
|
|
||||||
def buffer_callback(text_change):
|
|
||||||
global _skip_resend
|
|
||||||
# we need to go through a sublime text command, since the method, view.replace
|
|
||||||
# needs an edit token, that is obtained only when calling a textcommand associated with a view.
|
|
||||||
_skip_resend = True
|
|
||||||
view = buffer.primary_view()
|
|
||||||
view.run_command("codemp_replace_text",
|
|
||||||
{"start": text_change.start_incl,
|
|
||||||
"end": text_change.end_excl,
|
|
||||||
"content": text_change.content})
|
|
||||||
|
|
||||||
return buffer_callback
|
|
||||||
|
|
||||||
|
|
||||||
# Sublime interface
|
# Sublime interface
|
||||||
##############################################################################
|
##############################################################################
|
||||||
## WIP ##
|
|
||||||
# class CodempSublimeBuffer():
|
|
||||||
|
|
||||||
# def __init__(self, sublime_buffer):
|
|
||||||
# self.buffer = sublime_buffer
|
|
||||||
# self.controller =
|
|
||||||
# self.listener = CodempClientTextChangeListener()
|
|
||||||
# self.skip_resend = False
|
|
||||||
# self.codemp_callback = apply_buffer_change(sublime_buffer)
|
|
||||||
|
|
||||||
# def attach_sublime(self):
|
|
||||||
# self.listener.attach(self.buffer)
|
|
||||||
|
|
||||||
# def detach_sublime(self):
|
|
||||||
# self.listener.detach()
|
|
||||||
## WIP ##
|
|
||||||
|
|
||||||
class CodempClientViewEventListener(sublime_plugin.ViewEventListener):
|
class CodempClientViewEventListener(sublime_plugin.ViewEventListener):
|
||||||
@classmethod
|
@classmethod
|
||||||
def is_applicable(cls, settings):
|
def is_applicable(cls, settings):
|
||||||
return ("codemp_buffer" in settings)
|
# print("checking view applicability: ", settings.get("codemp_buffer", False))
|
||||||
|
return settings.get("codemp_buffer", False)
|
||||||
|
# return True
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def applies_to_primary_view_only(cls):
|
def applies_to_primary_view_only(cls):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def on_selection_modified_async(self):
|
def on_selection_modified_async(self):
|
||||||
global _cursor_controller
|
# pass
|
||||||
if _cursor_controller:
|
|
||||||
send_cursor(self.view)
|
send_cursor(self.view)
|
||||||
|
|
||||||
# def on_text_command(self, command, args):
|
# We only edit on one view at a time, therefore we only need one TextChangeListener
|
||||||
# global _txt_change_listener
|
# Each time we focus a view to write on it, we first attach the listener to that buffer.
|
||||||
# print(command, args)
|
# When we defocus, we detach it.
|
||||||
# if command == "codemp_replace_text":
|
def on_activated(self):
|
||||||
# print("detaching listener to :", self.view.file_name())
|
global _txt_change_listener
|
||||||
# _txt_change_listener.detach()
|
print("view {} activated".format(self.view.id()))
|
||||||
|
_txt_change_listener.attach(self.view.buffer())
|
||||||
|
|
||||||
# return None
|
def on_deactivated(self):
|
||||||
|
global _txt_change_listener
|
||||||
|
print("view {} deactivated".format(self.view.id()))
|
||||||
|
_txt_change_listener.detach()
|
||||||
|
|
||||||
# def on_post_text_command(self, command, args):
|
# def on_text_command(self, cmd, args):
|
||||||
# global _txt_change_listener
|
# print(cmd, args)
|
||||||
# print(command, args)
|
|
||||||
# if command == "codemp_replace_text":
|
|
||||||
# print("reattaching listener to: ", self.view.file_name())
|
|
||||||
# _text_change_listener.attach(self.view.buffer())
|
|
||||||
|
|
||||||
# return None
|
|
||||||
|
|
||||||
|
|
||||||
class CodempClientTextChangeListener(sublime_plugin.TextChangeListener):
|
class CodempClientTextChangeListener(sublime_plugin.TextChangeListener):
|
||||||
|
@ -324,35 +369,15 @@ class CodempClientTextChangeListener(sublime_plugin.TextChangeListener):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def on_text_changed_async(self, changes):
|
def on_text_changed_async(self, changes):
|
||||||
global _buffer_controller
|
|
||||||
global _skip_resend
|
|
||||||
if _skip_resend:
|
|
||||||
_skip_resend = False
|
|
||||||
return
|
|
||||||
|
|
||||||
if _buffer_controller:
|
|
||||||
send_buffer_change(self.buffer, changes)
|
send_buffer_change(self.buffer, changes)
|
||||||
|
|
||||||
class CodempReplaceTextCommand(sublime_plugin.TextCommand):
|
|
||||||
def run(self, edit, start, end, content):
|
|
||||||
# start included, end excluded
|
|
||||||
self.view.replace(edit, sublime.Region(start, end), content)
|
|
||||||
|
|
||||||
|
# Connect Command
|
||||||
|
#############################################################################
|
||||||
# See the proxy command class at the bottom
|
# See the proxy command class at the bottom
|
||||||
class CodempConnectCommand(sublime_plugin.WindowCommand):
|
class CodempConnectCommand(sublime_plugin.WindowCommand):
|
||||||
def run(self, server_host):
|
def run(self, server_host, session):
|
||||||
sublime_asyncio.dispatch(connect_command(server_host))
|
sublime_asyncio.dispatch(connect_command(server_host, session))
|
||||||
|
|
||||||
# see proxy command at the bottom
|
|
||||||
class CodempShareCommand(sublime_plugin.WindowCommand):
|
|
||||||
def run(self, buffer):
|
|
||||||
sublime_asyncio.dispatch(share_buffer_command(buffer))
|
|
||||||
|
|
||||||
class ProxyCodempConnectCommand(sublime_plugin.WindowCommand):
|
|
||||||
# on_window_command, does not trigger when called from the command palette
|
|
||||||
# See: https://github.com/sublimehq/sublime_text/issues/2234
|
|
||||||
def run(self, **kwargs):
|
|
||||||
self.window.run_command("codemp_connect", kwargs)
|
|
||||||
|
|
||||||
def input(self, args):
|
def input(self, args):
|
||||||
if 'server_host' not in args:
|
if 'server_host' not in args:
|
||||||
|
@ -361,20 +386,35 @@ class ProxyCodempConnectCommand(sublime_plugin.WindowCommand):
|
||||||
def input_description(self):
|
def input_description(self):
|
||||||
return 'Server host:'
|
return 'Server host:'
|
||||||
|
|
||||||
class ProxyCodempShareCommand(sublime_plugin.WindowCommand):
|
class ServerHostInputHandler(sublime_plugin.TextInputHandler):
|
||||||
# on_window_command, does not trigger when called from the command palette
|
def initial_text(self):
|
||||||
# See: https://github.com/sublimehq/sublime_text/issues/2234
|
return "http://127.0.0.1:50051"
|
||||||
def run(self, **kwargs):
|
|
||||||
self.window.run_command("codemp_share", kwargs)
|
def next_input(self, args):
|
||||||
|
if 'workspace' not in args:
|
||||||
|
return CodempWorkspaceInputHandler()
|
||||||
|
|
||||||
|
class CodempWorkspaceInputHandler(sublime_plugin.TextInputHandler):
|
||||||
|
def name(self):
|
||||||
|
return 'session'
|
||||||
|
def initial_text(self):
|
||||||
|
return "default"
|
||||||
|
|
||||||
|
# Share Command
|
||||||
|
#############################################################################
|
||||||
|
# see proxy command at the bottom
|
||||||
|
class CodempShareCommand(sublime_plugin.WindowCommand):
|
||||||
|
def run(self, sublime_buffer_path, server_id):
|
||||||
|
sublime_asyncio.dispatch(share_buffer_command(sublime_buffer_path, server_id))
|
||||||
|
|
||||||
def input(self, args):
|
def input(self, args):
|
||||||
if 'buffer' not in args:
|
if 'sublime_buffer' not in args:
|
||||||
return BufferInputHandler()
|
return SublimeBufferPathInputHandler()
|
||||||
|
|
||||||
def input_description(self):
|
def input_description(self):
|
||||||
return 'Share Buffer:'
|
return 'Share Buffer:'
|
||||||
|
|
||||||
class BufferInputHandler(sublime_plugin.ListInputHandler):
|
class SublimeBufferPathInputHandler(sublime_plugin.ListInputHandler):
|
||||||
def list_items(self):
|
def list_items(self):
|
||||||
ret_list = []
|
ret_list = []
|
||||||
|
|
||||||
|
@ -385,6 +425,74 @@ class BufferInputHandler(sublime_plugin.ListInputHandler):
|
||||||
|
|
||||||
return ret_list
|
return ret_list
|
||||||
|
|
||||||
class ServerHostInputHandler(sublime_plugin.TextInputHandler):
|
def next_input(self, args):
|
||||||
|
if 'server_id' not in args:
|
||||||
|
return ServerIdInputHandler()
|
||||||
|
|
||||||
|
class ServerIdInputHandler(sublime_plugin.TextInputHandler):
|
||||||
def initial_text(self):
|
def initial_text(self):
|
||||||
return "http://127.0.0.1:50051"
|
return "Buffer name on server"
|
||||||
|
# Join Command
|
||||||
|
#############################################################################
|
||||||
|
class CodempJoinCommand(sublime_plugin.WindowCommand):
|
||||||
|
def run(self, server_buffer):
|
||||||
|
view = self.window.new_file(flags=sublime.NewFileFlags.TRANSIENT)
|
||||||
|
sublime_asyncio.dispatch(join_buffer_command(view, server_buffer))
|
||||||
|
|
||||||
|
def input(self, args):
|
||||||
|
if 'server_buffer' not in args:
|
||||||
|
return ServerBufferInputHandler()
|
||||||
|
|
||||||
|
def input_description(self):
|
||||||
|
return 'Join Buffer:'
|
||||||
|
|
||||||
|
class ServerBufferInputHandler(sublime_plugin.TextInputHandler):
|
||||||
|
def initial_text(self):
|
||||||
|
return "What buffer should I join?"
|
||||||
|
|
||||||
|
# Replace Text Command
|
||||||
|
#############################################################################
|
||||||
|
# we call this command manually to have access to the edit token.
|
||||||
|
class CodempReplaceTextCommand(sublime_plugin.TextCommand):
|
||||||
|
def run(self, edit, start, end, content):
|
||||||
|
# start included, end excluded
|
||||||
|
self.view.replace(edit, sublime.Region(start, end), content)
|
||||||
|
|
||||||
|
# Proxy Commands ( NOT USED )
|
||||||
|
#############################################################################
|
||||||
|
# class ProxyCodempShareCommand(sublime_plugin.WindowCommand):
|
||||||
|
# # on_window_command, does not trigger when called from the command palette
|
||||||
|
# # See: https://github.com/sublimehq/sublime_text/issues/2234
|
||||||
|
# def run(self, **kwargs):
|
||||||
|
# self.window.run_command("codemp_share", kwargs)
|
||||||
|
#
|
||||||
|
# def input(self, args):
|
||||||
|
# if 'sublime_buffer' not in args:
|
||||||
|
# return SublimeBufferPathInputHandler()
|
||||||
|
#
|
||||||
|
# def input_description(self):
|
||||||
|
# return 'Share Buffer:'
|
||||||
|
#
|
||||||
|
# class ProxyCodempJoinCommand(sublime_plugin.WindowCommand):
|
||||||
|
# def run(self, **kwargs):
|
||||||
|
# self.window.run_command("codemp_join", kwargs)
|
||||||
|
#
|
||||||
|
# def input(self, args):
|
||||||
|
# if 'server_buffer' not in args:
|
||||||
|
# return ServerBufferInputHandler()
|
||||||
|
#
|
||||||
|
# def input_description(self):
|
||||||
|
# return 'Join Buffer:'
|
||||||
|
#
|
||||||
|
# class ProxyCodempConnectCommand(sublime_plugin.WindowCommand):
|
||||||
|
# # on_window_command, does not trigger when called from the command palette
|
||||||
|
# # See: https://github.com/sublimehq/sublime_text/issues/2234
|
||||||
|
# def run(self, **kwargs):
|
||||||
|
# self.window.run_command("codemp_connect", kwargs)
|
||||||
|
#
|
||||||
|
# def input(self, args):
|
||||||
|
# if 'server_host' not in args:
|
||||||
|
# return ServerHostInputHandler()
|
||||||
|
#
|
||||||
|
# def input_description(self):
|
||||||
|
# return 'Server host:'
|
||||||
|
|
Loading…
Reference in a new issue