OSDN Git Service

stopped to use module(), which is removed in Lua 5.2. (WIP)
[luatex-ja/luatexja.git] / src / ltj-jfmglue.lua
1 --
2 -- luatexja/ltj-jfmglue.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfmglue',
6   date = '2018/02/18',
7   description = 'Insertion process of JFM glues, [x]kanjiskip and others',
8 })
9 luatexja.jfmglue = luatexja.jfmglue or {}
10
11 luatexja.load_module('base');      local ltjb = luatexja.base
12 luatexja.load_module('stack');     local ltjs = luatexja.stack
13 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
14 luatexja.load_module('direction'); local ltjd = luatexja.direction
15 luatexja.load_module('setwidth');      local ltjw = luatexja.setwidth
16 local pairs = pairs
17
18 --local to_node = node.direct.tonode
19 --local to_direct = node.direct.todirect
20
21 local setfield = node.direct.setfield
22 local setglue = luatexja.setglue
23 local getfield = node.direct.getfield
24 local getid = node.direct.getid
25 local getfont = node.direct.getfont
26 local getlist = node.direct.getlist
27 local getchar = node.direct.getchar
28 local getsubtype = node.direct.getsubtype
29 local if_lang_ja
30 do
31     local lang_ja = luatexja.lang_ja
32     local getlang = node.direct.getlang
33     if_lang_ja = getlang 
34       and function (n) return getlang(n)==lang_ja end
35       or  function (n) return getfield(n,'lang')==lang_ja end
36 end
37   
38 local has_attr = node.direct.has_attribute
39 local set_attr = node.direct.set_attribute
40 local insert_before = node.direct.insert_before
41 local insert_after = node.direct.insert_after
42 local node_next = node.direct.getnext
43 local ltjd_make_dir_whatsit = ltjd.make_dir_whatsit
44 local ltjf_font_metric_table = ltjf.font_metric_table
45 local ltjf_find_char_class = ltjf.find_char_class
46 local node_new = node.direct.new
47 local node_copy = node.direct.copy
48 local node_tail = node.direct.tail
49 local node_free = node.direct.free
50 local node_remove = node.direct.remove
51
52 local id_glyph = node.id('glyph')
53 local id_hlist = node.id('hlist')
54 local id_vlist = node.id('vlist')
55 local id_rule = node.id('rule')
56 local id_ins = node.id('ins')
57 local id_mark = node.id('mark')
58 local id_adjust = node.id('adjust')
59 local id_disc = node.id('disc')
60 local id_whatsit = node.id('whatsit')
61 local id_math = node.id('math')
62 local id_glue = node.id('glue')
63 local id_kern = node.id('kern')
64 local id_penalty = node.id('penalty')
65
66 local id_jglyph    = 512 -- Japanese character
67 local id_box_like  = 256 -- vbox, shifted hbox
68 local id_pbox      = 257 -- already processed nodes (by \unhbox)
69 local id_pbox_w    = 258 -- cluster which consists of a whatsit
70 local sid_user = node.subtype('user_defined')
71
72 local ITALIC       = luatexja.icflag_table.ITALIC
73 local PACKED       = luatexja.icflag_table.PACKED
74 local KINSOKU      = luatexja.icflag_table.KINSOKU
75 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
76 local PROCESSED    = luatexja.icflag_table.PROCESSED
77 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
78 local BOXBDD       = luatexja.icflag_table.BOXBDD
79 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
80
81 local attr_icflag = luatexbase.attributes['ltj@icflag']
82 local kanji_skip
83 local xkanji_skip
84 local table_current_stack
85 local list_dir
86 local capsule_glyph
87 local tex_dir
88 local attr_ablshift
89 local set_np_xspc_jachar, set_np_xspc_alchar
90 local set_np_xspc_jachar_hbox
91
92 local ltjs_orig_char_table = ltjs.orig_char_table
93
94 local function get_attr_icflag(p)
95    return (has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG
96 end
97
98 -------------------- Helper functions
99
100 -- This function is called only for acquiring `special' characters.
101 local function fast_find_char_class(c,m)
102    return m.chars[c] or 0
103 end
104
105 -- 文字クラスの決定
106 local slow_find_char_class
107 do
108    local start_time_measure = ltjb.start_time_measure
109    local stop_time_measure = ltjb.stop_time_measure
110    slow_find_char_class = function (c, m, oc)
111       local cls = ltjf_find_char_class(oc, m)
112       if oc~=c and c and cls==0 then
113          return ltjf_find_char_class(c, m)
114       else
115          return cls
116       end
117    end
118 end
119
120 local function skip_table_to_glue(n)
121    local g, st = node_new(id_glue), ltjs.fast_get_stack_skip(n)
122    setglue(g, st.width, st.stretch, st.shrink, st.stretch_order, st.shrink_order)
123    return g, (st.width==1073741823)
124 end
125
126
127 -- penalty 値の計算
128 local add_penalty
129 do
130 local setpenalty = node.direct.setpenalty or function(n, a) setfield(n,'penalty',a) end
131 local getpenalty = node.direct.getpenalty or function(n) return getfield(n,'penalty') end
132 function add_penalty(p,e)
133    local pp = getpenalty(p)
134    if (pp>-10000) and (pp<10000) then
135       if e>=10000 then       setpenalty(p, 10000)
136       elseif e<=-10000 then  setpenalty(p, -10000)
137       else
138          pp = pp + e
139          if pp>=10000 then      setpenalty(p, 10000)
140          elseif pp<=-10000 then setpenalty(p, -10000)
141          else                   setpenalty(p, pp) end
142       end
143    end
144 end
145 end
146
147 -- 「異なる JFM」の間の調整方法
148 luatexja.jfmglue.diffmet_rule = math.two_paverage
149 function math.two_add(a,b) return a+b end
150 function math.two_average(a,b) return (a+b)*0.5 end
151 function math.two_paverage(a,b) return (a+b)/2 end
152 function math.two_pleft(a,b) return a end
153 function math.two_pright(a,b) return b end
154
155 local head -- the head of current list
156
157 local Np, Nq, Bp
158 local widow_Bp, widow_Np -- \jcharwidowpenalty 挿入位置管理用
159
160 local non_ihb_flag -- JFM グルー挿入抑止用 flag
161 -- false: \inhibitglue 指定時 true: それ以外
162
163 -------------------- hlist 内の文字の検索
164
165 local first_char, last_char, find_first_char
166 local check_box_high
167 do
168 local ltjd_glyph_from_packed = ltjd.glyph_from_packed
169 local function check_box(box_ptr, box_end)
170    local p = box_ptr; local found_visible_node = false
171    if not p then
172       find_first_char = false; last_char = nil
173       return true
174    end
175    while p and p~=box_end do
176       local pid = getid(p)
177       if pid==id_kern and getsubtype(p)==2 then
178          p = node_next(node_next(node_next(p))); pid = getid(p) -- p must be glyph_node
179        end
180       if pid==id_glyph then
181          repeat
182             if find_first_char then
183                first_char = p; find_first_char = false
184             end
185             last_char = p; found_visible_node = true; p=node_next(p)
186             if (not p) or p==box_end then
187                return found_visible_node
188             end
189          until getid(p)~=id_glyph
190          pid = getid(p) -- p must be non-nil
191       end
192       if pid==id_kern then
193          local pa = get_attr_icflag(p)
194          if pa==IC_PROCESSED then
195             -- do nothing
196          elseif getsubtype(p)==2 then
197             p = node_next(node_next(p));
198             -- Note that another node_next will be executed outside this if-statement.
199          else
200             found_visible_node = true
201             find_first_char = false; last_char = nil
202          end
203       elseif pid==id_hlist then
204          if PACKED == get_attr_icflag(p) then
205             local s = ltjd_glyph_from_packed(p)
206             if find_first_char then
207                first_char = s; find_first_char = false
208             end
209             last_char = s; found_visible_node = true
210          else
211             if getfield(p, 'shift')==0 then
212                last_char = nil
213                if check_box(getlist(p), nil) then found_visible_node = true end
214                find_first_char = false
215             else
216                find_first_char = false; last_char = nil
217             end
218          end
219       elseif pid==id_math then
220          if find_first_char then
221             first_char = p; find_first_char = false
222          end
223          last_char = p; found_visible_node = true
224       elseif pid==id_rule and get_attr_icflag(p)==PACKED then
225          -- do nothing
226       elseif not (pid==id_ins   or pid==id_mark
227                   or pid==id_adjust or pid==id_whatsit
228                   or pid==id_penalty) then
229          found_visible_node = true
230          find_first_char = false; last_char = nil
231       end
232       p = node_next(p)
233    end
234    return found_visible_node
235 end
236
237 check_box_high = function (Nx, box_ptr, box_end)
238    first_char = nil;  last_char = nil;  find_first_char = true
239    if check_box(box_ptr, box_end) then
240       local first_char = first_char
241       if first_char then
242          if getid(first_char)==id_glyph then
243             if if_lang_ja(first_char) then
244                set_np_xspc_jachar_hbox(Nx, first_char)
245             else
246                set_np_xspc_alchar(Nx, getchar(first_char),first_char, 1)
247             end
248          else -- math_node
249             set_np_xspc_alchar(Nx, -1,first_char)
250          end
251       end
252    end
253    return last_char
254 end
255 end
256 -------------------- Np の計算と情報取得
257
258 luatexbase.create_callback("luatexja.jfmglue.whatsit_getinfo", "data",
259                            function (Np, lp, Nq)
260                               if Np.nuc then return Np
261                               else
262                                  return Np  -- your code
263                               end
264                            end)
265 luatexbase.create_callback("luatexja.jfmglue.whatsit_after", "data",
266                            function (stat, Nq, Np) return false end)
267
268 -- calc next Np
269 local calc_np 
270 do
271
272 local traverse = node.direct.traverse
273 local function check_next_ickern(lp)
274    local lx = Np.nuc
275    while lp and getid(lp) == id_kern and ( getsubtype(lp)==3 or ITALIC == get_attr_icflag(lp)) do
276      set_attr(lp, attr_icflag, IC_PROCESSED);
277      lx, lp = lp, node_next(lp)
278    end
279    Np.last = lx; return lp
280 end
281
282 local function calc_np_pbox(lp, last)
283    local first, lpa, nc = (not Np.first), KINSOKU, nil
284    Np.first = Np.first or lp; Np.id = id_pbox
285    set_attr(lp, attr_icflag, get_attr_icflag(lp));
286    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
287       local lpi = getid(lp)
288       if lpi==id_hlist or lpi==id_vlist then
289          head, lp, nc = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm pbox')
290          Np.first = first and nc or Np.first
291       elseif (lpi==id_rule) and (lpa==PACKED) then
292          lp = node_next(lp)
293          nc, lp = lp, node_next(lp)
294       else
295          nc, lp = lp, node_next(lp)
296       end
297       first, lpa = false, (lp and has_attr(lp, attr_icflag) or 0)
298      -- get_attr_icflag() ではいけない!
299    end
300    Np.nuc = nc
301    lp = check_next_ickern(lp)
302    Np.last_char = check_box_high(Np, Np.first, lp)
303    return lp
304 end
305
306 local ltjw_apply_ashift_math = ltjw.apply_ashift_math
307 local ltjw_apply_ashift_disc = ltjw.apply_ashift_disc
308 local min, max = math.min, math.max
309 local function calc_np_aux_glyph_common(lp, acc_flag)
310    Np.nuc = lp
311    Np.first= (Np.first or lp)
312    if if_lang_ja(lp) then
313       Np.id = id_jglyph
314       local m, mc, cls = set_np_xspc_jachar(Np, lp)
315       local npi, npf
316       lp, head, npi, npf = capsule_glyph(lp, m, mc[cls], head, tex_dir)
317       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
318       Np.nuc = npi
319       return true, check_next_ickern(lp);
320    else
321       Np.id = id_glyph
322       set_np_xspc_alchar(Np, getchar(lp), lp, 1)
323       -- loop
324       local first_glyph, last_glyph = lp
325       set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
326       local y_adjust = has_attr(lp,attr_ablshift) or 0
327       local node_depth = getfield(lp, 'depth') + min(y_adjust, 0)
328       local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0
329       setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
330       lp = node_next(lp)
331       for lx in traverse(lp) do
332          local lai = get_attr_icflag(lx)
333          if lx==last or  lai>=PACKED then
334             lp=lx; break
335          else
336             local lid = getid(lx)
337             if lid==id_glyph and not if_lang_ja(lx) then
338                -- 欧文文字
339                last_glyph = lx; set_attr(lx, attr_icflag, PROCESSED); Np.last = lx
340                y_adjust = has_attr(lx,attr_ablshift) or 0
341                node_depth = max(getfield(lx, 'depth') + min(y_adjust, 0), node_depth)
342                adj_depth = (y_adjust>0) and max(getfield(lx, 'depth') + y_adjust, adj_depth) or adj_depth
343                setfield(lx, 'yoffset', getfield(lx, 'yoffset') - y_adjust)
344             elseif lid==id_kern then
345                local ls = getsubtype(lx)
346                if ls==2 then -- アクセント用の kern
347                   set_attr(lx, attr_icflag, PROCESSED)
348                   lx = node_next(lx) -- lx: アクセント本体
349                   if getid(lx)==id_glyph then
350                      setfield(lx, 'yoffset', getfield(lx, 'yoffset') - (has_attr(lx,attr_ablshift) or 0))
351                   else -- アクセントは上下にシフトされている
352                      setfield(lx, 'shift', getfield(lx, 'shift') + (has_attr(lx,attr_ablshift) or 0))
353                   end
354                   lx = node_next(node_next(lx))
355                elseif ls==0  then
356                   Np.last = lx
357                elseif (ls==3) or (lai==ITALIC) then
358                   Np.last = lx; set_attr(lx, attr_icflag, IC_PROCESSED)
359                else
360                   lp=lx; break
361                end
362             else
363                lp=lx; break
364             end
365          end
366       end
367       local r
368       if adj_depth>node_depth then
369             r = node_new(id_rule,3)
370             setfield(r, 'width', 0); setfield(r, 'height', 0)
371             setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir)
372             set_attr(r, attr_icflag, PROCESSED)
373       end
374       if last_glyph then
375          Np.last_char = last_glyph
376          if r then insert_after(head, first_glyph, r) end
377       else
378          local npn = Np.nuc
379          Np.last_char = npn
380          if r then
381             local nf, nc = getfont(npn), getchar(npn)
382             local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
383             if not ct then -- variation selector
384                node_free(r)
385             elseif (ct.left_protruding or 0) == 0 then
386                head = insert_before(head, npn, r)
387                Np.first = acc_flag and Np.first or ((Np.first==npn) and r or npn)
388             elseif (ct.right_protruding or 0) == 0 then
389                insert_after(head, npn, r); Np.last, lp = r, r
390             else
391                ltjb.package_warning_no_line(
392                   'luatexja',
393                   'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf
394                      .. ', char=' .. nc .. '),    because its \\lpcode is ' .. tostring(ct.left_protruding)
395                      .. ' and its \\rpcode is ' .. tostring(ct.right_protruding)
396                ); node_free(r)
397             end
398          end
399       end
400       return true, lp
401    end
402 end
403 local calc_np_auxtable
404 do
405 local node_end_of_math = node.direct.end_of_math
406 local dir_tate = luatexja.dir_table.dir_tate
407 local sid_start_link = node.subtype('pdf_start_link')
408 local sid_start_thread = node.subtype('pdf_start_thread')
409 local sid_end_link = node.subtype('pdf_end_link')
410 local sid_end_thread = node.subtype('pdf_end_thread')
411 calc_np_auxtable = {
412    [id_glyph] = calc_np_aux_glyph_common,
413    [id_hlist] = function(lp)
414       local op, flag
415       head, lp, op, flag = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm hlist')
416       set_attr(op, attr_icflag, PROCESSED)
417       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
418       if (flag or getfield(op, 'shift')~=0) then
419          Np.id = id_box_like
420       else
421          Np.id = id_hlist
422          Np.last_char = check_box_high(Np, getlist(op), nil)
423       end
424       return true, lp
425    end,
426    [id_vlist] =  function(lp)
427       local op
428       head, lp, op = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm:' .. getid(lp))
429       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
430       Np.id = id_box_like;
431       return true, lp
432    end,
433    box_like = function(lp)
434       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
435       Np.id = id_box_like;
436       return true, node_next(lp)
437    end,
438    [id_whatsit] = function(lp)
439       local lps = getsubtype(lp)
440       if lps==sid_user then
441          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
442             local lq = node_next(lp);
443             head = node_remove(head, lp); node_free(lp); non_ihb_flag = false
444             return false, lq;
445          else
446             set_attr(lp, attr_icflag, PROCESSED)
447             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
448                                      Np, lp, Nq)
449             if Np.nuc then
450                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
451                return true, node_next(lp)
452             else
453                return false, node_next(lp)
454             end
455          end
456       else
457          -- we do special treatment for these whatsit nodes.
458          if lps == sid_start_link or lps == sid_start_thread then
459             Np.first = lp
460          elseif lps == sid_end_link or lps == sid_end_thread then
461             Np.first, Nq.last = nil, lp;
462          end
463          set_attr(lp, attr_icflag, PROCESSED)
464          return false, node_next(lp)
465       end
466    end,
467    [id_math] = function(lp)
468       Np.first, Np.nuc = (Np.first or lp), lp;
469       set_attr(lp, attr_icflag, PROCESSED)
470       set_np_xspc_alchar(Np, -1, lp)
471       local end_math  = node_end_of_math(lp)
472       ltjw_apply_ashift_math(lp, end_math, attr_ablshift)
473       set_attr(end_math, attr_icflag, PROCESSED)
474       Np.last, Np.id = end_math, id_math;
475       return true, node_next(end_math);
476    end,
477    [id_glue] = function(lp)
478       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
479       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
480       return true, node_next(lp)
481    end,
482    [id_disc] = function(lp)
483       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
484       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
485       ltjw_apply_ashift_disc(lp, (list_dir==dir_tate), tex_dir)
486       Np.last_char = check_box_high(Np, getfield(lp, 'replace'), nil)
487       return true, node_next(lp)
488    end,
489    [id_kern] = function(lp)
490       if getsubtype(lp)==2 then
491          Np.first = Np.first or lp
492          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
493          if getid(lp)==id_glyph then -- アクセント本体
494             setfield(lp, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lp,attr_ablshift) or 0))
495          else -- アクセントは上下にシフトされている
496             setfield(lp, 'shift', getfield(lp, 'shift') + (has_attr(lp,attr_ablshift) or 0))
497          end
498          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
499          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
500          set_attr(lp, attr_icflag, PROCESSED);
501          return calc_np_aux_glyph_common(lp, true)
502       else
503          Np.first = Np.first or lp
504          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
505          Np.last = lp; return true, node_next(lp)
506       end
507    end,
508    [id_penalty] = function(lp)
509       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
510       return false, node_next(lp)
511    end,
512 }
513 end
514 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
515 calc_np_auxtable[15]        = calc_np_auxtable.box_like
516
517 local function calc_np_aux_skip (lp)
518    set_attr(lp, attr_icflag, PROCESSED)
519    return false, node_next(lp)
520 end
521
522 function calc_np(last, lp)
523    local k
524    -- We assume lp = node_next(Np.last)
525    Np, Nq, non_ihb_flag = Nq, Np, true
526    -- We clear `predefined' entries of Np before pairs() loop,
527    -- because using only pairs() loop is slower.
528    Np.post, Np.pre, Np.xspc = nil, nil, nil
529    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
530    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
531    for k in pairs(Np) do Np[k] = nil end
532
533    for k = 1,#Bp do Bp[k] = nil end
534    while lp ~= last  do
535       local lpa = has_attr(lp, attr_icflag) or 0
536       -- unbox 由来ノードの検出
537       if lpa>=PACKED then
538          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
539             local lq = node_next(lp)
540             head = node_remove(head, lp); node_free(lp); lp = lq
541          else
542             return calc_np_pbox(lp, last)
543          end -- id_pbox
544       else
545          k, lp = (calc_np_auxtable[getid(lp)] or calc_np_aux_skip)(lp)
546          if k then return lp end
547       end
548    end
549    Np=nil
550 end
551 end
552
553 -- extract informations from Np
554 -- We think that "Np is a Japanese character" if Np.met~=nil,
555 --            "Np is an alphabetic character" if Np.pre~=nil,
556 --            "Np is not a character" otherwise.
557 local after_hlist = nil -- global
558 local after_alchar, extract_np
559 do
560   local PRE  = luatexja.stack_table_index.PRE
561   local POST = luatexja.stack_table_index.POST
562   local KCAT = luatexja.stack_table_index.KCAT
563   local XSP  = luatexja.stack_table_index.XSP
564   local dir_tate = luatexja.dir_table.dir_tate
565
566 -- 和文文字のデータを取得
567    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
568    local attr_jchar_code = luatexbase.attributes['ltj@charcode']
569    local attr_autospc = luatexbase.attributes['ltj@autospc']
570    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
571    local getcomponents = node.direct.getcomponents
572    --local ltjf_get_vert_glyph = ltjf.get_vert_glyph
573    function set_np_xspc_jachar(Nx, x)
574       local m = ltjf_font_metric_table[getfont(x)]
575       local c, c_glyph = (not getcomponents(x) and ltjs_orig_char_table[x]), getchar(x)
576       if c and c~=c_glyph then set_attr(x, attr_jchar_code, c) end
577       c = c or c_glyph
578       local cls = slow_find_char_class(c, m, c_glyph)
579       Nx.met, Nx.class, Nx.char = m, cls, c;
580       local mc = m.char_type; Nx.char_type = mc
581       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
582       Nx.pre  = table_current_stack[PRE + c]  or 0
583       Nx.post = table_current_stack[POST + c] or 0
584       Nx.xspc = table_current_stack[XSP  + c] or 3
585       Nx.kcat = table_current_stack[KCAT + c] or 0
586       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
587       return m, mc, cls
588    end
589    function set_np_xspc_jachar_hbox(Nx, x)
590       local m = ltjf_font_metric_table[getfont(x)]
591       local c = has_attr(x, attr_jchar_code) or getchar(x)
592       Nx.met, Nx.char  = m, c; Nx.class = has_attr(x, attr_jchar_class) or 0;
593       local mc = m.char_type; Nx.char_type = mc
594       Nx.pre  = table_current_stack[PRE + c]  or 0
595       Nx.post = table_current_stack[POST + c] or 0
596       Nx.xspc = table_current_stack[XSP  + c] or 3
597       Nx.kcat = table_current_stack[KCAT + c] or 0
598       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
599    end
600
601 -- 欧文文字のデータを取得
602    local floor = math.floor
603    local nullfunc = function(n) return n end
604    function set_np_xspc_alchar(Nx, c,x, lig)
605       if c~=-1 then
606          local f = (lig ==1) and nullfunc or node_tail
607          local xc, xs = getcomponents(x), getsubtype(x)
608          while xc and xs and xs%4>=2 do
609             x = f(xc); xc, xs = getcomponents(x), getsubtype(x)
610          end
611          c = getchar(x)
612          Nx.pre  = table_current_stack[PRE + c]  or 0
613          Nx.post = table_current_stack[POST + c] or 0
614       else
615          Nx.pre, Nx.post = 0, 0
616       end
617       Nx.met = nil
618       Nx.xspc = table_current_stack[XSP  + c] or 3
619       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
620    end
621    local set_np_xspc_alchar = set_np_xspc_alchar
622
623    -- change the information for the next loop
624    -- (will be done if Nx is an alphabetic character or a hlist)
625    after_hlist = function (Nx)
626       local s = Nx.last_char
627       if s then
628          if getid(s)==id_glyph then
629             if if_lang_ja(s) then
630                set_np_xspc_jachar_hbox(Nx, s)
631             else
632                set_np_xspc_alchar(Nx, getchar(s), s, 2)
633             end
634          else
635             set_np_xspc_alchar(Nx, -1, s)
636          end
637       else
638          Nx.pre, Nx.met = nil, nil
639       end
640    end
641
642    after_alchar = function (Nx)
643       local x = Nx.last_char
644       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
645    end
646
647 end
648
649 -------------------- 最下層の処理
650
651 luatexbase.create_callback('luatexja.adjust_jfmglue', 'simple', function(n) return n end)
652
653 -- change penalties (or create a new penalty, if needed)
654 local function handle_penalty_normal(post, pre, g)
655    luatexbase.call_callback('luatexja.adjust_jfmglue', head, Nq, Np, Bp)
656    local a = (pre or 0) + (post or 0)
657    if #Bp == 0 then
658       if (a~=0 and not(g and getid(g)==id_kern)) then
659          local p = node_new(id_penalty)
660          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
661          setfield(p, 'penalty', a)
662          head = insert_before(head, Np.first, p)
663          Bp[1]=p;
664          set_attr(p, attr_icflag, KINSOKU)
665       end
666    else for _, v in pairs(Bp) do add_penalty(v,a) end
667    end
668 end
669
670 local function handle_penalty_always(post, pre, g)
671    luatexbase.call_callback('luatexja.adjust_jfmglue', head, Nq, Np, Bp)
672    local a = (pre or 0) + (post or 0)
673    if #Bp == 0 then
674       if not (g and getid(g)==id_glue) or a~=0 then
675          local p = node_new(id_penalty)
676          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
677          setfield(p, 'penalty', a)
678          head = insert_before(head, Np.first, p)
679          Bp[1]=p
680          set_attr(p, attr_icflag, KINSOKU)
681       end
682    else for _, v in pairs(Bp) do add_penalty(v,a) end
683    end
684 end
685
686 local function handle_penalty_suppress(post, pre, g)
687    luatexbase.call_callback('luatexja.adjust_jfmglue', head, Nq, Np, Bp)
688    if #Bp == 0 then
689       if g and getid(g)==id_glue then
690          local p = node_new(id_penalty)
691          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
692          Bp[1]=p
693          set_attr(p, attr_icflag, KINSOKU)
694       end
695    else 
696       local a = (pre or 0) + (post or 0)
697       for _, v in pairs(Bp) do add_penalty(v,a) end
698    end
699 end
700
701 local function handle_penalty_jwp()
702    local a = table_current_stack[luatexja.stack_table_index.JWP]
703    if #widow_Bp == 0 then
704       if a~=0 then
705          local p = node_new(id_penalty)
706          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
707          setfield(p, 'penalty', a)
708          head = insert_before(head, widow_Np.first, p)
709          widow_Bp[1]=p;
710          set_attr(p, attr_icflag, KINSOKU)
711       end
712    else for _, v in pairs(widow_Bp) do add_penalty(v,a) end
713    end
714 end
715
716 -- 和文文字間の JFM glue を node 化
717 local function new_jfm_glue(mc, bc, ac)
718 -- bc, ac: char classes
719    local g = mc[bc][ac]
720    if g then
721        if g[1] then
722            return node_copy(g[1]), g.ratio, false, false, false
723        else
724          local f = node_new(id_glue)
725          set_attr(f, attr_icflag, g.priority)
726          setglue(f, g.width, g.stretch, g.shrink)
727          return f, g.ratio, g.kanjiskip_natural, g.kanjiskip_stretch, g.kanjiskip_shrink
728       end
729    end
730    return false, 0
731 end
732
733 -- Nq.last (kern w) .... (glue/kern g) Np.first
734 local function real_insert(g)
735    if g then
736       head  = insert_before(head, Np.first, g)
737       Np.first = g
738    end
739 end
740
741
742 -------------------- 和文文字間空白量の決定
743 local calc_ja_ja_aux
744 do
745    local round = tex.round
746    local bg_ag = 2*id_glue - id_glue
747    local bg_ak = 2*id_glue - id_kern
748    local bk_ag = 2*id_kern - id_glue
749    local bk_ak = 2*id_kern - id_kern
750
751    local function blend_diffmet(b, a, rb, ra)
752       return round(luatexja.jfmglue.diffmet_rule((1-rb)*b+rb*a, (1-ra)*b+ra*a))
753    end
754    calc_ja_ja_aux = function (gb, ga, db, da)
755       if luatexja.jfmglue.diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
756           and luatexja.jfmglue.diffmet_rule ~= math.two_paverage then
757          db, da = 0, 1
758       end
759       if not gb then
760          if ga then
761             gb = node_new(id_kern, 1); setfield(gb, 'kern', 0)
762          else return nil end
763       elseif not ga then
764          ga = node_new(id_kern, 1); setfield(ga, 'kern', 0)
765       end
766
767       local k = 2*getid(gb) - getid(ga)
768       if k == bg_ag then
769          -- 両方とも glue.
770          setglue(gb, blend_diffmet(
771                         getfield(gb, 'width'), getfield(ga, 'width'), db, da),
772                      blend_diffmet(
773                         getfield(gb, 'stretch'), getfield(ga, 'stretch'), db, da),
774                      -blend_diffmet(
775                      -getfield(gb, 'shrink'), -getfield(ga, 'shrink'), db, da))
776          node_free(ga)
777          return gb
778       elseif k == bk_ak then
779          -- 両方とも kern.
780          setfield(gb, 'kern', blend_diffmet(
781                      getfield(gb, 'kern'), getfield(ga, 'kern'), db, da))
782          node_free(ga)
783          return gb
784       elseif k == bk_ag then
785          -- gb: kern, ga: glue
786          setglue(ga, blend_diffmet(
787                         getfield(gb, 'kern'), getfield(ga, 'width'), db, da),
788                      blend_diffmet(
789                         0, getfield(ga, 'stretch'), db, da),
790                      -blend_diffmet(
791                         0, -getfield(ga, 'shrink'), db, da))
792          node_free(gb)
793          return ga, 0, 0, 0
794       else
795          -- gb: glue, ga: kern
796          setglue(gb, blend_diffmet(
797                         getfield(gb, 'width'), getfield(ga, 'kern'), db, da),
798                      blend_diffmet(
799                         getfield(gb, 'stretch'), 0, db, da),
800                      -blend_diffmet(
801                         -getfield(gb, 'shrink'), 0, db, da))
802          node_free(ga)
803          return gb
804       end
805    end
806 end
807
808 local null_skip_table = {0, 0, 0}
809 -- get kanjiskip
810 local get_kanjiskip, kanjiskip_jfm_flag
811 local get_kanjiskip_low
812 local calc_ja_ja_glue
813 do
814    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
815    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
816
817    get_kanjiskip_low = function(flag, qm, bn, bp, bh)
818       if flag or (qm.with_kanjiskip and (bn or bp or bh)) then
819          if kanjiskip_jfm_flag then
820             local g = node_new(id_glue);
821             local bk = qm.kanjiskip or null_skip_table
822             setglue(g, bn and (bn*bk[1]) or 0, 
823                        bp and (bp*bk[2]) or 0, 
824                        bh and (bh*bk[3]) or 0, 0, 0)
825             set_attr(g, attr_icflag, KANJI_SKIP_JFM)
826             return g
827          elseif flag then
828             return node_copy(kanji_skip)
829          else
830             local g = node_new(id_glue);
831             setglue(g,
832                bn and (bn*getfield(kanji_skip, 'width')) or 0,
833                bp and (bp*getfield(kanji_skip, 'stretch')) or 0,
834                bh and (bh*getfield(kanji_skip, 'shrink')) or 0,
835                0, 0)
836             set_attr(g, attr_icflag, KANJI_SKIP_JFM)
837             return g
838          end
839       end
840    end
841    
842    get_kanjiskip = function()
843       if Np.auto_kspc==0 or Nq.auto_kspc==0 then
844         return nil 
845       elseif Np.auto_kspc or Nq.auto_kspc then
846          local pm, qm = Np.met, Nq.met
847          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
848              return get_kanjiskip_low(true, qm, 1, 1, 1)
849          else
850             local gb = get_kanjiskip_low(true, qm, 1, 1, 1)
851             local ga = get_kanjiskip_low(true, pm, 1, 1, 1)
852             return calc_ja_ja_aux(gb, ga, 0, 1)
853          end
854       else   
855          local g = node_new(id_glue)
856          set_attr(g, attr_icflag, kanjiskip_jfm_flag and KANJI_SKIP_JFM or KANJI_SKIP)
857          return g
858       end
859    end
860
861    calc_ja_ja_glue = function ()
862       local qm, pm = Nq.met, Np.met
863       local qmc, pmc = qm.char_type, pm.char_type
864       if (qmc==pmc) and (qm.var==pm.var) then
865          local g, _, kn, kp, kh = new_jfm_glue(qmc, Nq.class, Np.class)
866          return g, (Np.auto_kspc or Nq.auto_kspc) and get_kanjiskip_low(false, qm, kn, kp, kh)
867       else
868          local npn, nqn = Np.nuc, Nq.nuc
869          local gb, db, bn, bp, bh 
870             = new_jfm_glue(qmc, Nq.class,
871                            slow_find_char_class(Np.char,
872                                                 qm, getchar(npn)))
873          local ga, da, an, ap, ah 
874             = new_jfm_glue(pmc,
875                            slow_find_char_class(Nq.char,
876                                                 pm, getchar(nqn)),
877                                                  Np.class)
878          local g = calc_ja_ja_aux(gb, ga, db, da)
879          local k
880          if (pmc==qmc) and (qm.var==pm.var) then
881             gb = get_kanjiskip_low(false, qm, bn, bp, bh)
882             ga = get_kanjiskip_low(false, pm, an, ap, ah)
883             k = calc_ja_ja_aux(gb, ga, db, da)
884          end
885          return g, k
886       end
887    end
888 end
889
890 -------------------- 和欧文間空白量の決定
891
892 -- get xkanjiskip
893 local get_xkanjiskip, xkanjiskip_jfm_flag
894 local get_xkanjiskip_normal, get_xkanjiskip_jfm
895 local get_xkanjiskip_low
896 do
897    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
898    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
899
900    get_xkanjiskip_low = function(flag, qm, bn, bp, bh)
901       if flag or (qm.with_kanjiskip and (bn or bp or bh)) then
902          if xkanjiskip_jfm_flag then
903             local g = node_new(id_glue);
904             local bk = qm.xkanjiskip or null_skip_table
905             setglue(g, bn and bk[1] or 0,
906                        bp and bk[2] or 0,
907                        bh and bk[3] or 0, 0, 0)
908             set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
909             return g
910          elseif flag then
911             return node_copy(xkanji_skip)
912          else
913             local g = node_new(id_glue);
914             setglue(g,
915                bn and (bn*getfield(xkanji_skip, 'width')) or 0,
916                bp and (bp*getfield(xkanji_skip, 'stretch')) or 0,
917                bh and (bh*getfield(xkanji_skip, 'shrink')) or 0,
918                0, 0)
919             set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
920             return g
921          end
922       end
923    end
924    
925    get_xkanjiskip = function(Nn)
926       if Np.auto_xspc==0 or Nq.auto_xspc==0 then
927         return nil 
928       elseif (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
929          return get_xkanjiskip_low(true, Nn.met, 1, 1, 1)
930       else
931          local g = node_new(id_glue)
932          set_attr(g, attr_icflag, xkanjiskip_jfm_flag and XKANJI_SKIP_JFM or XKANJI_SKIP)
933          return g
934       end
935    end
936 end
937
938 -------------------- 隣接した「塊」間の処理
939
940 local function combine_spc(name)
941    return (Np[name] or Nq[name]) and ((Np[name]~=0) and (Nq[name]~=0))
942 end
943
944 -- NA, NB: alchar or math
945 local function get_NA_skip()
946    local pm = Np.met
947    local g, _, kn, kp, kh = new_jfm_glue(
948       pm.char_type,
949       fast_find_char_class(
950         (Nq.id == id_math and -1 or (Nq.xspc>=2 and 'alchar' or 'nox_alchar')), pm), 
951       Np.class)
952    local k = ((Nq.xspc>=2) and (Np.xspc%2==1) and combine_spc('auto_xspc'))
953        and get_xkanjiskip_low(false, pm, kn, kp, kh)
954    return g, k
955 end
956 local function get_NB_skip()
957    local qm = Nq.met
958    local g, _, kn, kp, kh = new_jfm_glue(
959       qm.char_type, Nq.class,
960       fast_find_char_class(
961         (Np.id == id_math and -1 or (Np.xspc%2==1 and 'alchar' or 'nox_alchar')), qm)
962     )
963    local k = ((Nq.xspc>=2) and (Np.xspc%2==1) and combine_spc('auto_xspc'))
964          and get_xkanjiskip_low(false, qm, kn, kp, kh)
965    return g, k
966 end
967
968 local function get_OA_skip(is_kanji)
969    local pm = Np.met
970    local g, _, kn, kp, kh = new_jfm_glue(
971       pm.char_type,
972       fast_find_char_class(
973         (((Nq.id==id_glue)or(Nq.id==id_kern)) and 'glue' or 'jcharbdd'), pm), 
974       Np.class)
975    local k
976    if is_kanji==0 then
977       k = combine_spc('auto_kspc') and get_kanjiskip_low(false, pm, kn, kp, kh)
978    end
979    return g, k
980 end
981 local function get_OB_skip(is_kanji)
982    local qm = Nq.met
983    local g, _, kn, kp, kh = new_jfm_glue(
984       qm.char_type, Nq.class,
985       fast_find_char_class(
986         (((Np.id==id_glue)or(Np.id==id_kern)) and 'glue' or 'jcharbdd'), qm))
987    local k
988    if is_kanji==0 then
989       k = combine_spc('auto_kspc') and get_kanjiskip_low(false, qm, kn, kp, kh)
990    end
991    return g, k
992 end
993
994 -- (anything) .. jachar
995 local function handle_np_jachar(mode)
996    local qid = Nq.id
997    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
998       local g, k
999       if non_ihb_flag then g, k = calc_ja_ja_glue() end -- M->K
1000       if not g then g = get_kanjiskip() end
1001       handle_penalty_normal(Nq.post, Np.pre, g); 
1002       real_insert(g); real_insert(k)
1003    elseif Nq.met then  -- qid==id_hlist
1004       local g, k
1005       if non_ihb_flag then g, k = get_OA_skip(0) end -- O_A->K
1006       if not g then g = get_kanjiskip() end
1007       handle_penalty_normal(0, Np.pre, g); real_insert(g); real_insert(k)
1008    elseif Nq.pre then
1009       local g, k
1010       if non_ihb_flag then g, k = get_NA_skip() end -- N_A->X
1011       if not g then g = get_xkanjiskip(Np) end
1012       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); 
1013       real_insert(g); real_insert(k)
1014    else
1015       local g = non_ihb_flag and (get_OA_skip()) -- O_A
1016       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
1017       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
1018       else handle_penalty_always(0, Np.pre, g)
1019       end
1020       real_insert(g)
1021    end
1022    if mode and Np.kcat%2~=1 then
1023       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
1024    end
1025 end
1026
1027
1028 -- jachar .. (anything)
1029 local function handle_nq_jachar()
1030     if Np.pre then
1031       local g = non_ihb_flag and get_NB_skip() or get_xkanjiskip(Nq) -- N_B->X
1032       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
1033    else
1034       local g =non_ihb_flag and  (get_OB_skip()) -- O_B
1035       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
1036       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
1037       else handle_penalty_always(Nq.post, 0, g)
1038       end
1039       real_insert(g)
1040    end
1041 end
1042
1043 -- (anything) .. (和文文字で始まる hlist)
1044 local function handle_np_ja_hlist()
1045    local qid = Nq.id
1046    if qid==id_jglyph or ((qid==id_pbox or qid == id_pbox_w) and Nq.met) then
1047       local g = non_ihb_flag and get_OB_skip(0) or get_kanjiskip() -- O_B->K
1048       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
1049    elseif Nq.met then  -- Nq.id==id_hlist
1050       local g = get_kanjiskip() -- K
1051       handle_penalty_suppress(0, 0, g); real_insert(g)
1052    elseif Nq.pre then
1053       local g = get_xkanjiskip(Np) -- X
1054       handle_penalty_suppress(0, 0, g); real_insert(g)
1055    end
1056 end
1057
1058 -- (和文文字で終わる hlist) .. (anything)
1059 local function handle_nq_ja_hlist()
1060    if Np.pre then
1061       local g = get_xkanjiskip(Nq) -- X
1062       handle_penalty_suppress(0, 0, g); real_insert(g)
1063    end
1064 end
1065
1066
1067 -- Nq が前側のクラスタとなることによる修正
1068 local adjust_nq
1069 do
1070    local adjust_nq_aux = {
1071       [id_glyph] = function() after_alchar(Nq) end, -- after_alchar(Nq)
1072       [id_hlist]  = function() after_hlist(Nq) end,
1073       [id_pbox]  = function() after_hlist(Nq) end,
1074       [id_disc]  = function() after_hlist(Nq) end,
1075       [id_pbox_w]  = function()
1076                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
1077                                                  false, Nq, Np)
1078                      end,
1079    }
1080
1081    adjust_nq=function()
1082       local x = adjust_nq_aux[Nq.id]
1083       if x then x()  end
1084    end
1085 end
1086
1087
1088 -------------------- 開始・終了時の処理
1089 do
1090 local node_prev = node.direct.getprev
1091 -- リスト末尾の処理
1092 local function handle_list_tail(mode, last)
1093    adjust_nq()
1094    if mode then
1095       -- the current list is to be line-breaked.
1096       -- Insert \jcharwidowpenalty
1097       if widow_Np.first then handle_penalty_jwp() end
1098    else
1099       Np=Nq       
1100       -- the current list is the contents of a hbox
1101       local npi, pm = Np.id, Np.met
1102       if npi == id_jglyph or (npi==id_pbox and pm) then
1103          local g = new_jfm_glue(pm.char_type, Np.class, fast_find_char_class('boxbdd', pm))
1104          if g then
1105             set_attr(g, attr_icflag, BOXBDD)
1106             head = insert_after(head, Np.last, g)
1107          end
1108       end
1109    end
1110 end
1111
1112 -- リスト先頭の処理
1113 local function handle_list_head(par_indented)
1114    local npi, pm = Np.id, Np.met
1115    if npi ==  id_jglyph or (npi==id_pbox and pm) then
1116       if non_ihb_flag then
1117          local g = new_jfm_glue(pm.char_type, fast_find_char_class(par_indented, pm), Np.class)
1118          if g then
1119             set_attr(g, attr_icflag, BOXBDD)
1120             if getid(g)==id_glue and #Bp==0 then
1121                local h = node_new(id_penalty)
1122                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
1123             end
1124             head = insert_before(head, Np.first, g)
1125          end
1126       end
1127    end
1128 end
1129
1130 -- initialize
1131 -- return value: (the initial cursor lp), (last node)
1132 local init_var
1133 do
1134    local id_local = node.id('local_par')
1135    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
1136    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
1137    local KSK  = luatexja.stack_table_index.KSK
1138    local XSK  = luatexja.stack_table_index.XSK
1139    local dir_yoko = luatexja.dir_table.dir_yoko
1140    local dir_tate = luatexja.dir_table.dir_tate
1141    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
1142    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
1143    local table_pool = {
1144       {}, {}, {first=nil},
1145       { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1146         first=nil, id=nil, last=nil, met=nil, nuc=nil,
1147         post=nil, pre=nil, xspc=nil, }, 
1148       { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1149         first=nil, id=nil, last=nil, met=nil, nuc=nil,
1150         post=nil, pre=nil, xspc=nil, },
1151    }
1152    init_var = function (mode,dir)
1153       -- 1073741823: max_dimen
1154       Bp, widow_Bp, widow_Np, Np, Nq
1155          = table_pool[1], table_pool[2], table_pool[3], table_pool[4], table_pool[5]
1156       for i=1,5 do for j,_ in pairs(table_pool[i]) do table_pool[i][j]=nil end end
1157       table_current_stack = ltjs.table_current_stack
1158
1159       list_dir, tex_dir = (ltjs.list_dir or dir_yoko), (dir or 'TLT')
1160       local is_dir_tate = list_dir==dir_tate
1161       capsule_glyph = is_dir_tate and ltjw.capsule_glyph_tate or ltjw.capsule_glyph_yoko
1162       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
1163       local TEMP = node_new(id_glue) 
1164       -- TEMP is a dummy node, which will be freed at the end of the callback. 
1165       -- ithout this node, set_attr(kanji_skip, ...) somehow creates an "orphaned"  attribute list.
1166
1167       do
1168           kanji_skip, kanjiskip_jfm_flag = skip_table_to_glue(KSK)
1169           set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
1170       end
1171
1172       do
1173           xkanji_skip, xkanjiskip_jfm_flag = skip_table_to_glue(XSK)
1174           set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
1175       end
1176
1177       if mode then
1178          -- the current list is to be line-breaked:
1179          -- hbox from \parindent is skipped.
1180          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
1181          while lp and 
1182             ((lpi==id_whatsit and lps~=sid_user)
1183                or ((lpi==id_hlist) and (lps==3))
1184                or (lpi==id_local)) do
1185             if (lpi==id_hlist) and (lps==3) then
1186                Np.char, par_indented = 'parbdd', 'parbdd'
1187                Np.width = getfield(lp, 'width')
1188             end
1189             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
1190          return lp, node_tail(head), par_indented, TEMP
1191       else
1192          return head, nil, 'boxbdd', TEMP
1193       end
1194    end
1195 end
1196
1197 local ensure_tex_attr = ltjb.ensure_tex_attr
1198 local function cleanup(mode, TEMP)
1199    -- luatexja.ext_show_node_list(to_node(head), '> ', print)
1200    -- adjust attr_icflag for avoiding error
1201    if tex.getattribute(attr_icflag)~=0 then ensure_tex_attr(attr_icflag, 0) end
1202    node_free(kanji_skip); 
1203    node_free(xkanji_skip); node_free(TEMP)
1204    
1205    if mode then
1206       local h = node_next(head)
1207       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
1208          h = node_next(h)
1209          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
1210             return false
1211          end
1212       end
1213    end
1214    return head
1215 end
1216 -------------------- 外部から呼ばれる関数
1217
1218 -- main interface
1219 function luatexja.jfmglue.main(ahead, mode, dir)
1220    if not ahead then return ahead end
1221    --luatexja.ext_show_node_list(to_node(ahead ), '>B ', print)
1222    --print()
1223    head = ahead;
1224    local lp, last, par_indented, TEMP = init_var(mode,dir)
1225    lp = calc_np(last, lp)
1226    if Np then
1227       handle_list_head(par_indented)
1228       lp = calc_np(last,lp); 
1229       while Np do
1230          adjust_nq();
1231          local pid, pm = Np.id, Np.met
1232          -- 挿入部
1233          if pid == id_jglyph then
1234             handle_np_jachar(mode)
1235          elseif pm then
1236             if pid==id_hlist then handle_np_ja_hlist()
1237             else handle_np_jachar() end
1238          elseif Nq.met then
1239             if Nq.id==id_hlist then handle_nq_ja_hlist()
1240             else handle_nq_jachar() end
1241          end
1242          lp = calc_np(last,lp)
1243       end
1244       handle_list_tail(mode, last)
1245    end
1246    --luatexja.ext_show_node_list(to_node(ahead ), '>A ', print)
1247    --print()
1248    return cleanup(mode, TEMP)
1249 end
1250 end
1251
1252 do
1253    local IHB  = luatexja.userid_table.IHB
1254    local BPAR = luatexja.userid_table.BPAR
1255    local BOXB = luatexja.userid_table.BOXB
1256    local node_prev = node.direct.getprev
1257    local node_write = node.direct.write
1258
1259    -- \inhibitglue
1260    function luatexja.jfmglue.create_inhibitglue_node()
1261       local tn = node_new(id_whatsit, sid_user)
1262       setfield(tn, 'user_id', IHB)
1263       setfield(tn, 'type', 100)
1264       setfield(tn, 'value', 1)
1265       node_write(tn)
1266    end
1267
1268    -- Node for indicating beginning of a paragraph
1269    -- (for ltjsclasses)
1270    function luatexja.jfmglue.create_beginpar_node()
1271       local tn = node_new(id_whatsit, sid_user)
1272       setfield(tn, 'user_id', BPAR)
1273       setfield(tn, 'type', 100)
1274       setfield(tn, 'value', 1)
1275       node_write(tn)
1276    end
1277
1278    -- Node for indicating a head/end of a box
1279    function luatexja.jfmglue.create_boxbdd_node()
1280       local tn = node_new(id_whatsit, sid_user)
1281       setfield(tn, 'user_id', BOXB)
1282       setfield(tn, 'type', 100)
1283       setfield(tn, 'value', 1)
1284       node_write(tn)
1285    end
1286
1287    local function whatsit_callback(Np, lp, Nq)
1288       if Np and Np.nuc then return Np
1289       elseif Np and getfield(lp, 'user_id') == BPAR then
1290          Np.first = lp; Np.nuc = lp; Np.last = lp
1291          return Np
1292       elseif Np and getfield(lp, 'user_id') == BOXB then
1293          Np.first = lp; Np.nuc = lp; Np.last = lp
1294          if Nq then
1295             if Nq.met then
1296                Np.class = fast_find_char_class('boxbdd', Nq.met)
1297             end
1298             Np.met = Nq.met; Np.pre = 0; Np.post = 0; Np.xspc = 0
1299             Np.auto_xspc, Np.auto_kspc = 0, 0
1300          end     
1301          return Np
1302       else
1303          return Np
1304       end
1305    end
1306
1307     local function whatsit_after_callback(s, Nq, Np)
1308        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1309          local x, y = node_prev(Nq.nuc), Nq.nuc
1310          Nq.first, Nq.nuc, Nq.last = x, x, x
1311          if Np then
1312             if Np.met then
1313                Nq.class = fast_find_char_class('parbdd', Np.met)
1314             end
1315             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1316             Nq.auto_xspc, Nq.auto_kspc = 0, 0
1317          end
1318          head = node_remove(head, y)
1319          node_free(y)
1320        elseif not s and getfield(Nq.nuc, 'user_id') == BOXB then
1321          local x, y = node_prev(Nq.nuc), Nq.nuc
1322          Nq.first, Nq.nuc, Nq.last = x, x, x
1323          if Np then
1324             if Np.met then
1325                Nq.class = fast_find_char_class('boxbdd', Np.met)
1326             end
1327             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1328             Nq.auto_xspc, Nq.auto_kspc = 0, 0
1329          end
1330          head = node_remove(head, y)
1331          node_free(y)
1332       end
1333       return s
1334    end
1335
1336    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1337                               "luatexja.beginpar.np_info", 1)
1338    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1339                               "luatexja.beginpar.np_info_after", 1)
1340
1341 end
1342
1343 luatexja.jfmglue.after_hlist = after_hlist
1344 luatexja.jfmglue.check_box_high = check_box_high