1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
-----------------------------------------------------------------------
-- FILE: luaotfload-unicode.lua
-- DESCRIPTION: part of luaotfload / unicode
-----------------------------------------------------------------------
assert(luaotfload_module, "This is a part of luaotfload and should not be loaded independently") {
name = "luaotfload-unicode",
version = "3.21", --TAGVERSION
date = "2022-03-18", --TAGDATE
description = "luaotfload submodule / Unicode helpers",
license = "CC0 1.0 Universal",
author = "Marcel Krüger"
}
local utf8codes = utf8.codes
local utf8char = utf8.char
local sub = string.sub
local unpack = table.unpack
local concat = table.concat
local move = table.move
local codepoint = lpeg.S'0123456789ABCDEF'^4/function(c)return tonumber(c, 16)end
local empty = {}
local result = {}
local casefold do
local nl = ('#' * (1-lpeg.P'\n')^0)^-1 * '\n'
local entry = codepoint * "; " * lpeg.C(1) * ";" * lpeg.Ct((' ' * codepoint)^1) * "; " * nl
local file = lpeg.Cf(
lpeg.Ct(
lpeg.Cg(lpeg.Ct"", "C")
* lpeg.Cg(lpeg.Ct"", "F")
* lpeg.Cg(lpeg.Ct"", "S")
* lpeg.Cg(lpeg.Ct"", "T"))
* nl^0 * lpeg.Cg(entry)^0 * nl^0 * -1
, function(t, base, class, mapping)
rawset(rawget(t, class), base, mapping)
return t
end)
local f = io.open(kpse.find_file"CaseFolding.txt")
local data = file:match(f:read'*a')
f:close()
function casefold(s, full, special)
local first = special and data.T or empty
local second = data.C
local third = full and data.F or data.S
local result = result
for i = #result, 1, -1 do result[i] = nil end
local i = 1
for _, c in utf8codes(s) do
local datum = first[c] or second[c] or third[c]
if datum then
local l = #datum
move(datum, 1, l, i, result)
i = i + l
else
result[i] = c
i = i + 1
end
end
return utf8char(unpack(result))
end
end
local alphnum_only do
local niceentry = lpeg.Cg(codepoint * ';' * (1-lpeg.P';')^0 * ';' * lpeg.S'LN' * lpeg.Cc(true))
local entry = niceentry^0 * (1-lpeg.P'\n')^0 * lpeg.P'\n'
local file = lpeg.Cf(
lpeg.Ct''
* entry^0
, rawset)
local f = io.open(kpse.find_file"UnicodeData.txt")
local data = file:match(f:read'*a')
f:close()
function alphnum_only(s)
local result = result
for i = #result, 1, -1 do result[i] = nil end
local nice = nil
for p, c in utf8codes(s) do
if data[c]
or (c >= 0x3400 and c<= 0x3DB5)
or (c >= 0x4E00 and c<= 0x9FEF)
or (c >= 0xAC00 and c<= 0xD7A3)
then
if not nice then nice = p end
else
if nice then
result[#result + 1] = sub(s, nice, p-1)
nice = nil
end
end
end
if nice then
result[#result + 1] = sub(s, nice, #s)
end
return concat(result)
end
end
local uppercase, lowercase, ccc, cased, case_ignorable, titlecase = {}, {}, {}, {}, {}, nil do
titlecase = nil -- Not implemented yet(?)
local ignored_field = (1-lpeg.P';')^0 * ';'
local cased_category = lpeg.P'Ll;' + 'Lu;' + 'Lt;'
local case_ignore_category = lpeg.P'Mn;' + 'Me;' + 'Cf;' + 'Lm;' + 'Sk;'
local simple_entry =
codepoint/0 * ';'
* ignored_field -- Name
* (ignored_field - cased_category - case_ignore_category) -- General_Category
* '0;' -- ccc
* ignored_field -- Bidi
* ignored_field -- Decomp
* ignored_field -- Numeric
* ignored_field -- Numeric
* ignored_field -- Numeric
* ignored_field -- Mirrored
* ignored_field -- Obsolete
* ignored_field -- Obsolete
* ';;\n'
local entry = simple_entry
+ codepoint * ';'
* ignored_field -- Name
* (cased_category * lpeg.Cc(cased) + case_ignore_category * lpeg.Cc(case_ignorable) + ignored_field * lpeg.Cc(nil)) -- General_Category
* ('0;' * lpeg.Cc(nil) + lpeg.R'09'^1/tonumber * ';') -- ccc
* ignored_field -- Bidi
* ignored_field -- Decomp
* ignored_field -- Numeric
* ignored_field -- Numeric
* ignored_field -- Numeric
* ignored_field -- Mirrored
* ignored_field -- Obsolete
* ignored_field -- Obsolete
* (codepoint + lpeg.Cc(nil)) * ';' -- uppercase
* (codepoint + lpeg.Cc(nil)) * ';' -- lowercase
* (codepoint + lpeg.Cc(nil)) * '\n' -- titlecase
/ function(codepoint, cased_flag, ccc_val, upper, lower, title)
if cased_flag then cased_flag[codepoint] = true end
ccc[codepoint] = ccc_val
uppercase[codepoint] = upper
lowercase[codepoint] = lower
-- if title then titlecase[codepoint] = title end -- Not implemented yet(?)
end
local file = entry^0 * -1
local f = io.open(kpse.find_file"UnicodeData.txt")
assert(file:match(f:read'*a'))
f:close()
end
local props do
local ws = lpeg.P' '^0
local nl = ws * ('#' * (1-lpeg.P'\n')^0)^-1 * '\n'
local entry = codepoint * (".." * codepoint + lpeg.Cc(false)) * ws * ";" * ws * lpeg.C(lpeg.R("AZ", "az", "__")^1) * nl
local file = lpeg.Cf(
lpeg.Ct(
lpeg.Cg(lpeg.Ct"", "Soft_Dotted")
* lpeg.Cg(lpeg.Cc(cased), "Other_Lowercase")
* lpeg.Cg(lpeg.Cc(cased), "Other_Uppercase"))
* (lpeg.Cg(entry) + nl)^0
, function(t, cp_start, cp_end, prop)
local prop_table = t[prop]
if prop_table then
for cp = cp_start, cp_end or cp_start do
prop_table[cp] = true
end
end
return t
end) * -1
local f = io.open(kpse.find_file"PropList.txt")
props = file:match(f:read'*a')
f:close()
end
do
local ws = lpeg.P' '^0
local nl = ws * ('#' * (1-lpeg.P'\n')^0)^-1 * '\n'
local file = (codepoint * (".." * codepoint + lpeg.Cc(false)) * ws * ";" * ws * (lpeg.P'Single_Quote' + 'MidLetter' + 'MidNumLet') * nl / function(cp_start, cp_end)
for cp = cp_start, cp_end or cp_start do
case_ignorable[cp] = true
end
end + (1-lpeg.P'\n')^0 * '\n')^0 * -1
local f = io.open(kpse.find_file"WordBreakProperty.txt")
assert(file:match(f:read'*a'))
f:close()
end
do
local ws = lpeg.P' '^0
local nl = ws * ('#' * (1-lpeg.P'\n')^0)^-1 * '\n'
local empty = {}
local function set(t, cp, condition, value)
local old = t[cp] or cp
if not condition then
if #value == 1 and tonumber(old) then
t[cp] = value[1]
return
end
condition = empty
end
if tonumber(old or cp) then
old = {_ = {old}}
t[cp] = old
end
for i=1, #condition do
local cond = condition[i]
local step = old[cond]
if not step then
step = {}
old[cond] = step
end
old = step
end
old._ = value
end
local entry = codepoint * ";"
* lpeg.Ct((ws * codepoint)^1 + ws) * ";"
* lpeg.Ct((ws * codepoint)^1 + ws) * ";"
* lpeg.Ct((ws * codepoint)^1 + ws) * ";"
* (lpeg.Ct((ws * lpeg.C(lpeg.R('AZ', 'az', '__')^1))^1) * ";")^-1
* ws * nl / function(cp, lower, title, upper, condition)
set(lowercase, cp, condition, lower)
set(uppercase, cp, condition, upper)
end
local file = (entry + nl)^0 * -1
local f = io.open(kpse.find_file"SpecialCasing.txt")
assert(file:match(f:read'*a'))
f:close()
end
return {
casefold = casefold,
alphnum_only = alphnum_only,
casemapping = {
uppercase = uppercase,
lowercase = lowercase,
cased = cased,
case_ignorable = case_ignorable,
-- titlecase = titlecase,
},
ccc = ccc,
soft_dotted = props.Soft_Dotted,
}
|