local lang = require("Module:languages").getByCode("tzm")
local export = {}
local pos_functions = {}
local function parse_qualifiers(quals, sense)
if quals == nil and sense == nil then
return nil
end
local qualifiers = { }
if quals ~= nil then
local list_quals = mw.text.split(quals, ',%s*')
for _, qual in ipairs(list_quals) do
table.insert(qualifiers, qual)
end
end
return table.concat(qualifiers, ", ")
end
-----------------------
-- Utility functions --
-----------------------
-- If Not Empty
local function ine(arg)
if arg == "" then
return nil
else
return arg
end
end
local function list_to_set(list)
local set = {}
for _, item in ipairs(list) do
set[item] = true
end
return set
end
-- version of mw.ustring.gsub() that discards all but the first return value
function rsub(term, foo, bar)
local retval = mw.ustring.gsub(term, foo, bar)
return retval
end
local function append_cat(data, pos)
table.insert(data.categories, lang:getCanonicalName() .. " " .. pos)
end
function remove_links(text)
text = rsub(text, "%[%[[^|%]]*|", "")
text = rsub(text, "%[%[", "")
text = rsub(text, "%]%]", "")
return text
end
local function make_unused_key_tracker(t)
local unused_keys = require "Module:table".listToSet(
require "Module:table".keysToList(t))
local mt = {
__index = function(_, key)
if key ~= nil then
unused_keys[key] = nil
end
return t[key]
end,
__newindex = function(_, key, value)
t[key] = value
end
}
local proxy_table = setmetatable({}, mt)
return proxy_table, unused_keys
end
-- The main entry point.
function export.show(frame)
local PAGENAME = mw.title.getCurrentTitle().text
local poscat = frame.args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
local args, unused_keys = make_unused_key_tracker(frame:getParent().args)
-- Gather parameters
local data = {
lang = lang,
pos_category = poscat,
categories = {},
heads = {},
translits = {},
genders = {},
inflections = { enable_auto_translit = true }
}
-- Gather parameters
local data = { lang = lang, pos_category = poscat, categories = {}, heads = {}, translits = {}, genders = {}, inflections = {} }
local saw_head = false
local head = ine(args["head"])
if head then
saw_head = true
else
head = PAGENAME
end
local translit = ine(args["tr"])
local i = 1
while head do
table.insert(data.heads, head)
data.translits[#data.heads] = translit
i = i + 1
head = ine(args["head" .. i])
if head then
saw_head = true
end
translit = ine(args["tr" .. i])
end
data.no_redundant_head_cat = not saw_head
if pos_functions[poscat] then
pos_functions[poscat].func(args, data)
end
local unused_key_list = require "Module:table".keysToList(unused_keys)
if #unused_key_list > 0 then
local unused_key_string = require "Module:array"(unused_key_list):map(
function(key)
return "|" .. key .. "=" .. args[key]
end) :concat("\n")
error("Unused arguments: " .. unused_key_string)
end
return require("Module:headword").full_headword(data)
end
local function getargs(args, argpref, defgender, position)
-- Gather parameters
local forms = {}
local form
if ine(args[position]) then
form = ine(args[position])
else
form = ine(args[argpref])
end
local translit = ine(args[argpref .. "tr"])
local gender = ine(args[argpref .. "g"])
local gender2 = ine(args[argpref .. "g2"])
local qualifiers = ine(args[argpref .. "q"])
local senses = ine(args[argpref .. "id"])
local i = 1
while form do
local genderlist = (gender or gender2) and { gender, gender2 } or
defgender and { defgender } or nil
table.insert(forms,
{ term = form, translit = translit, gender = genderlist, qualifiers = parse_qualifiers(qualifiers, senses) })
i = i + 1
form = ine(args[argpref .. i])
translit = ine(args[argpref .. i .. "tr"])
gender = ine(args[argpref .. i .. "g"])
gender2 = ine(args[argpref .. i .. "g2"])
qualifiers = ine(args[argpref .. i .. "q"])
senses = ine(args[argpref .. i .. "id"])
end
return forms
end
local function handle_infl(args, data, argpref, label, defgender, position)
local newinfls = getargs(args, argpref, defgender, position)
newinfls.label = label
if #newinfls > 0 then
table.insert(data.inflections, newinfls)
end
end
local function handle_all_infl(args, data, argpref, label, nobase, position)
if not nobase and argpref ~= "" then
handle_infl(args, data, argpref, label, nil, position)
end
local labelsp = label == "" and "" or label .. " "
handle_infl(args, data, argpref .. "cons", labelsp .. "construct state")
end
local function handle_noun_plural(args, data)
if args["pl"] == "-" then
table.insert(data.inflections, {
label = "thường là [[Phụ lục:Từ điển thuật ngữ#không đếm được|không đếm được]]"
})
append_cat(data, "Danh từ không đếm được trong")
else
handle_infl(args, data, "pl", "số nhiều")
end
end
local valid_genders = list_to_set({ "m", "f", "m-p", "f-p", "p" })
local function handle_gender(args, data, default, nonlemma)
local g = ine(args[1]) or default
local g2 = ine(args["g2"])
local function process_gender(gender)
if not gender then
table.insert(data.genders, "?")
elseif valid_genders[gender] then
table.insert(data.genders, gender)
else
error("Unrecognized gender: " .. gender)
end
end
process_gender(g)
if g2 then
process_gender(g2)
end
if nonlemma then
return
end
if g and g2 then
append_cat(data, "terms with multiple genders")
end
end
-- Part-of-speech functions
pos_functions["adjectives"] = {
func = function(args, data)
handle_all_infl(args, data, "", "")
handle_all_infl(args, data, "f", "giống cái")
handle_all_infl(args, data, "pl", "giống đực số nhiều")
handle_all_infl(args, data, "fpl", "giống cái số nhiều")
end
}
function handle_noun_infls(args, data, singonly)
handle_all_infl(args, data, "", "")
if not singonly then
handle_noun_plural(args, data)
handle_all_infl(args, data, "pl", "plural", "nobase")
end
handle_all_infl(args, data, "f", "giống cái")
handle_all_infl(args, data, "m", "giống đực")
end
pos_functions["Danh từ"] = {
func = function(args, data)
handle_gender(args, data)
handle_noun_infls(args, data)
end
}
pos_functions["Động từ"] = {
func = function(args, data)
data.pos_category = "Động từ"
handle_all_infl(args, data, "imperf", "chưa hoàn thành", nil, 1)
handle_all_infl(args, data, "perf", "hoàn thành", nil, 2)
end
}
pos_functions["Số"] = {
func = function(args, data)
append_cat(data, "Số đếm")
handle_gender(args, data)
handle_noun_infls(args, data)
end
}
pos_functions["Danh từ riêng"] = {
func = function(args, data)
handle_gender(args, data)
handle_noun_infls(args, data, "chỉ có số ít")
end
}
pos_functions["Đại từ"] = {
params = { ["g"] = {} },
func = function(args, data)
handle_gender(args, data)
handle_all_infl(args, data, "sa", "phụ tố chủ ngữ")
end
}
return export