1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
if not modules then modules = { } end modules ['driv-ini'] = {
version = 1.001,
comment = "companion to driv-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local type = type
local addsuffix = file.addsuffix
local setmetatableindex = table.setmetatableindex
local formatters = string.formatters
local starttiming = statistics.starttiming
local stoptiming = statistics.stoptiming
local report = logs.reporter("drivers")
local instances = { }
local helpers = { }
local converters = { }
local prepared = { }
local wrappedup = { }
local cleanedup = { }
local currentdriver = "default"
local currentinstance = nil
local shipout = tex.shipout
local texgetbox = tex.getbox
local texgetcount = tex.getcount
local c_realpageno <const> = tex.iscount("realpageno")
function converters.engine(driver,boxnumber,mode,number,specification)
return shipout(boxnumber)
end
local prepare = nil
local convert = nil
local wrapup = nil
local cleanup = nil
local outputfilename = nil
drivers = drivers or {
instances = instances,
helpers = helpers,
converters = converters,
lmtxversion = 0.10,
report = report,
}
local dummy = function() end
local defaulthandlers = {
prepare = dummy,
initialize = dummy,
finalize = dummy,
updatefontstate = dummy,
wrapup = dummy,
cleanup = dummy,
convert = dummy,
outputfilename = dummy,
}
local installwhatsits do
local round = math.round
local leaderlevel = 0
local backends = backends
local trace = true
local latelua = backends.latelua
local writeout = backends.writeout
local openout = backends.openout
local closeout = backends.closeout
trackers.register("backends.whatsits",function(v) trace = v end)
local function pushleaderlevel()
leaderlevel = leaderlevel + 1
end
local function popleaderlevel()
leaderlevel = leaderlevel - 1
end
local function flushlatelua(current,h,v)
-- Here we assume management by the lua function so currently we don't
-- need to check for leaderlevel and it can even be counterproductive.
return latelua(current,h,v)
end
local function flushwriteout(current)
if leaderlevel == 0 then
writeout(current)
end
end
local function flushopenout(current)
if leaderlevel == 0 then
openout(current)
end
end
local function flushcloseout(current)
if leaderlevel == 0 then
closeout(current)
end
end
local function flushsavepos(current,pos_h,pos_v)
local jp = job.positions
jp.lastx = round(pos_h)
jp.lasty = round(pos_v)
end
local function flushuserdefined()
-- nothing here
end
local whatsitcodes = nodes.whatsitcodes
installwhatsits = function(name,flushers)
-- latelua : specific
-- userdefined : special purpose, handled in callbacks
-- savepos : only used by generic packages
-- open : generic
-- close : generic
-- write : generic
-- An alternative is to have a first time setter.
local function checkagain(t, k)
local v = rawget(flushers,k) -- in case it's registered later
if not v then
if trace then
report("unsupported whatsit %a in driver %a",whatsitcodes[k] or k,name)
end
v = function() end
end
t[k] = v
return v
end
-- delayed
local whatsit ; whatsit = setmetatableindex ( {
[whatsitcodes.literal] = flushers.literal or function(...) return checkagain(whatsit,whatsitcodes.literal )(...) end,
[whatsitcodes.save] = flushers.save or function(...) return checkagain(whatsit,whatsitcodes.save )(...) end,
[whatsitcodes.restore] = flushers.restore or function(...) return checkagain(whatsit,whatsitcodes.restore )(...) end,
[whatsitcodes.setmatrix] = flushers.setmatrix or function(...) return checkagain(whatsit,whatsitcodes.setmatrix )(...) end,
[whatsitcodes.startmatrix] = flushers.startmatrix or function(...) return checkagain(whatsit,whatsitcodes.startmatrix )(...) end,
[whatsitcodes.stopmatrix] = flushers.stopmatrix or function(...) return checkagain(whatsit,whatsitcodes.stopmatrix )(...) end,
[whatsitcodes.startscaling] = flushers.startscaling or function(...) return checkagain(whatsit,whatsitcodes.startscaling )(...) end,
[whatsitcodes.stopscaling] = flushers.stopscaling or function(...) return checkagain(whatsit,whatsitcodes.stopscaling )(...) end,
[whatsitcodes.startrotation] = flushers.startrotation or function(...) return checkagain(whatsit,whatsitcodes.startrotation )(...) end,
[whatsitcodes.stoprotation] = flushers.stoprotation or function(...) return checkagain(whatsit,whatsitcodes.stoprotation )(...) end,
[whatsitcodes.startmirroring] = flushers.startmirroring or function(...) return checkagain(whatsit,whatsitcodes.startmirroring)(...) end,
[whatsitcodes.stopmirroring] = flushers.stopmirroring or function(...) return checkagain(whatsit,whatsitcodes.stopmirroring )(...) end,
[whatsitcodes.startclipping] = flushers.startclipping or function(...) return checkagain(whatsit,whatsitcodes.startclipping )(...) end,
[whatsitcodes.stopclipping] = flushers.stopclipping or function(...) return checkagain(whatsit,whatsitcodes.stopclippin )(...) end,
[whatsitcodes.setstate] = flushers.setstate or function(...) return checkagain(whatsit,whatsitcodes.setstate )(...) end,
--
[whatsitcodes.latelua] = flushlatelua,
[whatsitcodes.userdefined] = flushuserdefined,
[whatsitcodes.savepos] = flushsavepos,
[whatsitcodes.open] = flushopenout,
[whatsitcodes.close] = flushcloseout,
[whatsitcodes.write] = flushwriteout,
}, checkagain)
flushers.whatsit = whatsit
flushers.pushleaderlevel = pushleaderlevel
flushers.popleaderlevel = popleaderlevel
end
end
function drivers.install(specification)
local name = specification.name
if not name then
report("missing driver name")
return
end
local actions = specification.actions
if not actions then
report("no actions for driver %a",name)
return
end
local flushers = specification.flushers
if not flushers then
report("no flushers for driver %a",name)
return
end
installwhatsits(name,flushers)
-- report("driver %a is installed",name)
setmetatableindex(actions, defaulthandlers)
setmetatableindex(flushers, function() return dummy end)
instances[name] = specification
end
function drivers.convert(boxnumber)
if currentinstance then
callbacks.functions.start_page_number()
starttiming(drivers)
convert(currentinstance,boxnumber,texgetcount(c_realpageno))
stoptiming(drivers)
callbacks.functions.stop_page_number()
end
end
function drivers.outputfilename()
if currentinstance then
return outputfilename(currentinstance)
end
end
luatex.wrapup(function()
if currentinstance and wrapup and not wrappedup[currentdriver] then
starttiming(drivers)
wrapup(currentinstance)
stoptiming(drivers)
wrappedup[currentdriver] = true
cleanedup[currentdriver] = true
end
end)
luatex.cleanup(function()
if currentinstance and cleanup and not cleanedup[currentdriver] then
starttiming(drivers)
cleanup(currentinstance)
stoptiming(drivers)
wrappedup[currentdriver] = true
cleanedup[currentdriver] = true
end
end)
function drivers.enable(name)
if name ~= currentdriver then
if currentinstance then
starttiming(drivers)
cleanup(currentinstance)
stoptiming(drivers)
end
currentdriver = name or "none"
currentinstance = instances[currentdriver]
if currentinstance then
local actions = currentinstance.actions
prepare = actions.prepare
wrapup = actions.wrapup
cleanup = actions.cleanup
convert = actions.convert
outputfilename = actions.outputfilename
--
if prepare and not prepared[currentdriver] then
starttiming(drivers)
prepare(currentinstance)
stoptiming(drivers)
prepared[currentdriver] = true
end
else
report("bad driver")
end
end
end
statistics.register("driver time",function()
return statistics.elapsedseconds(drivers)
end)
interfaces.implement {
name = "shipoutpage",
arguments = "integer",
actions = drivers.convert,
}
interfaces.implement {
name = "enabledriver",
arguments = "string",
actions = drivers.enable,
}
do
local function prepare(driver)
converter = drivers.converters.lmtx
end
local function convert(driver,boxnumber,pagenumber)
converter(driver,texgetbox(boxnumber),"page",pagenumber)
end
drivers.install {
name = "empty",
actions = {
prepare = prepare,
convert = convert,
},
flushers = { },
}
end
setmetatableindex(instances,function() return instances.default end)
-- We default to no driver at all:
drivers.install {
name = "none",
actions = { },
flushers = { },
}
drivers.enable("none")
|