summaryrefslogtreecommitdiff
path: root/scripts/context/lua/mtx-unicode.lua
blob: b76cf675e1dcdb16665ef48112e7792ad3ffd2bc (plain)
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
if not modules then modules = { } end modules ['mtx-unicode'] = {
    version   = 1.002,
    comment   = "companion to mtxrun.lua",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

-- This is very old code that I started writing in 2005 but occasionally
-- extended. Don't use it yourself, it's just a sort of reference. The
-- data that we use in ConTeXt is more extensive.
--
-- In my local tree I keep files in places like this:
--
--    e:/tex-context/tex/texmf-local/data/unicode/blocks.txt
--
-- last checked:
--
--    code freeze tl 2014 / unicode 7
--
-- todo:
--
--    specialcasing ?

local helpinfo = [[
<?xml version="1.0"?>
<application>
 <metadata>
  <entry name="name">mtx-unicode</entry>
  <entry name="detail">Checker for char-dat.lua</entry>
  <entry name="version">1.02</entry>
 </metadata>
 <flags>
  <category name="basic">
   <subcategory>
    <flag name="whatever"><short>do whatever</short></flag>
   </subcategory>
  </category>
 </flags>
</application>
]]

local application = logs.application {
    name     = "mtx-unicode",
    banner   = "Checker for char-def.lua 1.02",
    helpinfo = helpinfo,
}

local gmatch, match, gsub, find, lower, format = string.gmatch, string.match, string.gsub, string.find, string.lower, string.format
local concat = table.concat
local split = string.split
local are_equal = table.are_equal
local tonumber = tonumber
local lpegmatch = lpeg.match
local formatters = string.formatters

local report = application.report

scripts         = scripts         or { }
scripts.unicode = scripts.unicode or { }

characters      = characters      or { }
characters.data = characters.data or { }

fonts           = fonts           or { }
fonts.encodings = fonts.encodings or { }

local textfiles = { }
local textdata  = { }

local sparse = false

local split_space_table = lpeg.tsplitat(" ")
local split_space_two   = lpeg.splitat (" ")
local split_range_two   = lpeg.splitat ("..")
local split_colon_table = lpeg.tsplitat(lpeg.P(" ")^0 * lpeg.P(";") * lpeg.P(" ")^0)

function scripts.unicode.update()
    local unicodedata          = texttables.unicodedata
    local bidimirroring        = texttables.bidimirroring
    local linebreak            = texttables.linebreak
    local eastasianwidth       = texttables.eastasianwidth
    local standardizedvariants = texttables.standardizedvariants
    local arabicshaping        = texttables.arabicshaping
    local characterdata        = characters.data
    --
    for unicode, ud in table.sortedpairs(unicodedata) do
        local char = rawget(characterdata,unicode)
        local description = ud[2] or formatters["UNICODE ENTRY %U"](unicode)
        if not find(description,"^<") then
            local ld        = linebreak[unicode]
            local bd        = bidimirroring[unicode]
            local ed        = eastasianwidth[unicode]
            local category  = lower(ud[3] or "?")
            local combining = tonumber(ud[4])
            local direction = lower(ud[5] or "l") -- we could omit 'l' being the default
            local linebreak = ld and lower(ld[2] or "xx")
            local specials  = ud[6] or ""
            local cjkwd     = ed and lower(ed[2] or "n")
            local mirror    = bd and tonumber(bd[2],16)
            local arabic    = nil
            if sparse and direction == "l" then
                direction = nil
            end
            if linebreak == "xx" then
                linebreak = nil
            end
            if specials == "" then
                specials = nil
            else
                specials = lpegmatch(split_space_table,specials) -- split(specials," ")
                if tonumber(specials[1],16) then
                    for i=#specials,1,-1 do
                        specials[i+1] = tonumber(specials[i],16)
                    end
                    specials[1] = "char"
                else
                    specials[1] = lower(gsub(specials[1],"[<>]",""))
                    for i=2,#specials do
                        specials[i] = tonumber(specials[i],16)
                    end
                end
            end
            if cjkwd == "n" then
                cjkwd = nil
            end
            local comment
            if find(description,"MATHEMATICAL") then
                comment = "check math properties"
            end
            -- there are more than arabic
            local as = arabicshaping[unicode]
            if as then
                arabic = lower(as[3])
            end
            --
            if not combining or combining == 0 then
                combining = nil
            end
            if not char then
                report("%U : adding entry %a",unicode,description)
                char = {
                 -- adobename   = ,
                    category    = category,
                    comment     = comment,
                    cjkwd       = cjkwd,
                    description = description,
                    direction   = direction,
                    mirror      = mirror,
                    linebreak   = linebreak,
                    unicodeslot = unicode,
                    specials    = specials,
                    arabic      = arabic,
                    combining   = combining,
                }
                characterdata[unicode] = char
            else
                if direction then
                    if char.direction ~= direction then
                        report("%U : setting direction to %a, %a",unicode,direction,description)
                        char.direction = direction
                    end
                else
                    if char.direction then
                        report("%U : resetting direction from %a, %a",unicode,char.direction,description)
                        char.direction = nil
                    end
                end
                if mirror then
                    if mirror ~= char.mirror then
                        report("%U : setting mirror to %a, %a",unicode,mirror,description)
                        char.mirror = mirror
                    end
                else
                    if char.mirror then
                        report("%U : resetting mirror from %a, %a",unicode,char.mirror,description)
                        char.mirror = nil
                    end
                end
                if linebreak then
                    if linebreak ~= char.linebreak then
                        report("%U : setting linebreak to %a, %a",unicode,linebreak,description)
                        char.linebreak = linebreak
                    end
                else
                    if char.linebreak then
                        report("%U : resetting linebreak from %a, %a",unicode,char.linebreak,description)
                        char.linebreak = nil
                    end
                end
                if cjkwd then
                    if cjkwd ~= char.cjkwd then
                        report("%U : setting cjkwd of to %a, %a",unicode,cjkwd,description)
                        char.cjkwd = cjkwd
                    end
                else
                    if char.cjkwd then
                        report("%U : resetting cjkwd of from %a, %a",unicode,char.cjkwd,description)
                        char.cjkwd = nil
                    end
                end
                if arabic then
                    if arabic ~= char.arabic then
                        report("%U : setting arabic to %a, %a",unicode,arabic,description)
                        char.arabic = arabic
                    end
                else
                    if char.arabic then
                        report("%U : resetting arabic from %a, %a",unicode,char.arabic,description)
                        char.arabic = nil
                    end
                end
                if combining then
                    if combining ~= char.combining then
                        report("%U : setting combining to %a, %a",unicode,combining,description)
                        char.combining = combining
                    end
                else
                    if char.combining then
                        report("%U : resetting combining from %a, %a",unicode,char.combining,description)
                    end
                end
                if specials then
                    if not char.specials or not are_equal(specials,char.specials) then
                        local t = { specials[1] } for i=2,#specials do t[i] = formatters["%U"](specials[i]) end
                        report("%U : setting specials to % + t, %a",unicode,t,description)
                        char.specials = specials
                    end
                else
                    local specials = char.specials
                    if specials then
                        local t = { } for i=2,#specials do t[i] = formatters["%U"](specials[i]) end
                        if false then
                            char.comment = nil
                            report("%U : resetting specials from % + t, %a",unicode,t,description)
                        else
                            local comment = char.comment
                            if not comment then
                                char.comment = "check special"
                            elseif not find(comment,"check special") then
                                char.comment = comment .. ", check special"
                            end
                            report("%U : check specials % + t, %a",unicode,t,description)
                        end
                    end
                end
            end
            --
            local visual = char.visual
            if not visual and find(description,"MATH") then
                if find(description,"BOLD ITALIC") then
                    visual = "bi"
                elseif find(description,"ITALIC") then
                    visual = "it"
                elseif find(description,"BOLD") then
                    visual = "bf"
                end
                if visual then
                    report("%U : setting visual to %a, %a",unicode,visual,description)
                    char.visual = visual
                end
            end
            -- mathextensible
            if category == "sm" or (category == "so" and char.mathclass) then
                local mathextensible = char.mathextensible
                if mathextensible then
                    -- already done
                elseif find(description,"ABOVE") then
                    -- skip
                elseif find(description,"ARROWHEAD") then
                    -- skip
                elseif find(description,"HALFWIDTH") then
                    -- skip
                elseif find(description,"ANGLE") then
                    -- skip
                elseif find(description,"THROUGH") then
                    -- skip
                elseif find(description,"ARROW") then
                        -- skip
                    local u = find(description,"UP")
                    local d = find(description,"DOWN")
                    local l = find(description,"LEFT")
                    local r = find(description,"RIGHT")
                    if find(description,"ARROWHEAD") then
                        -- skip
                    elseif find(description,"HALFWIDTH") then
                        -- skip
                    elseif u and d then
                        if l or r then
                            mathextensible = 'm' -- mixed
                        else
                            mathextensible = 'v' -- vertical
                        end
                    elseif u then
                        if l or r then
                            mathextensible = 'm' -- mixed
                        else
                            mathextensible = "u"     -- up
                        end
                    elseif d then
                        if l or r then
                            mathextensible = 'm' -- mixed
                        else
                            mathextensible = "d"     -- down
                        end
                    elseif l and r then
                        mathextensible = "h"     -- horizontal
                    elseif r then
                        mathextensible = "r"     -- right
                    elseif l then
                        mathextensible = "l"     -- left
                    end
                    if mathextensible then
                        report("%U : setting mathextensible to %a, %a",unicode,mathextensible,description)
                        char.mathextensible = mathextensible
                    end
                end
            end
        end
    end
    for i=1,#standardizedvariants do
        local si = standardizedvariants[i]
        local pair, addendum = si[1], string.strip(si[2])
        local first, second = lpegmatch(split_space_two,pair) -- string.splitup(pair," ")
        first = tonumber(first,16)
        second = tonumber(second,16)
        if first then
            local d = characterdata[first]
            if d then
                local v = d.variants
                if not v then
                    v = { }
                    d.variants = v
                end
                if not v[second] then
                    report("%U : adding variant %U as %s, %a",first,second,addendum,d.description)
                    v[second] = addendum
                end
            end
        end
    end
end

local preamble

local function splitdefinition(str,index)
    local l = string.splitlines(str)
    local t = { }
    if index then
        for i=1,#l do
            local s = gsub(l[i]," *#.*$","")
            if s ~= "" then
                local d = lpegmatch(split_colon_table,s) -- split(s,";")
                local o = d[1]
                local u = tonumber(o,16)
                if u then
                    t[u] = d
                else
                 -- local b, e = match(o,"^([^%.]+)%.%.([^%.]+)$")
                    local b, e = lpegmatch(split_range_two,o)
                    if b and e then
                        b = tonumber(b,16)
                        e = tonumber(e,16)
                        for k=b,e do
                            t[k] = d
                        end
                    else
                        report("problem: %s",s)
                    end
                end
            end
        end
    else
        local n = 0
        for i=1,#l do
            local s = gsub(l[i]," *#.*$","")
            if s ~= "" then
                n = n + 1
                t[n] = lpegmatch(split_colon_table,s) -- split(s,";")
            end
        end
    end
    return t
end

function scripts.unicode.load()
    local fullname = resolvers.findfile("char-def.lua")
    report("using: %s",fullname)
    local data = io.loaddata(fullname)
    if data then
        loadstring(data)()
        --
        local fullname = resolvers.findfile("char-ini.lua")
        report("using: %s",fullname)
        dofile(fullname)
        --
        local fullname = resolvers.findfile("char-utf.lua")
        report("using: %s",fullname)
        dofile(fullname)
        --
        local fullname = resolvers.findfile("char-cjk.lua")
        report("using: %s",fullname)
        dofile(fullname)
        --
        preamble = data:gsub("characters%.data%s*=%s*%{.*","")
        --
        textfiles = {
            unicodedata          = resolvers.findfile("unicodedata.txt")          or "",
            bidimirroring        = resolvers.findfile("bidimirroring.txt")        or "",
            linebreak            = resolvers.findfile("linebreak.txt")            or "",
            eastasianwidth       = resolvers.findfile("eastasianwidth.txt")       or "",
            standardizedvariants = resolvers.findfile("standardizedvariants.txt") or "",
            arabicshaping        = resolvers.findfile("arabicshaping.txt")        or "",
        }
        --
        textdata = {
            unicodedata          = textfiles.unicodedata          ~= "" and io.loaddata(textfiles.unicodedata)          or "",
            bidimirroring        = textfiles.bidimirroring        ~= "" and io.loaddata(textfiles.bidimirroring)        or "",
            linebreak            = textfiles.linebreak            ~= "" and io.loaddata(textfiles.linebreak)            or "",
            eastasianwidth       = textfiles.eastasianwidth       ~= "" and io.loaddata(textfiles.eastasianwidth)       or "",
            standardizedvariants = textfiles.standardizedvariants ~= "" and io.loaddata(textfiles.standardizedvariants) or "",
            arabicshaping        = textfiles.arabicshaping        ~= "" and io.loaddata(textfiles.arabicshaping)        or "",
        }
        texttables = {
            unicodedata          = splitdefinition(textdata.unicodedata,true),
            bidimirroring        = splitdefinition(textdata.bidimirroring,true),
            linebreak            = splitdefinition(textdata.linebreak,true),
            eastasianwidth       = splitdefinition(textdata.eastasianwidth,true),
            standardizedvariants = splitdefinition(textdata.standardizedvariants,false),
            arabicshaping        = splitdefinition(textdata.arabicshaping,true),
        }
        return true
    else
        preamble = nil
        return false
    end
end

function scripts.unicode.save(filename)
    if preamble then
        io.savedata(filename,preamble .. table.serialize(characters.data,"characters.data", { hexify = true, noquotes = true } ))
    end
end

function scripts.unicode.extras() -- old code
    --
    -- 0000..007F; Basic Latin
    -- 0080..00FF; Latin-1 Supplement
    -- 0100..017F; Latin Extended-A
    --
    local fullname = resolvers.findfile("blocks.txt") or ""
    if fullname ~= "" then
        local data   = io.loaddata(fullname)
        local lines  = string.splitlines(data)
        local map    = { }
        local blocks = characters.blocks
        local result = { }
        for i=1,#lines do
            local line = gsub(lines[i]," *#.*$","")
            if line ~= "" then
                local specification = lpegmatch(split_colon_table,line) -- split(s,";")
                local range         = specification[1]
                local description   = specification[2]
                if range and description then
                    local start, stop = lpegmatch(split_range_two,range)
                    if start and stop then
                        local start = tonumber(start,16)
                        local stop  = tonumber(stop,16)
                        local name  = gsub(lower(description),"[^a-z]+","")
                        if start and stop then
                            local b = blocks[name]
                            if not b then
                                result[#result+1] = formatters[ [[+ block: ["%s"] = { first = 0x%05X, last = 0x%05X, description = "%S" }]] ](name,start,stop,description)
                                blocks[name] = { first = start, last = stop, description = description }
                            elseif b.first ~= start or b.last ~= stop or b.description ~= description then
                                result[#result+1] = formatters[ [[? block: ["%s"] = { first = 0x%05X, last = 0x%05X, description = "%S" }]] ](name,start,stop,description)
                            end
                        end
                        map[#map+1] = name
                    end
                end
            end
        end
        table.sort(result)
        for i=1,#result do
            report(result[i])
        end
        table.sort(map)
        for i=1,#map do
            local m = map[i]
            if not blocks[m] then
                report("obsolete block %a",m)
            end
        end
    end
end

-- the action

local filename = environment.files[1]

if environment.arguments.exporthelp then
    application.export(environment.arguments.exporthelp,filename)
else
    report("start working on %a, input char-def.lua",lfs.currentdir())
    if scripts.unicode.load() then
        scripts.unicode.update()
        scripts.unicode.extras()
        scripts.unicode.save("char-def-new.lua")
    else
        report("nothing to do")
    end
    report("stop working on %a, output char-def-new.lua\n",lfs.currentdir())
end