OSDN Git Service

small fix
[luatex-ja/luatexja.git] / src / ltj-jfmglue.lua
index 04e72ed..3a7101e 100644 (file)
@@ -3,7 +3,7 @@
 --
 luatexbase.provides_module({
   name = 'luatexja.jfmglue',
-  date = '2014/10/03',
+  date = '2015/05/03',
   description = 'Insertion process of JFM glues and kanjiskip',
 })
 module('luatexja.jfmglue', package.seeall)
@@ -66,7 +66,7 @@ local id_box_like  = 256 -- vbox, shifted hbox
 local id_pbox      = 257 -- already processed nodes (by \unhbox)
 local id_pbox_w    = 258 -- cluster which consists of a whatsit
 local sid_user = node.subtype('user_defined')
-local lang_ja = token.create('ltj@@japanese')[2]
+local lang_ja = luatexja.lang_ja
 
 local sid_start_link = node.subtype('pdf_start_link')
 local sid_start_thread = node.subtype('pdf_start_thread')
@@ -81,6 +81,8 @@ local PROCESSED    = luatexja.icflag_table.PROCESSED
 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
 local BOXBDD       = luatexja.icflag_table.BOXBDD
 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
+
+local attr_icflag = luatexbase.attributes['ltj@icflag']
 local kanji_skip
 local xkanji_skip
 local table_current_stack
@@ -91,7 +93,6 @@ local attr_ablshift
 local set_np_xspc_jachar
 local set_np_xspc_jachar_hbox
 
-local attr_icflag = luatexbase.attributes['ltj@icflag']
 local ltjs_orig_char_table = ltjs.orig_char_table
 
 local function get_attr_icflag(p)
@@ -112,10 +113,10 @@ do
    local stop_time_measure = ltjb.stop_time_measure
    slow_find_char_class = function (c, m, oc)
       local cls = ltjf_find_char_class(oc, m)
-      if c and oc~=c and cls==0 then
-        return ltjf_find_char_class(c, m), oc
+      if oc~=c and c and cls==0 then
+        return ltjf_find_char_class(c, m)
       else
-        return cls, oc
+        return cls
       end
    end
 end
@@ -221,6 +222,7 @@ local function check_box(box_ptr, box_end)
            last_char = s; found_visible_node = true
         else
            if getfield(p, 'shift')==0 then
+              last_char = nil
               if check_box(getlist(p), nil) then found_visible_node = true end
            else
               find_first_char = false; last_char = nil
@@ -276,15 +278,10 @@ luatexbase.create_callback("luatexja.jfmglue.whatsit_after", "data",
                           function (stat, Nq, Np) return false end)
 
 -- calc next Np
+local calc_np 
 do
 
 local traverse = Dnode.traverse
-local function set_attr_icflag_processed(p)
-   if get_attr_icflag(p)<= ITALIC then
-      set_attr(p, attr_icflag, PROCESSED)
-   end
-end
-
 local function check_next_ickern(lp)
    if lp and getid(lp) == id_kern and ITALIC == get_attr_icflag(lp) then
       set_attr(lp, attr_icflag, IC_PROCESSED)
@@ -322,9 +319,9 @@ local function calc_np_aux_glyph_common(lp)
    Np.first= (Np.first or lp)
    if getfield(lp, 'lang') == lang_ja then
       Np.id = id_jglyph
-      set_np_xspc_jachar(Np, lp)
+      local m, cls = set_np_xspc_jachar(Np, lp)
       local npi, npf
-      lp, head, npi, npf = capsule_glyph(lp, Np.met, Np.class, head, tex_dir, lp)
+      lp, head, npi, npf = capsule_glyph(lp, m, cls, head, tex_dir, lp)
       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
       Np.nuc = npi
       return true, check_next_ickern(lp);
@@ -356,8 +353,8 @@ local function calc_np_aux_glyph_common(lp)
               local ls = getsubtype(lx)
               if ls==2 then -- アクセント用の kern
                  set_attr(lx, attr_icflag, PROCESSED)
-                 lx = node_next(lx) -- lp: アクセント本体
-                 setfield(lx, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lx,attr_ablshift) or 0))
+                 lx = node_next(lx) -- lx: アクセント本体
+                 setfield(lx, 'yoffset', getfield(lx, 'yoffset') - (has_attr(lx,attr_ablshift) or 0))
                  lx = node_next(node_next(lx))
               elseif ls==0  then
                  Np.last = lx
@@ -387,7 +384,9 @@ local function calc_np_aux_glyph_common(lp)
         if r then
            local nf, nc = getfont(npn), getchar(npn)
            local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
-           if (ct.left_protruding or 0) == 0 then
+           if not ct then -- variation selector
+              node_free(r)
+           elseif (ct.left_protruding or 0) == 0 then
               head = insert_before(head, npn, r)
               Np.first = (Np.first==npn) and r or npn
            elseif (ct.right_protruding or 0) == 0 then
@@ -489,6 +488,7 @@ local calc_np_auxtable = {
    end,
    [id_kern] = function(lp)
       if getsubtype(lp)==2 then
+        Np.first = Np.first or lp
         set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
         set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
         set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
@@ -511,7 +511,7 @@ calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
 
-function calc_np(lp, last)
+function calc_np(last, lp)
    local k
    -- We assume lp = node_next(Np.last)
    Np, Nq, non_ihb_flag = Nq, Np, true
@@ -538,11 +538,9 @@ function calc_np(lp, last)
         if k then return lp end
       end
    end
-   Np = nil; return lp
+   Np=nil
 end
-
 end
-local calc_np = calc_np
 
 -- extract informations from Np
 -- We think that "Np is a Japanese character" if Np.met~=nil,
@@ -559,37 +557,28 @@ do
 
 -- 和文文字のデータを取得
    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
+   local attr_jchar_code = luatexbase.attributes['ltj@charcode']
    local attr_autospc = luatexbase.attributes['ltj@autospc']
    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
    --local ltjf_get_vert_glyph = ltjf.get_vert_glyph
-   function set_np_xspc_jachar_yoko(Nx, x)
+   function set_np_xspc_jachar(Nx, x)
       local m = ltjf_font_metric_table[getfont(x)]
-      local cls, c = slow_find_char_class(ltjs_orig_char_table[x], m, getchar(x))
-      Nx.met, Nx.class, Nx.char = m, cls, c;
-      if cls~=0 then set_attr(x, attr_jchar_class, cls) end
-      Nx.pre  = table_current_stack[PRE + c]  or 0
-      Nx.post = table_current_stack[POST + c] or 0
-      Nx.xspc = table_current_stack[XSP  + c] or 3
-      Nx.kcat = table_current_stack[KCAT + c] or 0
-      Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
-   end
-   function set_np_xspc_jachar_tate(Nx, x)
       local c, c_glyph = ltjs_orig_char_table[x], getchar(x)
-      local xf = getfont(x)
-      local m = ltjf_font_metric_table[xf]
+      c = c or c_glyph
       local cls = slow_find_char_class(c, m, c_glyph)
-      --setfield(x, 'char', ltjf_get_vert_glyph(xf, c_glyph) or c_glyph)
       Nx.met, Nx.class, Nx.char = m, cls, c;
       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
+      if c~=c_glyph then set_attr(x, attr_jchar_code, c) end
       Nx.pre  = table_current_stack[PRE + c]  or 0
       Nx.post = table_current_stack[POST + c] or 0
       Nx.xspc = table_current_stack[XSP  + c] or 3
       Nx.kcat = table_current_stack[KCAT + c] or 0
       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
+      return m, cls
    end
    function set_np_xspc_jachar_hbox(Nx, x)
       local m = ltjf_font_metric_table[getfont(x)]
-      local c = getchar(x)
+      local c = has_attr(x, attr_jchar_code) or getchar(x)
       Nx.met, Nx.char  = m, c; Nx.class = has_attr(x, attr_jchar_class) or 0;
       Nx.pre  = table_current_stack[PRE + c]  or 0
       Nx.post = table_current_stack[POST + c] or 0
@@ -695,18 +684,18 @@ end
 -- 和文文字間の JFM glue を node 化
 local function new_jfm_glue(m, bc, ac)
 -- bc, ac: char classes
-   local g, d = m.char_type[bc][ac], 0
-   local n
+   local g = m.char_type[bc][ac]
    if g then
-      n,d = node_copy(g[2]), g[3]
       if g[1] then
         local f = node_new(id_glue)
         set_attr(f, attr_icflag, g[4])
-        setfield(f, 'spec', n)
-        return f, d
+        setfield(f, 'spec', node_copy(g[2]))
+        return f, g[3]
+      else
+        return node_copy(g[2]), g[3]
       end
    end
-   return n, d
+   return nil, 0
 end
 
 -- Nq.last (kern w) .... (glue/kern g) Np.first
@@ -719,7 +708,7 @@ end
 
 
 -------------------- 和文文字間空白量の決定
-
+local null_skip_table = {0, 0, 0}
 -- get kanjiskip
 local get_kanjiskip
 local get_kanjiskip_normal, get_kanjiskip_jfm
@@ -743,13 +732,13 @@ do
         local gx = node_new(id_glue_spec);
         setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
         local pm, qm = Np.met, Nq.met
-        local bk = qm.kanjiskip or {0, 0, 0}
+        local bk = qm.kanjiskip or null_skip_table
         if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
            setfield(gx, 'width', bk[1])
            setfield(gx, 'stretch', bk[2])
            setfield(gx, 'shrink', bk[3])
         else
-           local ak = pm.kanjiskip or {0, 0, 0}
+           local ak = pm.kanjiskip or null_skip_table
            setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
            setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
            setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
@@ -771,8 +760,8 @@ do
    local bk_ak = 2*id_kern - id_kern
 
    calc_ja_ja_aux = function (gb,ga, db, da)
-      local rbb, rab = (1-db)/2, (1-da)/2 -- 「前の文字」由来のグルーの割合
-      local rba, raa = (1+db)/2, (1+da)/2 -- 「前の文字」由来のグルーの割合
+      local rbb, rab = 0.5*(1-db), 0.5*(1-da) -- 「前の文字」由来のグルーの割合
+      local rba, raa = 0.5*(1+db), 0.5*(1+da) -- 「前の文字」由来のグルーの割合
       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
           and diffmet_rule ~= math.two_paverage then
         rbb, rab, rba, raa = 1,0,0,1
@@ -836,10 +825,10 @@ local function calc_ja_ja_glue()
    else
       local npn, nqn = Np.nuc, Nq.nuc
       local gb, db = new_jfm_glue(qm, Nq.class,
-                                 slow_find_char_class(ltjs_orig_char_table[npn],
+                                 slow_find_char_class(Np.char,
                                                       qm, getchar(npn)))
       local ga, da = new_jfm_glue(pm,
-                                 slow_find_char_class(ltjs_orig_char_table[nqn],
+                                 slow_find_char_class(Nq.char,
                                                       pm, getchar(nqn)),
                                  Np.class)
       return calc_ja_ja_aux(gb, ga, db, da);
@@ -869,7 +858,7 @@ do
         g = node_new(id_glue)
         local gx = node_new(id_glue_spec);
         setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
-        local bk = Nn.met.xkanjiskip or {0, 0, 0}
+        local bk = Nn.met.xkanjiskip or null_skip_table
         setfield(gx, 'width', bk[1])
         setfield(gx, 'stretch', bk[2])
         setfield(gx, 'shrink', bk[3])
@@ -992,8 +981,7 @@ local function handle_list_tail(mode)
       -- Insert \jcharwidowpenalty
       Bp = widow_Bp; Np = widow_Np
       if Np.first then
-        handle_penalty_normal(0,
-                              table_current_stack[JWP] or 0)
+        handle_penalty_normal(0, table_current_stack[JWP] or 0)
       end
    else
       -- the current list is the contents of a hbox
@@ -1038,41 +1026,46 @@ do
    local dir_tate = luatexja.dir_table.dir_tate
    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
+   local table_pool = {
+      {}, {}, {first=nil},
+      { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
+       first=nil, id=nil, last=nil, met=nil, nuc=nil,
+       post=nil, pre=nil, xspc=nil, }, 
+      { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
+       first=nil, id=nil, last=nil, met=nil, nuc=nil,
+       post=nil, pre=nil, xspc=nil, },
+   }
    init_var = function (mode,dir)
       -- 1073741823: max_dimen
-      Bp, widow_Bp, widow_Np = {}, {}, {first = nil}
+      Bp, widow_Bp, widow_Np, Np, Nq
+        = table_pool[1], table_pool[2], table_pool[3], table_pool[4], table_pool[5]
+      for i=1,5 do for j,_ in pairs(table_pool[i]) do table_pool[i][j]=nil end end
       table_current_stack = ltjs.table_current_stack
 
-      list_dir = ltjs.list_dir or dir_yoko
+      list_dir, tex_dir = (ltjs.list_dir or dir_yoko), (dir or 'TLT')
       local is_dir_tate = list_dir==dir_tate
       capsule_glyph = is_dir_tate and ltjw.capsule_glyph_tate or ltjw.capsule_glyph_yoko
       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
-      set_np_xspc_jachar = is_dir_tate and set_np_xspc_jachar_tate or set_np_xspc_jachar_yoko
-
-
-      tex_dir = dir or 'TLT'
-      kanji_skip = node_new(id_glue)
-      setfield(kanji_skip, 'spec', skip_table_to_spec(KSK))
-      set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
-      get_kanjiskip = (getfield(getfield(kanji_skip, 'spec'), 'width') == 1073741823)
-        and get_kanjiskip_jfm or get_kanjiskip_normal
-
-      xkanji_skip = node_new(id_glue)
-      setfield(xkanji_skip, 'spec', skip_table_to_spec(XSK))
-      set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
-      get_xkanjiskip = (getfield(getfield(xkanji_skip, 'spec'), 'width') == 1073741823)
-        and get_xkanjiskip_jfm or get_xkanjiskip_normal
-
-      Np = {
-        auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
-        first=nil, id=nil, last=nil, met=nil, nuc=nil,
-        post=nil, pre=nil, xspc=nil,
-      }
-      Nq = {
-        auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
-        first=nil, id=nil, last=nil, met=nil, nuc=nil,
-        post=nil, pre=nil, xspc=nil,
-      }
+      local TEMP = node_new(id_glue) 
+      -- TEMP is a dummy node, which will be freed at the end of the callback. 
+      -- ithout this node, set_attr(kanji_skip, ...) somehow creates an "orphaned"  attribute list.
+
+      do
+        kanji_skip = node_new(id_glue); set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
+        local s = skip_table_to_spec(KSK)
+        setfield(kanji_skip, 'spec', s)
+        get_kanjiskip = (getfield(s, 'width') == 1073741823)
+           and get_kanjiskip_jfm or get_kanjiskip_normal
+      end
+
+      do
+        xkanji_skip = node_new(id_glue); set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
+        local s = skip_table_to_spec(XSK)
+        setfield(xkanji_skip, 'spec', s)
+        get_xkanjiskip = (getfield(s, 'width') == 1073741823)
+           and get_xkanjiskip_jfm or get_xkanjiskip_normal
+      end
+
       if mode then
         -- the current list is to be line-breaked:
         -- hbox from \parindent is skipped.
@@ -1084,18 +1077,19 @@ do
                Np.width = getfield(lp, 'width')
             end
            lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
-        return lp, node_tail(head), par_indented
+        return lp, node_tail(head), par_indented, TEMP
       else
-        return head, nil, 'boxbdd'
+        return head, nil, 'boxbdd', TEMP
       end
    end
 end
 
-local tex_set_attr = tex.setattribute
-local function cleanup(mode)
+local ensure_tex_attr = ltjb.ensure_tex_attr
+local function cleanup(mode, TEMP)
    -- adjust attr_icflag for avoiding error
-   tex_set_attr('global', attr_icflag, 0)
-   node_free(kanji_skip); node_free(xkanji_skip)
+   if tex.getattribute(attr_icflag)~=0 then ensure_tex_attr(attr_icflag, 0) end
+   node_free(kanji_skip); node_free(xkanji_skip); node_free(TEMP)
+   
    if mode then
       local h = node_next(head)
       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
@@ -1113,31 +1107,28 @@ end
 function main(ahead, mode, dir)
    if not ahead then return ahead end
    head = ahead;
-   local lp, last, par_indented = init_var(mode,dir)
-   lp = calc_np(lp, last)
+   local lp, last, par_indented, TEMP = init_var(mode,dir)
+   lp = calc_np(last, lp)
    if Np then
       handle_list_head(par_indented)
-   else
-      return cleanup(mode)
-   end
-   lp = calc_np(lp, last)
-   while Np do
-      adjust_nq();
-      local pid, pm = Np.id, Np.met
-      -- 挿入部
-      if pid == id_jglyph then
-         handle_np_jachar(mode)
-      elseif pm then
-         if pid==id_hlist then handle_np_ja_hlist()
-         else handle_np_jachar() end
-      elseif Nq.met then
-         if Nq.id==id_hlist then handle_nq_ja_hlist()
-         else handle_nq_jachar() end
+      lp = calc_np(last,lp); while Np do
+        adjust_nq();
+        local pid, pm = Np.id, Np.met
+        -- 挿入部
+        if pid == id_jglyph then
+           handle_np_jachar(mode)
+        elseif pm then
+           if pid==id_hlist then handle_np_ja_hlist()
+           else handle_np_jachar() end
+        elseif Nq.met then
+           if Nq.id==id_hlist then handle_nq_ja_hlist()
+           else handle_nq_jachar() end
+        end
+        lp = calc_np(last,lp)
       end
-      lp = calc_np(lp, last)
+      handle_list_tail(mode)
    end
-   handle_list_tail(mode)
-   return cleanup(mode)
+   return cleanup(mode, TEMP)
 end
 end