Module:Hani-sortkey
- පහත දැක්වෙන උපදෙස්, Module:Hani-sortkey/documentation හි පිහිටා ඇත. Module:Hani-sortkey/documentation]]. [සංස්කරණය]
- ප්රයෝජනවත් සබැඳි: උප පිටු ලැයිස්තුව • සබැඳි • transclusions • testcases • sandbox (වෙනස)
This module will sort text in the හන් අක්ෂරක්රමය. It is used to sort Ai-Cham, Southern Amami Ōshima, Central Bai, Panyi Bai, Southern Bai, Biao-Jiao Mien, Biyo, Eastern Min, Jin, මැන්ඩරීන්, Northern Pinghua, Chinese Pidgin English, Puxian Min, Macau Pidgin Portuguese, Southern Pinghua, Huizhou, Central Min, Dungan, Daur, E, Gan, Hakka, Yemaek, Xiang, ජපන්, Hachijō, Kikai, Lama Bai, Middle Chinese, Literary Chinese, Jie, Rouran, Tuyuhun, Tuoba, Wuhuan, Xianbei, Middle Vietnamese, Caolan, Northern Min, සර්ව භාෂාමය, Miyako, Min Nan, Datian Min, Hokkien, Hailufeng Min, Hainanese, Longyan Min, Leizhou Min, Teochew, Zhenan Min, Sanxiang Min, Nùng, Old Chinese, Old Japanese, Okinoerabu, Old Uyghur, Bouyei, Baekje, Northern Amami Ōshima, Yaeyama, Okinawan, Sui, Bailang, Tokunoshima, Alchuka, Bala, Kyakala, Tày, වියට්නාම, Wu, Waxiang, Classical Tibetan, Middle Mongol, Buyeo, Kunigami, Yonaguni, Yoron, කැන්ටනීස්, Zhuang, Zauzou, චීන, Shaozhou Tuhua, Sichuanese, Taishanese, Goguryeo, Zakhring, Khitan, සහ Gaya.
The module should preferably not be called directly from templates or other modules.
To use it from a template, use {{sortkey}}
.
Within a module, use Module:languages#Language:makeSortKey.
For testcases, see Module:Hani-sortkey/testcases.
Functions
makeSortKey(text, lang, sc)
- Generates a sortkey for a given piece of
text
written in the script specified by the codesc
, and language specified by the codelang
. - When the sort fails, returns
nil
.
The demonstration functions that generated the content shown below are housed in Module:Hani-sortkey/templates. Modifications to the module can be tested in Module:Hani-sortkey/sandbox. Sortkeys for individual characters are retrieved from one of 178 data modules. Module:Hani-sortkey/data creates documentation for these modules.
Show sortkeys
[සංස්කරණය]- PS/2接口 (
PS/2手08口00
) - gas爐 (
gas火16
) - γ粒子 (
γ米05子00
) - 命裡有時終須有,命裡無時莫強求 (
口05衣07月02日06糸05頁03月02,口05衣07火08日06艸07弓08水02
) - 得個……字 (
彳08人08……子03
) - 濕𣲷𣲷 (
水14水05水05
) - 赛车 (
貝10車00
)
- 鿪 (
火13
)
- 九 (
乙01
) - 𡆔 (
口23
) - 𡎇 (
土09
) - 阿坝 (
阜05土04
)
Ideographic description sequences
[සංස්කරණය]- ⿰亻革 (
⿰人00革00
) - ⿰亻革家語 (
⿰人00革00宀07言07
) - ⿺辶⿳穴⿲月⿱⿲幺言幺⿲長馬長刂心⿺辶⿳穴⿲月⿱⿲幺言幺⿲長馬長刂心麵 (
⿺辵00⿳穴00⿲月00⿱⿲幺00言00幺00⿲長00馬00長00刀00心00⿺辵00⿳穴00⿲月00⿱⿲幺00言00幺00⿲長00馬00長00刀00心00麥09
)
Show data modules
[සංස්කරණය]local export = {}
local codepoint = require("Module:string/codepoint")
local concat = table.concat
local explode_utf8 = require("Module:string utilities").explode_utf8
local insert = table.insert
local u = require("Module:string/char")
local m_data = require("Module:Hani-sortkey/data/serialized")
local m_data_core = mw.loadData("Module:Hani-sortkey/data/core")
local cache = {}
--[[
Returns the index in the string where the ideographic description sequence
(IDS) ends, or the index of the end of the string. Iterates whenever
another ideographic description character (IDC) is found.
]]
local function findEndOfIDS(text, IDchar, i)
if not (text and IDchar and i) then
return nil
end
local j = i
local component = 1
-- Number of components expected after current IDC.
local components = m_data_core.ids[IDchar]
while component <= components do
j = j + 1
local char = text[j]
if not char then
break
elseif m_data_core.ids[char] then
j = findEndOfIDS(text, char, j)
end
component = component + 1
end
--[[
If the expected number of components has been found,
return the current index in the text.
]]
if component - components == 1 then
return j
else
return nil
end
end
local function unserialize(a, b)
return m_data_core.radicals[a:byte()] .. ("%02d"):format(b:byte() - 10)
end
-- The data is stored in [[Module:Hani-sortkey/data]]. This data is not accessed directly (due to the large amount of memory this would consume), but is instead stored in a serialized form as [[Module:Hani-sortkey/data/serialized]]. If the data is changed, the new serialized data can be generated with [[Module:Hani-sortkey/data/serializer]].
function export.getData(char)
if type(char) == "string" then
char = codepoint(char)
elseif type(char) ~= "number" then
error("getData must operate on a single character or codepoint.")
end
local offset, s, f, lookup = 0
for i = 2, m_data_core.ranges.n, 2 do
s, f = m_data_core.ranges[i - 1], m_data_core.ranges[i]
if char > f then
offset = offset + f - s + 1
elseif char >= s and char <= f then
lookup = 2 * (offset + char - s + 1)
return m_data:sub(lookup - 1, lookup):gsub("(.)(.)", unserialize)
end
end
return u(char)
end
function export.makeSortKey(text, lang, sc)
local scripts = {
Hani = true,
Hans = true,
Hant = true,
Jpan = true,
Kore = true
}
if sc and not scripts[sc] then
return text:uupper()
end
local sort = {}
text = explode_utf8(text)
local text_len = #text
local i, char = 0
while i < text_len do
i = i + 1
char = text[i]
if m_data_core.preconvert[char] then
local j = 0
for c in m_data_core.preconvert[char]:gmatch("[%z\1-\127\194-\244][\128-\191]*") do
if j == 0 then
text[i] = c
else
insert(text, i + j, c)
end
j = j + 1
end
char = text[i]
text_len = #text
end
--[=[
If we encounter an ideographic description character (IDC),
find out if it begins a valid ideographic description sequence (IDS).
If the IDS is valid and a sortkey for it is listed in
[[Module:Hani-sortkey/data/unsupported]], then return
the sortkey, and move to the next character after the
IDS.
Otherwise, insert the IDC into the sortkey and move to the next
character after the IDC.
If the IDS is valid and no sortkey for it is found, track it.
]=]
if m_data_core.ids[char] then
local j = findEndOfIDS(text, char, i)
local IDS, data
if j then
IDS = concat(text, nil, i, j)
data = m_data_core.unsupported[IDS]
end
if not data then
if IDS then
require("Module:debug").track("Hani-sortkey/IDS-without-sortkey")
mw.log("ideographic description sequence without sortkey: '"
.. IDS .. "'")
else
require("Module:debug").track("Hani-sortkey/invalid-IDS")
mw.log("invalid ideographic description sequence at the beginning of '"
.. text[i] .. "'")
end
end
if IDS and data then
insert(sort, data)
i = j
else
insert(sort, char)
end
else
if not cache[char] then
cache[char] = export.getData(char)
end
insert(sort, cache[char])
end
end
return concat(sort)
end
return export
- හන් අක්ෂරක්රමය
- අක්ෂරක්රමය අනුව සෝට්කී-ජනක මොඩියුල
- හන් අක්ෂරක්රමය මොඩියුල
- සෝට්කී-ජනක මොඩියුල
- Chinese Pidgin English මොඩියුල
- Yonaguni මොඩියුල
- Leizhou Min මොඩියුල
- Southern Pinghua මොඩියුල
- Jie මොඩියුල
- Datian Min මොඩියුල
- Central Bai මොඩියුල
- සර්ව භාෂාමය මොඩියුල
- Tuoba මොඩියුල
- Ai-Cham මොඩියුල
- Shaozhou Tuhua මොඩියුල
- Zhuang මොඩියුල
- Gaya මොඩියුල
- Sichuanese මොඩියුල
- Northern Pinghua මොඩියුල
- Goguryeo මොඩියුල
- Kikai මොඩියුල
- වියට්නාම මොඩියුල
- Yoron මොඩියුල
- Taishanese මොඩියුල
- Zauzou මොඩියුල
- Kyakala මොඩියුල
- Sanxiang Min මොඩියුල
- Nùng මොඩියුල
- Literary Chinese මොඩියුල
- Zakhring මොඩියුල
- Gan මොඩියුල
- Baekje මොඩියුල
- Old Chinese මොඩියුල
- Wuhuan මොඩියුල
- Lama Bai මොඩියුල
- Hakka මොඩියුල
- Zhenan Min මොඩියුල
- Puxian Min මොඩියුල
- Yemaek මොඩියුල
- Jin මොඩියුල
- Macau Pidgin Portuguese මොඩියුල
- Dungan මොඩියුල
- චීන මොඩියුල
- Okinoerabu මොඩියුල
- Northern Min මොඩියුල
- ජපන් මොඩියුල
- Kunigami මොඩියුල
- Huizhou මොඩියුල
- Hachijō මොඩියුල
- Min Nan මොඩියුල
- Classical Tibetan මොඩියුල
- Miyako මොඩියුල
- Okinawan මොඩියුල
- E මොඩියුල
- Wu මොඩියුල
- Teochew මොඩියුල
- Bouyei මොඩියුල
- Yaeyama මොඩියුල
- Tuyuhun මොඩියුල
- Xianbei මොඩියුල
- Bala මොඩියුල
- Xiang මොඩියුල
- Middle Chinese මොඩියුල
- Tokunoshima මොඩියුල
- Central Min මොඩියුල
- Middle Mongol මොඩියුල
- Northern Amami Ōshima මොඩියුල
- Longyan Min මොඩියුල
- කැන්ටනීස් මොඩියුල
- Eastern Min මොඩියුල
- Bailang මොඩියුල
- Waxiang මොඩියුල
- Southern Amami Ōshima මොඩියුල
- Sui මොඩියුල
- මැන්ඩරීන් මොඩියුල
- Tày මොඩියුල
- Middle Vietnamese මොඩියුල
- Alchuka මොඩියුල
- Caolan මොඩියුල
- Daur මොඩියුල
- Biao-Jiao Mien මොඩියුල
- Hainanese මොඩියුල
- Panyi Bai මොඩියුල
- Old Uyghur මොඩියුල
- Khitan මොඩියුල
- Hailufeng Min මොඩියුල
- Biyo මොඩියුල
- Buyeo මොඩියුල
- Hokkien මොඩියුල
- Old Japanese මොඩියුල
- Southern Bai මොඩියුල
- Rouran මොඩියුල
- Japanese modules