Trans.nvim/lua/Trans/core/translate.lua

108 lines
2.2 KiB
Lua
Raw Normal View History

local Trans = require('Trans')
local util = Trans.util
2023-03-09 19:42:41 +08:00
2023-03-12 21:33:00 +08:00
local function init_opts(opts)
2023-03-09 19:42:41 +08:00
opts = opts or {}
2023-03-12 21:33:00 +08:00
opts.mode = opts.mode or ({
n = 'normal',
v = 'visual',
2023-03-11 11:32:13 +08:00
})[vim.api.nvim_get_mode().mode]
2023-03-12 21:33:00 +08:00
opts.str = util.get_str(opts.mode)
return opts
end
local function new_data(opts)
local mode = opts.mode
local str = opts.str
2023-03-09 19:42:41 +08:00
2023-03-12 09:56:31 +08:00
local strategy = Trans.conf.strategy[mode]
2023-03-12 21:33:00 +08:00
local data = {
str = str,
mode = mode,
2023-03-11 11:32:13 +08:00
result = {},
2023-03-09 19:42:41 +08:00
}
2023-03-12 21:33:00 +08:00
data.frontend = Trans.frontend[strategy.frontend].new()
data.backend = {}
for i, name in ipairs(strategy.backend) do
data.backend[i] = Trans.backend[name]
end
2023-03-09 19:42:41 +08:00
if util.is_English(str) then
data.from = 'en'
data.to = 'zh'
else
data.from = 'zh'
data.to = 'en'
end
2023-03-12 21:33:00 +08:00
-- FIXME : Check if the str is a word
data.is_word = true
return data
end
2023-03-09 19:42:41 +08:00
local function set_result(data)
2023-03-12 21:33:00 +08:00
-- HACK :Rewrite this function to support multi requests
local frontend = data.frontend
for _, backend in ipairs(data.backend) do
local name = backend.name
if backend.no_wait then
backend.query(data)
else
backend.query(data)
2023-03-12 21:33:00 +08:00
frontend:wait(data.result, name, backend.timeout)
end
2023-03-12 21:33:00 +08:00
if type(data.result[name]) == 'table' then break end
end
end
2023-03-11 11:32:13 +08:00
2023-03-12 21:33:00 +08:00
local function render_window(data)
2023-03-12 21:33:00 +08:00
-- TODO :
vim.pretty_print(data)
print('begin to render window')
end
2023-03-12 21:33:00 +08:00
2023-03-11 11:32:13 +08:00
-- HACK : Core process logic
local function process(opts)
Trans.translate = coroutine.wrap(process)
2023-03-12 21:33:00 +08:00
opts = init_opts(opts)
local str = opts.str
if not str or str == '' then return end
-- Find in cache
if Trans.cache[str] then
local data = Trans.cache[opts.str]
render_window(data)
return
end
2023-03-12 21:33:00 +08:00
local data = new_data(opts)
set_result(data)
local success = false
for _, v in pairs(data.result) do
if type(v) == "table" then
success = true
break
end
end
if success == false then return end
2023-03-12 21:33:00 +08:00
Trans.cache[data.str] = data
render_window(data)
2023-03-09 19:42:41 +08:00
end
return coroutine.wrap(process)