OSDN Git Service

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