refactor: backup

This commit is contained in:
JuanZoran 2023-09-08 22:44:23 +08:00
parent eb68b8bb95
commit 82779cc299
7 changed files with 105 additions and 62 deletions

View File

@ -71,7 +71,6 @@ if file then
end end
-- WARNING : [Breaking change] 'Trans.json' should use json object instead of array -- WARNING : [Breaking change] 'Trans.json' should use json object instead of array
---@class Trans ---@class Trans
---@field backend TransBackendCore ---@field backend TransBackendCore
return setmetatable(M, { return setmetatable(M, {

View File

@ -1,55 +1,39 @@
local Trans = require 'Trans' local Trans = require 'Trans'
---@class TransData: TransDataOption
---@class TransData ---@field mode string @The mode of the str
---@field from string @Source language type ---@field from string @Source language type
---@field to string @Target language type ---@field to string @Target language type
---@field is_word boolean @Is the str a word
---@field str string @The original string ---@field str string @The original string
---@field mode string @The mode of the str
---@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 is_word? boolean @Is the str a word
---@field trace table<string, string> debug message ---@field trace table<string, string> debug message
---@field backends TransBackend[] ---@field backends TransBackend[]
local M = {} local M = {}
M.__index = M M.__index = M
---TransData constructor ---TransData constructor
---@param opts table ---@param opts TransDataOption
---@return TransData ---@return TransData
function M.new(opts) function M.new(opts)
---@cast opts TransData
local mode = opts.mode local mode = opts.mode
local str = opts.str opts.result = {}
opts.trace = {}
local strategy = Trans.conf.strategy[mode] local strategy = Trans.conf.strategy[mode]
local data = setmetatable({
str = str,
mode = mode,
result = {},
trace = {},
}, M)
data.frontend = Trans.frontend[strategy.frontend].new() ---@cast opts TransData
data.backends = {} setmetatable(opts, M)
-- FIXME :
-- for i, name in ipairs(strategy.backend) do
-- data.backends[i] = Trans.backend[name]
-- end
if Trans.util.is_english(str) then -- NOTE : whether should we use the default strategy
data.from = 'en' opts.frontend = Trans.frontend[strategy.frontend].new()
data.to = 'zh' opts.backends = {}
else
data.from = 'zh'
data.to = 'en'
end
data.is_word = Trans.util.is_word(str) return opts
return data
end end
---@class TransResult ---@class TransResult
@ -69,12 +53,8 @@ end
---@return string? backend.name ---@return string? backend.name
function M:get_available_result() function M:get_available_result()
local result = self.result local result = self.result
if result['offline'] then return result['offline'], 'offline' end
for _, backend in ipairs(self.backends) do for _, backend in ipairs(self.backends) do
if result[backend.name] then if result[backend.name] then
---@diagnostic disable-next-line: return-type-mismatch
return result[backend.name], backend.name return result[backend.name], backend.name
end end
end end

8
lua/Trans/core/debug.lua Normal file
View File

@ -0,0 +1,8 @@
---@class Trans
---@field debug fun(message: string, level: number?)
return function (message, level)
level = level or vim.log.levels.INFO
-- TODO : custom messaage filter
vim.notify(message, level)
end

View File

@ -23,19 +23,31 @@ if Trans.conf.frontend.default then
default_frontend = vim.tbl_extend('force', default_frontend, Trans.conf.frontend.default) default_frontend = vim.tbl_extend('force', default_frontend, Trans.conf.frontend.default)
end end
local function empty_method(method)
return function() error('Method [' .. method .. '] not implemented') end
end
---@class TransFrontend ---@class TransFrontend
---@field opts? TransFrontendOpts options which user can set ---@field opts? TransFrontendOpts options which user can set
---@field get_active_instance fun():TransFrontend? ---@field get_active_instance fun():TransFrontend?
---@field process fun(self: TransFrontend, data: TransData) @render backend result
---@field wait fun(self: TransFrontend): fun(backend: TransBackend): boolean Update wait status ---@field wait fun(self: TransFrontend): fun(backend: TransBackend): boolean Update wait status
---@field execute fun(action: string) @Execute action for frontend instance ---@field execute fun(action: string) @Execute action for frontend instance
---@field fallback fun() @Fallback method when no result
---@field setup? fun() @Setup method for frontend [optional] **NOTE: This method will be called when frontend is first used** ---@field setup? fun() @Setup method for frontend [optional] **NOTE: This method will be called when frontend is first used**
local M = {
---@type fun() @Fallback method when no result
fallback = empty_method 'fallback',
---@type fun(self: TransFrontend, data: TransData) @render backend result
process = empty_method 'process',
}
---@class Trans ---@class Trans
---@field frontend TransFrontend ---@field frontend TransFrontend
return setmetatable({}, { return setmetatable(M, {
__index = function(self, name) __index = function(self, name)
---@type TransFrontend ---@type TransFrontend
local frontend = require('Trans.frontend.' .. name) local frontend = require('Trans.frontend.' .. name)

7
lua/Trans/core/init.lua Normal file
View File

@ -0,0 +1,7 @@
-- Return Core module
local M = {}
return M

View File

@ -1,22 +1,43 @@
local Trans = require 'Trans' local Trans = require 'Trans'
-- HACK : Core process logic
local function process(opts) local function process(opts)
opts = opts or {} opts = opts or {}
opts.mode = opts.mode or vim.fn.mode() opts.mode = opts.mode or vim.fn.mode()
local str = Trans.util.get_str(opts.mode) local str = Trans.util.get_str(opts.mode)
opts.str = str opts.str = str
if not str or str == '' then return end
if not str or str == '' then
Trans.debug 'No string to translate'
return
end
if opts.from == nil and opts.to == nil then
-- INFO : Default support [zh -> en] or [en -> zh]
if Trans.util.is_english(str) then
opts.from = 'en'
opts.to = 'zh'
else
opts.from = 'zh'
opts.to = 'en'
end
end
assert(opts.from and opts.to, 'opts.from and opts.to must be set at the same time')
opts.is_word = opts.is_word or Trans.util.is_word(str)
-- Find in cache -- Find in cache
if Trans.cache[str] then if Trans.cache[str] then
local data = Trans.cache[str] local data = Trans.cache[str]
data.frontend:process(data) return data.frontend:process(data)
return
end end
-- Create new data
local data = Trans.data.new(opts) local data = Trans.data.new(opts)
if Trans.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
@ -26,9 +47,18 @@ local function process(opts)
end end
end end
---@class Trans
---@field translate fun(opts: { frontend: string?, mode: string?}?) Translate string core function
return function(opts) ---@class TransDataOption
coroutine.wrap(process)(opts) ---@field mode string?
end ---@field frontend string?
---@field from string? @Source language type
---@field to string? @Target language type
---@field is_word? boolean @Is the str a word
--- NOTE : Use coroutine to stop and resume the process (for animation)
---@class Trans
---@field translate fun(opts: TransDataOption?) Translate string core function
return function(...) coroutine.wrap(process)(...) end

View File

@ -51,7 +51,7 @@ function M.get_lines()
return vim.fn.getline(s_row) return vim.fn.getline(s_row)
else else
local lines = vim.fn.getline(s_row, e_row) local lines = vim.fn.getline(s_row, e_row)
return table.concat(lines, " ") return table.concat(lines, ' ')
end end
end end
@ -224,6 +224,13 @@ function M.list_fields(list, field)
return ret return ret
end end
-- function M.checker(method, ...)
-- -- TODO :Use function programming to simplify the code
-- local params = { ... }
-- end
---@class Trans ---@class Trans
---@field util TransUtil ---@field util TransUtil
return M return M