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

57 lines
1.3 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
---@field no_wait? boolean whether need to wait for the result
---@field all_name string[] @all backend name
---@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
local all_name = {}
for name, opts in pairs(result) do
if opts.disable then
result[name] = nil
else
all_name[#all_name + 1] = name
end
end
2023-03-14 18:17:07 +08:00
---@class Trans
---@field backend table<string, TransBackend>
return setmetatable({
all_name = Trans.conf.backend_order or all_name,
}, {
2023-03-12 21:33:00 +08:00
__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
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
})