fix: query strategy
This commit is contained in:
parent
ab212fefe1
commit
f17171d28b
@ -18,8 +18,6 @@ local M = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
---@param data any
|
---@param data any
|
||||||
---@return any
|
|
||||||
---@overload fun(TransData): TransResult
|
|
||||||
function M.query(data)
|
function M.query(data)
|
||||||
if data.is_word == false or data.from == 'zh' then
|
if data.is_word == false or data.from == 'zh' then
|
||||||
return
|
return
|
||||||
@ -34,6 +32,7 @@ function M.query(data)
|
|||||||
data.result.offline = res and M.formatter(res) or false
|
data.result.offline = res and M.formatter(res) or false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- this is a awesome plugin
|
-- this is a awesome plugin
|
||||||
M.query_field = {
|
M.query_field = {
|
||||||
'word',
|
'word',
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
local Trans = require 'Trans'
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
|
|
||||||
---@class TransBackend
|
---@class TransBackend
|
||||||
---@field no_wait? boolean whether need to wait for the result
|
---@field no_wait? boolean whether need to wait for the result
|
||||||
---@field all_name string[] @all backend name
|
|
||||||
---@field name string @backend name
|
---@field name string @backend name
|
||||||
---@field name_zh string @backend name in Chinese
|
---@field name_zh string @backend name in Chinese
|
||||||
|
|
||||||
@ -15,6 +13,9 @@ local Trans = require 'Trans'
|
|||||||
---@field header? table<string, string> | fun(data: TransData): table<string, string> @request header
|
---@field header? table<string, string> | fun(data: TransData): table<string, string> @request header
|
||||||
---@field debug? fun(body: table?) @debug
|
---@field debug? fun(body: table?) @debug
|
||||||
|
|
||||||
|
---@class TransOfflineBackend: TransBackend
|
||||||
|
---@field query fun(data: TransData)
|
||||||
|
---@field query_field string[] @query field
|
||||||
|
|
||||||
local conf = Trans.conf
|
local conf = Trans.conf
|
||||||
--- INFO :Parse online engine keys config file
|
--- INFO :Parse online engine keys config file
|
||||||
@ -29,8 +30,10 @@ if file then
|
|||||||
file:close()
|
file:close()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local all_name = {
|
||||||
|
'offline', -- default backend
|
||||||
|
}
|
||||||
|
|
||||||
local all_name = {}
|
|
||||||
for _, config in ipairs(user_conf) do
|
for _, config in ipairs(user_conf) do
|
||||||
if not config.disable then
|
if not config.disable then
|
||||||
all_name[#all_name + 1] = config.name
|
all_name[#all_name + 1] = config.name
|
||||||
@ -38,22 +41,58 @@ for _, config in ipairs(user_conf) do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---@class TransBackends
|
---@class TransBackends
|
||||||
---@field all_name string[] all backend names
|
---@field all_name string[] all backend names
|
||||||
|
local M = {
|
||||||
|
all_name = all_name,
|
||||||
|
}
|
||||||
|
|
||||||
|
---Template method for online query
|
||||||
|
---@param data TransData @data
|
||||||
|
---@param backend TransOnlineBackend @backend
|
||||||
|
function M.do_query(data, backend)
|
||||||
|
local name = backend.name
|
||||||
|
local uri = backend.uri
|
||||||
|
local method = backend.method
|
||||||
|
local formatter = backend.formatter
|
||||||
|
local query = backend.get_query(data)
|
||||||
|
local header = type(backend.header) == 'function' and backend.header(data) or backend.header
|
||||||
|
|
||||||
|
local function handle(output)
|
||||||
|
local status, body = pcall(vim.json.decode, output.body)
|
||||||
|
if not status or not body then
|
||||||
|
if not Trans.conf.debug then
|
||||||
|
backend.debug(body)
|
||||||
|
data.trace[name] = output
|
||||||
|
end
|
||||||
|
|
||||||
|
data.result[name] = false
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
data.result[name] = formatter(body, data)
|
||||||
|
end
|
||||||
|
|
||||||
|
Trans.curl[method](uri, {
|
||||||
|
query = query,
|
||||||
|
callback = handle,
|
||||||
|
header = header,
|
||||||
|
})
|
||||||
|
-- Hook ?
|
||||||
|
end
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field backend TransBackends
|
---@field backend TransBackends
|
||||||
return setmetatable({
|
return setmetatable(M, {
|
||||||
all_name = all_name,
|
|
||||||
}, {
|
|
||||||
__index = function(self, name)
|
__index = function(self, name)
|
||||||
---@type TransBackend
|
---@type TransBackend
|
||||||
local backend = require('Trans.backend.' .. name)
|
local backend = require('Trans.backend.' .. name)
|
||||||
|
|
||||||
for key, value in pairs(user_conf[name] or {}) do
|
if user_conf[name] then
|
||||||
|
for key, value in pairs(user_conf[name]) do
|
||||||
backend[key] = value
|
backend[key] = value
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
self[name] = backend
|
self[name] = backend
|
||||||
return backend
|
return backend
|
||||||
|
@ -10,7 +10,7 @@ local Trans = require 'Trans'
|
|||||||
---@field result table<string, TransResult|nil|false> @The result of the translation
|
---@field result table<string, TransResult|nil|false> @The result of the translation
|
||||||
---@field frontend TransFrontend
|
---@field frontend TransFrontend
|
||||||
---@field trace table<string, string> debug message
|
---@field trace table<string, string> debug message
|
||||||
---@field backends table<string, TransBackend>
|
---@field backends TransBackend[]
|
||||||
local M = {}
|
local M = {}
|
||||||
M.__index = M
|
M.__index = M
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
local Trans = require 'Trans'
|
local Trans = require 'Trans'
|
||||||
local frontend_opts = Trans.conf.frontend
|
local frontend_opts = Trans.conf.frontend
|
||||||
|
|
||||||
|
|
||||||
---@class TransFrontend
|
---@class TransFrontend
|
||||||
---@field opts TransFrontendOpts
|
---@field opts TransFrontendOpts
|
||||||
---@field get_active_instance fun():TransFrontend?
|
---@field get_active_instance fun():TransFrontend?
|
||||||
|
@ -1,80 +1,12 @@
|
|||||||
local Trans = require 'Trans'
|
local Trans = require 'Trans'
|
||||||
local util = Trans.util
|
|
||||||
|
|
||||||
local function init_opts(opts)
|
|
||||||
opts = opts or {}
|
|
||||||
opts.mode = opts.mode or vim.fn.mode()
|
|
||||||
opts.str = util.get_str(opts.mode)
|
|
||||||
return opts
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
---To Do Online Query
|
|
||||||
---@param data TransData @data
|
|
||||||
---@param backend TransOnlineBackend @backend
|
|
||||||
local function do_query(data, backend)
|
|
||||||
-- TODO : template method for online query
|
|
||||||
local name = backend.name
|
|
||||||
local uri = backend.uri
|
|
||||||
local method = backend.method
|
|
||||||
local formatter = backend.formatter
|
|
||||||
local query = backend.get_query(data)
|
|
||||||
local header = type(backend.header) == 'function' and backend.header(data) or backend.header
|
|
||||||
|
|
||||||
local function handle(output)
|
|
||||||
local status, body = pcall(vim.json.decode, output.body)
|
|
||||||
if not status or not body then
|
|
||||||
if not Trans.conf.debug then
|
|
||||||
backend.debug(body)
|
|
||||||
data.trace[name] = output
|
|
||||||
end
|
|
||||||
|
|
||||||
data.result[name] = false
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
-- vim.print(data.result[name])
|
|
||||||
data.result[name] = formatter(body, data)
|
|
||||||
end
|
|
||||||
|
|
||||||
Trans.curl[method](uri, {
|
|
||||||
query = query,
|
|
||||||
callback = handle,
|
|
||||||
header = header,
|
|
||||||
})
|
|
||||||
-- Hook ?
|
|
||||||
end
|
|
||||||
|
|
||||||
---@type table<string, fun(data: TransData):boolean>
|
|
||||||
local strategy = {
|
|
||||||
fallback = function(data)
|
|
||||||
local result = data.result
|
|
||||||
Trans.backend.offline.query(data)
|
|
||||||
|
|
||||||
if result.offline then return true end
|
|
||||||
|
|
||||||
local update = data.frontend:wait()
|
|
||||||
for _, backend in ipairs(data.backends) do
|
|
||||||
do_query(data, backend)
|
|
||||||
|
|
||||||
local name = backend.name
|
|
||||||
---@cast backend TransBackend
|
|
||||||
while result[name] == nil and update(backend) do
|
|
||||||
end
|
|
||||||
|
|
||||||
if result[name] then return true end
|
|
||||||
end
|
|
||||||
|
|
||||||
return false
|
|
||||||
end,
|
|
||||||
--- TODO :More Strategys
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- HACK : Core process logic
|
-- HACK : Core process logic
|
||||||
local function process(opts)
|
local function process(opts)
|
||||||
opts = init_opts(opts)
|
opts = opts or {}
|
||||||
local str = opts.str
|
opts.mode = opts.mode or vim.fn.mode()
|
||||||
|
local str = Trans.util.get_str(opts.mode)
|
||||||
|
opts.str = str
|
||||||
|
|
||||||
if not str or str == '' then return end
|
if not str or str == '' then return end
|
||||||
|
|
||||||
|
|
||||||
@ -86,7 +18,7 @@ local function process(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local data = Trans.data.new(opts)
|
local data = Trans.data.new(opts)
|
||||||
if strategy[data.frontend.opts.query](data) then
|
if Trans.strategy[data.frontend.opts.query](data) then
|
||||||
Trans.cache[data.str] = data
|
Trans.cache[data.str] = data
|
||||||
data.frontend:process(data)
|
data.frontend:process(data)
|
||||||
else
|
else
|
||||||
@ -94,9 +26,9 @@ local function process(opts)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field translate fun(opts: { frontend: string?, mode: string?}?) Translate string core function
|
---@field translate fun(opts: { frontend: string?, mode: string?}?) Translate string core function
|
||||||
|
|
||||||
return function(opts)
|
return function(opts)
|
||||||
coroutine.wrap(process)(opts)
|
coroutine.wrap(process)(opts)
|
||||||
end
|
end
|
||||||
|
@ -5,9 +5,11 @@ local strategy = {
|
|||||||
pageup = function(hover)
|
pageup = function(hover)
|
||||||
hover.buffer:normal 'gg'
|
hover.buffer:normal 'gg'
|
||||||
end,
|
end,
|
||||||
|
|
||||||
pagedown = function(hover)
|
pagedown = function(hover)
|
||||||
hover.buffer:normal 'G'
|
hover.buffer:normal 'G'
|
||||||
end,
|
end,
|
||||||
|
|
||||||
pin = function(hover)
|
pin = function(hover)
|
||||||
if hover.pin then
|
if hover.pin then
|
||||||
return
|
return
|
||||||
@ -27,9 +29,11 @@ local strategy = {
|
|||||||
|
|
||||||
window:set('wrap', true)
|
window:set('wrap', true)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
close = function(hover)
|
close = function(hover)
|
||||||
hover:destroy()
|
hover:destroy()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
toggle_entry = function(hover)
|
toggle_entry = function(hover)
|
||||||
if api.nvim_get_current_win() ~= hover.window.winid then
|
if api.nvim_get_current_win() ~= hover.window.winid then
|
||||||
api.nvim_set_current_win(hover.window.winid)
|
api.nvim_set_current_win(hover.window.winid)
|
||||||
@ -48,6 +52,12 @@ local strategy = {
|
|||||||
---@class TransHover
|
---@class TransHover
|
||||||
---@field execute fun(hover: TransHover, action: string)
|
---@field execute fun(hover: TransHover, action: string)
|
||||||
return function(hover, action)
|
return function(hover, action)
|
||||||
-- TODO :
|
return strategy[action](hover)
|
||||||
strategy[action](hover)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- This function will be called within coroutine, so we can't use __call
|
||||||
|
-- return setmetatable(strategy, {
|
||||||
|
-- __call = function(_, hover, action)
|
||||||
|
-- return strategy[action](hover)
|
||||||
|
-- end,
|
||||||
|
-- })
|
||||||
|
@ -19,7 +19,11 @@ local M = Trans.metatable('frontend.hover', {
|
|||||||
M.__index = M
|
M.__index = M
|
||||||
|
|
||||||
|
|
||||||
---Set up function which will be invoked when this module is loaded
|
--[[
|
||||||
|
Set up function which will be invoked when this module is loaded
|
||||||
|
|
||||||
|
Because the options are not loaded yet when this module is loaded
|
||||||
|
--]]
|
||||||
function M.setup()
|
function M.setup()
|
||||||
local set = vim.keymap.set
|
local set = vim.keymap.set
|
||||||
for action, key in pairs(M.opts.keymaps) do
|
for action, key in pairs(M.opts.keymaps) do
|
||||||
@ -89,6 +93,9 @@ end
|
|||||||
function M:init_window(opts)
|
function M:init_window(opts)
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
local m_opts = self.opts
|
local m_opts = self.opts
|
||||||
|
|
||||||
|
|
||||||
|
---@format disable-next
|
||||||
local option = {
|
local option = {
|
||||||
buffer = self.buffer,
|
buffer = self.buffer,
|
||||||
animation = m_opts.animation,
|
animation = m_opts.animation,
|
||||||
|
@ -32,9 +32,11 @@ local sep = system == 'win' and '\\\\' or '/'
|
|||||||
---@field plugin_dir string @Plugin directory
|
---@field plugin_dir string @Plugin directory
|
||||||
---@field separator string @Path separator
|
---@field separator string @Path separator
|
||||||
---@field system 'mac'|'win'|'termux'|'linux' @Path separator
|
---@field system 'mac'|'win'|'termux'|'linux' @Path separator
|
||||||
|
---@field strategy table<string, fun(data: TransData):boolean> Translate string core function
|
||||||
local M = metatable('core', {
|
local M = metatable('core', {
|
||||||
cache = {},
|
cache = {},
|
||||||
style = metatable 'style',
|
style = metatable 'style',
|
||||||
|
strategy = metatable 'strategy',
|
||||||
separator = sep,
|
separator = sep,
|
||||||
system = system,
|
system = system,
|
||||||
plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. sep .. 'Trans'),
|
plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. sep .. 'Trans'),
|
||||||
|
27
lua/Trans/strategy/fallback.lua
Normal file
27
lua/Trans/strategy/fallback.lua
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
---Fallback query strategy
|
||||||
|
---@param data TransData
|
||||||
|
---@return boolean @true if query success
|
||||||
|
return function(data)
|
||||||
|
local result = data.result
|
||||||
|
local update
|
||||||
|
for _, backend in ipairs(data.backends) do
|
||||||
|
local name = backend.name
|
||||||
|
|
||||||
|
if backend.no_wait then
|
||||||
|
---@cast backend TransOfflineBackend
|
||||||
|
backend.query(data)
|
||||||
|
else
|
||||||
|
---@cast backend TransOnlineBackend
|
||||||
|
require 'Trans'.backend.do_query(data, backend)
|
||||||
|
update = update or data.frontend:wait()
|
||||||
|
|
||||||
|
while result[name] == nil and update(backend) do
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@cast backend TransBackend
|
||||||
|
if result[name] then return true end
|
||||||
|
end
|
||||||
|
|
||||||
|
return false
|
||||||
|
end
|
@ -393,14 +393,6 @@ return {
|
|||||||
'◉',
|
'◉',
|
||||||
'◎'
|
'◎'
|
||||||
},
|
},
|
||||||
star = {
|
|
||||||
'✶',
|
|
||||||
'✸',
|
|
||||||
'✹',
|
|
||||||
'✺',
|
|
||||||
'✹',
|
|
||||||
'✷'
|
|
||||||
},
|
|
||||||
star2 = {
|
star2 = {
|
||||||
'+',
|
'+',
|
||||||
'x',
|
'x',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user