codemp-nvim/lua/codemp/init.lua

77 lines
2.3 KiB
Lua
Raw Permalink Normal View History

---@class WorkspaceReference
---@field name string
---@field owned boolean
if CODEMP == nil then
---@class CodempGlobal
---@field rt? RuntimeDriver background codemp runtime
---@field client? Client currently connected client
---@field workspace? Workspace current active workspace
---@field available WorkspaceReference[] available workspaces to connect to
---@field timer? any libuv timer
---@field config Config codemp configuration
2024-09-25 04:00:46 +02:00
---@field following string | nil
---@field ignore_following_action boolean TODO a more elegant solution?
---@field setup fun(opts: Config): nil update config and setup plugin
CODEMP = {
rt = nil,
native = nil,
2024-09-06 03:44:18 +02:00
timer = nil,
available = {},
2024-09-25 04:00:46 +02:00
following = nil,
ignore_following_action = false,
config = {
neo_tree = false,
timer_interval = 20,
2024-09-06 03:53:52 +02:00
debug = false,
username = "",
password = "",
},
setup = function (opts)
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
-- register logger
2024-09-17 23:49:58 +02:00
CODEMP.native.setup_tracing(CODEMP.config.debug_file or print, CODEMP.config.debug)
-- start background runtime, with stop event
2024-09-17 23:48:53 +02:00
CODEMP.rt = CODEMP.native.setup_driver() -- spawn thread to drive tokio runtime
vim.api.nvim_create_autocmd(
{"ExitPre"},
{
callback = function (_ev)
if CODEMP.client ~= nil then
print(" xx disconnecting codemp client")
CODEMP.client = nil -- drop reference so it gets garbage collected
end
CODEMP.rt:stop()
end
}
)
CODEMP.timer = vim.loop.new_timer()
CODEMP.timer:start(CODEMP.config.timer_interval, CODEMP.config.timer_interval, function()
while true do
2024-09-18 00:39:52 +02:00
local cb, arg = CODEMP.native.poll_callback()
if cb == nil then break end
if cb == false then
error(arg)
else
vim.schedule(function() cb(arg) end)
end
end
end)
require('codemp.command') -- not really related but should only happen once
require('codemp.utils').setup_colors() -- create highlight groups for users
end
}
end
if CODEMP.native == nil then
CODEMP.native = require('codemp.loader').load() -- make sure we can load the native library correctly, otherwise no point going forward
if CODEMP.native == nil then
print(" !! could not load native bindings, try reloading")
2024-09-17 19:48:53 +02:00
return CODEMP
end
end
return CODEMP