OSDN Git Service

ticket #36312
[luatex-ja/luatexja.git] / src / ltj-jfont.lua
1 --
2 -- luatexja/jfont.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfont',
6   date = '2016/04/03',
7   description = 'Loader for Japanese fonts',
8 })
9 module('luatexja.jfont', package.seeall)
10
11 luatexja.load_module('base');      local ltjb = luatexja.base
12 luatexja.load_module('charrange'); local ltjc = luatexja.charrange
13 luatexja.load_module('rmlgbm');    local ltjr = luatexja.rmlgbm
14 luatexja.load_module('direction'); local ltjd = luatexja.direction
15
16 local setfield = node.direct.setfield
17 local getid = node.direct.getid
18 local to_direct = node.direct.todirect
19
20 local node_new = node.direct.new
21 local node_free = node.direct.free
22 local has_attr = node.direct.has_attribute
23 local set_attr = node.direct.set_attribute
24 local round = tex.round
25 local font_getfont = font.getfont
26
27 local attr_icflag = luatexbase.attributes['ltj@icflag']
28 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
29 local attr_curtfnt = luatexbase.attributes['ltj@curtfnt']
30 local id_glyph = node.id('glyph')
31 local id_kern = node.id('kern')
32 local cat_lp = luatexbase.catcodetables['latex-package']
33 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
34 ------------------------------------------------------------------------
35 -- LOADING JFM
36 ------------------------------------------------------------------------
37
38 metrics={} -- this table stores all metric informations
39 font_metric_table={} -- [font number] -> jfm_name, jfm_var, size
40
41 luatexbase.create_callback("luatexja.load_jfm", "data", function (ft, jn) return ft end)
42
43 local jfm_file_name, jfm_var, jfm_ksp
44 local defjfm_res
45 local jfm_dir, is_def_jfont, is_vert_enabled
46
47 local function norm_val(a)
48    if (not a) or (a==0.) then
49       return nil
50    elseif a==true then
51       return 1
52    else
53       return a
54    end
55 end
56
57 function define_jfm(t)
58    local real_char -- Does current character class have the 'real' character?
59    if t.dir~=jfm_dir then
60       defjfm_res= nil; return
61    elseif type(t.zw)~='number' or type(t.zh)~='number' then
62       defjfm_res= nil; return
63    end
64    t.char_type = {}; t.chars = {}
65    for i,v in pairs(t) do
66       if type(i) == 'number' then -- char_type
67          if not v.chars then
68             if i ~= 0 then defjfm_res= nil; return  end
69          else
70             for j,w in pairs(v.chars) do
71                if type(w) == 'number' and w~=-1 then
72                elseif type(w) == 'string' and utf.len(w)==1 then
73                   w = utf.byte(w)
74                elseif type(w) == 'string' and utf.len(w)==2 and utf.sub(w,2) == '*' then
75                   w = utf.byte(utf.sub(w,1,1))
76                end
77                if not t.chars[w] then
78                   t.chars[w] = i
79                else
80                   defjfm_res= nil; return
81                end
82             end
83             v.chars = nil
84          end
85          if type(v.align)~='string' then
86             v.align = 'left' -- left
87          end
88          if type(v.width)~='number' then
89             v.width = (jfm_dir=='tate') and  1.0
90          end
91          if type(v.height)~='number' then
92             v.height = (jfm_dir=='tate') and  0.0
93          end
94          if type(v.depth)~='number' then
95             v.depth =  (jfm_dir=='tate') and  0.0
96          end
97          if type(v.italic)~='number' then
98             v.italic = 0.0
99          end
100          if type(v.left)~='number' then
101             v.left = 0.0
102          end
103          if type(v.down)~='number' then
104             v.down = 0.0
105          end
106          v.kern = v.kern or {}; v.glue = v.glue or {}
107          for j,x in pairs(v.glue) do
108             if v.kern[j] then defjfm_res= nil; return end
109             x.ratio, x[5] = (x.ratio or (x[5] and 0.5*(1+x[5]) or 0.5)), nil
110             x.priority, x[4] = (x.priority or x[4] or 0), nil
111             x.kanjiskip_natural = norm_val(x.kanjiskip_natural)
112             x.kanjiskip_stretch = norm_val(x.kanjiskip_stretch)
113             x.kanjiskip_shrink = norm_val(x.kanjiskip_shrink)
114          end
115          for j,x in pairs(v.kern) do
116             if type(x)=='number' then
117                v.kern[j] = {x, 0.5}
118             elseif type(x)=='table' then
119                v.kern[j] = { x[1], ratio=x.ratio or (x[2] and 0.5*(1+x[2]) or 0.5) }
120             end
121          end
122          t.char_type[i] = v
123          t[i] = nil
124       end
125    end
126    t = luatexbase.call_callback("luatexja.load_jfm", t, jfm_file_name)
127    t.size_cache = {}
128    defjfm_res = t
129 end
130
131 local update_jfm_cache
132 do
133    local function mult_table(old,scale) -- modified from table.fastcopy
134       if old then
135          local new = { }
136          for k,v in next, old do
137             if type(v) == "table" then
138                new[k] = mult_table(v,scale)
139             elseif type(v) == "number" then
140                new[k] = round(v*scale)
141             else
142                new[k] = v
143             end
144          end
145          return new
146       else return nil end
147    end
148    update_jfm_cache = function (j,sz)
149       if metrics[j].size_cache[sz] then return end
150       --local TEMP = node_new(id_kern)
151       local t = {}
152       metrics[j].size_cache[sz] = t
153       t.chars = metrics[j].chars
154       t.char_type = mult_table(metrics[j].char_type, sz)
155       for i,v in pairs(t.char_type) do
156          v.align = (v.align=='left') and 0 or
157             ((v.align=='right') and 1 or 0.5)
158          if type(i) == 'number' then -- char_type
159             for k,w in pairs(v.glue) do
160                v[k] = {
161                   nil,
162                   ratio=w.ratio/sz,
163                   priority=FROM_JFM + w.priority/sz,
164                   width = w[1], stretch = w[2], shrink = w[3],
165                   kanjiskip_natural = w.kanjiskip_natural and w.kanjiskip_natural/sz,
166                   kanjiskip_stretch = w.kanjiskip_stretch and w.kanjiskip_stretch/sz,
167                   kanjiskip_shrink =  w.kanjiskip_shrink  and w.kanjiskip_shrink/sz,
168                }
169             end
170             for k,w in pairs(v.kern) do
171                local g = node_new(id_kern)
172                setfield(g, 'kern', w[1])
173                setfield(g, 'subtype', 1)
174                set_attr(g, attr_icflag, FROM_JFM)
175                v[k] = {g, ratio=w[2]/sz}
176             end
177          end
178          v.glue, v.kern = nil, nil
179       end
180       t.kanjiskip = mult_table(metrics[j].kanjiskip, sz)
181       t.xkanjiskip = mult_table(metrics[j].xkanjiskip,sz)
182       t.zw = round(metrics[j].zw*sz)
183       t.zh = round(metrics[j].zh*sz)
184       t.size = sz
185       --node_free(TEMP)
186    end
187 end
188
189 luatexbase.create_callback("luatexja.find_char_class", "data",
190                            function (arg, fmtable, char)
191                               return 0
192                            end)
193 do
194    local start_time_measure = ltjb.start_time_measure
195    local stop_time_measure = ltjb.stop_time_measure
196    local fcc_temp = { chars_cbcache = {} }
197    setmetatable(
198       fcc_temp.chars_cbcache,
199       {
200          __index = function () return 0 end,
201       })
202    function find_char_class(c,m)
203       -- c: character code, m:
204       local r = (m or fcc_temp).chars_cbcache[c]
205       if not r then
206          r = m.chars[c] or
207             luatexbase.call_callback("luatexja.find_char_class", 0, m, c)
208          m.chars_cbcache[c or 0] = r
209       end
210       return r
211    end
212 end
213
214
215 ------------------------------------------------------------------------
216 -- LOADING JAPANESE FONTS
217 ------------------------------------------------------------------------
218
219 do
220    local cstemp
221    local global_flag -- true if \globaljfont, false if \jfont
222    local function load_jfont_metric()
223       if jfm_file_name=='' then
224          ltjb.package_error('luatexja',
225                             'no JFM specified',
226                             'To load and define a Japanese font, a JFM must be specified.'..
227                             "The JFM 'ujis' will be  used for now.")
228          jfm_file_name='ujis'
229       end
230       for j,v in ipairs(metrics) do
231          if v.name==jfm_file_name then return j end
232       end
233       luatexja.load_lua('jfm-' .. jfm_file_name .. '.lua')
234       if defjfm_res then
235          defjfm_res.name = jfm_file_name
236          table.insert(metrics, defjfm_res)
237          return #metrics
238       else
239          return nil
240       end
241    end
242
243 -- EXT
244    local utf8 = unicode.utf8
245    function jfontdefX(g, dir, csname)
246       jfm_dir, is_def_jfont = dir, true
247       cstemp = csname:sub( (utf8.byte(csname,1,1) == tex.escapechar) and 2 or 1, -1)
248       cstemp = cstemp:sub(1, ((cstemp:sub(-1,-1)==' ') and (cstemp:len()>=2)) and -2 or -1)
249       global_flag = g and '\\global' or ''
250       tex.sprint(cat_lp, '\\expandafter\\font\\csname ',
251                  (cstemp==' ') and '\\space' or cstemp, '\\endcsname')
252    end
253
254    luatexbase.create_callback("luatexja.define_jfont", "data", function (ft, fn) return ft end)
255
256 -- EXT
257    local identifiers = fonts.hashes.identifiers
258    function jfontdefY()
259       local j = load_jfont_metric(jfm_dir)
260       local fn = font.id(cstemp)
261       local f = font_getfont(fn)
262       if not j then
263          ltjb.package_error('luatexja',
264                             "bad JFM `" .. jfm_file_name .. "'",
265                             'The JFM file you specified is not valid JFM file.\n'..
266                                'So defining Japanese font is cancelled.')
267          tex.sprint(cat_lp, global_flag, '\\expandafter\\let\\csname ',
268                     (cstemp==' ') and '\\space' or cstemp,
269                        '\\endcsname=\\relax')
270          return
271       end
272       if not f then return end
273       update_jfm_cache(j, f.size)
274       local ad = identifiers[fn].parameters
275       local sz = metrics[j].size_cache[f.size]
276       local fmtable = { jfm = j, size = f.size, var = jfm_var,
277                         with_kanjiskip = jfm_ksp,
278                         zw = sz.zw, zh = sz.zh,
279                         ascent = ad.ascender,
280                         descent = ad.descender,
281                         chars = sz.chars, char_type = sz.char_type,
282                         kanjiskip = sz.kanjiskip, xkanjiskip = sz.xkanjiskip,
283                         chars_cbcache = {},
284                         vert_activated = is_vert_enabled,
285       }
286
287       fmtable = luatexbase.call_callback("luatexja.define_jfont", fmtable, fn)
288       font_metric_table[fn]=fmtable
289       tex.sprint(cat_lp, global_flag, '\\protected\\expandafter\\def\\csname ',
290                     (cstemp==' ') and '\\space' or cstemp, '\\endcsname{\\ltj@cur'..
291                     (jfm_dir == 'yoko' and 'j' or 't') .. 'fnt', fn, '\\relax}')
292    end
293 end
294
295 do
296    local get_dir_count = ltjd.get_dir_count
297    local dir_tate = luatexja.dir_table.dir_tate
298    local tex_get_attr = tex.getattribute
299    -- PUBLIC function
300    function get_zw()
301       local a = font_metric_table[
302          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
303       return a and a.zw or 0
304    end
305    function get_zh()
306       local a = font_metric_table[
307          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
308       return a and a.zw or 0
309    end
310 end
311
312 do
313    -- extract jfm_file_name and jfm_var
314    -- normalize position of 'jfm=' and 'jfmvar=' keys
315    local function extract_metric(name)
316       local is_braced = name:match('^{(.*)}$')
317        name= is_braced or name
318       jfm_file_name = ''; jfm_var = ''; jfm_ksp = true
319       local tmp, index = name:sub(1, 5), 1
320       if tmp == 'file:' or tmp == 'name:' or tmp == 'psft:' then
321          index = 6
322       end
323       local p = name:find(":", index); index = p and (p+1) or index
324       while index do
325          local l = name:len()+1
326          local q = name:find(";", index+1) or l
327          if name:sub(index, index+3)=='jfm=' and q>index+4 then
328             jfm_file_name = name:sub(index+4, q-1)
329             if l~=q then
330                name = name:sub(1,index-1) .. name:sub(q+1)
331             else
332                name = name:sub(1,index-1)
333                index = nil
334             end
335          elseif name:sub(index, index+6)=='jfmvar=' and q>index+6 then
336             jfm_var = name:sub(index+7, q-1)
337             if l~=q then
338                name = name:sub(1,index-1) .. name:sub(q+1)
339             else
340                name = name:sub(1,index-1)
341                index = nil
342             end
343          else
344             index = (l~=q) and (q+1) or nil
345          end
346       end
347       if jfm_file_name~='' then
348          local l = name:sub(-1)
349          name = name
350             .. ((l==':' or l==';') and '' or ';')
351             .. 'jfm=' .. jfm_file_name
352          if jfm_var~='' then
353             name = name .. 'jfmvar=' .. jfm_var
354          end
355       end
356       for x in string.gmatch (name, "[:;]([+%%-]?)ltjks") do
357          jfm_ksp = not (x=='-')
358       end
359       if jfm_dir == 'tate' then
360          is_vert_enabled = (not name:match('[:;]%-vert')) and (not  name:match('[:;]%-vrt2'))
361          if not name:match('vert') and not name:match('vrt2') then
362             name = name .. ';+vert;+vrt2'
363          end
364       else
365          is_vert_enabled = nil
366       end
367       return is_braced and ('{' .. name .. '}') or name
368    end
369
370    -- define_font callback
371    local otfl_fdr
372    local ltjr_font_callback = ltjr.font_callback
373    function luatexja.font_callback(name, size, id)
374       local new_name = is_def_jfont and extract_metric(name) or name
375       is_def_jfont = false
376       local res =  ltjr_font_callback(new_name, size, id, otfl_fdr)
377       luatexbase.call_callback('luatexja.define_font', res, new_name, size, id)
378       -- this callback processes variation selector, so we execute it always
379       return res
380    end
381    luatexbase.create_callback('luatexja.define_font', 'simple', function (n) return n end)
382    otfl_fdr= luatexbase.remove_from_callback('define_font', 'luaotfload.define_font')
383    luatexbase.add_to_callback('define_font',luatexja.font_callback,"luatexja.font_callback", 1)
384 end
385
386 ------------------------------------------------------------------------
387 -- LATEX INTERFACE
388 ------------------------------------------------------------------------
389 do
390    -- these function are called from ltj-latex.sty
391    local fenc_list, kyenc_list, ktenc_list = {}, {}, {}
392    function add_fenc_list(enc) fenc_list[enc] = 'true ' end
393    function add_kyenc_list(enc) kyenc_list[enc] = 'true ' end
394    function add_ktenc_list(enc) ktenc_list[enc] = 'true ' end
395    function is_kyenc(enc)
396       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (kyenc_list[enc] or 'false '))
397    end
398    function is_ktenc(enc)
399       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ktenc_list[enc] or 'false '))
400    end
401    function is_kenc(enc)
402       tex.sprint(cat_lp, '\\let\\ifin@\\if'
403                  .. (kyenc_list[enc] or ktenc_list[enc] or 'false '))
404    end
405
406    local kfam_list, Nkfam_list = {}, {}
407    function add_kfam(fam)
408       kfam_list[fam]=true
409    end
410    function search_kfam(fam, use_fd)
411       if kfam_list[fam] then
412          tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
413       elseif Nkfam_list[fam] then
414          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
415       elseif use_fd then
416          for i,_ in pairs(kyenc_list) do
417             if kpse.find_file(string.lower(i)..fam..'.fd') then
418                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
419             end
420          end
421          for i,_ in pairs(ktenc_list) do
422             if kpse.find_file(string.lower(i)..fam..'.fd') then
423                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
424             end
425          end
426          Nkfam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
427       else
428          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
429       end
430    end
431    local ffam_list, Nffam_list = {}, {}
432    function is_ffam(fam)
433       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ffam_list[fam] or 'false '))
434    end
435    function add_ffam(fam)
436       ffam_list[fam]='true '
437    end
438    function search_ffam_declared()
439      local s = ''
440      for i,_ in pairs(fenc_list) do
441         s = s .. '\\cdp@elt{' .. i .. '}'
442      end
443      tex.sprint(cat_lp, s)
444    end
445    function search_ffam_fd(fam)
446       if Nffam_list[fam] then
447          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
448       else
449          for i,_ in pairs(fenc_list) do
450             if kpse.find_file(string.lower(i)..fam..'.fd') then
451                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
452             end
453          end
454          Nffam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
455       end
456    end
457
458 end
459 ------------------------------------------------------------------------
460 -- ALTERNATE FONTS
461 ------------------------------------------------------------------------
462 alt_font_table = {}
463 local alt_font_table = alt_font_table
464 local attr_curaltfnt = {}
465 local ucs_out = 0x110000
466
467 ------ for TeX interface
468 -- EXT
469 function set_alt_font(b,e,ind,bfnt)
470    -- ind: 新フォント, bfnt: 基底フォント
471    if b>e then b, e = e, b end
472    if b*e<=0 then
473       ltjb.package_error('luatexja',
474                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
475                            'I take the intersection with [0x80, 0x10ffff].')
476       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
477    elseif e<0 then -- b<e<0
478       -- do nothing
479    elseif b<0x80 or e>=ucs_out then
480       ltjb.package_warning('luatexja',
481                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
482                               'I take the intersection with [0x80, 0x10ffff].')
483       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
484    end
485    if not alt_font_table[bfnt] then alt_font_table[bfnt]={} end
486    local t = alt_font_table[bfnt]
487    local ac = font_getfont(ind).characters
488    if bfnt==ind then ind = nil end -- ind == bfnt の場合はテーブルから削除
489    if e>=0 then -- character range
490       for i=b, e do
491          if ac[i]then  t[i]=ind end
492       end
493    else
494       b, e = -e, -b
495       local tx = font_metric_table[bfnt].chars
496       for i,v in pairs(tx) do
497          if b<=v and v<=e and ac[i] then t[i]=ind end
498       end
499    end
500 end
501
502 -- EXT
503 function clear_alt_font(bfnt)
504    if alt_font_table[bfnt] then
505       local t = alt_font_table[bfnt]
506       for i,_ in pairs(t) do t[i]=nil; end
507    end
508 end
509
510 ------ used in ltjp.suppress_hyphenate_ja callback
511 function replace_altfont(pf, pc)
512    local a = alt_font_table[pf]
513    return a and a[pc] or pf
514 end
515
516 ------ for LaTeX interface
517
518 local alt_font_table_latex = {}
519
520 -- EXT
521 function clear_alt_font_latex(bbase)
522    local t = alt_font_table_latex[bbase]
523    if t then
524       for j,v in pairs(t) do t[j] = nil end
525    end
526 end
527
528 -- EXT
529 function set_alt_font_latex(b,e,ind,bbase)
530    -- ind: Alt font の enc/fam/ser/shape, bbase: 基底フォントの enc/fam/ser/shape
531    if b>e then b, e = e, b end
532    if b*e<=0 then
533       ltjb.package_error('luatexja',
534                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
535                            'I take the intersection with [0x80, 0x10ffff].')
536       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
537    elseif e<0 then -- b<e<0
538       -- do nothing
539    elseif b<0x80 or e>=ucs_out then
540       ltjb.package_warning('luatexja',
541                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
542                               'I take the intersection with [0x80, 0x10ffff].')
543       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
544    end
545
546    if not alt_font_table_latex[bbase] then alt_font_table_latex[bbase]={} end
547    local t = alt_font_table_latex[bbase]
548    if not t[ind] then t[ind] = {} end
549    for i=b, e do
550       for j,v in pairs(t) do
551          if v[i] then -- remove old entry
552             if j~=ind then v[i]=nil end; break
553          end
554       end
555       t[ind][i]=true
556    end
557    -- remove the empty tables
558    for j,v in pairs(t) do
559       local flag_clear = true
560       for k,_ in pairs(v) do flag_clear = false; break end
561       if flag_clear then t[j]=nil end
562    end
563    if ind==bbase  then t[bbase] = nil end
564 end
565
566 -- ここから先は 新 \selectfont の内部でしか実行されない
567 do
568    local alt_font_base, alt_font_base_num
569    local aftl_base
570    -- EXT
571    function does_alt_set(bbase)
572       aftl_base = alt_font_table_latex[bbase]
573       tex.sprint(cat_lp, '\\if' .. (aftl_base and 'true' or 'false'))
574    end
575    -- EXT
576    function print_aftl_address()
577       tex.sprint(cat_lp, ';ltjaltfont' .. tostring(aftl_base):sub(8))
578    end
579
580 -- EXT
581    function output_alt_font_cmd(dir, bbase)
582       alt_font_base = bbase
583       if dir == 't' then
584          alt_font_base_num = tex.getattribute(attr_curtfnt)
585       else
586          alt_font_base_num = tex.getattribute(attr_curjfnt)
587       end
588       local t = alt_font_table[alt_font_base_num]
589       if t then
590          for i,_ in pairs(t) do t[i]=nil end
591       end
592       t = alt_font_table_latex[bbase]
593       if t then
594        for i,_ in pairs(t) do
595             tex.sprint(cat_lp, '\\ltj@pickup@altfont@aux' .. dir .. '{' .. i .. '}')
596          end
597       end
598    end
599
600 -- EXT
601    function pickup_alt_font_a(size_str)
602       local t = alt_font_table_latex[alt_font_base]
603       if t then
604          for i,v in pairs(t) do
605             tex.sprint(cat_lp, '\\expandafter\\ltj@pickup@altfont@copy'
606                           .. '\\csname ' .. i .. '/' .. size_str .. '\\endcsname{' .. i .. '}')
607          end
608       end
609    end
610
611    local function pickup_alt_font_class(class, afnt_num, afnt_chars)
612       local t  = alt_font_table[alt_font_base_num]
613       local tx = font_metric_table[alt_font_base_num].chars
614       for i,v in pairs(tx) do
615          if v==class and afnt_chars[i] then t[i]=afnt_num end
616       end
617    end
618
619 -- EXT
620    function pickup_alt_font_b(afnt_num, afnt_base)
621       local t = alt_font_table[alt_font_base_num]
622       local ac = font_getfont(afnt_num).characters
623       if not t then t = {}; alt_font_table[alt_font_base_num] = t end
624       for i,v in pairs(alt_font_table_latex[alt_font_base]) do
625          if i == afnt_base then
626             for j,_ in pairs(v) do
627                if j>=0 then
628                   if ac[j] then t[j]=afnt_num end
629                else  -- -n (n>=1) means that the character class n,
630                      -- which is defined in the JFM
631                   pickup_alt_font_class(-j, afnt_num, ac)
632                end
633             end
634             return
635          end
636       end
637    end
638
639 end
640 ------------------------------------------------------------------------
641 -- 終了時に各種ノードを破棄
642 ------------------------------------------------------------------------
643 do
644    function cleanup_size_cache()
645       --local gs, ke = 0, 0
646       for _,n in pairs(metrics) do
647          for i,t in pairs(n.size_cache) do
648             for _,v in pairs(t.char_type) do
649                for k,w in pairs(v) do
650                   if type(k)=='number' then
651                      --if w[1] then gs = gs + 1 else ke = ke + 1 end
652                      if w[1] then node_free(w[1]) end
653                   end
654                end
655             end
656             n.size_cache[i]=nil
657          end
658       end
659    end
660 end
661
662 ------------------------------------------------------------------------
663 -- VERT VARIANT TABLE
664 ------------------------------------------------------------------------
665 local vert_form_table = {
666    [0x2013]=0xFE32, [0x2014]=0xFE31, [0x2025]=0xFE30,
667    [0xFF08]=0xFE35, [0xFF09]=0xFE36, [0xFF5B]=0xFE37, [0xFF5D]=0xFE38,
668    [0x3014]=0xFE39, [0x3015]=0xFE3A, [0x3010]=0xFE3B, [0x3011]=0xFE3C,
669    [0x300A]=0xFE3D, [0x300B]=0xFE3E, [0x3008]=0xFE3F, [0x3009]=0xFE40,
670    [0x300C]=0xFE41, [0x300D]=0xFE42, [0x300E]=0xFE43, [0x300F]=0xFE44,
671    [0xFF3B]=0xFE47, [0xFF3D]=0xFE48, [0xFF3F]=0xFE33,
672 }
673
674 ------------------------------------------------------------------------
675 -- 追加のフォント情報
676 ------------------------------------------------------------------------
677 font_extra_info = {}
678 local font_extra_info = font_extra_info -- key: fontnumber
679 local font_extra_basename = {} -- key: basename
680
681 -- IVS and vertical metrics
682 local prepare_fl_data
683 local supply_vkern_table
684 do
685    local fields = fontloader.fields
686    local function glyph_vmetric(glyph)
687       local flds = fields(glyph)
688       local vw, tsb, vk = nil, nil, nil
689       for _,i in ipairs(flds) do
690          if i=='vwidth' then vw = glyph.vwidth end
691          if i=='tsidebearing' then tsb = glyph.tsidebearing end
692          if i=='vkerns' then vk = glyph.vkerns end
693       end
694       return vw, tsb, vk
695    end
696
697    local sort = table.sort
698    local function add_fl_table(dest, glyphs, unitable, asc_des, units, id)
699       local glyphmin, glyphmax = glyphs.glyphmin, glyphs.glyphmax
700       if glyphmax < 0 then return dest end
701       local tg = glyphs.glyphs
702       for i = glyphmin, glyphmax do
703          local gv = tg[i]
704          if gv then
705             if gv.altuni then
706                for _,at in pairs(gv.altuni) do
707                   local bu, vsel = at.unicode, at.variant
708                   if vsel then
709                      if vsel>=0xE0100 then vsel = vsel - 0xE0100 end
710                      local uniq_flag = true
711                      if dest and dest[bu] then
712                         for i,_ in pairs(dest[bu]) do
713                            if i==vsel then uniq_flag = false; break end
714                         end
715                      end
716                      if uniq_flag then
717                         dest = dest or {}; dest[bu] = dest[bu] or {}
718                         dest[bu][vsel] = unitable[gv.name]
719                      end
720                   end
721                end
722             end
723             -- vertical form
724             local gi = unitable[gv.name]
725             if gi then
726                if unitable[gv.name .. '.vert'] then
727                   dest = dest or {}; dest[gi] = dest[gi] or {};
728                   dest[gi].vform = unitable[gv.name .. '.vert']
729                elseif id.characters[gi] and vert_form_table[gi] then
730                   dest = dest or {}; dest[gi] = dest[gi] or {};
731                   dest[gi].vform = vert_form_table[gi]
732                end
733             end
734             -- vertical metric
735             local vw, tsb, vk = glyph_vmetric(gv)
736             local gi = unitable[gv.name]
737             if gi and vw and vw~=asc_des then
738                -- We do not use tsidebearing, since (1) fontloader does not read VORG table
739                -- and (2) 'tsidebearing' doea not appear in the returned table by fontloader.fields.
740                -- Hence, we assume that vertical origin == ascender
741                -- (see capsule_glyph_tate in ltj-setwidth.lua)
742                dest = dest or {}; dest[gi] = dest[gi] or {}
743                dest[gi].vwidth = vw/units
744             end
745             -- vertical kern
746             if gi and vk then
747                dest = dest or {};
748                local dest_vk = dest.vkerns or {}; dest.vkerns = dest_vk
749                for _,v in pairs(vk) do
750                   if unitable[v.char] then
751                      local vl = v.lookup
752                      if type(vl)=='table' then
753                         for _,vlt in pairs(vl) do
754                            dest_vk[vlt] = dest_vk[vlt] or {}
755                            dest_vk[vlt][gi] = dest_vk[vlt][gi] or {}
756                            dest_vk[vlt][gi][unitable[v.char]] = v.off
757                         end
758                      else
759                         dest_vk[vl] = dest_vk[vl] or {}
760                         dest_vk[vl][gi] = dest_vk[vl][gi] or {}
761                         dest_vk[vl][gi][unitable[v.char]] = v.off
762                      end
763                   end
764                end
765             end
766          end
767       end
768       return dest
769    end
770    prepare_fl_data = function (dest, id)
771       local fl = fontloader.open(id.filename)
772       local ind_to_uni, unicodes = {}, {}
773       for i,v in pairs(id.characters) do
774           ind_to_uni[v.index] = i
775       end
776       if fl.glyphs then
777          local tg, glyphmin, glyphmax = fl.glyphs, fl.glyphmin, fl.glyphmax
778          if 0 <= glyphmax then
779             for i = glyphmin, glyphmax do
780                if tg[i] and tg[i].name then unicodes[tg[i].name] = ind_to_uni[i] end
781             end
782          end
783          dest = add_fl_table(dest, fl, unicodes,
784                              fl.ascent + fl.descent, fl.units_per_em, id)
785       end
786       if fl.subfonts then
787          for _,v in pairs(fl.subfonts) do
788             local tg, glyphmin, glyphmax = v.glyphs, v.glyphmin, v.glyphmax
789             if 0 <= glyphmax then
790                for i = glyphmin, glyphmax do
791                   if tg[i] and tg[i].name then unicodes[tg[i].name] = ind_to_uni[i] end
792                end
793            end
794        end
795          for _,v in pairs(fl.subfonts) do
796             dest = add_fl_table(dest, v, unicodes,
797                                 fl.ascent + fl.descent, fl.units_per_em, id)
798          end
799      end
800      if dest then dest.unicodes = unicodes end
801      fontloader.close(fl); collectgarbage("collect")
802      return dest
803    end
804    -- supply vkern table
805    supply_vkern_table = function(id, bname)
806       local bx = font_extra_basename[bname].vkerns
807       local lookuphash =  id.resources.lookuphash
808       local desc = id.shared.rawdata.descriptions
809       if bx and lookuphash then
810          for i,v in pairs(bx) do
811             lookuphash[i] = lookuphash[i] or v
812             for j,w in pairs(v) do
813                desc[j].kerns = desc[j].kerns or {}
814                desc[j].kerns[i] = w
815             end
816          end
817       end
818    end
819 end
820
821 --
822 do
823    local cache_ver = 11
824    local checksum = file.checksum
825
826    local function prepare_extra_data_base(id)
827       if (not id) or (not id.filename) then return end
828       local bname = file.nameonly(id.filename)
829       if not font_extra_basename[bname] then
830          -- if the cache is present, read it
831          local newsum = checksum(id.filename) -- MD5 checksum of the fontfile
832          local v = "extra_" .. string.lower(file.nameonly(id.filename))
833          local dat = ltjb.load_cache(
834             v,
835             function (t) return (t.version~=cache_ver) or (t.chksum~=newsum) end
836          )
837          -- if the cache is not found or outdated, save the cache
838          if dat then
839             font_extra_basename[bname] = dat[1] or {}
840          else
841             local dat = nil
842             dat = prepare_fl_data(dat, id)
843             font_extra_basename[bname] = dat or {}
844             ltjb.save_cache( v,
845                              {
846                                 chksum = checksum(id.filename),
847                                 version = cache_ver,
848                                 dat,
849                              })
850          end
851          return bname
852       end
853    end
854    local function prepare_extra_data_font(id, res)
855       if type(res)=='table' and res.shared and res.filename then
856          font_extra_info[id] = font_extra_basename[file.nameonly(res.filename)]
857       end
858    end
859     luatexbase.add_to_callback(
860        'luaotfload.patch_font',
861        function (tfmdata)
862           -- these function is executed one time per one fontfile
863           local bname = prepare_extra_data_base(tfmdata)
864           if bname then supply_vkern_table(tfmdata, bname) end
865           return tfmdata
866        end,
867        'ltj.prepare_extra_data', 1)
868    luatexbase.add_to_callback(
869       'luatexja.define_font',
870       function (res, name, size, id)
871          prepare_extra_data_font(id, res)
872       end,
873       'ltj.prepare_extra_data', 1)
874
875    local nulltable = {} -- dummy
876    ltjr.vert_addfunc = function (n) font_extra_info[n] = nulltable end
877
878    local identifiers = fonts.hashes.identifiers
879    for i=1,font.nextid()-1 do
880       if identifiers[i] then
881          prepare_extra_data_base(identifiers[i])
882          prepare_extra_data_font(i,identifiers[i])
883       end
884    end
885 end
886
887
888 ------------------------------------------------------------------------
889 -- calculate vadvance
890 ------------------------------------------------------------------------
891 do
892    local function acc_feature(table_vadv, table_vorg, subtables, ft,  already_vert)
893       for char_num,v in pairs(ft.shared.rawdata.descriptions) do
894          if v.slookups then
895             for sn, sv in pairs(v.slookups) do
896                if subtables[sn] and type(sv)=='table' then
897                   if sv[4]~=0 then
898                      table_vadv[char_num]
899                         = (table_vadv[char_num] or 0) + sv[4]
900                   end
901                   if sv[2]~=0 and not already_vert then
902                      table_vorg[char_num]
903                         = (table_vorg[char_num] or 0) + sv[2]
904                   end
905                end
906             end
907          end
908       end
909    end
910
911 luatexbase.add_to_callback(
912    "luatexja.define_jfont",
913    function (fmtable, fnum)
914       local vadv = {}; fmtable.v_advance = vadv
915       local vorg = {}; fmtable.v_origin = vorg
916       local ft = font_getfont(fnum)
917       local subtables = {}
918       if ft.specification then
919          for feat_name,v in pairs(ft.specification.features.normal) do
920             if v==true then
921                for _,i in pairs(ft.resources.sequences) do
922                   if i.order[1]== feat_name and i.type == 'gpos_single' then
923                      for _,st in pairs(i.subtables) do
924                         subtables[st] = true
925                      end
926                   end
927                end
928             end
929          end
930          acc_feature(vadv, vorg, subtables, ft,
931                      ft.specification.features.normal.vrt2 or ft.specification.features.normal.vert)
932          for i,v in pairs(vadv) do
933             vadv[i]=vadv[i]/ft.units_per_em*fmtable.size
934          end
935          for i,v in pairs(vorg) do
936             vorg[i]=vorg[i]/ft.units_per_em*fmtable.size
937          end
938       end
939       return fmtable
940    end, 1, 'ltj.v_advance'
941 )
942 end
943
944 ------------------------------------------------------------------------
945 -- supply tounicode entries
946 ------------------------------------------------------------------------
947 do
948   local ltjr_prepare_cid_font = ltjr.prepare_cid_font
949   luatexbase.add_to_callback(
950      'luaotfload.patch_font',
951      function (tfmdata)
952         if tfmdata.cidinfo then
953            local rd = ltjr_prepare_cid_font(tfmdata.cidinfo.registry, tfmdata.cidinfo.ordering)
954            if rd then
955               local ru, rc = rd.resources.unicodes, rd.characters
956               for i,v in pairs(tfmdata.characters) do
957                  local w = ru["Japan1." .. tostring(v.index)]
958                  if w then
959                     v.tounicode = v.tounicode or rc[w]. tounicode
960                  end
961               end
962            end
963         end
964
965         return tfmdata
966      end,
967      'ltj.supply_tounicode', 1)
968 end
969
970
971 ------------------------------------------------------------------------
972 -- MISC
973 ------------------------------------------------------------------------
974 do
975    local getfont = node.direct.getfont
976    local getchar = node.direct.getchar
977    local get_dir_count = ltjd.get_dir_count
978    local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct
979    local ensure_tex_attr = ltjb.ensure_tex_attr
980    local node_write = node.direct.write
981    local font = font
982    local new_ic_kern
983    if status.luatex_version>=89 then
984        new_ic_kern = function(g)  return node_new(id_kern,3) end
985    else
986        local ITALIC       = luatexja.icflag_table.ITALIC
987        new_ic_kern = function()
988          local g = node_new(id_kern)
989          setfield(g, 'subtype', 1); set_attr(g, attr_icflag, ITALIC)
990          return g
991        end
992    end
993    -- EXT: italic correction
994    function append_italic()
995       local p = to_direct(tex.nest[tex.nest.ptr].tail)
996       local TEMP = node_new(id_kern)
997       if p and getid(p)==id_glyph then
998          if is_ucs_in_japanese_char(p) then
999             local j = font_metric_table[
1000                has_attr(p, (get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)
1001                ]
1002             local g = new_ic_kern()
1003             setfield(g, 'kern', j.char_type[find_char_class(getchar(p), j)].italic)
1004             node_write(g); ensure_tex_attr(attr_icflag, 0)
1005          else
1006             local f = getfont(p)
1007             local h = font_getfont(f) or font.fonts[f]
1008             if h then
1009                local g = new_ic_kern()
1010                if h.characters[getchar(p)] and h.characters[getchar(p)].italic then
1011                   setfield(g, 'kern', h.characters[getchar(p)].italic)
1012                   node_write(g); ensure_tex_attr(attr_icflag, 0)
1013                end
1014             end
1015          end
1016       end
1017       node_free(TEMP)
1018    end
1019 end
1020