OSDN Git Service

Revert "check_box: ignore JFM glue between 'boxbdd'"
[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 = '2019/07/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 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 -- 001 -----------------------------------------------
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)==0 or 
276      getsubtype(lp)==3 or ITALIC == get_attr_icflag(lp)) do
277      set_attr(lp, attr_icflag, IC_PROCESSED);
278      lx, lp = lp, node_next(lp)
279    end
280    Np.last = lx; return lp
281 end
282
283 local function calc_np_pbox(lp, last)
284    local first, nc = (not Np.first), nil
285    --local lpa = get_attr_icflag(lp)==PACKED and PACKED or KINSOKU -- KINSOKU: dummy
286    local lpa = get_attr_icflag(lp)
287    Np.first = Np.first or lp; Np.id = id_pbox
288    set_attr(lp, attr_icflag, get_attr_icflag(lp));
289    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
290       local lpi = getid(lp)
291       if lpa==PACKED then
292          if lpi==id_rule then lp = node_next(lp) end
293          nc, lp = lp, node_next(lp)
294       elseif lpi==id_hlist or lpi==id_vlist then
295          head, lp, nc = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm pbox')
296          Np.first = first and nc or Np.first
297       else
298          nc, lp = lp, node_next(lp)
299       end
300       first, lpa = false, (lp and has_attr(lp, attr_icflag) or 0)
301      -- get_attr_icflag() ではいけない!
302    end
303    Np.nuc = nc
304    lp = check_next_ickern(lp)
305    Np.last_char = check_box_high(Np, Np.first, lp)
306    return lp
307 end
308
309 local calc_np_aux_glyph_common
310 do -- 002 ---------------------------------------
311    local min, max = math.min, math.max
312    local getwhd = node.direct.getwhd
313    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
314    local attr_jchar_code = luatexbase.attributes['ltj@charcode']
315    local identifiers = fonts.hashes.identifiers
316    local function calc_np_notdef(lp)
317       local ident = identifiers[getfont(lp)]
318       if not ident.descriptions[getchar(lp)] then
319          local ln = node_next(lp)
320          if (ident.shared and ident.shared.features and ident.shared.features.notdef)
321             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          node_free(ga)
808          return gb
809       elseif k == bk_ak then
810          -- 両方とも kern.
811          setfield(gb, 'kern', blend_diffmet(
812                      getfield(gb, 'kern'), getfield(ga, 'kern'), db, da))
813          node_free(ga)
814          return gb
815       elseif k == bk_ag then
816          -- gb: kern, ga: glue
817          setglue(ga, blend_diffmet(
818                         getfield(gb, 'kern'), getfield(ga, 'width'), db, da),
819                      blend_diffmet(
820                         0, getfield(ga, 'stretch'), db, da),
821                      -blend_diffmet(
822                         0, -getfield(ga, 'shrink'), db, da))
823          node_free(gb)
824          return ga, 0, 0, 0
825       else
826          -- gb: glue, ga: kern
827          setglue(gb, blend_diffmet(
828                         getfield(gb, 'width'), getfield(ga, 'kern'), db, da),
829                      blend_diffmet(
830                         getfield(gb, 'stretch'), 0, db, da),
831                      -blend_diffmet(
832                         -getfield(gb, 'shrink'), 0, db, da))
833          node_free(ga)
834          return gb
835       end
836    end
837 end
838
839 local null_skip_table = {0, 0, 0}
840 -- get kanjiskip
841 local get_kanjiskip, kanjiskip_jfm_flag
842 local get_kanjiskip_low
843 local calc_ja_ja_glue
844 do
845    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
846    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
847
848    get_kanjiskip_low = function(flag, qm, bn, bp, bh)
849       if flag or (qm.with_kanjiskip and (bn or bp or bh)) then
850          if kanjiskip_jfm_flag then
851             local g = node_new(id_glue);
852             local bk = qm.kanjiskip or null_skip_table
853             setglue(g, bn and (bn*bk[1]) or 0, 
854                        bp and (bp*bk[2]) or 0, 
855                        bh and (bh*bk[3]) or 0, 0, 0)
856             set_attr(g, attr_icflag, KANJI_SKIP_JFM)
857             return g
858          elseif flag then
859             return node_copy(kanji_skip)
860          else
861             local g = node_new(id_glue);
862             setglue(g,
863                bn and (bn*getfield(kanji_skip, 'width')) or 0,
864                bp and (bp*getfield(kanji_skip, 'stretch')) or 0,
865                bh and (bh*getfield(kanji_skip, 'shrink')) or 0,
866                0, 0)
867             set_attr(g, attr_icflag, KANJI_SKIP_JFM)
868             return g
869          end
870       end
871    end
872    
873    get_kanjiskip = function()
874       if Np.auto_kspc==0 or Nq.auto_kspc==0 then
875         return nil 
876       elseif Np.auto_kspc or Nq.auto_kspc then
877          local pm, qm = Np.met, Nq.met
878          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
879              return get_kanjiskip_low(true, qm, 1, 1, 1)
880          else
881             local gb = get_kanjiskip_low(true, qm, 1, 1, 1)
882             local ga = get_kanjiskip_low(true, pm, 1, 1, 1)
883             return calc_ja_ja_aux(gb, ga, 0, 1)
884          end
885       else   
886          local g = node_new(id_glue)
887          set_attr(g, attr_icflag, kanjiskip_jfm_flag and KANJI_SKIP_JFM or KANJI_SKIP)
888          return g
889       end
890    end
891
892    calc_ja_ja_glue = function ()
893       local qm, pm = Nq.met, Np.met
894       local qmc, pmc = qm.char_type, pm.char_type
895       if (qmc==pmc) and (qm.var==pm.var) then
896          local g, _, kn, kp, kh = new_jfm_glue(qmc, Nq.class, Np.class)
897          return g, (Np.auto_kspc or Nq.auto_kspc) and get_kanjiskip_low(false, qm, kn, kp, kh)
898       else
899          local npn, nqn = Np.nuc, Nq.nuc
900          local gb, db, bn, bp, bh 
901             = new_jfm_glue(qmc, Nq.class,
902                            slow_find_char_class(Np.char,
903                                                 qm, getchar(npn)))
904          local ga, da, an, ap, ah 
905             = new_jfm_glue(pmc,
906                            slow_find_char_class(Nq.char,
907                                                 pm, getchar(nqn)),
908                                                  Np.class)
909          local g = calc_ja_ja_aux(gb, ga, db, da)
910          local k
911          if (pmc==qmc) and (qm.var==pm.var) then
912             gb = get_kanjiskip_low(false, qm, bn, bp, bh)
913             ga = get_kanjiskip_low(false, pm, an, ap, ah)
914             k = calc_ja_ja_aux(gb, ga, db, da)
915          end
916          return g, k
917       end
918    end
919 end
920
921 -------------------- 和欧文間空白量の決定
922
923 -- get xkanjiskip
924 local get_xkanjiskip, xkanjiskip_jfm_flag
925 local get_xkanjiskip_normal, get_xkanjiskip_jfm
926 local get_xkanjiskip_low
927 do
928    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
929    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
930
931    get_xkanjiskip_low = function(flag, qm, bn, bp, bh)
932       if flag or (qm.with_kanjiskip and (bn or bp or bh)) then
933          if xkanjiskip_jfm_flag then
934             local g = node_new(id_glue);
935             local bk = qm.xkanjiskip or null_skip_table
936             setglue(g, bn and bk[1] or 0,
937                        bp and bk[2] or 0,
938                        bh and bk[3] or 0, 0, 0)
939             set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
940             return g
941          elseif flag then
942             return node_copy(xkanji_skip)
943          else
944             local g = node_new(id_glue);
945             setglue(g,
946                bn and (bn*getfield(xkanji_skip, 'width')) or 0,
947                bp and (bp*getfield(xkanji_skip, 'stretch')) or 0,
948                bh and (bh*getfield(xkanji_skip, 'shrink')) or 0,
949                0, 0)
950             set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
951             return g
952          end
953       end
954    end
955    
956    get_xkanjiskip = function(Nn)
957       if Np.auto_xspc==0 or Nq.auto_xspc==0 then
958         return nil 
959       elseif (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
960          return get_xkanjiskip_low(true, Nn.met, 1, 1, 1)
961       else
962          local g = node_new(id_glue)
963          set_attr(g, attr_icflag, xkanjiskip_jfm_flag and XKANJI_SKIP_JFM or XKANJI_SKIP)
964          return g
965       end
966    end
967 end
968
969 -------------------- 隣接した「塊」間の処理
970
971 local function combine_spc(name)
972    return (Np[name] or Nq[name]) and ((Np[name]~=0) and (Nq[name]~=0))
973 end
974
975 -- NA, NB: alchar or math
976 local function get_NA_skip()
977    local pm = Np.met
978    local g, _, kn, kp, kh = new_jfm_glue(
979       pm.char_type,
980       fast_find_char_class(
981         (Nq.id == id_math and -1 or (Nq.xspc>=2 and 'alchar' or 'nox_alchar')), pm), 
982       Np.class)
983    local k = ((Nq.xspc>=2) and (Np.xspc%2==1) and combine_spc('auto_xspc'))
984        and get_xkanjiskip_low(false, pm, kn, kp, kh)
985    return g, k
986 end
987 local function get_NB_skip()
988    local qm = Nq.met
989    local g, _, kn, kp, kh = new_jfm_glue(
990       qm.char_type, Nq.class,
991       fast_find_char_class(
992         (Np.id == id_math and -1 or (Np.xspc%2==1 and 'alchar' or 'nox_alchar')), qm)
993     )
994    local k = ((Nq.xspc>=2) and (Np.xspc%2==1) and combine_spc('auto_xspc'))
995          and get_xkanjiskip_low(false, qm, kn, kp, kh)
996    return g, k
997 end
998
999 local function get_OA_skip(is_kanji)
1000    local pm = Np.met
1001    local g, _, kn, kp, kh = new_jfm_glue(
1002       pm.char_type,
1003       fast_find_char_class(
1004         (((Nq.id==id_glue)or(Nq.id==id_kern)) and 'glue' or 'jcharbdd'), pm), 
1005       Np.class)
1006    local k
1007    if is_kanji==0 then
1008       k = combine_spc('auto_kspc') and get_kanjiskip_low(false, pm, kn, kp, kh)
1009    end
1010    return g, k
1011 end
1012 local function get_OB_skip(is_kanji)
1013    local qm = Nq.met
1014    local g, _, kn, kp, kh = new_jfm_glue(
1015       qm.char_type, Nq.class,
1016       fast_find_char_class(
1017         (((Np.id==id_glue)or(Np.id==id_kern)) and 'glue' or 'jcharbdd'), qm))
1018    local k
1019    if is_kanji==0 then
1020       k = combine_spc('auto_kspc') and get_kanjiskip_low(false, qm, kn, kp, kh)
1021    end
1022    return g, k
1023 end
1024
1025 -- (anything) .. jachar
1026 local function handle_np_jachar(mode)
1027    local qid = Nq.id
1028    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
1029       local g, k
1030       if non_ihb_flag then g, k = calc_ja_ja_glue() end -- M->K
1031       if not g then g = get_kanjiskip() end
1032       handle_penalty_normal(Nq.post, Np.pre, g); 
1033       real_insert(g); real_insert(k)
1034    elseif Nq.met then  -- qid==id_hlist
1035       local g, k
1036       if non_ihb_flag then g, k = get_OA_skip(0) end -- O_A->K
1037       if not g then g = get_kanjiskip() end
1038       handle_penalty_normal(0, Np.pre, g); real_insert(g); real_insert(k)
1039    elseif Nq.pre then
1040       local g, k
1041       if non_ihb_flag then g, k = get_NA_skip() end -- N_A->X
1042       if not g then g = get_xkanjiskip(Np) end
1043       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); 
1044       real_insert(g); real_insert(k)
1045    else
1046       local g = non_ihb_flag and (get_OA_skip()) -- O_A
1047       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
1048       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
1049       else handle_penalty_always(0, Np.pre, g)
1050       end
1051       real_insert(g)
1052    end
1053    if mode and Np.kcat%2~=1 then
1054       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
1055    end
1056 end
1057
1058
1059 -- jachar .. (anything)
1060 local function handle_nq_jachar()
1061     if Np.pre then
1062       local g = non_ihb_flag and get_NB_skip() or get_xkanjiskip(Nq) -- N_B->X
1063       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
1064    else
1065       local g =non_ihb_flag and  (get_OB_skip()) -- O_B
1066       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
1067       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
1068       else handle_penalty_always(Nq.post, 0, g)
1069       end
1070       real_insert(g)
1071    end
1072 end
1073
1074 -- (anything) .. (和文文字で始まる hlist)
1075 local function handle_np_ja_hlist()
1076    local qid = Nq.id
1077    if qid==id_jglyph or ((qid==id_pbox or qid == id_pbox_w) and Nq.met) then
1078       local g = non_ihb_flag and get_OB_skip(0) or get_kanjiskip() -- O_B->K
1079       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
1080    elseif Nq.met then  -- Nq.id==id_hlist
1081       local g = get_kanjiskip() -- K
1082       handle_penalty_suppress(0, 0, g); real_insert(g)
1083    elseif Nq.pre then
1084       local g = get_xkanjiskip(Np) -- X
1085       handle_penalty_suppress(0, 0, g); real_insert(g)
1086    end
1087 end
1088
1089 -- (和文文字で終わる hlist) .. (anything)
1090 local function handle_nq_ja_hlist()
1091    if Np.pre then
1092       local g = get_xkanjiskip(Nq) -- X
1093       handle_penalty_suppress(0, 0, g); real_insert(g)
1094    end
1095 end
1096
1097
1098 -- Nq が前側のクラスタとなることによる修正
1099 local adjust_nq
1100 do
1101    local adjust_nq_aux = {
1102       [id_glyph] = function() after_alchar(Nq) end, -- after_alchar(Nq)
1103       [id_hlist]  = function() after_hlist(Nq) end,
1104       [id_pbox]  = function() after_hlist(Nq) end,
1105       [id_disc]  = function() after_hlist(Nq) end,
1106       [id_pbox_w]  = function()
1107                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
1108                                                  false, Nq, Np)
1109                      end,
1110    }
1111
1112    adjust_nq=function()
1113       local x = adjust_nq_aux[Nq.id]
1114       if x then x()  end
1115    end
1116 end
1117
1118
1119 -------------------- 開始・終了時の処理
1120 do
1121 local node_prev = node.direct.getprev
1122 -- リスト末尾の処理
1123 local function handle_list_tail(mode, last)
1124    adjust_nq()
1125    if mode then
1126       -- the current list is to be line-breaked.
1127       -- Insert \jcharwidowpenalty
1128       if widow_Np.first then handle_penalty_jwp() end
1129    else
1130       Np=Nq       
1131       -- the current list is the contents of a hbox
1132       local npi, pm = Np.id, Np.met
1133       if npi == id_jglyph or (npi==id_pbox and pm) then
1134          local g = new_jfm_glue(pm.char_type, Np.class, fast_find_char_class('boxbdd', pm))
1135          if g then
1136             set_attr(g, attr_icflag, BOXBDD)
1137             head = insert_after(head, Np.last, g)
1138          end
1139       end
1140    end
1141 end
1142
1143 -- リスト先頭の処理
1144 local function handle_list_head(par_indented)
1145    local npi, pm = Np.id, Np.met
1146    if npi ==  id_jglyph or (npi==id_pbox and pm) then
1147       if non_ihb_flag then
1148          local g = new_jfm_glue(pm.char_type, fast_find_char_class(par_indented, pm), Np.class)
1149          if g then
1150             set_attr(g, attr_icflag, BOXBDD)
1151             if getid(g)==id_glue and #Bp==0 then
1152                local h = node_new(id_penalty)
1153                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
1154             end
1155             head = insert_before(head, Np.first, g)
1156          end
1157       end
1158    end
1159 end
1160
1161 -- initialize
1162 -- return value: (the initial cursor lp), (last node)
1163 local init_var
1164 do
1165    local id_local = node.id('local_par')
1166    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
1167    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
1168    local KSK  = luatexja.stack_table_index.KSK
1169    local XSK  = luatexja.stack_table_index.XSK
1170    local dir_yoko = luatexja.dir_table.dir_yoko
1171    local dir_tate = luatexja.dir_table.dir_tate
1172    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
1173    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
1174    local table_pool = {
1175       {}, {}, {first=nil},
1176       { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1177         first=nil, id=nil, last=nil, met=nil, nuc=nil,
1178         post=nil, pre=nil, xspc=nil, }, 
1179       { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1180         first=nil, id=nil, last=nil, met=nil, nuc=nil,
1181         post=nil, pre=nil, xspc=nil, },
1182    }
1183    init_var = function (mode,dir)
1184       -- 1073741823: max_dimen
1185       Bp, widow_Bp, widow_Np, Np, Nq
1186          = table_pool[1], table_pool[2], table_pool[3], table_pool[4], table_pool[5]
1187       for i=1,5 do for j,_ in pairs(table_pool[i]) do table_pool[i][j]=nil end end
1188       table_current_stack = ltjs.table_current_stack
1189
1190       list_dir, tex_dir = (ltjs.list_dir or dir_yoko), (dir or 'TLT')
1191       local is_dir_tate = list_dir==dir_tate
1192       capsule_glyph = is_dir_tate and ltjw.capsule_glyph_tate or ltjw.capsule_glyph_yoko
1193       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
1194       local TEMP = node_new(id_glue) 
1195       -- TEMP is a dummy node, which will be freed at the end of the callback. 
1196       -- ithout this node, set_attr(kanji_skip, ...) somehow creates an "orphaned"  attribute list.
1197
1198       do
1199           kanji_skip, kanjiskip_jfm_flag = skip_table_to_glue(KSK)
1200           set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
1201       end
1202
1203       do
1204           xkanji_skip, xkanjiskip_jfm_flag = skip_table_to_glue(XSK)
1205           set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
1206       end
1207
1208       if mode then
1209          -- the current list is to be line-breaked:
1210          -- hbox from \parindent is skipped.
1211          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
1212          while lp and 
1213             ((lpi==id_whatsit and lps~=sid_user)
1214                or ((lpi==id_hlist) and (lps==3))
1215                or (lpi==id_local)) do
1216             if (lpi==id_hlist) and (lps==3) then
1217                Np.char, par_indented = 'parbdd', 'parbdd'
1218                Np.width = getfield(lp, 'width')
1219             end
1220             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
1221          return lp, node_tail(head), par_indented, TEMP
1222       else
1223          return head, nil, 'boxbdd', TEMP
1224       end
1225    end
1226 end
1227
1228 local ensure_tex_attr = ltjb.ensure_tex_attr
1229 local function cleanup(mode, TEMP)
1230    -- luatexja.ext_show_node_list(to_node(head), '> ', print)
1231    -- adjust attr_icflag for avoiding error
1232    if tex.getattribute(attr_icflag)~=0 then ensure_tex_attr(attr_icflag, 0) end
1233    node_free(kanji_skip); 
1234    node_free(xkanji_skip); node_free(TEMP)
1235    
1236    if mode then
1237       local h = node_next(head)
1238       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
1239          h = node_next(h)
1240          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
1241             return false
1242          end
1243       end
1244    end
1245    return head
1246 end
1247 -------------------- 外部から呼ばれる関数
1248
1249 -- main interface
1250 function luatexja.jfmglue.main(ahead, mode, dir)
1251    if not ahead then return ahead end
1252    --luatexja.ext_show_node_list(to_node(ahead ), '>B ', print)
1253    --print()
1254    head = ahead;
1255    local lp, last, par_indented, TEMP = init_var(mode,dir)
1256    lp = calc_np(last, lp)
1257    if Np then
1258       handle_list_head(par_indented)
1259       lp = calc_np(last,lp); 
1260       while Np do
1261          adjust_nq();
1262          local pid, pm = Np.id, Np.met
1263          -- 挿入部
1264          if pid == id_jglyph then
1265             handle_np_jachar(mode)
1266          elseif pm then
1267             if pid==id_hlist then handle_np_ja_hlist()
1268             else handle_np_jachar() end
1269          elseif Nq.met then
1270             if Nq.id==id_hlist then handle_nq_ja_hlist()
1271             else handle_nq_jachar() end
1272          end
1273          lp = calc_np(last,lp)
1274       end
1275       handle_list_tail(mode, last)
1276    end
1277    --luatexja.ext_show_node_list(to_node(ahead ), '>A ', print)
1278    --print()
1279    return cleanup(mode, TEMP)
1280 end
1281 end
1282
1283 do
1284    local IHB  = luatexja.userid_table.IHB 
1285    local BPAR = luatexja.userid_table.BPAR
1286    local BOXB = luatexja.userid_table.BOXB
1287    local node_prev = node.direct.getprev
1288    local node_write = node.direct.write
1289
1290    -- \inhibitglue
1291    function luatexja.jfmglue.create_inhibitglue_node()
1292       local tn = node_new(id_whatsit, sid_user)
1293       setfield(tn, 'user_id', IHB)
1294       setfield(tn, 'type', 100)
1295       setfield(tn, 'value', 1)
1296       node_write(tn)
1297    end
1298
1299    -- Node for indicating beginning of a paragraph
1300    -- (for ltjsclasses)
1301    function luatexja.jfmglue.create_beginpar_node()
1302       local tn = node_new(id_whatsit, sid_user)
1303       setfield(tn, 'user_id', BPAR)
1304       setfield(tn, 'type', 100)
1305       setfield(tn, 'value', 1)
1306       node_write(tn)
1307    end
1308
1309    -- Node for indicating a head/end of a box
1310    function luatexja.jfmglue.create_boxbdd_node()
1311       local tn = node_new(id_whatsit, sid_user)
1312       setfield(tn, 'user_id', BOXB)
1313       setfield(tn, 'type', 100)
1314       setfield(tn, 'value', 1)
1315       node_write(tn)
1316    end
1317
1318    local function whatsit_callback(Np, lp, Nq)
1319       if Np and Np.nuc then return Np
1320       elseif Np and getfield(lp, 'user_id') == BPAR then
1321          Np.first = lp; Np.nuc = lp; Np.last = lp
1322          return Np
1323       elseif Np and getfield(lp, 'user_id') == BOXB then
1324          Np.first = lp; Np.nuc = lp; Np.last = lp
1325          if Nq then
1326             if Nq.met then
1327                Np.class = fast_find_char_class('boxbdd', Nq.met)
1328             end
1329             Np.met = Nq.met; Np.pre = 0; Np.post = 0; Np.xspc = 0
1330             Np.auto_xspc, Np.auto_kspc = 0, 0
1331          end     
1332          return Np
1333       else
1334          return Np
1335       end
1336    end
1337
1338     local function whatsit_after_callback(s, Nq, Np)
1339        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1340          local x, y = node_prev(Nq.nuc), Nq.nuc
1341          Nq.first, Nq.nuc, Nq.last = x, x, x
1342          if Np then
1343             if Np.met then
1344                Nq.class = fast_find_char_class('parbdd', Np.met)
1345             end
1346             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1347             Nq.auto_xspc, Nq.auto_kspc = 0, 0
1348          end
1349          head = node_remove(head, y)
1350          node_free(y)
1351        elseif not s and getfield(Nq.nuc, 'user_id') == BOXB then
1352          local x, y = node_prev(Nq.nuc), Nq.nuc
1353          Nq.first, Nq.nuc, Nq.last = x, x, x
1354          if Np then
1355             if Np.met then
1356                Nq.class = fast_find_char_class('boxbdd', Np.met)
1357             end
1358             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1359             Nq.auto_xspc, Nq.auto_kspc = 0, 0
1360          end
1361          head = node_remove(head, y)
1362          node_free(y)
1363       end
1364       return s
1365    end
1366
1367    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1368                               "luatexja.beginpar.np_info", 1)
1369    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1370                               "luatexja.beginpar.np_info_after", 1)
1371
1372 end
1373
1374 luatexja.jfmglue.after_hlist = after_hlist
1375 luatexja.jfmglue.check_box_high = check_box_high