66 lines
1.9 KiB
Lua
Raw Normal View History

2023-03-24 00:56:36 +08:00
local Trans = require 'Trans'
2023-03-13 19:50:28 +08:00
2023-09-08 22:44:23 +08:00
---@class TransData: TransDataOption
---@field mode string @The mode of the str
2023-03-14 18:17:07 +08:00
---@field from string @Source language type
---@field to string @Target language type
---@field str string @The original string
2023-03-15 20:57:28 +08:00
---@field result table<string, TransResult|nil|false> @The result of the translation
2023-03-14 18:17:07 +08:00
---@field frontend TransFrontend
2023-09-08 22:44:23 +08:00
---@field is_word? boolean @Is the str a word
---@field trace table<string, string> debug message
2023-05-06 11:38:37 +08:00
---@field backends TransBackend[]
2023-03-13 19:50:28 +08:00
local M = {}
M.__index = M
2023-03-14 18:17:07 +08:00
---TransData constructor
2023-09-08 22:44:23 +08:00
---@param opts TransDataOption
2023-03-14 18:17:07 +08:00
---@return TransData
2023-03-13 19:50:28 +08:00
function M.new(opts)
2023-03-14 18:17:07 +08:00
2023-09-08 22:44:23 +08:00
---@cast opts TransData
local mode = opts.mode
opts.result = {}
opts.trace = {}
2023-03-24 00:56:36 +08:00
local strategy = Trans.conf.strategy[mode]
2023-03-13 19:50:28 +08:00
2023-09-08 22:44:23 +08:00
---@cast opts TransData
setmetatable(opts, M)
2023-07-13 10:15:38 +08:00
2023-03-13 19:50:28 +08:00
2023-09-08 22:44:23 +08:00
-- NOTE : whether should we use the default strategy
opts.frontend = Trans.frontend[strategy.frontend].new()
opts.backends = {}
2023-03-13 19:50:28 +08:00
2023-09-08 22:44:23 +08:00
return opts
2023-03-13 19:50:28 +08:00
end
2023-03-14 18:17:07 +08:00
---@class TransResult
---@field str? string? @The original string
2023-03-14 18:17:07 +08:00
---@field title table | string @table: {word, phonetic, oxford, collins}
---@field tag string[]? @array of tags
---@field pos table<string, string>? @table: {name, value}
---@field exchange table<string, string>? @table: {name, value}
---@field definition? string[]? @array of definitions
---@field translation? string[]? @array of translations
---@field web? table<string, string[]>[]? @web definitions
---@field explains? string[]? @basic explains
2023-03-14 18:17:07 +08:00
2023-03-14 13:18:53 +08:00
---Get the first available result [return nil if no result]
---@return TransResult | false?
---@return string? backend.name
2023-03-14 13:18:53 +08:00
function M:get_available_result()
local result = self.result
2023-03-15 14:30:01 +08:00
for _, backend in ipairs(self.backends) do
if result[backend.name] then
return result[backend.name], backend.name
2023-03-14 13:18:53 +08:00
end
end
end
2023-03-14 18:17:07 +08:00
---@class Trans
---@field data TransData
2023-03-13 19:50:28 +08:00
return M