86 lines
2.2 KiB
Lua
Raw Normal View History

2023-03-13 19:50:28 +08:00
local Trans = require('Trans')
2023-03-14 18:17:07 +08:00
---@class TransData
---@field from string @Source language type
---@field to string @Target language type
---@field is_word boolean @Is the str a word
---@field str string @The original string
---@field mode string @The mode of the str
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
---@field trace table<string, string> debug message
2023-03-14 18:17:07 +08:00
---@field backends table<string, TransBackend>
2023-03-13 19:50:28 +08:00
local M = {}
M.__index = M
2023-03-14 18:17:07 +08:00
---TransData constructor
---@param opts table
2023-03-14 18:17:07 +08:00
---@return TransData
2023-03-13 19:50:28 +08:00
function M.new(opts)
local mode = opts.mode
local str = opts.str
local strategy = Trans.conf.strategy[mode]
2023-03-14 18:17:07 +08:00
local data = setmetatable({
2023-03-13 19:50:28 +08:00
str = str,
mode = mode,
result = {},
trace = {},
2023-03-14 18:17:07 +08:00
}, M)
2023-03-13 19:50:28 +08:00
2023-03-14 18:17:07 +08:00
data.frontend = Trans.frontend[strategy.frontend].new()
data.backends = {}
2023-03-13 19:50:28 +08:00
for i, name in ipairs(strategy.backend) do
2023-03-14 18:17:07 +08:00
data.backends[i] = Trans.backend[name]
2023-03-13 19:50:28 +08:00
end
if Trans.util.is_English(str) then
data.from = 'en'
data.to = 'zh'
else
data.from = 'zh'
data.to = 'en'
end
data.is_word = Trans.util.is_word(str)
2023-03-13 19:50:28 +08:00
2023-03-14 18:17:07 +08:00
return data
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
if result['offline'] then return result['offline'], 'offline' end
2023-03-15 14:30:01 +08:00
for _, backend in ipairs(self.backends) do
if result[backend.name] then
---@diagnostic disable-next-line: return-type-mismatch
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