OSDN Git Service

use new whatsit to support ligatures between right boundary
[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)or(pa==BOXBDD) then
195          --if (pa==IC_PROCESSED)or(pa==BOXBDD)or(getsubtype(p)==0) then
196             -- do nothing
197          elseif getsubtype(p)==2 then
198             p = node_next(node_next(p));
199             -- Note that another node_next will be executed outside this if-statement.
200          else
201             found_visible_node = true
202             find_first_char = false; last_char = nil
203          end
204       elseif pid==id_hlist then
205          if PACKED == get_attr_icflag(p) then
206             local s = ltjd_glyph_from_packed(p)
207             if find_first_char then
208                first_char = s; find_first_char = false
209             end
210             last_char = s; found_visible_node = true
211          else
212             if getfield(p, 'shift')==0 then
213                last_char = nil
214                if check_box(getlist(p), nil) then found_visible_node = true end
215                find_first_char = false
216             else
217                find_first_char = false; last_char = nil
218             end
219          end
220       elseif pid==id_math then
221          if find_first_char then
222             first_char = p; find_first_char = false
223          end
224          last_char = p; found_visible_node = true
225       elseif (pid==id_rule and get_attr_icflag(p)==PACKED)
226          or (pid==id_glue and get_attr_icflag(p)==BOXBDD) 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 identifiers = fonts.hashes.identifiers
318    local function calc_np_notdef(lp)
319       local ident = identifiers[getfont(lp)]
320       if not ident.descriptions[getchar(lp)] then
321          local ln = node_next(lp)
322          if (ident.shared and ident.shared.features and ident.shared.features.notdef)
323             and ln and getid(ln)==id_glyph then 
324             set_attr(lp, attr_icflag, PROCESSED)
325             set_attr(ln, attr_jchar_code, has_attr(lp, attr_jchar_code) or getchar(lp))
326             set_attr(ln, attr_jchar_class, has_attr(lp, attr_jchar_class) or 0)
327             Np.nuc, lp = ln, ln
328          end
329       end
330       return lp
331    end 
332 function calc_np_aux_glyph_common(lp, acc_flag)
333    Np.nuc, Np.first = lp, (Np.first or lp)
334    if if_lang_ja(lp) then -- JAchar
335       Np.id = id_jglyph
336       local m, mc, cls = set_np_xspc_jachar(Np, lp)
337       local npi, npf
338       local w, h, d = getwhd(lp)
339       if w==0 and h==0 and d==0 then lp = calc_np_notdef(lp) end
340       lp, head, npi, npf = capsule_glyph(lp, m, mc[cls], head, tex_dir)
341       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
342       Np.nuc = npi
343       return true, check_next_ickern(lp);
344    else --ALchar
345       Np.id = id_glyph
346       set_np_xspc_alchar(Np, getchar(lp), lp, 1)
347       -- loop
348       local first_glyph, last_glyph = lp
349       set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
350       local y_adjust = has_attr(lp,attr_ablshift) or 0
351       local node_depth = getfield(lp, 'depth') + min(y_adjust, 0)
352       local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0
353       setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
354       lp = node_next(lp)
355       for lx in traverse(lp) do
356          local lai = get_attr_icflag(lx)
357          if lx==last or  lai>=PACKED then
358             lp=lx; break
359          else
360             local lid = getid(lx)
361             if lid==id_glyph and not if_lang_ja(lx) then
362                -- 欧文文字
363                last_glyph = lx; set_attr(lx, attr_icflag, PROCESSED); Np.last = lx
364                y_adjust = has_attr(lx,attr_ablshift) or 0
365                node_depth = max(getfield(lx, 'depth') + min(y_adjust, 0), node_depth)
366                adj_depth = (y_adjust>0) and max(getfield(lx, 'depth') + y_adjust, adj_depth) or adj_depth
367                setfield(lx, 'yoffset', getfield(lx, 'yoffset') - y_adjust)
368             elseif lid==id_kern then
369                local ls = getsubtype(lx)
370                if ls==2 then -- アクセント用の kern
371                   set_attr(lx, attr_icflag, PROCESSED)
372                   lx = node_next(lx) -- lx: アクセント本体
373                   if getid(lx)==id_glyph then
374                      setfield(lx, 'yoffset', getfield(lx, 'yoffset') - (has_attr(lx,attr_ablshift) or 0))
375                   else -- アクセントは上下にシフトされている
376                      setfield(lx, 'shift', getfield(lx, 'shift') + (has_attr(lx,attr_ablshift) or 0))
377                   end
378                   lx = node_next(node_next(lx))
379                elseif ls==0  then
380                   Np.last = lx
381                elseif (ls==3) or (lai==ITALIC) then
382                   Np.last = lx; set_attr(lx, attr_icflag, IC_PROCESSED)
383                else
384                   lp=lx; break
385                end
386             else
387                lp=lx; break
388             end
389          end
390       end
391       local r
392       if adj_depth>node_depth then
393             r = node_new(id_rule,3)
394             setfield(r, 'width', 0); setfield(r, 'height', 0)
395             setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir)
396             set_attr(r, attr_icflag, PROCESSED)
397       end
398       if last_glyph then
399          Np.last_char = last_glyph
400          if r then insert_after(head, first_glyph, r) end
401       else
402          local npn = Np.nuc
403          Np.last_char = npn
404          if r then
405             local nf, nc = getfont(npn), getchar(npn)
406             local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
407             if not ct then -- variation selector
408                node_free(r)
409             elseif (ct.left_protruding or 0) == 0 then
410                head = insert_before(head, npn, r)
411                Np.first = acc_flag and Np.first or ((Np.first==npn) and r or npn)
412             elseif (ct.right_protruding or 0) == 0 then
413                insert_after(head, npn, r); Np.last, lp = r, r
414             else
415                ltjb.package_warning_no_line(
416                   'luatexja',
417                   'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf
418                      .. ', char=' .. nc .. '),    because its \\lpcode is ' .. tostring(ct.left_protruding)
419                      .. ' and its \\rpcode is ' .. tostring(ct.right_protruding)
420                ); node_free(r)
421             end
422          end
423       end
424       return true, lp
425    end
426 end
427 end -- 002 ---------------------------------------
428 local calc_np_auxtable
429 do  -- 002 ---------------------------------------
430 local ltjw_apply_ashift_math = ltjw.apply_ashift_math
431 local ltjw_apply_ashift_disc = ltjw.apply_ashift_disc
432 local node_end_of_math = node.direct.end_of_math
433 local dir_tate = luatexja.dir_table.dir_tate
434 local sid_start_link = node.subtype('pdf_start_link')
435 local sid_start_thread = node.subtype('pdf_start_thread')
436 local sid_end_link = node.subtype('pdf_end_link')
437 local sid_end_thread = node.subtype('pdf_end_thread')
438 calc_np_auxtable = {
439    [id_glyph] = calc_np_aux_glyph_common,
440    [id_hlist] = function(lp)
441       local op, flag
442       head, lp, op, flag = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm hlist')
443       set_attr(op, attr_icflag, PROCESSED)
444       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
445       if (flag or getfield(op, 'shift')~=0) then
446          Np.id = id_box_like
447       else
448          Np.id = id_hlist
449          Np.last_char = check_box_high(Np, getlist(op), nil)
450       end
451       return true, lp
452    end,
453    [id_vlist] =  function(lp)
454       local op
455       head, lp, op = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm:' .. getid(lp))
456       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
457       Np.id = id_box_like;
458       return true, lp
459    end,
460    box_like = function(lp)
461       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
462       Np.id = id_box_like;
463       return true, node_next(lp)
464    end,
465    [id_whatsit] = function(lp)
466       local lps = getsubtype(lp)
467       if lps==sid_user then
468          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
469             local lq = node_next(lp);
470             head = node_remove(head, lp); node_free(lp); non_ihb_flag = false
471             return false, lq;
472          elseif getfield(lp, 'user_id')==luatexja.userid_table.JA_AL_BDD then
473             local lq = node_next(lp);
474             head = node_remove(head, lp); node_free(lp)
475             return false, lq;
476          else
477             set_attr(lp, attr_icflag, PROCESSED)
478             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
479                                      Np, lp, Nq)
480             if Np.nuc then
481                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
482                return true, node_next(lp)
483             else
484                return false, node_next(lp)
485             end
486          end
487       else
488          -- we do special treatment for these whatsit nodes.
489          if lps == sid_start_link or lps == sid_start_thread then
490             Np.first = lp
491          elseif lps == sid_end_link or lps == sid_end_thread then
492             Np.first, Nq.last = nil, lp;
493          end
494          set_attr(lp, attr_icflag, PROCESSED)
495          return false, node_next(lp)
496       end
497    end,
498    [id_math] = function(lp)
499       Np.first, Np.nuc = (Np.first or lp), lp;
500       set_attr(lp, attr_icflag, PROCESSED)
501       set_np_xspc_alchar(Np, -1, lp)
502       local end_math  = node_end_of_math(lp)
503       ltjw_apply_ashift_math(lp, end_math, attr_ablshift)
504       set_attr(end_math, attr_icflag, PROCESSED)
505       Np.last, Np.id = end_math, id_math;
506       return true, node_next(end_math);
507    end,
508    [id_glue] = function(lp)
509       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
510       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
511       return true, node_next(lp)
512    end,
513    [id_disc] = function(lp)
514       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
515       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
516       ltjw_apply_ashift_disc(lp, (list_dir==dir_tate), tex_dir)
517       Np.last_char = check_box_high(Np, getfield(lp, 'replace'), nil)
518       return true, node_next(lp)
519    end,
520    [id_kern] = function(lp)
521       if getsubtype(lp)==2 then
522          Np.first = Np.first or lp
523          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
524          if getid(lp)==id_glyph then -- アクセント本体
525             setfield(lp, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lp,attr_ablshift) or 0))
526          else -- アクセントは上下にシフトされている
527             setfield(lp, 'shift', getfield(lp, 'shift') + (has_attr(lp,attr_ablshift) or 0))
528          end
529          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
530          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
531          set_attr(lp, attr_icflag, PROCESSED);
532          return calc_np_aux_glyph_common(lp, true)
533       else
534          Np.first = Np.first or lp
535          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
536          Np.last = lp; return true, node_next(lp)
537       end
538    end,
539    [id_penalty] = function(lp)
540       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
541       return false, node_next(lp)
542    end,
543 }
544 end -- 002 ---------------------------------------
545 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
546 calc_np_auxtable[15]        = calc_np_auxtable.box_like
547
548 local function calc_np_aux_skip (lp)
549    set_attr(lp, attr_icflag, PROCESSED)
550    return false, node_next(lp)
551 end
552
553 function calc_np(last, lp)
554    local k
555    -- We assume lp = node_next(Np.last)
556    Np, Nq, non_ihb_flag = Nq, Np, true
557    -- We clear `predefined' entries of Np before pairs() loop,
558    -- because using only pairs() loop is slower.
559    Np.post, Np.pre, Np.xspc = nil, nil, nil
560    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
561    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
562    for k in pairs(Np) do Np[k] = nil end
563
564    for k = 1,#Bp do Bp[k] = nil end
565    while lp ~= last  do
566       local lpa = has_attr(lp, attr_icflag) or 0
567       -- unbox 由来ノードの検出
568       if lpa>=PACKED then
569          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
570             local lq = node_next(lp)
571             head = node_remove(head, lp); node_free(lp); lp = lq
572          else
573             return calc_np_pbox(lp, last)
574          end -- id_pbox
575       else
576          k, lp = (calc_np_auxtable[getid(lp)] or calc_np_aux_skip)(lp)
577          if k then return lp end
578       end
579    end
580    Np=nil
581 end
582 end -- 001 -----------------------------------------------
583
584 -- extract informations from Np
585 -- We think that "Np is a Japanese character" if Np.met~=nil,
586 --            "Np is an alphabetic character" if Np.pre~=nil,
587 --            "Np is not a character" otherwise.
588 local after_hlist = nil -- global
589 local after_alchar, extract_np
590 do
591   local PRE  = luatexja.stack_table_index.PRE
592   local POST = luatexja.stack_table_index.POST
593   local KCAT = luatexja.stack_table_index.KCAT
594   local XSP  = luatexja.stack_table_index.XSP
595   local dir_tate = luatexja.dir_table.dir_tate
596
597 -- 和文文字のデータを取得
598    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
599    local attr_jchar_code = luatexbase.attributes['ltj@charcode']
600    local attr_autospc = luatexbase.attributes['ltj@autospc']
601    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
602    local getcomponents = node.direct.getcomponents
603    --local ltjf_get_vert_glyph = ltjf.get_vert_glyph
604    function set_np_xspc_jachar(Nx, x)
605       local m = ltjf_font_metric_table[getfont(x)]
606       local c, c_glyph = (not getcomponents(x) and ltjs_orig_char_table[x]), getchar(x)
607       if c and c~=c_glyph then set_attr(x, attr_jchar_code, c) end
608       c = c or c_glyph
609       local cls = slow_find_char_class(c, m, c_glyph)
610       Nx.met, Nx.class, Nx.char = m, cls, c;
611       local mc = m.char_type; Nx.char_type = mc
612       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
613       Nx.pre  = table_current_stack[PRE + c]  or 0
614       Nx.post = table_current_stack[POST + c] or 0
615       Nx.xspc = table_current_stack[XSP  + c] or 3
616       Nx.kcat = table_current_stack[KCAT + c] or 0
617       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
618       return m, mc, cls
619    end
620    function set_np_xspc_jachar_hbox(Nx, x)
621       local m = ltjf_font_metric_table[getfont(x)]
622       local c = has_attr(x, attr_jchar_code) or getchar(x)
623       Nx.met, Nx.char  = m, c; Nx.class = has_attr(x, attr_jchar_class) or 0;
624       local mc = m.char_type; Nx.char_type = mc
625       Nx.pre  = table_current_stack[PRE + c]  or 0
626       Nx.post = table_current_stack[POST + c] or 0
627       Nx.xspc = table_current_stack[XSP  + c] or 3
628       Nx.kcat = table_current_stack[KCAT + c] or 0
629       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
630    end
631
632 -- 欧文文字のデータを取得
633    local floor = math.floor
634    local nullfunc = function(n) return n end
635    function set_np_xspc_alchar(Nx, c,x, lig)
636       if c~=-1 then
637          local f = (lig ==1) and nullfunc or node_tail
638          local xc, xs = getcomponents(x), getsubtype(x)
639          while xc and xs and xs%4>=2 do
640             x = f(xc);
641             if getid(x)==id_disc then x, xc, xs = nil, getfield(x,'replace'), 2
642             else xc, xs = getcomponents(x), getsubtype(x) end
643          end
644          c = x and getchar(x) or c
645          Nx.pre  = table_current_stack[PRE + c]  or 0
646          Nx.post = table_current_stack[POST + c] or 0
647       else
648          Nx.pre, Nx.post = 0, 0
649       end
650       Nx.met = nil
651       Nx.xspc = table_current_stack[XSP  + c] or 3
652       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
653    end
654    local set_np_xspc_alchar = set_np_xspc_alchar
655
656    -- change the information for the next loop
657    -- (will be done if Nx is an alphabetic character or a hlist)
658    after_hlist = function (Nx)
659       local s = Nx.last_char
660       if s then
661          if getid(s)==id_glyph then
662             if if_lang_ja(s) then
663                set_np_xspc_jachar_hbox(Nx, s)
664             else
665                set_np_xspc_alchar(Nx, getchar(s), s, 2)
666             end
667          else
668             set_np_xspc_alchar(Nx, -1, s)
669          end
670       else
671          Nx.pre, Nx.met = nil, nil
672       end
673    end
674
675    after_alchar = function (Nx)
676       local x = Nx.last_char
677       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
678    end
679
680 end
681
682 -------------------- 最下層の処理
683
684 luatexbase.create_callback('luatexja.adjust_jfmglue', 'simple', function(n) return n end)
685
686 -- change penalties (or create a new penalty, if needed)
687 local function handle_penalty_normal(post, pre, g)
688    luatexbase.call_callback('luatexja.adjust_jfmglue', head, Nq, Np, Bp)
689    local a = (pre or 0) + (post or 0)
690    if #Bp == 0 then
691       if (a~=0 and not(g and getid(g)==id_kern)) then
692          local p = node_new(id_penalty)
693          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
694          setfield(p, 'penalty', a)
695          head = insert_before(head, Np.first, p)
696          Bp[1]=p;
697          set_attr(p, attr_icflag, KINSOKU)
698       end
699    else for _, v in pairs(Bp) do add_penalty(v,a) end
700    end
701 end
702
703 local function handle_penalty_always(post, pre, g)
704    luatexbase.call_callback('luatexja.adjust_jfmglue', head, Nq, Np, Bp)
705    local a = (pre or 0) + (post or 0)
706    if #Bp == 0 then
707       if not (g and getid(g)==id_glue) or a~=0 then
708          local p = node_new(id_penalty)
709          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
710          setfield(p, 'penalty', a)
711          head = insert_before(head, Np.first, p)
712          Bp[1]=p
713          set_attr(p, attr_icflag, KINSOKU)
714       end
715    else for _, v in pairs(Bp) do add_penalty(v,a) end
716    end
717 end
718
719 local function handle_penalty_suppress(post, pre, g)
720    luatexbase.call_callback('luatexja.adjust_jfmglue', head, Nq, Np, Bp)
721    if #Bp == 0 then
722       if g and getid(g)==id_glue then
723          local p = node_new(id_penalty)
724          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
725          Bp[1]=p
726          set_attr(p, attr_icflag, KINSOKU)
727       end
728    else 
729       local a = (pre or 0) + (post or 0)
730       for _, v in pairs(Bp) do add_penalty(v,a) end
731    end
732 end
733
734 local function handle_penalty_jwp()
735    local a = table_current_stack[luatexja.stack_table_index.JWP]
736    if #widow_Bp == 0 then
737       if a~=0 then
738          local p = node_new(id_penalty)
739          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
740          setfield(p, 'penalty', a)
741          head = insert_before(head, widow_Np.first, p)
742          widow_Bp[1]=p;
743          set_attr(p, attr_icflag, KINSOKU)
744       end
745    else for _, v in pairs(widow_Bp) do add_penalty(v,a) end
746    end
747 end
748
749 -- 和文文字間の JFM glue を node 化
750 local function new_jfm_glue(mc, bc, ac)
751 -- bc, ac: char classes
752    local g = mc[bc][ac]
753    if g then
754        if g[1] then
755            return node_copy(g[1]), g.ratio, false, false, false
756        else
757          local f = node_new(id_glue)
758          set_attr(f, attr_icflag, g.priority)
759          setglue(f, g.width, g.stretch, g.shrink)
760          return f, g.ratio, g.kanjiskip_natural, g.kanjiskip_stretch, g.kanjiskip_shrink
761       end
762    end
763    return false, 0
764 end
765
766 -- Nq.last (kern w) .... (glue/kern g) Np.first
767 local function real_insert(g)
768    if g then
769       head  = insert_before(head, Np.first, g)
770       Np.first = g
771    end
772 end
773
774
775 -------------------- 和文文字間空白量の決定
776 local calc_ja_ja_aux
777 do
778    local round = tex.round
779    local bg_ag = 2*id_glue - id_glue
780    local bg_ak = 2*id_glue - id_kern
781    local bk_ag = 2*id_kern - id_glue
782    local bk_ak = 2*id_kern - id_kern
783
784    local function blend_diffmet(b, a, rb, ra)
785       return round(luatexja.jfmglue.diffmet_rule((1-rb)*b+rb*a, (1-ra)*b+ra*a))
786    end
787    calc_ja_ja_aux = function (gb, ga, db, da)
788       if luatexja.jfmglue.diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
789           and luatexja.jfmglue.diffmet_rule ~= math.two_paverage then
790          db, da = 0, 1
791       end
792       if not gb then
793          if ga then
794             gb = node_new(id_kern, 1); setfield(gb, 'kern', 0)
795          else return nil end
796       elseif not ga then
797          ga = node_new(id_kern, 1); setfield(ga, 'kern', 0)
798       end
799
800       local k = 2*getid(gb) - getid(ga)
801       if k == bg_ag then
802          -- 両方とも glue.
803          setglue(gb, blend_diffmet(
804                         getfield(gb, 'width'), getfield(ga, 'width'), db, da),
805                      blend_diffmet(
806                         getfield(gb, 'stretch'), getfield(ga, 'stretch'), db, da),
807                      -blend_diffmet(
808                      -getfield(gb, 'shrink'), -getfield(ga, 'shrink'), db, da))
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                0, 0)
869             set_attr(g, attr_icflag, KANJI_SKIP_JFM)
870             return g
871          end
872       end
873    end
874    
875    get_kanjiskip = function()
876       if Np.auto_kspc==0 or Nq.auto_kspc==0 then
877         return nil 
878       elseif Np.auto_kspc or Nq.auto_kspc then
879          local pm, qm = Np.met, Nq.met
880          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
881              return get_kanjiskip_low(true, qm, 1, 1, 1)
882          else
883             local gb = get_kanjiskip_low(true, qm, 1, 1, 1)
884             local ga = get_kanjiskip_low(true, pm, 1, 1, 1)
885             return calc_ja_ja_aux(gb, ga, 0, 1)
886          end
887       else   
888          local g = node_new(id_glue)
889          set_attr(g, attr_icflag, kanjiskip_jfm_flag and KANJI_SKIP_JFM or KANJI_SKIP)
890          return g
891       end
892    end
893
894    calc_ja_ja_glue = function ()
895       local qm, pm = Nq.met, Np.met
896       local qmc, pmc = qm.char_type, pm.char_type
897       if (qmc==pmc) and (qm.var==pm.var) then
898          local g, _, kn, kp, kh = new_jfm_glue(qmc, Nq.class, Np.class)
899          return g, (Np.auto_kspc or Nq.auto_kspc) and get_kanjiskip_low(false, qm, kn, kp, kh)
900       else
901          local npn, nqn = Np.nuc, Nq.nuc
902          local gb, db, bn, bp, bh 
903             = new_jfm_glue(qmc, Nq.class,
904                            slow_find_char_class(Np.char,
905                                                 qm, getchar(npn)))
906          local ga, da, an, ap, ah 
907             = new_jfm_glue(pmc,
908                            slow_find_char_class(Nq.char,
909                                                 pm, getchar(nqn)),
910                                                  Np.class)
911          local g = calc_ja_ja_aux(gb, ga, db, da)
912          local k
913          if (pmc==qmc) and (qm.var==pm.var) then
914             gb = get_kanjiskip_low(false, qm, bn, bp, bh)
915             ga = get_kanjiskip_low(false, pm, an, ap, ah)
916             k = calc_ja_ja_aux(gb, ga, db, da)
917          end
918          return g, k
919       end
920    end
921 end
922
923 -------------------- 和欧文間空白量の決定
924
925 -- get xkanjiskip
926 local get_xkanjiskip, xkanjiskip_jfm_flag
927 local get_xkanjiskip_normal, get_xkanjiskip_jfm
928 local get_xkanjiskip_low
929 do
930    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
931    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
932
933    get_xkanjiskip_low = function(flag, qm, bn, bp, bh)
934       if flag or (qm.with_kanjiskip and (bn or bp or bh)) then
935          if xkanjiskip_jfm_flag then
936             local g = node_new(id_glue);
937             local bk = qm.xkanjiskip or null_skip_table
938             setglue(g, bn and bk[1] or 0,
939                        bp and bk[2] or 0,
940                        bh and bk[3] or 0, 0, 0)
941             set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
942             return g
943          elseif flag then
944             return node_copy(xkanji_skip)
945          else
946             local g = node_new(id_glue);
947             setglue(g,
948                bn and (bn*getfield(xkanji_skip, 'width')) or 0,
949                bp and (bp*getfield(xkanji_skip, 'stretch')) or 0,
950                bh and (bh*getfield(xkanji_skip, 'shrink')) or 0,
951                0, 0)
952             set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
953             return g
954          end
955       end
956    end
957    
958    get_xkanjiskip = function(Nn)
959       if Np.auto_xspc==0 or Nq.auto_xspc==0 then
960         return nil 
961       elseif (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
962          return get_xkanjiskip_low(true, Nn.met, 1, 1, 1)
963       else
964          local g = node_new(id_glue)
965          set_attr(g, attr_icflag, xkanjiskip_jfm_flag and XKANJI_SKIP_JFM or XKANJI_SKIP)
966          return g
967       end
968    end
969 end
970
971 -------------------- 隣接した「塊」間の処理
972
973 local function combine_spc(name)
974    return (Np[name] or Nq[name]) and ((Np[name]~=0) and (Nq[name]~=0))
975 end
976
977 -- NA, NB: alchar or math
978 local function get_NA_skip()
979    local pm = Np.met
980    local g, _, kn, kp, kh = new_jfm_glue(
981       pm.char_type,
982       fast_find_char_class(
983         (Nq.id == id_math and -1 or (Nq.xspc>=2 and 'alchar' or 'nox_alchar')), pm), 
984       Np.class)
985    local k = ((Nq.xspc>=2) and (Np.xspc%2==1) and combine_spc('auto_xspc'))
986        and get_xkanjiskip_low(false, pm, kn, kp, kh)
987    return g, k
988 end
989 local function get_NB_skip()
990    local qm = Nq.met
991    local g, _, kn, kp, kh = new_jfm_glue(
992       qm.char_type, Nq.class,
993       fast_find_char_class(
994         (Np.id == id_math and -1 or (Np.xspc%2==1 and 'alchar' or 'nox_alchar')), qm)
995     )
996    local k = ((Nq.xspc>=2) and (Np.xspc%2==1) and combine_spc('auto_xspc'))
997          and get_xkanjiskip_low(false, qm, kn, kp, kh)
998    return g, k
999 end
1000
1001 local function get_OA_skip(is_kanji)
1002    local pm = Np.met
1003    local g, _, kn, kp, kh = new_jfm_glue(
1004       pm.char_type,
1005       fast_find_char_class(
1006         (((Nq.id==id_glue)or(Nq.id==id_kern)) and 'glue' or 'jcharbdd'), pm), 
1007       Np.class)
1008    local k
1009    if is_kanji==0 then
1010       k = combine_spc('auto_kspc') and get_kanjiskip_low(false, pm, kn, kp, kh)
1011    end
1012    return g, k
1013 end
1014 local function get_OB_skip(is_kanji)
1015    local qm = Nq.met
1016    local g, _, kn, kp, kh = new_jfm_glue(
1017       qm.char_type, Nq.class,
1018       fast_find_char_class(
1019         (((Np.id==id_glue)or(Np.id==id_kern)) and 'glue' or 'jcharbdd'), qm))
1020    local k
1021    if is_kanji==0 then
1022       k = combine_spc('auto_kspc') and get_kanjiskip_low(false, qm, kn, kp, kh)
1023    end
1024    return g, k
1025 end
1026
1027 -- (anything) .. jachar
1028 local function handle_np_jachar(mode)
1029    local qid = Nq.id
1030    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
1031       local g, k
1032       if non_ihb_flag then g, k = calc_ja_ja_glue() end -- M->K
1033       if not g then g = get_kanjiskip() end
1034       handle_penalty_normal(Nq.post, Np.pre, g); 
1035       real_insert(g); real_insert(k)
1036    elseif Nq.met then  -- qid==id_hlist
1037       local g, k
1038       if non_ihb_flag then g, k = get_OA_skip(0) end -- O_A->K
1039       if not g then g = get_kanjiskip() end
1040       handle_penalty_normal(0, Np.pre, g); real_insert(g); real_insert(k)
1041    elseif Nq.pre then
1042       local g, k
1043       if non_ihb_flag then g, k = get_NA_skip() end -- N_A->X
1044       if not g then g = get_xkanjiskip(Np) end
1045       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); 
1046       real_insert(g); real_insert(k)
1047    else
1048       local g = non_ihb_flag and (get_OA_skip()) -- O_A
1049       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
1050       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
1051       else handle_penalty_always(0, Np.pre, g)
1052       end
1053       real_insert(g)
1054    end
1055    if mode and Np.kcat%2~=1 then
1056       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
1057    end
1058 end
1059
1060
1061 -- jachar .. (anything)
1062 local function handle_nq_jachar()
1063     if Np.pre then
1064       local g = non_ihb_flag and get_NB_skip() or get_xkanjiskip(Nq) -- N_B->X
1065       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
1066    else
1067       local g =non_ihb_flag and  (get_OB_skip()) -- O_B
1068       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
1069       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
1070       else handle_penalty_always(Nq.post, 0, g)
1071       end
1072       real_insert(g)
1073    end
1074 end
1075
1076 -- (anything) .. (和文文字で始まる hlist)
1077 local function handle_np_ja_hlist()
1078    local qid = Nq.id
1079    if qid==id_jglyph or ((qid==id_pbox or qid == id_pbox_w) and Nq.met) then
1080       local g = non_ihb_flag and get_OB_skip(0) or get_kanjiskip() -- O_B->K
1081       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
1082    elseif Nq.met then  -- Nq.id==id_hlist
1083       local g = get_kanjiskip() -- K
1084       handle_penalty_suppress(0, 0, g); real_insert(g)
1085    elseif Nq.pre then
1086       local g = get_xkanjiskip(Np) -- X
1087       handle_penalty_suppress(0, 0, g); real_insert(g)
1088    end
1089 end
1090
1091 -- (和文文字で終わる hlist) .. (anything)
1092 local function handle_nq_ja_hlist()
1093    if Np.pre then
1094       local g = get_xkanjiskip(Nq) -- X
1095       handle_penalty_suppress(0, 0, g); real_insert(g)
1096    end
1097 end
1098
1099
1100 -- Nq が前側のクラスタとなることによる修正
1101 local adjust_nq
1102 do
1103    local adjust_nq_aux = {
1104       [id_glyph] = function() after_alchar(Nq) end, -- after_alchar(Nq)
1105       [id_hlist]  = function() after_hlist(Nq) end,
1106       [id_pbox]  = function() after_hlist(Nq) end,
1107       [id_disc]  = function() after_hlist(Nq) end,
1108       [id_pbox_w]  = function()
1109                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
1110                                                  false, Nq, Np)
1111                      end,
1112    }
1113
1114    adjust_nq=function()
1115       local x = adjust_nq_aux[Nq.id]
1116       if x then x()  end
1117    end
1118 end
1119
1120
1121 -------------------- 開始・終了時の処理
1122 do
1123 local node_prev = node.direct.getprev
1124 -- リスト末尾の処理
1125 local function handle_list_tail(mode, last)
1126    adjust_nq()
1127    if mode then
1128       -- the current list is to be line-breaked.
1129       -- Insert \jcharwidowpenalty
1130       if widow_Np.first then handle_penalty_jwp() end
1131    else
1132       Np=Nq       
1133       -- the current list is the contents of a hbox
1134       local npi, pm = Np.id, Np.met
1135       if npi == id_jglyph or (npi==id_pbox and pm) then
1136          local g = new_jfm_glue(pm.char_type, Np.class, fast_find_char_class('boxbdd', pm))
1137          if g then
1138             set_attr(g, attr_icflag, BOXBDD)
1139             head = insert_after(head, Np.last, g)
1140          end
1141       end
1142    end
1143 end
1144
1145 -- リスト先頭の処理
1146 local function handle_list_head(par_indented)
1147    local npi, pm = Np.id, Np.met
1148    if npi ==  id_jglyph or (npi==id_pbox and pm) then
1149       if non_ihb_flag then
1150          local g = new_jfm_glue(pm.char_type, fast_find_char_class(par_indented, pm), Np.class)
1151          if g then
1152             set_attr(g, attr_icflag, BOXBDD)
1153             if getid(g)==id_glue and #Bp==0 then
1154                local h = node_new(id_penalty)
1155                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
1156             end
1157             head = insert_before(head, Np.first, g)
1158          end
1159       end
1160    end
1161 end
1162
1163 -- initialize
1164 -- return value: (the initial cursor lp), (last node)
1165 local init_var
1166 do
1167    local id_local = node.id('local_par')
1168    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
1169    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
1170    local KSK  = luatexja.stack_table_index.KSK
1171    local XSK  = luatexja.stack_table_index.XSK
1172    local dir_yoko = luatexja.dir_table.dir_yoko
1173    local dir_tate = luatexja.dir_table.dir_tate
1174    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
1175    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
1176    local table_pool = {
1177       {}, {}, {first=nil},
1178       { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1179         first=nil, id=nil, last=nil, met=nil, nuc=nil,
1180         post=nil, pre=nil, xspc=nil, }, 
1181       { auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1182         first=nil, id=nil, last=nil, met=nil, nuc=nil,
1183         post=nil, pre=nil, xspc=nil, },
1184    }
1185    init_var = function (mode,dir)
1186       -- 1073741823: max_dimen
1187       Bp, widow_Bp, widow_Np, Np, Nq
1188          = table_pool[1], table_pool[2], table_pool[3], table_pool[4], table_pool[5]
1189       for i=1,5 do for j,_ in pairs(table_pool[i]) do table_pool[i][j]=nil end end
1190       table_current_stack = ltjs.table_current_stack
1191
1192       list_dir, tex_dir = (ltjs.list_dir or dir_yoko), (dir or 'TLT')
1193       local is_dir_tate = list_dir==dir_tate
1194       capsule_glyph = is_dir_tate and ltjw.capsule_glyph_tate or ltjw.capsule_glyph_yoko
1195       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
1196       local TEMP = node_new(id_glue) 
1197       -- TEMP is a dummy node, which will be freed at the end of the callback. 
1198       -- ithout this node, set_attr(kanji_skip, ...) somehow creates an "orphaned"  attribute list.
1199
1200       do
1201           kanji_skip, kanjiskip_jfm_flag = skip_table_to_glue(KSK)
1202           set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
1203       end
1204
1205       do
1206           xkanji_skip, xkanjiskip_jfm_flag = skip_table_to_glue(XSK)
1207           set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
1208       end
1209
1210       if mode then
1211          -- the current list is to be line-breaked:
1212          -- hbox from \parindent is skipped.
1213          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
1214          while lp and 
1215             ((lpi==id_whatsit and lps~=sid_user)
1216                or ((lpi==id_hlist) and (lps==3))
1217                or (lpi==id_local)) do
1218             if (lpi==id_hlist) and (lps==3) then
1219                Np.char, par_indented = 'parbdd', 'parbdd'
1220                Np.width = getfield(lp, 'width')
1221             end
1222             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
1223          return lp, node_tail(head), par_indented, TEMP
1224       else
1225          return head, nil, 'boxbdd', TEMP
1226       end
1227    end
1228 end
1229
1230 local ensure_tex_attr = ltjb.ensure_tex_attr
1231 local function cleanup(mode, TEMP)
1232    -- luatexja.ext_show_node_list(to_node(head), '> ', print)
1233    -- adjust attr_icflag for avoiding error
1234    if tex.getattribute(attr_icflag)~=0 then ensure_tex_attr(attr_icflag, 0) end
1235    node_free(kanji_skip); 
1236    node_free(xkanji_skip); node_free(TEMP)
1237    
1238    if mode then
1239       local h = node_next(head)
1240       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
1241          h = node_next(h)
1242          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
1243             return false
1244          end
1245       end
1246    end
1247    return head
1248 end
1249 -------------------- 外部から呼ばれる関数
1250
1251 -- main interface
1252 function luatexja.jfmglue.main(ahead, mode, dir)
1253    if not ahead then return ahead end
1254    --luatexja.ext_show_node_list(to_node(ahead ), '>B ', print)
1255    --print()
1256    head = ahead;
1257    local lp, last, par_indented, TEMP = init_var(mode,dir)
1258    lp = calc_np(last, lp)
1259    if Np then
1260       handle_list_head(par_indented)
1261       lp = calc_np(last,lp); 
1262       while Np do
1263          adjust_nq();
1264          local pid, pm = Np.id, Np.met
1265          -- 挿入部
1266          if pid == id_jglyph then
1267             handle_np_jachar(mode)
1268          elseif pm then
1269             if pid==id_hlist then handle_np_ja_hlist()
1270             else handle_np_jachar() end
1271          elseif Nq.met then
1272             if Nq.id==id_hlist then handle_nq_ja_hlist()
1273             else handle_nq_jachar() end
1274          end
1275          lp = calc_np(last,lp)
1276       end
1277       handle_list_tail(mode, last)
1278    end
1279    --luatexja.ext_show_node_list(to_node(ahead ), '>A ', print)
1280    --print()
1281    return cleanup(mode, TEMP)
1282 end
1283 end
1284
1285 do
1286    local IHB  = luatexja.userid_table.IHB 
1287    local BPAR = luatexja.userid_table.BPAR
1288    local BOXB = luatexja.userid_table.BOXB
1289    local node_prev = node.direct.getprev
1290    local node_write = node.direct.write
1291
1292    -- \inhibitglue
1293    function luatexja.jfmglue.create_inhibitglue_node()
1294       local tn = node_new(id_whatsit, sid_user)
1295       setfield(tn, 'user_id', IHB)
1296       setfield(tn, 'type', 100)
1297       setfield(tn, 'value', 1)
1298       node_write(tn)
1299    end
1300
1301    -- Node for indicating beginning of a paragraph
1302    -- (for ltjsclasses)
1303    function luatexja.jfmglue.create_beginpar_node()
1304       local tn = node_new(id_whatsit, sid_user)
1305       setfield(tn, 'user_id', BPAR)
1306       setfield(tn, 'type', 100)
1307       setfield(tn, 'value', 1)
1308       node_write(tn)
1309    end
1310
1311    -- Node for indicating a head/end of a box
1312    function luatexja.jfmglue.create_boxbdd_node()
1313       local tn = node_new(id_whatsit, sid_user)
1314       setfield(tn, 'user_id', BOXB)
1315       setfield(tn, 'type', 100)
1316       setfield(tn, 'value', 1)
1317       node_write(tn)
1318    end
1319
1320    local function whatsit_callback(Np, lp, Nq)
1321       if Np and Np.nuc then return Np
1322       elseif Np and getfield(lp, 'user_id') == BPAR then
1323          Np.first = lp; Np.nuc = lp; Np.last = lp
1324          return Np
1325       elseif Np and getfield(lp, 'user_id') == BOXB then
1326          Np.first = lp; Np.nuc = lp; Np.last = lp
1327          if Nq then
1328             if Nq.met then
1329                Np.class = fast_find_char_class('boxbdd', Nq.met)
1330             end
1331             Np.met = Nq.met; Np.pre = 0; Np.post = 0; Np.xspc = 0
1332             Np.auto_xspc, Np.auto_kspc = 0, 0
1333          end     
1334          return Np
1335       else
1336          return Np
1337       end
1338    end
1339
1340     local function whatsit_after_callback(s, Nq, Np)
1341        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1342          local x, y = node_prev(Nq.nuc), Nq.nuc
1343          Nq.first, Nq.nuc, Nq.last = x, x, x
1344          if Np then
1345             if Np.met then
1346                Nq.class = fast_find_char_class('parbdd', Np.met)
1347             end
1348             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1349             Nq.auto_xspc, Nq.auto_kspc = 0, 0
1350          end
1351          head = node_remove(head, y)
1352          node_free(y)
1353        elseif not s and getfield(Nq.nuc, 'user_id') == BOXB then
1354          local x, y = node_prev(Nq.nuc), Nq.nuc
1355          Nq.first, Nq.nuc, Nq.last = x, x, x
1356          if Np then
1357             if Np.met then
1358                Nq.class = fast_find_char_class('boxbdd', Np.met)
1359             end
1360             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1361             Nq.auto_xspc, Nq.auto_kspc = 0, 0
1362          end
1363          head = node_remove(head, y)
1364          node_free(y)
1365       end
1366       return s
1367    end
1368
1369    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1370                               "luatexja.beginpar.np_info", 1)
1371    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1372                               "luatexja.beginpar.np_info_after", 1)
1373
1374 end
1375
1376 luatexja.jfmglue.after_hlist = after_hlist
1377 luatexja.jfmglue.check_box_high = check_box_high