OSDN Git Service

ltj-rmlgbm.lua: support vertical form.
[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 = '2014/02/02',
7   description = 'Insertion process of JFM glues and kanjiskip',
8 })
9 module('luatexja.jfmglue', package.seeall)
10 local err, warn, info, log = luatexbase .errwarinf(_NAME)
11
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 local pairs = pairs
16
17 local Dnode = node.direct or node
18
19 local nullfunc = function(n) return n end
20 local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
21 local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
22
23 local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
24 local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
25 local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end
26 local getfont = (Dnode ~= node) and Dnode.getfont or function(n) return n.font end
27 local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end
28 local getchar = (Dnode ~= node) and Dnode.getchar or function(n) return n.char end
29 local getsubtype = (Dnode ~= node) and Dnode.getsubtype or function(n) return n.subtype end
30
31 local has_attr = Dnode.has_attribute
32 local set_attr = Dnode.set_attribute
33 local insert_before = Dnode.insert_before
34 local insert_after = Dnode.insert_after
35 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
36 local round = tex.round
37 local ltjd_make_dir_node = ltjd.make_dir_node
38 local ltjf_font_metric_table = ltjf.font_metric_table
39 local ltjf_find_char_class = ltjf.find_char_class
40 local node_new = Dnode.new
41 local node_copy = Dnode.copy
42 local node_remove = luatexja.Dnode_remove -- Dnode.remove
43 local node_tail = Dnode.tail
44 local node_free = Dnode.free
45 local node_end_of_math = Dnode.end_of_math
46
47 local dir_tate = 3
48 local dir_yoko  = 4
49
50 local id_glyph = node.id('glyph')
51 local id_hlist = node.id('hlist')
52 local id_vlist = node.id('vlist')
53 local id_rule = node.id('rule')
54 local id_ins = node.id('ins')
55 local id_mark = node.id('mark')
56 local id_adjust = node.id('adjust')
57 local id_disc = node.id('disc')
58 local id_whatsit = node.id('whatsit')
59 local id_math = node.id('math')
60 local id_glue = node.id('glue')
61 local id_kern = node.id('kern')
62 local id_penalty = node.id('penalty')
63
64 local id_glue_spec = node.id('glue_spec')
65 local id_jglyph    = 512 -- Japanese character
66 local id_box_like  = 256 -- vbox, shifted hbox
67 local id_pbox      = 257 -- already processed nodes (by \unhbox)
68 local id_pbox_w    = 258 -- cluster which consists of a whatsit
69 local sid_user = node.subtype('user_defined')
70
71 local sid_start_link = node.subtype('pdf_start_link')
72 local sid_start_thread = node.subtype('pdf_start_thread')
73 local sid_end_link = node.subtype('pdf_end_link')
74 local sid_end_thread = node.subtype('pdf_end_thread')
75
76 local ITALIC       = luatexja.icflag_table.ITALIC
77 local PACKED       = luatexja.icflag_table.PACKED
78 local KINSOKU      = luatexja.icflag_table.KINSOKU
79 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
80 local PROCESSED    = luatexja.icflag_table.PROCESSED
81 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
82 local BOXBDD       = luatexja.icflag_table.BOXBDD
83 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
84 local kanji_skip
85 local xkanji_skip
86 local table_current_stack
87 local list_dir
88
89 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
90 local attr_dir = luatexbase.attributes['ltj@dir']
91 local attr_icflag = luatexbase.attributes['ltj@icflag']
92
93 local function get_attr_icflag(p)
94    return (has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG
95 end
96
97 -------------------- Helper functions
98
99 local function copy_attr(new, old) 
100   -- 仕様が決まるまで off にしておく
101 end
102
103 -- This function is called only for acquiring `special' characters.
104 local function fast_find_char_class(c,m)
105    return m.chars[c] or 0
106 end
107
108 -- 文字クラスの決定
109 local function slow_find_char_class(c, m, oc)
110    local xc = c or oc
111    local cls = ltjf_find_char_class(oc, m)
112    if xc ~= oc and  cls==0 then cls = ltjf_find_char_class(-xc, m) end
113    return cls, xc
114 end
115
116 local zero_glue = node_new(id_glue)
117 spec_zero_glue = to_node(node_new(id_glue_spec))
118   -- must be public, since mentioned from other sources
119 local spec_zero_glue = to_direct(spec_zero_glue)
120 setfield(spec_zero_glue, 'width', 0)
121 setfield(spec_zero_glue, 'stretch', 0)
122 setfield(spec_zero_glue, 'shrink', 0)
123 setfield(spec_zero_glue, 'stretch_order', 0)
124 setfield(spec_zero_glue, 'shrink_order', 0)
125 setfield(zero_glue, 'spec', spec_zero_glue)
126
127 local function skip_table_to_spec(n)
128    local g, st = node_new(id_glue_spec), ltjs.fast_get_stack_skip(n)
129    setfield(g, 'width', st.width)
130    setfield(g, 'stretch', st.stretch)
131    setfield(g, 'shrink', st.shrink)
132    setfield(g, 'stretch_order', st.stretch_order)
133    setfield(g, 'shrink_order', st.shrink_order)
134    return g
135 end
136
137
138 -- penalty 値の計算
139 local function add_penalty(p,e)
140    local pp = getfield(p, 'penalty')
141    if pp>=10000 then
142       if e<=-10000 then pp = 0 end
143    elseif pp<=-10000 then
144       if e>=10000 then pp = 0 end
145    else
146       pp = pp + e
147       if pp>=10000 then      setfield(p, 'penalty', 10000)
148       elseif pp<=-10000 then setfield(p, 'penalty', -10000)
149       else                   setfield(p, 'penalty', pp) end
150    end
151    return
152 end
153
154 -- 「異なる JFM」の間の調整方法
155 diffmet_rule = math.two_paverage
156 function math.two_add(a,b) return a+b end
157 function math.two_average(a,b) return (a+b)*0.5 end
158 function math.two_paverage(a,b) return (a+b)/2 end
159 function math.two_pleft(a,b) return a end
160 function math.two_pright(a,b) return b end
161
162 local head -- the head of current list
163
164 local Np, Nq, Bp
165 local widow_Bp, widow_Np -- \jcharwidowpenalty 挿入位置管理用
166
167 local ihb_flag -- JFM グルー挿入抑止用 flag
168                -- on: \inhibitglue 指定時,hlist の周囲
169
170 -------------------- hlist 内の文字の検索
171
172 local first_char, last_char, find_first_char
173
174 local function check_box(box_ptr, box_end)
175    local p = box_ptr; local found_visible_node = false
176    if not p then 
177       find_first_char = false; last_char = nil
178       return true
179    end
180    while p and p~=box_end do
181       local pid = getid(p)
182       if pid==id_kern and getsubtype(p)==2 then
183          p = node_next(node_next(node_next(p))); pid = getid(p) -- p must be glyph_node
184        end
185       if pid==id_glyph then
186          repeat 
187             if find_first_char then 
188                first_char = p; find_first_char = false
189             end
190             last_char = p; found_visible_node = true; p=node_next(p)
191             if (not p) or p==box_end then 
192                return found_visible_node 
193             end
194          until getid(p)~=id_glyph
195          pid = getid(p) -- p must be non-nil
196       end
197       if pid==id_kern then
198          local pa = get_attr_icflag(p)
199          --if pa==IC_PROCESSED or pa == PACKED then
200          if pa==IC_PROCESSED then
201             -- do nothing
202          elseif getsubtype(p)==2 then
203             p = node_next(node_next(p)); 
204             -- Note that another node_next will be executed outside this if-statement.
205          else
206             found_visible_node = true
207             find_first_char = false; last_char = nil
208          end
209       elseif pid==id_hlist then
210          if PACKED == get_attr_icflag(p) then
211             if find_first_char then
212                first_char = getlist(p); find_first_char = false
213             end
214             last_char = getlist(p); found_visible_node = true
215          else
216             if getfield(p, 'shift')==0 then
217                if check_box(getlist(p), nil) then found_visible_node = true end
218             else 
219                find_first_char = false; last_char = nil
220             end
221          end
222       elseif pid==id_math then
223          if find_first_char then 
224             first_char = p; find_first_char = false
225          end
226          last_char = p; found_visible_node = true
227          --elseif pid==id_rule and get_attr_icflag(p)==PACKED then -- 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 function check_box_high(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 getfont(first_char) == (has_attr(first_char, attr_curjfnt) or -1) then 
246                set_np_xspc_jachar(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
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 do
272
273 local function set_attr_icflag_processed(p)
274    if get_attr_icflag(p)<= ITALIC then 
275       set_attr(p, attr_icflag, PROCESSED) 
276    end
277 end
278
279 local function check_next_ickern(lp)
280    if lp and getid(lp) == id_kern and ITALIC == get_attr_icflag(lp) then
281       set_attr(lp, attr_icflag, IC_PROCESSED)
282       Np.last = lp; return node_next(lp)
283    else 
284       Np.last = Np.nuc; return lp
285    end
286 end
287
288 local function calc_np_pbox(lp, last)
289    Np.first = Np.first or lp; Np.id = id_pbox
290    local lpa, nc = KINSOKU, nil
291    set_attr(lp, attr_icflag, get_attr_icflag(lp));
292    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
293       nc, lp = lp, node_next(lp); lpa = lp and has_attr(lp, attr_icflag) or 0
294      -- get_attr_icflag() ではいけない!
295    end
296    Np.nuc = nc
297    return check_next_ickern(lp)
298 end
299
300
301 local calc_np_auxtable = {
302    [id_glyph] = function (lp)
303       Np.first, Np.nuc = (Np.first or lp), lp;
304       Np.id = (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) 
305          and id_jglyph or id_glyph
306       return true, check_next_ickern(node_next(lp)); 
307    end,
308    [id_hlist] = function(lp) 
309       local op, flag
310       head, lp, op, flag = ltjd_make_dir_node(head, lp, list_dir, 'jfm hlist')
311       Np.first = Np.first or op; Np.last = op; Np.nuc = op; 
312       Np.id = (flag or getfield(op, 'shift')~=0) and id_box_like or id_hlist
313       return true, lp
314    end,
315    box_like = function(lp)
316       local op
317       head, lp, op = ltjd_make_dir_node(head, lp, list_dir, 'jfm:' .. getid(lp))
318       Np.first = Np.first or op; Np.last = op; Np.nuc = op; 
319       Np.id = id_box_like;
320       return true, lp
321    end,
322    skip = function(lp) 
323       set_attr(lp, attr_icflag, PROCESSED)
324       return false, node_next(lp)
325    end,
326    [id_whatsit] = function(lp) 
327       local lps = getsubtype(lp)
328       if lps==sid_user then
329          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
330             local lq = node_next(lp); 
331             head = node_remove(head, lp); node_free(lp); ihb_flag = true
332             return false, lq;
333          else
334             set_attr(lp, attr_icflag, PROCESSED)
335             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
336                                      Np, lp, Nq)
337             if Np.nuc then 
338                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc; 
339                return true, node_next(lp)
340             else
341                return false, node_next(lp)
342             end
343          end
344       else
345          -- we do special treatment for these whatsit nodes.
346          if lps == sid_start_link or lps == sid_start_thread then
347             Np.first = lp 
348          elseif lps == sid_end_link or lps == sid_end_thread then
349             Np.first, Nq.last = nil, lp;
350          end
351          set_attr(lp, attr_icflag, PROCESSED)
352          return false, node_next(lp)
353       end
354    end,
355    [id_math] = function(lp)
356       Np.first, Np.nuc = (Np.first or lp), lp; 
357       set_attr(lp, attr_icflag, PROCESSED)
358       lp  = node_end_of_math(lp) 
359       set_attr(lp, attr_icflag, PROCESSED)
360       Np.last, Np.id = lp, id_math;
361       return true, node_next(lp); 
362    end,
363    discglue = function(lp)
364       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp; 
365       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
366       return true, node_next(lp)
367    end,
368    [id_kern] = function(lp) 
369       Np.first = Np.first or lp
370       if getsubtype(lp)==2 then
371          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
372          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
373          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
374          set_attr(lp, attr_icflag, PROCESSED); Np.nuc = lp
375          Np.id = (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) and id_jglyph or id_glyph
376          return true, check_next_ickern(node_next(lp)); 
377       else
378          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
379          Np.last = lp; return true, node_next(lp)
380       end
381    end,
382    [id_penalty] = function(lp)
383       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
384       return false, node_next(lp)
385    end,
386 }
387 calc_np_auxtable[id_vlist]  = calc_np_auxtable.box_like
388 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
389 calc_np_auxtable[13]        = calc_np_auxtable.box_like
390 calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
391 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
392 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
393 calc_np_auxtable[id_disc]   = calc_np_auxtable.discglue
394 calc_np_auxtable[id_glue]   = calc_np_auxtable.discglue
395
396 function calc_np(lp, last)
397    local k
398    -- We assume lp = node_next(Np.last)
399    Np, Nq, ihb_flag = Nq, Np, nil
400    -- We clear `predefined' entries of Np before pairs() loop,
401    -- because using only pairs() loop is slower.
402    Np.post, Np.pre, Np.xspc = nil, nil, nil
403    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
404    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
405    for k in pairs(Np) do Np[k] = nil end
406
407    for k = 1,#Bp do Bp[k] = nil end
408    while lp ~= last  do
409       local lpa = has_attr(lp, attr_icflag) or 0
410        -- unbox 由来ノードの検出
411       if lpa>=PACKED then
412          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
413             local lq = node_next(lp) 
414             head = node_remove(head, lp); node_free(lp); lp = lq
415          else return calc_np_pbox(lp, last)
416          end -- id_pbox
417       else
418          k, lp = calc_np_auxtable[getid(lp)](lp)
419          if k then return lp end
420       end
421    end
422    Np = nil; return lp
423 end
424
425 end
426 local calc_np = calc_np
427
428 -- extract informations from Np
429 -- We think that "Np is a Japanese character" if Np.met~=nil,
430 --            "Np is an alphabetic character" if Np.pre~=nil,
431 --            "Np is not a character" otherwise.
432 after_hlist = nil -- global
433 local after_alchar, extract_np
434 do
435   local PRE  = luatexja.stack_table_index.PRE
436   local POST = luatexja.stack_table_index.POST
437   local KCAT = luatexja.stack_table_index.KCAT
438   local XSP  = luatexja.stack_table_index.XSP
439
440 -- 和文文字のデータを取得
441    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
442    local attr_orig_char = luatexbase.attributes['ltj@origchar']
443    local attr_autospc = luatexbase.attributes['ltj@autospc']
444    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
445    function set_np_xspc_jachar(Nx, x)
446       local m = ltjf_font_metric_table[getfont(x)]
447       local cls, c
448       if list_dir == dir_tate then
449          local c1, c2 = getchar(x), has_attr(x, attr_orig_char)
450          c = has_attr(x, attr_dir) or c1 or c2
451          cls = ltjf_find_char_class(c, m)
452          if cls==0 then cls = slow_find_char_class(c2, m, c1) end
453       else
454          cls, c = slow_find_char_class(has_attr(x, attr_orig_char), m, getchar(x))
455       end
456       Nx.met, Nx.char = m, c; Nx.class = cls; 
457       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
458       Nx.pre  = table_current_stack[PRE + c]  or 0
459       Nx.post = table_current_stack[POST + c] or 0
460       Nx.xspc = table_current_stack[XSP  + c] or 3
461       Nx.kcat = table_current_stack[KCAT + c] or 0
462       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
463    end 
464    local set_np_xspc_jachar = set_np_xspc_jachar
465
466 -- 欧文文字のデータを取得
467    local floor = math.floor
468    function set_np_xspc_alchar(Nx, c,x, lig)
469       if c~=-1 then
470          local f = (lig ==1) and nullfunc or node_tail
471          local xc, xs = getfield(x, 'components'), getsubtype(x)
472          while xc and xs and xs%4>=2 do
473             x = f(xc); xc, xs = getfield(x, 'components'), getsubtype(x)
474          end
475          c = getchar(x)
476          Nx.pre  = table_current_stack[PRE + c]  or 0
477          Nx.post = table_current_stack[POST + c] or 0
478          Nx.xspc = table_current_stack[XSP  + c] or 3
479          Nx.char = 'jcharbdd'
480       else
481          Nx.pre, Nx.post, Nx.char = 0, 0, -1
482          Nx.xspc = table_current_stack[XSP - 1] or 3
483       end
484       Nx.met = nil
485       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
486    end
487    local set_np_xspc_alchar = set_np_xspc_alchar
488
489 -- Np の情報取得メインルーチン
490    extract_np = function ()
491       local x, i = Np.nuc, Np.id;
492       if i ==  id_jglyph then return set_np_xspc_jachar(Np, x)
493       elseif i == id_glyph then return set_np_xspc_alchar(Np, getchar(x), x, 1)
494       elseif i == id_hlist then Np.last_char = check_box_high(Np, getlist(x), nil)
495       elseif i == id_pbox then Np.last_char = check_box_high(Np, Np.first, node_next(Np.last))
496       elseif i == id_disc then Np.last_char = check_box_high(Np, getfield(x, 'replace'), nil)
497       elseif i == id_math then return set_np_xspc_alchar(Np, -1, x)
498       end
499    end
500    
501    -- change the information for the next loop
502    -- (will be done if Nx is an alphabetic character or a hlist)
503    after_hlist = function (Nx)
504       local s = Nx.last_char
505       if s then
506          if getid(s)==id_glyph then
507             if getfont(s) == (has_attr(s, attr_curjfnt) or -1) then 
508                set_np_xspc_jachar(Nx, s)
509             else
510                set_np_xspc_alchar(Nx, getchar(s), s, 2)
511             end
512          else
513             set_np_xspc_alchar(Nx, -1, s)
514          end
515       else
516          Nx.pre, Nx.met = nil, nil
517       end
518    end
519    
520    after_alchar = function (Nx)
521       local x = Nx.nuc
522       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
523    end
524
525 end
526
527 -------------------- 最下層の処理
528
529 -- change penalties (or create a new penalty, if needed)
530 local function handle_penalty_normal(post, pre, g)
531    local a = (pre or 0) + (post or 0)
532    if #Bp == 0 then
533       if (a~=0 and not(g and getid(g)==id_kern)) then
534          local p = node_new(id_penalty)
535          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
536          setfield(p, 'penalty', a)
537          head = insert_before(head, Np.first, p)
538          Bp[1]=p; 
539          set_attr(p, attr_icflag, KINSOKU)
540       end
541    else for _, v in pairs(Bp) do add_penalty(v,a) end
542    end
543 end
544
545 local function handle_penalty_always(post, pre, g)
546    local a = (pre or 0) + (post or 0)
547    if #Bp == 0 then
548       if not (g and getid(g)==id_glue) then
549          local p = node_new(id_penalty)
550          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
551          setfield(p, 'penalty', a)
552          head = insert_before(head, Np.first, p)
553          Bp[1]=p
554          set_attr(p, attr_icflag, KINSOKU)
555       end
556    else for _, v in pairs(Bp) do add_penalty(v,a) end
557    end
558 end
559
560 local function handle_penalty_suppress(post, pre, g)
561    local a = (pre or 0) + (post or 0)
562    if #Bp == 0 then
563       if g and getid(g)==id_glue then
564          local p = node_new(id_penalty)
565          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
566          Bp[1]=p
567          set_attr(p, attr_icflag, KINSOKU)
568       end
569    else for _, v in pairs(Bp) do add_penalty(v,a) end
570    end
571 end
572
573 -- 和文文字間の JFM glue を node 化
574 local function new_jfm_glue(m, bc, ac)
575 -- bc, ac: char classes
576    local g, d = m.char_type[bc][ac], 0
577    local n
578    if g then
579       n,d = node_copy(g[2]), g[3]
580       if g[1] then 
581          local f = node_new(id_glue)
582          set_attr(f, attr_icflag, g[4])
583          setfield(f, 'spec', n)
584          return f, d
585       end
586    end
587    return n, d
588 end
589
590 -- Nq.last (kern w) .... (glue/kern g) Np.first
591 local function real_insert(g)
592    if g then
593       head  = insert_before(head, Np.first, g)
594       Np.first = g
595    end
596 end
597
598
599 -------------------- 和文文字間空白量の決定
600
601 -- get kanjiskip
602 local get_kanjiskip
603 local get_kanjiskip_normal, get_kanjiskip_jfm
604 do
605    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
606    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
607    get_kanjiskip_normal = function ()
608       if Np.auto_kspc or Nq.auto_kspc then
609          return node_copy(kanji_skip)
610       else
611          local g = node_copy(zero_glue)
612          set_attr(g, attr_icflag, KANJI_SKIP)
613          return g
614       end
615    end
616
617    get_kanjiskip_jfm = function ()
618       local g
619       if Np.auto_kspc or Nq.auto_kspc then
620          g = node_new(id_glue); --copy_attr(g, Nq.nuc)
621          local gx = node_new(id_glue_spec);
622          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
623          local pm, qm = Np.met, Nq.met
624          local bk = qm.kanjiskip or {0, 0, 0}
625          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
626             setfield(gx, 'width', bk[1])
627             setfield(gx, 'stretch', bk[2])
628             setfield(gx, 'shrink', bk[3])
629          else
630             local ak = pm.kanjiskip or {0, 0, 0}
631             setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
632             setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
633             setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
634          end
635          setfield(g, 'spec', gx)
636       else
637          g =  node_copy(zero_glue)
638       end
639       set_attr(g, attr_icflag, KANJI_SKIP_JFM)
640       return g
641    end
642 end
643
644 local calc_ja_ja_aux
645 do
646    local bg_ag = 2*id_glue - id_glue
647    local bg_ak = 2*id_glue - id_kern
648    local bk_ag = 2*id_kern - id_glue
649    local bk_ak = 2*id_kern - id_kern
650
651    calc_ja_ja_aux = function (gb,ga, db, da)
652       local rbb, rab = (1-db)/2, (1-da)/2 -- 「前の文字」由来のグルーの割合
653       local rba, raa = (1+db)/2, (1+da)/2 -- 「前の文字」由来のグルーの割合
654       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright 
655           and diffmet_rule ~= math.two_paverage then
656          rbb, rab, rba, raa = 1,0,0,1
657       end
658       if not gb then 
659          if ga then 
660             gb = node_new(id_kern); setfield(gb, 'kern', 0) 
661          else return nil end
662       elseif not ga then 
663          ga = node_new(id_kern); setfield(ga, 'kern', 0)
664       end
665       
666       local k = 2*getid(gb) - getid(ga)
667       if k == bg_ag then
668          local bs, as = getfield(gb, 'spec'), getfield(ga, 'spec')
669          -- 両方とも glue.
670          local bd, ad = getfield(bs, 'width'), getfield(as, 'width')
671          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
672          bd, ad = getfield(bs, 'stretch'), getfield(as, 'stretch')
673          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
674          bd, ad = getfield(bs, 'shrink'), getfield(as, 'shrink')
675          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd - rba*ad, -rab*bd - raa*ad)))
676          node_free(ga)
677          return gb
678       elseif k == bk_ak then
679          -- 両方とも kern.
680          local bd, ad = getfield(gb, 'kern'), getfield(ga, 'kern')
681          setfield(gb, 'kern', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
682          node_free(ga)
683          return gb
684       elseif k == bk_ag then 
685          local as = getfield(ga, 'spec')
686          -- gb: kern, ga: glue
687          local bd, ad = getfield(gb, 'kern'), getfield(as, 'width')
688          setfield(as, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
689          ad = getfield(as, 'stretch')
690          setfield(bs, 'stretch', round(diffmet_rule(rba*ad, raa*ad)))
691          ad = getfield(as, 'shrink')
692          setfield(bs, 'shrink', -round(diffmet_rule(-rba*ad, -raa*ad)))
693          node_free(gb)
694          return ga
695       else
696          local bs = getfield(gb, 'spec')
697          -- gb: glue, ga: kern
698          local bd, ad = getfield(bs, 'width'), getfield(ga, 'kern')
699          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
700          bd = getfield(bs, 'stretch')
701          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd, rab*bd)))
702          bd = getfield(bs, 'shrink')
703          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd, -rab*bd)))
704          node_free(ga)
705          return gb
706       end
707    end
708 end
709
710 local function calc_ja_ja_glue()
711    if  ihb_flag then return nil
712    else
713       local qm, pm = Nq.met, Np.met
714       if (qm.char_type==pm.char_type) and (qm.var==pm.var) then
715          return new_jfm_glue(qm, Nq.class, Np.class)
716       else
717          local npn, nqn = Np.nuc, Nq.nuc
718          local gb, db = new_jfm_glue(qm, Nq.class,
719                                      slow_find_char_class(has_attr(npn, attr_orig_char),
720                                                           qm, getchar(npn)))
721          local ga, da = new_jfm_glue(pm, 
722                                      slow_find_char_class(has_attr(nqn, attr_orig_char),
723                                                           pm, getchar(nqn)),
724                                Np.class)
725          return calc_ja_ja_aux(gb, ga, db, da); 
726       end
727    end
728 end
729
730 -------------------- 和欧文間空白量の決定
731
732 -- get xkanjiskip
733 local get_xkanjiskip
734 local get_xkanjiskip_normal, get_xkanjiskip_jfm
735 do
736    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
737    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
738    get_xkanjiskip_normal = function (Nn)
739       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
740          local f = node_copy(xkanji_skip)
741          return f
742       else
743          local g = node_copy(zero_glue)
744          set_attr(g, attr_icflag, XKANJI_SKIP)
745          return g
746       end
747    end
748    get_xkanjiskip_jfm = function (Nn)
749       local g
750       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
751          g = node_new(id_glue)
752          local gx = node_new(id_glue_spec);
753          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
754          local bk = Nn.met.xkanjiskip or {0, 0, 0}
755          setfield(gx, 'width', bk[1])
756          setfield(gx, 'stretch', bk[2])
757          setfield(gx, 'shrink', bk[3])
758          setfield(g, 'spec', gx)
759       else
760          g = node_copy(zero_glue)
761       end
762       set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
763       return g
764    end
765 end
766
767 -------------------- 隣接した「塊」間の処理
768
769 local function get_OA_skip()
770    if not ihb_flag then
771       local pm = Np.met
772       return new_jfm_glue(pm, 
773         fast_find_char_class(((Nq.id == id_math and -1) or (type(Nq.char)=='string' and Nq.char or 'jcharbdd')), pm), Np.class)
774    else return nil
775    end
776 end
777 local function get_OB_skip()
778    if not ihb_flag then
779       local qm = Nq.met
780       return new_jfm_glue(qm, Nq.class, 
781         fast_find_char_class(((Np.id == id_math and -1) or'jcharbdd'), qm))
782    else return nil
783    end
784 end
785
786 -- (anything) .. jachar
787 local function handle_np_jachar(mode)
788    local qid = Nq.id
789    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then 
790       local g = calc_ja_ja_glue() or get_kanjiskip() -- M->K
791       handle_penalty_normal(Nq.post, Np.pre, g); real_insert(g)
792    elseif Nq.met then  -- qid==id_hlist
793       local g = get_OA_skip() or get_kanjiskip() -- O_A->K
794       handle_penalty_normal(0, Np.pre, g); real_insert(g)
795    elseif Nq.pre then 
796       local g = get_OA_skip() or get_xkanjiskip(Np) -- O_A->X
797       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); real_insert(g)
798    else
799       local g = get_OA_skip() -- O_A
800       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
801       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
802       else handle_penalty_always(0, Np.pre, g)
803       end
804       real_insert(g)
805    end
806    if mode and Np.kcat%2~=1 then
807       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
808    end
809 end
810
811
812 -- jachar .. (anything)
813 local function handle_nq_jachar()
814     if Np.pre then 
815       local g = get_OB_skip() or get_xkanjiskip(Nq) -- O_B->X
816       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
817    else
818       local g = get_OB_skip() -- O_B
819       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
820       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
821       else handle_penalty_always(Nq.post, 0, g)
822       end
823       real_insert(g)
824    end
825 end
826
827 -- (anything) .. (和文文字で始まる hlist)
828 local function handle_np_ja_hlist()
829    local qid = Nq.id
830    if qid==id_jglyph or ((qid==id_pbox or Nq.id == id_pbox_w) and Nq.met) then 
831       local g = get_OB_skip() or get_kanjiskip() -- O_B->K
832       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
833    elseif Nq.met then  -- Nq.id==id_hlist
834       local g = get_kanjiskip() -- K
835       handle_penalty_suppress(0, 0, g); real_insert(g)
836    elseif Nq.pre then 
837       local g = get_xkanjiskip(Np) -- X
838       handle_penalty_suppress(0, 0, g); real_insert(g)
839    end
840 end
841
842 -- (和文文字で終わる hlist) .. (anything)
843 local function handle_nq_ja_hlist()
844    if Np.pre then 
845       local g = get_xkanjiskip(Nq) -- X
846       handle_penalty_suppress(0, 0, g); real_insert(g)
847    end
848 end
849
850
851 -- Nq が前側のクラスタとなることによる修正
852 do
853    local adjust_nq_aux = {
854       [id_glyph] = function() 
855                       local x = Nq.nuc
856                       return set_np_xspc_alchar(Nq, getchar(x),x, 2)
857                    end, -- after_alchar(Nq)
858       [id_hlist]  = function() after_hlist(Nq) end,
859       [id_pbox]  = function() after_hlist(Nq) end,
860       [id_disc]  = function() after_hlist(Nq) end,
861       [id_pbox_w]  = function() 
862                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
863                                                  false, Nq, Np) 
864                      end,
865    }
866
867    function adjust_nq()
868       local x = adjust_nq_aux[Nq.id]
869       if x then x()  end
870    end
871 end
872
873
874 -------------------- 開始・終了時の処理
875 do
876
877 -- リスト末尾の処理
878 local JWP  = luatexja.stack_table_index.JWP
879 local function handle_list_tail(mode)
880    adjust_nq(); Np = Nq
881    if mode then
882       -- the current list is to be line-breaked.
883       -- Insert \jcharwidowpenalty
884       Bp = widow_Bp; Np = widow_Np
885       if Np.first then
886          handle_penalty_normal(0,
887                                table_current_stack[JWP] or 0)
888       end
889    else
890       -- the current list is the contents of a hbox
891       local npi, pm = Np.id, Np.met
892       if npi == id_jglyph or (npi==id_pbox and pm) then 
893          local g = new_jfm_glue(pm, Np.class, fast_find_char_class('boxbdd', pm))
894          if g then
895             set_attr(g, attr_icflag, BOXBDD)
896             head = insert_after(head, Np.last, g)
897          end
898       end
899    end
900 end
901
902 -- リスト先頭の処理
903 local function handle_list_head(par_indented)
904    local npi, pm = Np.id, Np.met
905    if npi ==  id_jglyph or (npi==id_pbox and pm) then 
906       if not ihb_flag then
907          local g = new_jfm_glue(pm, fast_find_char_class(par_indented, pm), Np.class)
908          if g then
909             set_attr(g, attr_icflag, BOXBDD)
910             if getid(g)==id_glue and #Bp==0 then
911                local h = node_new(id_penalty)
912                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
913             end
914             head = insert_before(head, Np.first, g)
915          end
916       end
917    end
918 end
919
920 -- initialize
921 -- return value: (the initial cursor lp), (last node)
922 local init_var
923 do
924    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
925    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
926    local KSK  = luatexja.stack_table_index.KSK
927    local XSK  = luatexja.stack_table_index.XSK
928    local DIR  = luatexja.stack_table_index.DIR
929    init_var = function (mode)
930       -- 1073741823: max_dimen
931       Bp, widow_Bp, widow_Np = {}, {}, {first = nil}
932       table_current_stack = ltjs.table_current_stack
933
934       list_dir = table_current_stack[DIR] or dir_yoko
935       kanji_skip = node_new(id_glue)
936       setfield(kanji_skip, 'spec', skip_table_to_spec(KSK))
937       set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
938       get_kanjiskip = (getfield(getfield(kanji_skip, 'spec'), 'width') == 1073741823)
939          and get_kanjiskip_jfm or get_kanjiskip_normal
940       
941       xkanji_skip = node_new(id_glue)
942       setfield(xkanji_skip, 'spec', skip_table_to_spec(XSK))
943       set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
944       get_xkanjiskip = (getfield(getfield(xkanji_skip, 'spec'), 'width') == 1073741823)
945          and get_xkanjiskip_jfm or get_xkanjiskip_normal
946       
947       Np = {
948          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil, 
949          first=nil, id=nil, last=nil, met=nil, nuc=nil, 
950          post=nil, pre=nil, xspc=nil, 
951       }
952       Nq = {
953          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil, 
954          first=nil, id=nil, last=nil, met=nil, nuc=nil, 
955          post=nil, pre=nil, xspc=nil, 
956       }
957       if mode then 
958          -- the current list is to be line-breaked:
959          -- hbox from \parindent is skipped.
960          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
961          while lp and ((lpi==id_whatsit and lps~=sid_user) 
962                        or ((lpi==id_hlist) and (lps==3))) do
963             if (lpi==id_hlist) and (lps==3) then 
964                Np.char, par_indented = 'parbdd', 'parbdd'
965                Np.width = getfield(lp, 'width')
966             end
967             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
968          return lp, node_tail(head), par_indented
969       else
970          return head, nil, 'boxbdd'
971       end
972    end
973 end
974
975 local function cleanup(mode)
976    -- adjust attr_icflag for avoiding error
977    tex.setattribute('global', attr_icflag, 0)
978    node_free(kanji_skip); node_free(xkanji_skip)
979    if mode then
980       local h = node_next(head)
981       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
982          h = node_next(h)
983          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
984             return false
985          end
986       end
987       return head
988    else
989       set_attr(head, attr_icflag, 
990                get_attr_icflag(head) + PROCESSED_BEGIN_FLAG);
991       return head
992    end
993 end
994 -------------------- 外部から呼ばれる関数
995
996 -- main interface
997 function main(ahead, mode)
998    if not ahead then return ahead end
999    head = ahead;
1000    local lp, last, par_indented = init_var(mode)
1001    lp = calc_np(lp, last)
1002    if Np then 
1003       extract_np(); handle_list_head(par_indented)
1004    else
1005       return cleanup(mode)
1006    end
1007    lp = calc_np(lp, last)
1008    while Np do
1009       extract_np();
1010       adjust_nq(); 
1011       local pid, pm = Np.id, Np.met
1012       -- 挿入部
1013       if pid == id_jglyph then 
1014          handle_np_jachar(mode)
1015       elseif pm then 
1016          if pid==id_hlist then handle_np_ja_hlist()
1017          else handle_np_jachar() end
1018       elseif Nq.met then 
1019          if Nq.id==id_hlist then handle_nq_ja_hlist()
1020          else handle_nq_jachar() end
1021       end
1022       lp = calc_np(lp, last)
1023    end
1024    handle_list_tail(mode)
1025    return cleanup(mode)
1026 end
1027 end
1028
1029 do
1030    local IHB  = luatexja.userid_table.IHB
1031    local BPAR = luatexja.userid_table.BPAR
1032    local node_prev = (Dnode ~= node) and Dnode.getprev or node.prev
1033    local node_write = Dnode.write
1034
1035    -- \inhibitglue
1036    function create_inhibitglue_node()
1037       local tn = node_new(id_whatsit, sid_user)
1038       setfield(tn, 'user_id', IHB)
1039       setfield(tn, 'type', 100)
1040       setfield(tn, 'value', 1)
1041       node_write(tn)
1042    end
1043
1044    -- Node for indicating beginning of a paragraph
1045    -- (for ltjsclasses)
1046    function create_beginpar_node()
1047       local tn = node_new(id_whatsit, sid_user)
1048       setfield(tn, 'user_id', BPAR)
1049       setfield(tn, 'type', 100)
1050       setfield(tn, 'value', 1)
1051       node_write(tn)
1052    end
1053
1054    local function whatsit_callback(Np, lp, Nq)
1055       if Np and Np.nuc then return Np 
1056       elseif Np and getfield(lp, 'user_id') == BPAR then
1057          Np.first = lp; Np.nuc = lp; Np.last = lp
1058          Np.char = 'parbdd'
1059          Np.met = nil
1060          Np.pre = 0; Np.post = 0
1061          Np.xspc = 0
1062          Np.auto_xspc = false
1063          return Np
1064       end
1065    end
1066
1067     local function whatsit_after_callback(s, Nq, Np)
1068        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1069          local x, y = node_prev(Nq.nuc), Nq.nuc
1070          Nq.first, Nq.nuc, Nq.last = x, x, x
1071          head = node_remove(head, y)
1072          node_free(y)
1073       end
1074       return s
1075    end
1076
1077    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1078                               "luatexja.beginpar.np_info", 1)
1079    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1080                               "luatexja.beginpar.np_info_after", 1)
1081
1082 end