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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
|
if not modules then modules = { } end modules ['core-buf'] = {
version = 1.001,
comment = "companion to core-buf.tex",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- ctx lua reference model / hooks and such
-- to be optimized
-- redefine buffers.get
utf = unicode.utf8
buffers = { }
buffers.data = { }
buffers.hooks = { }
buffers.flags = { }
buffers.commands = { }
buffers.visualizers = { }
-- if needed we can make 'm local
local utf = unicode.utf8
local concat, texsprint, texprint, texwrite = table.concat, tex.sprint, tex.print, tex.write
local utfbyte, utffind, utfgsub = utf.byte, utf.find, utf.gsub
local byte, sub, find, char, gsub, rep, lower = string.byte, string.sub, string.find, string.char, string.gsub, string.rep, string.lower
local utfcharacters, utfvalues = string.utfcharacters, string.utfvalues
local vrbcatcodes = tex.vrbcatcodes
local ctxcatcodes = tex.ctxcatcodes
local data, commands, flags, hooks, visualizers = buffers.data, buffers.commands, buffers.flags, buffers.hooks, buffers.visualizers
function buffers.erase(name)
data[name] = nil
end
function buffers.set(name, str)
data[name] = { str } -- CHECK THIS
end
function buffers.append(name, str)
data[name] = (data[name] or "") .. str
end
buffers.flags.store_as_table = true
-- to be sorted out: crlf + \ ; slow now
local n = 0
function buffers.grab(name,begintag,endtag,bufferdata)
local dn = data[name] or ""
if dn == "" then
buffers.level = 0
end
buffers.level = buffers.level + bufferdata:count("\\"..begintag) - bufferdata:count("\\"..endtag)
local more = buffers.level>0
if more then
dn = dn .. bufferdata .. endtag
buffers.level = buffers.level - 1
else
if dn == "" then
dn = bufferdata:sub(1,#bufferdata-1)
else
dn = dn .. "\n" .. bufferdata:sub(1,#bufferdata-1)
end
dn = dn:gsub("[\010\013]$","")
if flags.store_as_table then
dn = dn:splitlines()
end
end
data[name] = dn
cs.testcase(more)
end
function buffers.exists(name)
return data[name] ~= nil
end
function buffers.doifelsebuffer(name)
cs.testcase(data[name] ~= nil)
end
flags.optimize_verbatim = true
flags.count_empty_lines = false
commands.no_break = "\\doverbatimnobreak"
commands.do_break = "\\doverbatimgoodbreak"
commands.begin_of_line_command = "\\doverbatimbeginofline"
commands.end_of_line_command = "\\doverbatimendofline"
commands.empty_line_command = "\\doverbatimemptyline"
function buffers.verbatimbreak(n,m)
if flags.optimize_verbatim then
if n == 2 or n == m then
texsprint(commands.no_break)
else
texsprint(commands.do_break)
end
end
end
function buffers.strip(lines)
local first, last = 1, #lines
for i=first,last do
if #lines[i] == 0 then
first = first + 1
else
break
end
end
for i=last,first,-1 do
if #lines[i] == 0 then
last = last - 1
else
break
end
end
return first, last, last - first + 1
end
function buffers.type(name)
local lines = data[name]
local action = buffers.typeline
if lines then
if type(lines) == "string" then
lines = lines:splitlines()
end
local line, n = 0, 0
local first, last, m = buffers.strip(lines)
for i=first,last do
n, line = action(lines[i], n, m, line)
end
end
end
function buffers.loaddata(filename) -- this one might go away
-- this will be cleaned up when we have split supp-fil completely
-- instead of half-half
local ok, str, n = resolvers.loaders.tex(filename)
if not str then
ok, str, n = resolvers.loaders.tex(file.addsuffix(filename,'tex'))
end
return str or ""
end
function buffers.typefile(name) -- still somewhat messy, since name can be be suffixless
local str = buffers.loaddata(name)
if str and str~= "" then
local lines = str:splitlines()
local line, n, action = 0, 0, buffers.typeline
local first, last, m = buffers.strip(lines)
for i=first,last do
n, line = action(lines[i], n, m, line)
end
end
end
function buffers.typeline(str,n,m,line)
n = n + 1
buffers.verbatimbreak(n,m)
if str:find("%S") then
line = line + 1
hooks.begin_of_line(line)
hooks.flush_line(hooks.line(str))
hooks.end_of_line()
else
if flags.count_empty_lines then
line = line + 1
end
hooks.empty_line(line)
end
return n, line
end
function buffers.save(name)
if not name or name == "" then
name = tex.jobname
end
local b, f = data[name], tex.jobname .. "-" .. name .. ".tmp"
b = (b and type(b) == "table" and table.join(b,"\n")) or b or ""
io.savedata(f,b)
end
local printer = (lpeg.linebyline/texprint)^0
function buffers.get(name)
local b = buffers.data[name]
if b then
if type(b) == "table" then
for i=1,#b do
texprint(b[i])
end
else
printer:match(b)
end
end
end
local function content(name,separator) -- no print
local b = data[name]
if b then
if type(b) == "table" then
return concat(b,separator or "\n")
else
return b
end
else
return ""
end
end
buffers.content = content
function buffers.collect(names,separator) -- no print
local t = { }
if type(names) == "table" then
for i=1,#names do
local c = content(names[i],separator)
if c ~= "" then
t[#t+1] = c
end
end
else
for name in names:gmatch("[^,]+") do
local c = content(name,separator)
if c ~= "" then
t[#t+1] = c
end
end
end
return concat(t,separator or "\n") -- "\n" is safer due to comments and such
end
local function tobyte(c)
return " [" .. byte(c) .. "] "
end
function buffers.inspect(name)
local b = data[name]
if b then
if type(b) == "table" then
for _,v in ipairs(b) do
if v == "" then
texsprint(ctxcatcodes,"[crlf]\\par ") -- space ?
else
texsprint(ctxcatcodes,(gsub(b,"(.)",tobyte)),"\\par")
end
end
else
texsprint(ctxcatcodes,(gsub(b,"(.)",tobyte)))
end
end
end
-- maybe just line(n,str) empty(n,str)
visualizers.default = { }
visualizers.tex = { }
visualizers.mp = { }
visualizers.escapetoken = nil
visualizers.tablength = 7
visualizers.enabletab = true -- false
visualizers.enableescape = false
visualizers.obeyspace = true
function visualizers.reset()
--~ visualizers.enabletab = false
--~ visualizers.enableescape = false
--~ buffers.currentvisualizer = 'default'
end
buffers.currentvisualizer = 'default'
function buffers.setvisualizer(str)
buffers.currentvisualizer = lower(str)
if not visualizers[buffers.currentvisualizer] then
buffers.currentvisualizer = 'default'
end
end
function buffers.doifelsevisualizer(str)
cs.testcase((str ~= "") and (visualizers[lower(str)] ~= nil))
end
-- calling routines, don't change
function hooks.flush_line(str,nesting)
str = str:gsub(" *[\n\r]+ *"," ")
local flush_line = visualizers[buffers.currentvisualizer].flush_line
if flush_line then
flush_line(str,nesting)
else
visualizers.default.flush_line(str,nesting)
end
end
function hooks.begin_of_line(n)
local begin_of_line = visualizers[buffers.currentvisualizer].begin_of_line
if begin_of_line then
begin_of_line(n)
else
visualizers.default.begin_of_line(n)
end
end
function hooks.end_of_line()
local end_of_line = visualizers[buffers.currentvisualizer].end_of_line
if end_of_line then
end_of_line()
else
visualizers.default.end_of_line(str)
end
end
function hooks.empty_line()
local empty_line = visualizers[buffers.currentvisualizer].empty_line
if empty_line then
empty_line()
else
visualizers.default.empty_line()
end
end
function hooks.line(str)
local line = visualizers[buffers.currentvisualizer].line
if visualizers.enabletab then
str = string.tabtospace(str,visualizers.tablength)
else
str = gsub(str,"\t"," ")
end
if line then
return line(str)
else
return visualizers.default.line(str)
end
end
-- defaults
function visualizers.default.flush_line(str)
texsprint(ctxcatcodes,buffers.escaped(str))
end
function visualizers.default.begin_of_line(n)
texsprint(ctxcatcodes, commands.begin_of_line_command,"{",n,"}")
end
function visualizers.default.end_of_line()
texsprint(ctxcatcodes,commands.end_of_line_command)
end
function visualizers.default.empty_line()
texsprint(ctxcatcodes,commands.empty_line_command)
end
function visualizers.default.line(str)
return str
end
-- special one
commands.nested = "\\switchslantedtype "
-- todo : utf + faster, direct print and such. no \\char, vrb catcodes, see end
function visualizers.flush_nested(str, enable) -- no utf, kind of obsolete mess
str = str:gsub(" *[\n\r]+ *"," ")
local result, c, nested, i = "", "", 0, 1
while i < #str do -- slow
c = sub(str,i,i+1)
if c == "<<" then
nested = nested + 1
if enable then
result = result .. "{" .. commands.nested
else
result = result .. "{"
end
i = i + 2
elseif c == ">>" then
if nested > 0 then
nested = nested - 1
result = result .. "}"
end
i = i + 2
else
c = sub(str,i,i)
if c == " " then
result = result .. "\\obs "
elseif c:find("%a") then
result = result .. c
else
result = result .. "\\char" .. byte(c) .. " "
end
i = i + 1
end
end
result = result .. "\\char" .. byte(sub(str,i,i)) .. " " .. string.rep("}",nested)
texsprint(ctxcatcodes,result)
end
-- handy helpers
--
-- \sop[color] switch_of_pretty
-- \bop[color] begin_of_pretty
-- \eop end_of_pretty
-- \obs obeyedspace
-- \char <n> special characters
buffers.currentcolors = { }
function buffers.change_state(n, state, result)
if n then
if state ~= n then
if state > 0 then
result[#result+1] = "\\sop[" .. buffers.currentcolors[n] .. "]"
else
result[#result+1] = "\\bop[" .. buffers.currentcolors[n] .. "]"
end
return n
end
elseif state > 0 then
result[#result+1] = "\\eop "
return 0
end
return state
end
function buffers.finish_state(state, result)
if state > 0 then
result[#result+1] = "\\eop "
return 0
else
return state
end
end
buffers.open_nested = rep("\\char"..byte('<').." ",2)
buffers.close_nested = rep("\\char"..byte('>').." ",2)
function buffers.replace_nested(result)
result = gsub(result,buffers.open_nested, "{")
result = gsub(result,buffers.close_nested,"}")
return result
end
function buffers.flush_result(result,nested)
if nested then
texsprint(ctxcatcodes,buffers.replace_nested(concat(result,"")))
else
texsprint(ctxcatcodes,concat(result,""))
end
end
local function escaped_token(c)
if utffind(c,"^(%a%d)$") then
return c
elseif c == " " then
return "\\obs "
else
return "\\char" .. utfbyte(c) .. " "
end
end
buffers.escaped_token = escaped_token
function buffers.escaped(str)
-- use the utfcharacters loop
return (utfgsub(str,"(.)", escaped_token))
end
function buffers.escaped_chr(ch)
if ch == " " then
return "\\obs "
else
return "\\char" .. utfbyte(ch) .. " "
end
end
function visualizers.default.flush_line(str)
str = str:gsub(" *[\n\r]+ *"," ")
if visualizers.obeyspace then
for c in utfcharacters(str) do
if c == " " then
texsprint(ctxcatcodes,"\\obs ")
else
texsprint(vrbcatcodes,c)
end
end
else
texsprint(vrbcatcodes,str)
end
end
|