OSDN Git Service

stopped to use cache file for fonts
[luatex-ja/luatexja.git] / src / ltj-pretreat.lua
1 --
2 -- luatexja/ltj-pretreat.lua
3 --
4
5 luatexja.load_module('base');      local ltjb = luatexja.base
6 luatexja.load_module('charrange'); local ltjc = luatexja.charrange
7 luatexja.load_module('stack');     local ltjs = luatexja.stack
8 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
9 luatexja.load_module('direction'); local ltjd = luatexja.direction
10
11 local to_node =  node.direct.tonode
12 local to_direct =  node.direct.todirect
13
14 local setfield =  node.direct.setfield
15 local getid =  node.direct.getid
16 local getfont =  node.direct.getfont
17 local getchar =  node.direct.getchar
18 local getfield =  node.direct.getfield
19 local getsubtype =  node.direct.getsubtype
20 local getlang = node.direct.getlang or function (n) return getfield(n,'lang') end
21
22 local pairs = pairs
23 local floor = math.floor
24 local has_attr = node.direct.has_attribute
25 local set_attr = node.direct.set_attribute
26 local node_traverse = node.direct.traverse
27 local node_remove = node.direct.remove
28 local node_next =  node.direct.getnext
29 local node_free = node.direct.free
30 local node_end_of_math = node.direct.end_of_math
31 local tex_getcount = tex.getcount
32
33 local id_glyph = node.id('glyph')
34 local id_math = node.id('math')
35 local id_whatsit = node.id('whatsit')
36 local sid_user = node.subtype('user_defined')
37
38 local attr_dir = luatexbase.attributes['ltj@dir']
39 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
40 local attr_curtfnt = luatexbase.attributes['ltj@curtfnt']
41 local attr_icflag = luatexbase.attributes['ltj@icflag']
42
43 local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct
44 local ltjs_orig_char_table = ltjs.orig_char_table
45 local ltjf_replace_altfont = ltjf.replace_altfont
46 local attr_orig_char = luatexbase.attributes['ltj@origchar']
47 local STCK  = luatexja.userid_table.STCK
48 local DIR   = luatexja.userid_table.DIR
49 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
50
51 local dir_tate = luatexja.dir_table.dir_tate
52 local lang_ja = luatexja.lang_ja
53
54 local setlang = node.direct.setlang or function(n,l) setfield(n,'lang',l) end 
55 local setfont = node.direct.setfont or function(n,l) setfield(n,'font',l) end 
56 local setchar = node.direct.setchar or function(n,l) setfield(n,'char',l) end 
57
58 ------------------------------------------------------------------------
59 -- MAIN PROCESS STEP 1: replace fonts
60 ------------------------------------------------------------------------
61 local wt, wtd = {}, {}
62 do
63    local ltjd_get_dir_count = ltjd.get_dir_count
64    local start_time_measure, stop_time_measure
65       = ltjb.start_time_measure, ltjb.stop_time_measure
66    local head
67    local suppress_hyphenate_ja_aux = {
68       [id_math] = function(p) return node_next(node_end_of_math(node_next(p))) end,
69       [id_whatsit] = function(p)
70          if getsubtype(p)==sid_user then
71             local uid = getfield(p, 'user_id')
72             if uid==STCK then
73                wt[#wt+1] = p; node_remove(head, p)
74             elseif uid==DIR then
75                if has_attr(p, attr_icflag)<PROCESSED_BEGIN_FLAG  then
76                   ltjs.list_dir = has_attr(p, attr_dir)
77                else -- こっちのケースは通常使用では起こらない
78                   wtd[#wtd+1] = p; node_remove(head, p)
79                end
80             end
81          end
82          return node_next(p)
83       end,
84    }
85    setmetatable(suppress_hyphenate_ja_aux, 
86                 {
87                    __index = function() return node_next end,
88                 })
89    local function suppress_hyphenate_ja (h)
90       start_time_measure('ltj_hyphenate')
91       head = to_direct(h)
92       for i = 1,#wt do wt[i]=nil end
93       for i = 1,#wtd do wtd[i]=nil end
94       for i,_ in pairs(ltjs_orig_char_table) do
95          ltjs_orig_char_table[i] = nil
96       end
97       ltjs.list_dir=ltjd_get_dir_count()
98       do
99          local p = head
100          while p do
101             local pid = getid(p)
102             while pid==id_glyph do
103                local pc = getchar(p)
104                if has_attr(p, attr_icflag, 0) and is_ucs_in_japanese_char(p, pc) then
105                   local pf = has_attr(p, attr_curjfnt)
106                   pf = (pf and pf>0 and pf) or getfont(p)
107                   setfont(p, ltjf_replace_altfont(pf, pc))
108                   setlang(p, lang_ja)
109                   ltjs_orig_char_table[p] = pc
110                end
111                p = node_next(p); pid = getid(p)
112             end
113             p = (suppress_hyphenate_ja_aux[pid])(p)
114          end
115       end
116       stop_time_measure('ltj_hyphenate'); start_time_measure('tex_hyphenate')
117       lang.hyphenate(h, nil)
118       stop_time_measure('tex_hyphenate')
119       return h
120    end
121
122    ltjb.add_to_callback('hyphenate',
123                               function (head,tail)
124                                  return suppress_hyphenate_ja(head)
125                               end,'ltj.hyphenate')
126 end
127
128 -- mode: true iff this function is called from hpack_filter
129 local ltjs_report_stack_level = ltjs.report_stack_level
130 local ltjf_font_metric_table  = ltjf.font_metric_table
131 local font_getfont = font.getfont
132 local function set_box_stack_level(head, mode)
133    local box_set, cl = 0, tex.currentgrouplevel + 1
134    if mode then
135       for _,p  in pairs(wt) do
136          if getfield(p, 'value')==cl then box_set = 1 end; node_free(p)
137       end
138    else
139       for _,p  in pairs(wt) do node_free(p) end
140    end
141    ltjs_report_stack_level(tex_getcount('ltj@@stack') + box_set)
142    for _,p  in pairs(wtd) do
143       node_free(p)
144    end
145    if ltjs.list_dir == dir_tate then
146       for p in node.direct.traverse_id(id_glyph,to_direct(head)) do
147          if has_attr(p, attr_icflag, 0) and getlang(p)==lang_ja then
148             local nf = ltjf_replace_altfont( has_attr(p, attr_curtfnt) or getfont(p) , ltjs_orig_char_table[p])
149             setfont(p, nf)
150             if ltjf_font_metric_table[nf].vert_activated then
151                local pc = getchar(p)
152                pc = ltjf_font_metric_table[nf].vform[pc]
153                if pc then setchar(p,  pc) end
154             end
155          end
156       end
157    end
158    return head
159 end
160
161 -- CALLBACKS
162 ltjb.add_to_callback('hpack_filter',
163    function (head)
164      return set_box_stack_level(head, true)
165    end,'ltj.set_stack_level',1)
166 ltjb.add_to_callback('pre_linebreak_filter',
167   function (head)
168      return set_box_stack_level(head, false)
169   end,'ltj.set_stack_level',1)
170
171 luatexja.pretreat = {
172    set_box_stack_level = set_box_stack_level,
173    orig_char_table = orig_char_table,
174 }