Trans.nvim/lua/Trans/core/backend.lua

51 lines
1.2 KiB
Lua
Raw Normal View History

local Trans = require('Trans')
2023-03-14 18:17:07 +08:00
---@class TransBackend
2023-03-15 11:34:50 +08:00
---@field query fun(data: TransData)---@async
2023-03-14 18:17:07 +08:00
---@field opts TransBackendOpts
---@field no_wait? boolean whether need to wait for the result
---@field name string @backend name
2023-03-14 18:17:07 +08:00
local conf = Trans.conf
--- INFO :Parse online engine keys config file
local path = conf.dir .. '/Trans.json'
local file = io.open(path, "r")
2023-03-12 21:33:00 +08:00
local result = {}
if file then
local content = file:read("*a")
2023-03-12 21:33:00 +08:00
result = vim.json.decode(content) or result
file:close()
2023-03-12 21:33:00 +08:00
end
2023-03-14 18:17:07 +08:00
local default_opts = conf.backend.default
default_opts.__index = default_opts
---@class Trans
---@field backend table<string, TransBackend>
2023-03-12 21:33:00 +08:00
return setmetatable({}, {
__index = function(self, name)
2023-03-14 18:17:07 +08:00
---@type TransBackend
2023-03-12 21:33:00 +08:00
local backend = require('Trans.backend.' .. name)
2023-03-14 18:17:07 +08:00
if backend then
self[name] = backend
else
backend = self[name]
end
backend.opts = setmetatable(conf.backend[name] or {}, default_opts)
2023-03-14 18:17:07 +08:00
local private_opts = result[name]
if private_opts then
for k, v in pairs(private_opts) do
backend[k] = v
end
end
2023-03-12 21:33:00 +08:00
return backend
end
})