OSDN Git Service

075b3f1482387d446838302610a1755ada855794
[luatex-ja/luatexja.git] / src / luatexja.lua
1
2 require('lualibs')
3
4 ------------------------------------------------------------------------
5 -- naming:
6 --    ext_... : called from \directlua{}
7 --    int_... : called from other Lua codes, but not from \directlua{}
8 --    (other)     : only called from this file
9 function luatexja.load_module(name)
10    require('ltj-' .. name.. '.lua')
11 end
12 function luatexja.load_lua(fn)
13    local found = kpse.find_file(fn, 'tex')
14    if not found then
15       tex.error("LuaTeX-ja error: File `" .. fn .. "' not found")
16    else 
17       texio.write_nl('(' .. found .. ')')
18       dofile(found)
19    end
20 end
21
22 --- 以下は全ファイルで共有される定数
23 local icflag_table = {}
24 luatexja.icflag_table = icflag_table
25 icflag_table.ITALIC          = 1
26 icflag_table.PACKED          = 2
27 icflag_table.KINSOKU         = 3
28 icflag_table.FROM_JFM        = 6
29 -- FROM_JFM: 4, 5, 6, 7, 8 →優先度高(伸びやすく,縮みやすい)
30 -- 6 が標準
31 icflag_table.KANJI_SKIP      = 9
32 icflag_table.KANJI_SKIP_JFM  = 10
33 icflag_table.XKANJI_SKIP     = 11
34 icflag_table.XKANJI_SKIP_JFM = 12
35 icflag_table.PROCESSED       = 13
36 icflag_table.IC_PROCESSED    = 14
37 icflag_table.BOXBDD          = 15
38 icflag_table.PROCESSED_BEGIN_FLAG = 128
39
40 local stack_table_index = {}
41 luatexja.stack_table_index = stack_table_index
42 stack_table_index.PRE  = 0x200000 -- characterごと
43 stack_table_index.POST = 0x400000 -- characterごと
44 stack_table_index.KCAT = 0x600000 -- characterごと
45 stack_table_index.XSP  = 0x800000 -- characterごと
46 stack_table_index.JWP  = 0 -- これだけ
47 stack_table_index.KSK  = 1 -- これだけ
48 stack_table_index.XSK  = 2 -- これだけ
49 stack_table_index.MJT  = 0x100 -- 0--255
50 stack_table_index.MJS  = 0x200 -- 0--255
51 stack_table_index.MJSS = 0x300 -- 0--255
52 stack_table_index.KSJ  = 0x400 -- 0--9
53
54 local userid_table = {}
55 luatexja.userid_table = userid_table
56 userid_table.IHB  = luatexbase.newuserwhatsitid('inhibitglue',  'luatexja') -- \inhibitglue
57 userid_table.STCK = luatexbase.newuserwhatsitid('stack_marker', 'luatexja') -- スタック管理
58 userid_table.BPAR = luatexbase.newuserwhatsitid('begin_par',    'luatexja') -- 「段落始め」
59
60 do
61    local node_remove, node_next, node_prev = node.remove, node.next, node.prev
62    function luatexja.node_remove (head, current)
63       if head==current then
64          local q, r = node_next(current), node_prev(current)
65          current.next = nil
66          if q then q.prev = r end
67          if r and node_next(r)==current then -- r is "real prev"
68             r.next = q
69          end
70          return q, q
71       else
72          return node_remove(head, current)
73       end
74    end
75
76    local Dnode = node.direct or node
77    local Dnode_remove, Dnode_next, Dnode_prev = Dnode.remove, Dnode.getnext, Dnode.getprev
78    local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
79    local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
80    function luatexja.Dnode_remove (head, current)
81       if head==current then
82          local q, r = Dnode_next(current), Dnode_prev(current)
83          setfield(current, 'next', nil)
84          if q then setfield(q, 'prev', r) end
85          if r and Dnode_next(r) == current then -- r is "real prev"
86             setfield(r, 'next', q)
87          end
88          return q, q
89       else
90          return Dnode_remove(head, current)
91       end
92    end
93
94 end
95
96 --- 定義終わり
97
98 local load_module = luatexja.load_module
99 load_module('base');      local ltjb = luatexja.base
100 load_module('rmlgbm');    local ltjr = luatexja.rmlgbm -- must be 1st
101 load_module('charrange'); local ltjc = luatexja.charrange
102 load_module('jfont');     local ltjf = luatexja.jfont
103 load_module('inputbuf');  local ltji = luatexja.inputbuf
104 load_module('stack');     local ltjs = luatexja.stack
105 load_module('pretreat');  local ltjp = luatexja.pretreat
106 load_module('jfmglue');   local ltjj = luatexja.jfmglue
107 load_module('setwidth');  local ltjw = luatexja.setwidth
108 load_module('math');      local ltjm = luatexja.math
109 load_module('tangle');    local ltjb = luatexja.base
110
111 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
112 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
113 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
114 local attr_icflag = luatexbase.attributes['ltj@icflag']
115 local attr_uniqid = luatexbase.attributes['ltj@uniqid']
116 local cat_lp = luatexbase.catcodetables['latex-package']
117
118
119 ---- table: charprop_stack_table [stack_level].{pre|post|xsp}[chr_code]
120
121
122 -- Three aux. functions, bollowed from tex.web
123
124 local unity=65536
125 local floor = math.floor
126
127 local function print_scaled(s)
128    local out=''
129    local delta=10
130    if s<0 then 
131       out=out..'-'; s=-s
132    end
133    out=out..tostring(floor(s/unity)) .. '.'
134    s=10*(s%unity)+5
135    repeat
136       if delta>unity then s=s+32768-50000 end
137       out=out .. tostring(floor(s/unity)) 
138       s=10*(s%unity)
139       delta=delta*10
140    until s<=delta
141    return out
142 end
143
144 local function print_glue(d,order)
145    local out=print_scaled(d)
146    if order>0 then
147       out=out..'fi'
148       while order>1 do
149          out=out..'l'; order=order-1
150       end
151    else 
152       out=out..'pt'
153    end
154    return out
155 end
156
157 local function print_spec(p)
158    local out=print_scaled(p.width)..'pt'
159    if p.stretch~=0 then
160       out=out..' plus '..print_glue(p.stretch,p.stretch_order)
161    end
162    if p.shrink~=0 then
163       out=out..' minus '..print_glue(p.shrink,p.shrink_order)
164    end
165 return out
166 end
167
168
169 ------------------------------------------------------------------------
170 -- CODE FOR GETTING/SETTING PARAMETERS 
171 ------------------------------------------------------------------------
172
173 -- EXT: print parameters that don't need arguments
174 do
175    luatexja.unary_pars = {
176       yalbaselineshift = function(t) 
177          return print_scaled(tex.getattribute('ltj@yablshift'))..'pt'
178       end,
179       yjabaselineshift = function(t) 
180          return print_scaled(tex.getattribute('ltj@ykblshift'))..'pt'
181       end,
182       kanjiskip = function(t) 
183          return print_spec(ltjs.get_stack_skip(stack_table_index.KSK, t))
184       end,
185       xkanjiskip = function(t) 
186          return print_spec(ltjs.get_stack_skip(stack_table_index.XSK, t))
187       end,
188       jcharwidowpenalty = function(t)
189          return ltjs.get_stack_table(stack_table_index.JWP, 0, t)
190       end,
191       autospacing = function(t)
192          return tex.getattribute('ltj@autospc')
193       end,
194       autoxspacing = function(t)
195          return tex.getattribute('ltj@autoxspc')
196       end,
197       differentjfm = function(t)
198          local f, r = luatexja.jfmglue.diffmet_rule, '???'
199          if f == math.max then r = 'large'
200          elseif f == math.min then r = 'small'
201          elseif f == math.two_average then r = 'average'
202          elseif f == math.two_paverage then r = 'paverage'
203          elseif f == math.two_pleft then r = 'pleft'
204          elseif f == math.two_pright then r = 'pright'
205          elseif f == math.two_add then r = 'both'
206          end
207          return r
208       end
209    }
210
211    local unary_pars = luatexja.unary_pars
212    function luatexja.ext_get_parameter_unary(k)
213       if unary_pars[k] then
214          tex.write(tostring(unary_pars[k](tex.getcount('ltj@@stack'))))
215       end
216    end
217 end
218
219
220 -- EXT: print parameters that need arguments
221 do
222    luatexja.binary_pars = {
223       jacharrange = function(c, t)
224          if type(c)~='number' or c<0 or c>31*ltjc.ATTR_RANGE then
225             -- 0 はエラーにしない(隠し)
226             ltjb.package_error('luatexja',
227                                'invalid character range number (' .. tostring(c) .. ')',
228                                'A character range number should be in the range 1..'
229                                   .. 31*ltjc.ATTR_RANGE .. ",\n"..
230                                   'So I changed this one to ' .. 31*ltjc.ATTR_RANGE .. ".")
231             c=0 -- external range 217 == internal range 0
232          elseif c==31*ltjc.ATTR_RANGE then c=0
233          end
234       -- 負の値は <U+0080 の文字の文字範囲,として出てくる.この時はいつも欧文文字なので 1 を返す
235          return (c<0) and 1 or ltjc.get_range_setting(c)
236       end,
237       prebreakpenalty = function(c, t)
238          return ltjs.get_stack_table(stack_table_index.PRE 
239                                           + ltjb.in_unicode(c, true), 0, t)
240       end,
241       postbreakpenalty = function(c, t)
242          return ltjs.get_stack_table(stack_table_index.POST 
243                                           + ltjb.in_unicode(c, true), 0, t)
244       end,
245       kcatcode = function(c, t)
246          return ltjs.get_stack_table(stack_table_index.KCAT 
247                                           + ltjb.in_unicode(c, false), 0, t)
248       end,
249       chartorange = function(c, t)
250          return ltjc.char_to_range(ltjb.in_unicode(c, false))
251       end,
252       jaxspmode = function(c, t)
253          return ltjs.get_stack_table(stack_table_index.XSP
254                                           + ltjb.in_unicode(c, true), 3, t)
255       end,
256    }
257    local binary_pars = luatexja.binary_pars 
258
259    binary_pars.alxspmode = binary_pars.jaxspmode
260    function luatexja.ext_get_parameter_binary(k,c)
261       if binary_pars[k] then
262          tex.write(tostring(binary_pars[k](c,tex.getcount('ltj@@stack'))))
263       end
264    end
265 end
266
267 -- EXT: print \global if necessary
268 function luatexja.ext_print_global()
269    if luatexja.isglobal=='global' then tex.sprint(cat_lp, '\\global') end
270 end
271
272 -- main process
273 do
274    local Dnode = node.direct or node
275    local nullfunc = function (n) return n end
276    local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
277    local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
278    -- mode = true iff main_process is called from pre_linebreak_filter
279    local function main_process(head, mode, dir)
280       local p = to_direct(head)
281       p = ltjj.main(p,mode)
282       if p then p = ltjw.set_ja_width(p, dir) end
283       return to_node(p)
284    end
285    
286    -- callbacks
287    
288    luatexbase.add_to_callback(
289       'pre_linebreak_filter', 
290       function (head,groupcode)
291          return main_process(head, true, tex.textdir)
292       end,'ltj.pre_linebreak_filter',
293       luatexbase.priority_in_callback('pre_linebreak_filter',
294                                       'luaotfload.node_processor') + 1)
295    luatexbase.add_to_callback(
296       'hpack_filter', 
297       function (head,groupcode,size,packtype, dir)
298          return main_process(head, false, dir)
299       end,'ltj.hpack_filter',
300       luatexbase.priority_in_callback('hpack_filter',
301                                       'luaotfload.node_processor') + 1)
302 end
303
304 -- define_font
305 do
306    local otfl_fdr = fonts.definers.read
307    local ltjr_font_callback = ltjr.font_callback
308    function luatexja.font_callback(name, size, id)
309       return ltjf.font_callback(
310          name, size, id, 
311          function (name, size, id) return ltjr_font_callback(name, size, id, otfl_fdr) end
312       )
313    end
314    luatexbase.add_to_callback('define_font',luatexja.font_callback,"luatexja.font_callback", 1)
315 end
316
317
318
319
320 -- debug
321
322 do
323
324 local node_type = node.type
325 local node_next = node.next
326 local has_attr = node.has_attribute
327
328 local id_penalty = node.id('penalty')
329 local id_glyph = node.id('glyph')
330 local id_glue_spec = node.id('glue_spec')
331 local id_glue = node.id('glue')
332 local id_kern = node.id('kern')
333 local id_hlist = node.id('hlist')
334 local id_vlist = node.id('vlist')
335 local id_rule = node.id('rule')
336 local id_math = node.id('math')
337 local id_whatsit = node.id('whatsit')
338 local sid_user = node.subtype('user_defined')
339
340 local function get_attr_icflag(p)
341    return (has_attr(p, attr_icflag) or 0) % icflag_table.PROCESSED_BEGIN_FLAG
342 end
343
344 local debug_depth
345
346 local function debug_show_node_X(p,print_fn)
347    local k = debug_depth
348    local s
349    local pt=node_type(p.id)
350    local base = debug_depth .. string.format('%X', get_attr_icflag(p))
351    .. ' ' .. pt .. ' ' .. tostring(p.subtype) .. ' '
352    if pt == 'glyph' then
353       s = base .. ' ' .. utf.char(p.char) .. ' '  .. tostring(p.font)
354          .. ' (' .. print_scaled(p.height) .. '+' 
355          .. print_scaled(p.depth) .. ')x' .. print_scaled(p.width)
356       print_fn(s)
357    elseif pt=='hlist' or pt=='vlist' then
358       s = base .. '(' .. print_scaled(p.height) .. '+' 
359          .. print_scaled(p.depth) .. ')x' .. print_scaled(p.width) .. p.dir
360       if p.shift~=0 then
361          s = s .. ', shifted ' .. print_scaled(p.shift)
362       end
363       if p.glue_sign >= 1 then 
364          s = s .. ' glue set '
365          if p.glue_sign == 2 then s = s .. '-' end
366          s = s .. tostring(floor(p.glue_set*10000)/10000)
367          if p.glue_order == 0 then 
368             s = s .. 'pt' 
369          else 
370             s = s .. 'fi'
371             for i = 2,  p.glue_order do s = s .. 'l' end
372          end
373       end
374       if get_attr_icflag(p) == icflag_table.PACKED then
375          s = s .. ' (packed)'
376       end
377       print_fn(s)
378       local q = p.head
379       debug_depth=debug_depth.. '.'
380       while q do 
381          debug_show_node_X(q, print_fn); q = node_next(q)
382       end
383       debug_depth=k
384    elseif pt == 'glue' then
385       s = base .. ' ' ..  print_spec(p.spec)
386       if get_attr_icflag(p)>icflag_table.KINSOKU 
387          and get_attr_icflag(p)<icflag_table.KANJI_SKIP then
388          s = s .. ' (from JFM: priority ' .. get_attr_icflag(p)-icflag_table.FROM_JFM .. ')'
389       elseif get_attr_icflag(p)==icflag_table.KANJI_SKIP then
390          s = s .. ' (kanjiskip)'
391       elseif get_attr_icflag(p)==icflag_table.KANJI_SKIP_JFM then
392          s = s .. ' (kanjiskip, JFM specified)'
393       elseif get_attr_icflag(p)==icflag_table.XKANJI_SKIP then
394          s = s .. ' (xkanjiskip)'
395       elseif get_attr_icflag(p)==icflag_table.XKANJI_SKIP_JFM then
396          s = s .. ' (xkanjiskip, JFM specified)'
397       end
398       print_fn(s)
399    elseif pt == 'kern' then
400       s = base .. ' ' .. print_scaled(p.kern) .. 'pt'
401       if p.subtype==2 then
402          s = s .. ' (for accent)'
403       elseif get_attr_icflag(p)==icflag_table.IC_PROCESSED then
404          s = s .. ' (italic correction)'
405          -- elseif get_attr_icflag(p)==ITALIC then
406          --    s = s .. ' (italic correction)'
407       elseif get_attr_icflag(p)>icflag_table.KINSOKU 
408          and get_attr_icflag(p)<icflag_table.KANJI_SKIP then
409          s = s .. ' (from JFM: priority ' .. get_attr_icflag(p)-icflag_table.FROM_JFM .. ')'
410       end
411       print_fn(s)
412    elseif pt == 'penalty' then
413       s = base .. ' ' .. tostring(p.penalty)
414       if get_attr_icflag(p)==icflag_table.KINSOKU then
415          s = s .. ' (for kinsoku)'
416       end
417       print_fn(s)
418    elseif pt == 'whatsit' then
419       s = base .. ' subtype: ' ..  tostring(p.subtype)
420       if p.subtype==sid_user then
421          if p.type ~= 110 then 
422             s = s .. ' user_id: ' .. p.user_id .. ' ' .. p.value
423             print_fn(s)
424          else
425             s = s .. ' user_id: ' .. p.user_id .. ' (node list)'
426             print_fn(s)
427             local q = p.value
428             debug_depth=debug_depth.. '.'
429             while q do 
430                debug_show_node_X(q, print_fn); q = node_next(q)
431             end
432             debug_depth=k
433          end
434       else
435          s = s .. node.subtype(p.subtype); print_fn(s)
436       end
437    -------- math node --------
438    elseif pt=='noad' then
439       s = base ; print_fn(s)
440       if p.nucleus then
441          debug_depth = k .. 'N'; debug_show_node_X(p.nucleus, print_fn); 
442       end
443       if p.sup then
444          debug_depth = k .. '^'; debug_show_node_X(p.sup, print_fn); 
445       end
446       if p.sub then
447          debug_depth = k .. '_'; debug_show_node_X(p.sub, print_fn); 
448       end
449       debug_depth = k;
450    elseif pt=='math_char' then
451       s = base .. ' fam: ' .. p.fam .. ' , char = ' .. utf.char(p.char)
452       print_fn(s)
453    elseif pt=='sub_box' then
454       print_fn(base)
455       if p.head then
456          debug_depth = k .. '.'; debug_show_node_X(p.head, print_fn); 
457       end
458    else
459       print_fn(base)
460    end
461    p=node_next(p)
462 end
463 function luatexja.ext_show_node_list(head,depth,print_fn)
464    debug_depth = depth
465    if head then
466       while head do
467          debug_show_node_X(head, print_fn); head = node_next(head)
468       end
469    else
470       print_fn(debug_depth .. ' (null list)')
471    end
472 end
473 function luatexja.ext_show_node(head,depth,print_fn)
474    debug_depth = depth
475    if head then
476       debug_show_node_X(head, print_fn)
477    else
478       print_fn(debug_depth .. ' (null list)')
479    end
480 end
481
482 end