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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
|
if not modules then modules = { } end modules ['cldf-ini'] = {
version = 1.001,
comment = "companion to cldf-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- todo: {token} -> 3 tokens
-- This started as an experiment: generating context code at the lua end. After all
-- it is surprisingly simple to implement due to metatables. I was wondering if
-- there was a more natural way to deal with commands at the lua end. Of course it's
-- a bit slower but often more readable when mixed with lua code. It can also be handy
-- when generating documents from databases or when constructing large tables or so.
--
-- In cldf-tod.lua I have some code that might end up here. In cldf-old.lua the
-- code that precedes more modern solutions (made possible by features in the engine),
-- most noticeably function handling, which worked well for a decade, but by now the
-- more efficient approach is stable enough to move the original code to the obsolete
-- module.
--
-- to be considered:
--
-- 0.528 local foo = tex.ctxcatcodes
-- 0.651 local foo = getcount("ctxcatcodes")
-- 0.408 local foo = getcount(ctxcatcodes) -- local ctxcatcodes = tex.iscount("ctxcatcodes")
-- maybe: (escape) or 0x2061 (apply function) or 0x2394 (software function ⎔)
-- note : tex.print == line with endlinechar appended
-- todo : context("%bold{total: }%s",total)
-- todo : context.documentvariable("title")
--
-- During the crited project we ran into the situation that luajittex was 10-20 times
-- slower that luatex ... after 3 days of testing and probing we finally figured out that
-- the the differences between the lua and luajit hashers can lead to quite a slowdown
-- in some cases.
--
-- context(lpeg.match(lpeg.patterns.texescape,"${}"))
-- context(string.formatters["%!tex!"]("${}"))
-- context("%!tex!","${}")
--
-- We try not to polute the context namespace too much. For that reason the commands are
-- registered in the context.core namespace. You can call all context commands using
-- context.foo etc. and pipe to context with context("foo"). Defining a local command
-- foo being context.foo is okay, as is context.core.foo. We will have some definitions
-- that are plugged into the core namespace (mostly for speedup) but otherwise specialized
-- writers are in the context namespace only. In your documents you can best use the
-- context.foo(...) and context(...) variant but in some core modules we use the faster
-- ones in critical places (no one will notice of course). The standard syntax highlighter
-- that I use knows how to visualize ctx related code.
-- I cleaned this code up a bit when updating the cld manual but got distracted a bit by
-- watching Trio Hiromi Uehara, Anthony Jackson & Simon Phillips (discovered via the
-- later on YT). Hopefully the video breaks made the following better in the end.
-- This module is also a test bed for experimental features so the content changes over
-- time (for the better or worse). There have been no fundamental changes for many years
-- and performance has not changed much either.
local format, stripstring = string.format, string.strip
local next, type, tostring, tonumber, unpack, select, rawset = next, type, tostring, tonumber, unpack, select, rawset
local insert, remove, concat = table.insert, table.remove, table.concat
local lpegmatch, lpegC, lpegS, lpegP, lpegV, lpegCc, lpegCs, patterns = lpeg.match, lpeg.C, lpeg.S, lpeg.P, lpeg.V, lpeg.Cc, lpeg.Cs, lpeg.patterns
local formatters = string.formatters -- using formatters is slower in this case
local setmetatableindex = table.setmetatableindex
local setmetatablecall = table.setmetatablecall
local setmetatablenewindex = table.setmetatablenewindex
context = context or { }
commands = commands or { }
interfaces = interfaces or { }
local context = context
local commands = commands
local interfaces = interfaces
local loaddata = io.loaddata
local tex = tex
local texsprint = tex.sprint -- just appended (no space,eol treatment)
local texprint = tex.print -- each arg a separate line (not last in directlua)
----- texwrite = tex.write -- all 'space' and 'character'
local texgetcount = tex.getcount
-- local function texsprint(...) print("sprint",...) tex.sprint(...) end
-- local function texprint (...) print("print", ...) tex.print (...) end
local isnode = node.is_node
local writenode = node.write
local copynodelist = node.copy_list
local tonut = node.direct.todirect
local tonode = node.direct.tonode
local istoken = token.is_token
local newtoken = token.new
local createtoken = token.create
local setluatoken = token.set_lua
local catcodenumbers = catcodes.numbers
local ctxcatcodes = catcodenumbers.ctxcatcodes
local prtcatcodes = catcodenumbers.prtcatcodes
local texcatcodes = catcodenumbers.texcatcodes
local txtcatcodes = catcodenumbers.txtcatcodes
local vrbcatcodes = catcodenumbers.vrbcatcodes
local xmlcatcodes = catcodenumbers.xmlcatcodes
local flush = texsprint -- snippets
local flushdirect = texprint -- lines
----- flushraw = texwrite
local report_context = logs.reporter("cld","tex")
local report_cld = logs.reporter("cld","stack")
----- report_template = logs.reporter("cld","template")
local processlines = true -- experiments.register("context.processlines", function(v) processlines = v end)
local tokenflushmode = true
local nodeflushmode = true
local scannerdefmode = true
local maxflushnodeindex = 0x10FFFF - 1
-- tokenflushmode = false
-- scannerdefmode = false
-- nodeflushmode = false
-- In earlier experiments a function tables was referred to as lua.calls and the
-- primitive \luafunctions was \luacall and we used our own implementation of
-- a function table (more indirectness).
local trialtypesettingstate = createtoken("trialtypesettingstate").index
function context.trialtypesetting()
return texgetcount(trialtypesettingstate) ~= 0
end
local knownfunctions = lua.get_functions_table(true)
local showstackusage = false
trackers.register("context.stack",function(v) showstackusage = v end)
local freed, nofused, noffreed = { }, 0, 0
local usedstack = function()
return nofused, noffreed
end
local flushfunction = function(slot,arg)
if arg() then
-- keep
elseif texgetcount(trialtypesettingstate) == 0 then
noffreed = noffreed + 1
freed[noffreed] = slot
knownfunctions[slot] = false
else
-- keep
end
end
local storefunction = function(arg)
local f = function(slot) flushfunction(slot,arg) end
if noffreed > 0 then
local n = freed[noffreed]
freed[noffreed] = nil
noffreed = noffreed - 1
knownfunctions[n] = f
return n
else
nofused = nofused + 1
knownfunctions[nofused] = f
return nofused
end
end
local flushnode = function(slot,arg)
if texgetcount(trialtypesettingstate) == 0 then
writenode(arg)
noffreed = noffreed + 1
freed[noffreed] = slot
knownfunctions[slot] = false
else
writenode(copynodelist(arg))
end
end
local storenode = function(arg)
local f = function(slot) flushnode(slot,arg) end
if noffreed > 0 then
local n = freed[noffreed]
freed[noffreed] = nil
noffreed = noffreed - 1
knownfunctions[n] = f
return n
else
nofused = nofused + 1
knownfunctions[nofused] = f
return nofused
end
end
storage.storedfunctions = storage.storedfunctions or { }
local storedfunctions = storage.storedfunctions
local initex = environment.initex
storage.register("storage/storedfunctions", storedfunctions, "storage.storedfunctions")
local f_resolve = nil
local p_resolve = ((1-lpegP("."))^1 / function(s) f_resolve = f_resolve[s] end * lpegP(".")^0)^1
local function resolvestoredfunction(str)
if type(str) == "string" then
f_resolve = global
lpegmatch(p_resolve,str)
return f_resolve
else
return str
end
end
local function expose(slot,f,...) -- so we can register yet undefined functions
local func = resolvestoredfunction(f)
if not func then
func = function() report_cld("beware: unknown function %i called: %s",slot,f) end
end
knownfunctions[slot] = func
return func(...)
end
if initex then
-- todo: log stored functions
else
local slots = table.sortedkeys(storedfunctions)
local last = #slots
if last > 0 then
-- we restore the references
for i=1,last do
local slot = slots[i]
local data = storedfunctions[slot]
knownfunctions[slot] = function(...)
-- print(data) -- could be trace
return expose(slot,data,...)
end
end
-- we now know how many are defined
nofused = slots[last]
-- normally there are no holes in the list yet
for i=1,nofused do
if not knownfunctions[i] then
noffreed = noffreed + 1
freed[noffreed] = i
end
end
-- report_cld("%s registered functions, %s freed slots",last,noffreed)
end
end
local registerfunction = function(f,direct) -- either f=code or f=namespace,direct=name
local slot, func
if noffreed > 0 then
slot = freed[noffreed]
freed[noffreed] = nil
noffreed = noffreed - 1
else
nofused = nofused + 1
slot = nofused
end
if direct then
if initex then
func = function(...)
expose(slot,f,...)
end
if initex then
storedfunctions[slot] = f
end
else
func = resolvestoredfunction(f)
end
if type(func) ~= "function" then
func = function() report_cld("invalid resolve %A, case %s",f,1) end
end
elseif type(f) == "string" then
func = loadstring(f)
if type(func) ~= "function" then
func = function() report_cld("invalid code %A, case %s",f,2) end
end
elseif type(f) == "function" then
func = f
else
func = function() report_cld("invalid function %A, case %s",f,3) end
end
knownfunctions[slot] = func
return slot
end
local unregisterfunction = function(slot)
if knownfunctions[slot] then
noffreed = noffreed + 1
freed[noffreed] = slot
knownfunctions[slot] = false
else
report_cld("invalid function slot %A",slot)
end
end
local reservefunction = function()
if noffreed > 0 then
local n = freed[noffreed]
freed[noffreed] = nil
noffreed = noffreed - 1
return n
else
nofused = nofused + 1
return nofused
end
end
local callfunctiononce = function(slot)
knownfunctions[slot](slot)
noffreed = noffreed + 1
freed[noffreed] = slot
knownfunctions[slot] = false
end
setmetatablecall(knownfunctions,function(t,n) return knownfunctions[n](n) end)
-- The next hack is a convenient way to define scanners at the Lua end and
-- get them available at the TeX end. There is some dirty magic needed to
-- prevent overload during format loading.
-- interfaces.scanners.foo = function() context("[%s]",tokens.scanners.string()) end : \scan_foo
interfaces.storedscanners = interfaces.storedscanners or { }
local storedscanners = interfaces.storedscanners
storage.register("interfaces/storedscanners", storedscanners, "interfaces.storedscanners")
local interfacescanners = setmetatablenewindex(function(t,k,v)
rawset(t,k,v)
if storedscanners[k] then
-- report_cld("warning: scanner %a is already set (mode 1a)",k)
-- os.exit()
-- \scan_<k> is already in the format
-- report_cld("using interface scanner: %s",k)
elseif scannerdefmode then
-- report_cld("installing interface scanner: %s (mode 1b)",k)
-- local n = registerfunction(interfaces.scanners[k],true)
local n = registerfunction("interfaces.scanners."..k,true)
storedscanners[k] = n
local name = "clf_" .. k
setluatoken(name,n,"global") -- todo : protected and "protected" or ""
else
-- report_cld("installing interface scanner: %s (mode 1c)",k)
storedscanners[k] = true
context("\\installctxscanner{clf_%s}{interfaces.scanners.%s}",k,k)
end
-- rawset(t,k,v)
end)
function interfaces.registerscanner(name,action,protected,public,call)
rawset(interfacescanners,name,action)
if storedscanners[name] then
-- report_cld("warning: scanner %a is already set (mode 2a)",name)
-- os.exit()
-- \scan_<k> is already in the format
-- report_cld("using interface scanner: %s",k)
elseif scannerdefmode then
-- report_cld("installing interface scanner: %s (mode 2b)",name)
-- local n = registerfunction(action,true) -- todo
local n = registerfunction("interfaces.scanners."..name,true)
storedscanners[name] = n
local name = public and name or ("clf_" .. name)
setluatoken(name,n,"global",protected and "protected" or "")
else
storedscanners[name] = true
-- report_cld("installing interface scanner: %s (mode 2c)",name)
context("\\install%sctxscanner{%s%s}{interfaces.scanners.%s}",
protected and "protected" or "",
public and "" or "clf_",
name,
name
)
end
-- rawset(interfacescanners,name,action)
end
interfaces.scanners = storage.mark(interfacescanners)
interfaces._ = interfaces.scanners
context.functions = {
register = registerfunction,
unregister = unregisterfunction,
reserve = reservefunction,
known = knownfunctions,
callonce = callfunctiononce,
}
function commands.ctxfunction(code,namespace)
context(registerfunction(code,namespace))
end
function commands.ctxscanner(name,code,namespace)
local n = registerfunction(code,namespace)
if storedscanners[name] then
storedscanners[name] = n
end
context(n)
end
local function dummy() end
function commands.ctxresetter(name) -- to be checked
return function()
if storedscanners[name] then
rawset(interfacescanners,name,dummy)
context.resetctxscanner("clf_" .. name)
end
end
end
-- Should we keep the catcodes with the function?
local catcodestack = { }
local currentcatcodes = ctxcatcodes
local contentcatcodes = ctxcatcodes
local catcodes = {
ctx = ctxcatcodes, ctxcatcodes = ctxcatcodes, context = ctxcatcodes,
prt = prtcatcodes, prtcatcodes = prtcatcodes, protect = prtcatcodes,
tex = texcatcodes, texcatcodes = texcatcodes, plain = texcatcodes,
txt = txtcatcodes, txtcatcodes = txtcatcodes, text = txtcatcodes,
vrb = vrbcatcodes, vrbcatcodes = vrbcatcodes, verbatim = vrbcatcodes,
xml = xmlcatcodes, xmlcatcodes = xmlcatcodes,
}
-- maybe just increment / decrement
-- local function pushcatcodes(c)
-- insert(catcodestack,currentcatcodes)
-- currentcatcodes = (c and catcodes[c] or tonumber(c)) or currentcatcodes
-- contentcatcodes = currentcatcodes
-- end
--
-- local function popcatcodes()
-- currentcatcodes = remove(catcodestack) or currentcatcodes
-- contentcatcodes = currentcatcodes
-- end
local catcodelevel = 0
local function pushcatcodes(c)
catcodelevel = catcodelevel + 1
catcodestack[catcodelevel] = currentcatcodes
currentcatcodes = (c and catcodes[c] or tonumber(c)) or currentcatcodes
contentcatcodes = currentcatcodes
end
local function popcatcodes()
if catcodelevel > 0 then
currentcatcodes = catcodestack[catcodelevel] or currentcatcodes
catcodelevel = catcodelevel - 1
end
contentcatcodes = currentcatcodes
end
function context.unprotect()
-- at the lua end
catcodelevel = catcodelevel + 1
catcodestack[catcodelevel] = currentcatcodes
currentcatcodes = prtcatcodes
contentcatcodes = prtcatcodes
-- at the tex end
flush("\\unprotect")
end
function context.protect()
-- at the tex end
flush("\\protect")
-- at the lua end
if catcodelevel > 0 then
currentcatcodes = catcodestack[catcodelevel] or currentcatcodes
catcodelevel = catcodelevel - 1
end
contentcatcodes = currentcatcodes
end
context.catcodes = catcodes
context.pushcatcodes = pushcatcodes
context.popcatcodes = popcatcodes
-- -- --
local newline = patterns.newline
local space = patterns.spacer
local spacing = newline * space^0
local content = lpegC((1-spacing)^1) -- texsprint
local emptyline = space^0 * newline^2 -- texprint("")
local endofline = space^0 * newline * space^0 -- texsprint(" ")
local simpleline = endofline * lpegP(-1) --
local verbose = lpegC((1-space-newline)^1)
local beginstripper = (lpegS(" \t")^1 * newline^1) / ""
local endstripper = beginstripper * lpegP(-1)
local justaspace = space * lpegCc("")
local justanewline = newline * lpegCc("")
local function n_content(s)
flush(contentcatcodes,s)
end
local function n_verbose(s)
flush(vrbcatcodes,s)
end
local function n_endofline()
flush(currentcatcodes," \r")
end
local function n_emptyline()
flushdirect(currentcatcodes,"\r")
end
local function n_simpleline()
flush(currentcatcodes," \r")
end
local n_exception = ""
-- better a table specification
function context.newtexthandler(specification)
specification = specification or { }
--
local s_catcodes = specification.catcodes
--
local f_before = specification.before
local f_after = specification.after
--
local f_endofline = specification.endofline or n_endofline
local f_emptyline = specification.emptyline or n_emptyline
local f_simpleline = specification.simpleline or n_simpleline
local f_content = specification.content or n_content
local f_space = specification.space
--
local p_exception = specification.exception
--
if s_catcodes then
f_content = function(s)
flush(s_catcodes,s)
end
end
--
local pattern
if f_space then
if p_exception then
local content = lpegC((1-spacing-p_exception)^1)
pattern =
(
justaspace / f_space
+ justanewline / f_endofline
+ p_exception
+ content / f_content
)^0
else
local content = lpegC((1-space-endofline)^1)
pattern =
(
justaspace / f_space
+ justanewline / f_endofline
+ content / f_content
)^0
end
else
if p_exception then
local content = lpegC((1-spacing-p_exception)^1)
pattern =
simpleline / f_simpleline
+
(
emptyline / f_emptyline
+ endofline / f_endofline
+ p_exception
+ content / f_content
)^0
else
local content = lpegC((1-spacing)^1)
pattern =
simpleline / f_simpleline
+
(
emptyline / f_emptyline
+ endofline / f_endofline
+ content / f_content
)^0
end
end
--
if f_before then
pattern = (P(true) / f_before) * pattern
end
--
if f_after then
pattern = pattern * (P(true) / f_after)
end
--
return function(str) return lpegmatch(pattern,str) end, pattern
end
function context.newverbosehandler(specification) -- a special variant for e.g. cdata in lxml-tex
specification = specification or { }
--
local f_line = specification.line or function() flushdirect("\r") end
local f_space = specification.space or function() flush(" ") end
local f_content = specification.content or n_verbose
local f_before = specification.before
local f_after = specification.after
--
local pattern =
justanewline / f_line -- so we get call{}
+ verbose / f_content
+ justaspace / f_space -- so we get call{}
--
if specification.strip then
pattern = beginstripper^0 * (endstripper + pattern)^0
else
pattern = pattern^0
end
--
if f_before then
pattern = (lpegP(true) / f_before) * pattern
end
--
if f_after then
pattern = pattern * (lpegP(true) / f_after)
end
--
return function(str) return lpegmatch(pattern,str) end, pattern
end
local flushlines = context.newtexthandler {
content = n_content,
endofline = n_endofline,
emptyline = n_emptyline,
simpleline = n_simpleline,
}
-- The next variant is only used in rare cases (buffer to mp):
local printlines_ctx = (
(newline) / function() texprint("") end +
(1-newline)^1 / function(s) texprint(ctxcatcodes,s) end * newline^-1
)^0
local printlines_raw = (
(newline) / function() texprint("") end +
(1-newline)^1 / function(s) texprint(s) end * newline^-1
)^0
function context.printlines(str,raw) -- todo: see if via file is useable
if raw then
lpegmatch(printlines_raw,str)
else
lpegmatch(printlines_ctx,str)
end
end
-- function context.printtable(t,separator) -- todo: see if via file is useable
-- if separator == nil or separator == true then
-- separator = "\r"
-- elseif separator == "" then
-- separator = false
-- end
-- for i=1,#t do
-- context(t[i]) -- we need to go through catcode handling
-- if separator then
-- context(separator)
-- end
-- end
-- end
function context.printtable(t,separator) -- todo: see if via file is useable
if separator == nil or separator == true then
separator = "\r"
elseif separator == "" or separator == false then
separator = ""
end
local s = concat(t,separator)
if s ~= "" then
context(s)
end
end
-- -- -- "{" .. ti .. "}" is somewhat slower in a cld-mkiv run than "{",ti,"}"
local containseol = patterns.containseol
local s_cldl_option_b = "[\\cldl"
local s_cldl_option_f = "[\\cldl" -- add space (not needed)
local s_cldl_option_e = "]"
local s_cldl_option_s = "\\cldl"
----- s_cldl_option_d = "\\cldd"
local s_cldl_option_d = s_cldl_option_s
local s_cldl_argument_b = "{\\cldl"
local s_cldl_argument_f = "{\\cldl "
local s_cldl_argument_e = "}"
-- local s_cldl_option_b = "["
-- local s_cldl_option_f = "" -- add space (not needed)
-- local s_cldl_option_s = ""
-- local s_cldl_argument_b = "{"
-- local s_cldl_argument_f = "{ "
local t_cldl_luafunction = createtoken("luafunctioncall")
local lua_expandable_call_token_code = token.command_id and token.command_id("lua_expandable_call")
local function writer(parent,command,...) -- already optimized before call
if type(command) == "string" then -- for now
flush(currentcatcodes,command) -- todo: ctx|prt|texcatcodes
else
flush(command) -- todo: ctx|prt|texcatcodes
end
local direct = false
-- local t = { ... }
-- for i=1,#t do
-- local ti = t[i]
for i=1,select("#",...) do
local ti = select(i,...)
if direct then
local typ = type(ti)
if typ == "string" or typ == "number" then
flush(currentcatcodes,ti)
else -- node.write
report_context("error: invalid use of direct in %a, only strings and numbers can be flushed directly, not %a",command,typ)
end
direct = false
elseif ti == nil then
-- nothing
elseif ti == "" then
flush(currentcatcodes,"{}")
-- elseif ti == 1 then
-- flush(currentcatcodes,"{1}")
else
local typ = type(ti)
if typ == "string" then
-- is processlines seen ?
if processlines and lpegmatch(containseol,ti) then
flush(currentcatcodes,"{")
flushlines(ti)
flush(currentcatcodes,"}")
elseif currentcatcodes == contentcatcodes then
flush(currentcatcodes,"{",ti,"}")
else
flush(currentcatcodes,"{")
flush(contentcatcodes,ti)
flush(currentcatcodes,"}")
end
elseif typ == "number" then
-- numbers never have funny catcodesz
flush(currentcatcodes,"{",ti,"}")
elseif typ == "table" then
local tn = #ti
if tn == 0 then
local done = false
for k, v in next, ti do
if done then
if v == "" then
flush(currentcatcodes,",",k,'=')
else
flush(currentcatcodes,",",k,"={",v,"}")
end
else
if v == "" then
flush(currentcatcodes,"[",k,"=")
else
flush(currentcatcodes,"[",k,"={",v,"}")
end
done = true
end
end
if done then
flush(currentcatcodes,"]")
else
flush(currentcatcodes,"[]")
end
elseif tn == 1 then -- some 20% faster than the next loop
local tj = ti[1]
if type(tj) == "function" then
tj = storefunction(tj)
if tokenflushmode then
if newtoken then
flush(currentcatcodes,"[",newtoken(tj,lua_expandable_call_code),"]")
else
flush(currentcatcodes,"[",t_cldl_luafunction,tj,"]")
end
else
flush(currentcatcodes,s_cldl_option_b,tj,s_cldl_option_e)
end
else
flush(currentcatcodes,"[",tj,"]")
end
else -- is concat really faster than flushes here? probably needed anyway (print artifacts)
flush(currentcatcodes,"[")
for j=1,tn do
local tj = ti[j]
if type(tj) == "function" then
tj = storefunction(tj)
if tokenflushmode then
if newtoken then
flush(currentcatcodes,"[",newtoken(tj,lua_expandable_call_code),j == tn and "]" or ",")
else
flush(currentcatcodes,"[",t_cldl_luafunction,tj,j == tn and "]" or ",")
end
else
flush(currentcatcodes,s_cldl_option_s,tj,j == tn and "]" or ",")
end
else
if j == tn then
flush(currentcatcodes,tj,"]")
else
flush(currentcatcodes,tj,",")
end
end
end
end
elseif typ == "function" then
-- todo: ctx|prt|texcatcodes
ti = storefunction(ti)
if tokenflushmode then
if newtoken then
flush(currentcatcodes,"{",newtoken(ti,lua_expandable_call_token_code),"}")
else
flush(currentcatcodes,"{",t_cldl_luafunction,ti,"}")
end
else
flush(currentcatcodes,s_cldl_argument_f,ti,s_cldl_argument_e)
end
elseif typ == "boolean" then
if ti then
flushdirect(currentcatcodes,"\r")
else
direct = true
end
elseif typ == "thread" then
report_context("coroutines not supported as we cannot yield across boundaries")
elseif isnode(ti) then -- slow | why {} here ?
if nodeflushmode then
local n = tonut(ti)
if n <= maxflushnodeindex then
flush(currentcatcodes,"{",ti,"}")
else
flush(currentcatcodes,s_cldl_argument_b,storenode(ti),s_cldl_argument_e)
end
else
flush(currentcatcodes,s_cldl_argument_b,storenode(ti),s_cldl_argument_e)
end
else
report_context("error: %a gets a weird argument %a",command,ti)
end
-- else
-- local n = isnode(ti)
-- if n then
-- if nodeflushmode and n <= maxflushnodeindex then
-- flush(ti)
-- else
-- flush(currentcatcodes,s_cldl_argument_b,storenode(ti),s_cldl_argument_e)
-- end
-- else
-- report_context("error: %a gets a weird argument %a",command,ti)
-- end
-- end
end
end
end
local core
if tokenflushmode then -- combine them
local toks = tokens.cache
context.tokenizedcs = toks
core = setmetatableindex(function(parent,k)
local t
local f = function(first,...)
if not t then
t = toks[k]
end
if first == nil then
flush(t)
else
return writer(context,t,first,...)
end
end
parent[k] = f
return f
end)
-- core = setmetatableindex(function(parent,k)
-- local t
-- local f = function(first,...)
-- if not t then
-- t = toks[k]
-- end
-- local f = function(first,...)
-- if first == nil then
-- flush(t)
-- else
-- return writer(context,t,first,...)
-- end
-- end
-- parent[k] = f
-- if first == nil then
-- flush(t)
-- else
-- return writer(context,t,first,...)
-- end
-- end
-- parent[k] = f
-- return f
-- end)
core.cs = setmetatableindex(function(parent,k)
local t
local f = function()
if not t then
t = toks[k]
end
flush(t)
end
parent[k] = f
return f
end)
else
context.tokenizedcs = false
core = setmetatableindex(function(parent,k)
local c = "\\" .. k
local f = function(first,...)
if first == nil then
flush(currentcatcodes,c)
else
return writer(context,c,first,...)
end
end
parent[k] = f
return f
end)
core.cs = setmetatableindex(function(parent,k)
local c = "\\" .. k -- tostring(k)
local f = function()
flush(currentcatcodes,c)
end
parent[k] = f
return f
end)
end
local indexer = function(parent,k)
if type(k) == "string" then
return core[k]
else
return context -- catch
end
end
context.core = core
-- only for internal usage:
-- local prtindexer = nil
--
-- do
--
-- -- the only variant is not much faster than the full but it's more
-- -- memory efficient
--
-- local protected = { }
-- local protectedcs = { }
-- context.protected = protected
-- context.protectedcs = protectedcs
--
-- local function fullindexer(t,k)
-- local c = "\\" .. k -- tostring(k)
-- local v = function(first,...)
-- if first == nil then
-- flush(prtcatcodes,c)
-- else
-- return prtwriter(c,first,...)
-- end
-- end
-- rawset(t,k,v) -- protected namespace
-- return v
-- end
--
-- local function onlyindexer(t,k)
-- local c = "\\" .. k -- tostring(k)
-- local v = function()
-- flush(prtcatcodes,c)
-- end
-- rawset(protected,k,v)
-- rawset(t,k,v)
-- return v
-- end
--
-- protected.cs = setmetatableindex(function(parent,k)
-- local c = "\\" .. k -- tostring(k)
-- local v = function()
-- flush(prtcatcodes,c)
-- end
-- parent[k] = v
-- return v
-- end
--
-- setmetatableindex(protected,fullindexer)
-- setmetatablecall (protected,prtwriter)
--
-- setmetatableindex(protectedcs,onlyindexer)
-- setmetatablecall (protectedcs,prtwriter)
--
-- end
-- local splitformatters = utilities.strings.formatters.new(true) -- not faster (yet)
local caller = function(parent,f,a,...)
if not parent then
-- so we don't need to test in the calling (slower but often no issue)
elseif f ~= nil then
local typ = type(f)
if typ == "string" then
if f == "" then
-- new, can save a bit sometimes
-- if trace_context then
-- report_context("empty argument to context()")
-- end
elseif a then
flush(contentcatcodes,formatters[f](a,...)) -- was currentcatcodes
-- flush(contentcatcodes,splitformatters[f](a,...)) -- was currentcatcodes
elseif processlines and lpegmatch(containseol,f) then
flushlines(f)
else
flush(contentcatcodes,f)
end
elseif typ == "number" then
if a then
flush(currentcatcodes,f,a,...)
else
flush(currentcatcodes,f)
end
elseif typ == "function" then
-- ignored: a ...
f = storefunction(f)
if tokenflushmode then
if newtoken then
flush(currentcatcodes,"{",newtoken(f,lua_expandable_call_token_code),"}")
else
flush(currentcatcodes,"{",t_cldl_luafunction,f,"}")
end
else
flush(currentcatcodes,s_cldl_argument_b,f,s_cldl_argument_e) -- todo: ctx|prt|texcatcodes
end
elseif typ == "boolean" then
if f then
if a ~= nil then
flushlines(a)
else
flushdirect(currentcatcodes,"\n") -- no \r, else issues with \startlines ... use context.par() otherwise
end
else
if a ~= nil then
-- no command, same as context(a,...)
writer(parent,"",a,...)
else
-- ignored
end
end
elseif typ == "thread" then
report_context("coroutines not supported as we cannot yield across boundaries")
elseif isnode(f) then -- slow
if nodeflushmode then
local n = tonut(f)
if n <= maxflushnodeindex then
flush(f)
else
flush(currentcatcodes,s_cldl_option_s,storenode(f)," ")
end
else
flush(currentcatcodes,s_cldl_option_s,storenode(f)," ")
end
else
report_context("error: %a gets a weird argument %a","context",f)
end
-- else
-- local n = isnode(f)
-- if n then
-- if nodeflushmode and n <= maxflushnodeindex then
-- flush(f)
-- else
-- flush(currentcatcodes,s_cldl_option_s,storenode(f)," ")
-- end
-- else
-- report_context("error: %a gets a weird argument %a","context",f)
-- end
-- end
end
end
context.nodes = { -- todo
store = storenode,
flush = function(n)
if nodeflushmode and tonut(n) <= maxflushnodeindex then
flush(n)
else
flush(currentcatcodes,d and s_cldl_option_d or s_cldl_option_s,storenode(n)," ")
end
end,
}
context.nuts = { -- todo
store = function(n)
return storenode(tonut(n))
end,
flush = function(n,d)
if nodeflushmode and n <= maxflushnodeindex then
flush(tonode(n))
else
flush(currentcatcodes,d and s_cldl_option_d or s_cldl_option_s,storenode(tonode(n))," ")
end
end,
}
local defaultcaller = caller
setmetatableindex(context,indexer)
setmetatablecall (context,caller)
function context.sprint(...) -- takes catcodes as first argument
flush(...)
end
function context.fprint(first,second,third,...)
if type(first) == "number" then
if third then
flush(first,formatters[second](third,...))
else
flush(first,second)
end
else
if second then
flush(formatters[first](second,third,...))
else
flush(first)
end
end
end
tex.fprint = context.fprint
-- logging
local trace_stack = { report_context }
local normalflush = flush
local normalflushdirect = flushdirect
----- normalflushraw = flushraw
local normalwriter = writer
local currenttrace = report_context
local nofwriters = 0
local nofflushes = 0
local tracingpermitted = true
local visualizer = lpeg.replacer {
{ "\n", "<<newline>>" },
{ "\r", "<<par>>" },
}
statistics.register("traced context", function()
local used, freed = usedstack()
local unreachable = used - freed
if nofwriters > 0 or nofflushes > 0 then
return format("writers: %s, flushes: %s, maxstack: %s",nofwriters,nofflushes,used,freed,unreachable)
elseif showstackusage or unreachable > 0 then
return format("maxstack: %s, freed: %s, unreachable: %s",used,freed,unreachable)
end
end)
local function userdata(argument)
if isnode(argument) then
return formatters["<< %s node %i>>"](nodes.nodecodes[argument.id],tonut(argument))
end
if istoken(argument) then
local csname = argument.csname
if csname then
-- return formatters["<<\\%s>>"](csname)
return formatters["\\%s"](csname)
end
local cmdname = argument.cmdname
if cmdname == "lua_expandable_call" or cmdname == "lua_call" then
return "<<function>>" -- argument.mode
end
return "<<token>>"
end
return "<<userdata>>"
end
local tracedwriter = function(parent,...) -- also catcodes ?
nofwriters = nofwriters + 1
local savedflush = flush
local savedflushdirect = flushdirect -- unlikely to be used here
local t = { "w : - : " }
local n = 1
local traced = function(catcodes,...) -- todo: check for catcodes
local s = type(catcodes) == "number" and { ... } or { catcodes, ... }
for i=1,#s do
local argument = s[i]
local argtype = type(argument)
if argtype == "string" then
s[i] = lpegmatch(visualizer,argument)
elseif argtype == "number" then
s[i] = argument
elseif argtype == "userdata" then
s[i] = userdata(argument)
else
s[i] = formatters["<<%S>>"](argument)
end
end
s = concat(s)
s = lpegmatch(visualizer,s)
n = n + 1
t[n] = s
end
flush = function(...)
normalflush(...)
if tracingpermitted then
traced(...)
end
end
flushdirect = function(...)
normalflushdirect(...)
if tracingpermitted then
traced(...)
end
end
normalwriter(parent,...)
flush = savedflush
flushdirect = savedflushdirect
currenttrace(concat(t))
end
-- we could reuse collapsed
local traced = function(one,two,...)
if two ~= nil then
-- only catcodes if 'one' is number
local catcodes = type(one) == "number" and one
local arguments = catcodes and { two, ... } or { one, two, ... }
local collapsed = { formatters["f : %s : "](catcodes or '-') }
local c = 1
for i=1,#arguments do
local argument = arguments[i]
local argtype = type(argument)
c = c + 1
if argtype == "string" then
collapsed[c] = lpegmatch(visualizer,argument)
elseif argtype == "number" then
collapsed[c] = argument
elseif argtype == "userdata" then
collapsed[c] = userdata(argument)
else
collapsed[c] = formatters["<<%S>>"](argument)
end
end
currenttrace(concat(collapsed))
elseif one ~= nil then
-- no catcodes
local argtype = type(one)
if argtype == "string" then
currenttrace(formatters["f : - : %s"](lpegmatch(visualizer,one)))
elseif argtype == "number" then
currenttrace(formatters["f : - : %s"](one))
elseif argtype == "userdata" then
currenttrace(formatters["F : - : %s"](userdata(one)))
else
currenttrace(formatters["f : - : <<%S>>"](one))
end
end
end
local tracedflush = function(one,two,...)
nofflushes = nofflushes + 1
if two ~= nil then
normalflush(one,two,...)
else
normalflush(one)
end
if tracingpermitted then
traced(one,two,...)
end
end
local tracedflushdirect = function(one,two,...)
nofflushes = nofflushes + 1
if two ~= nil then
normalflushdirect(one,two,...)
else
normalflushdirect(one)
end
if tracingpermitted then
traced(one,two,...)
end
end
function context.pushlogger(trace)
trace = trace or report_context
insert(trace_stack,currenttrace)
currenttrace = trace
end
function context.poplogger()
if #trace_stack > 1 then
currenttrace = remove(trace_stack) or report_context
else
currenttrace = report_context
end
end
function context.settracing(v)
if v then
flush = tracedflush
flushdirect = tracedflushdirect
writer = tracedwriter
else
flush = normalflush
flushdirect = normalflushdirect
writer = normalwriter
end
return flush, writer, flushdirect
end
function context.getlogger()
return flush, writer, flushdirect
end
trackers.register("context.trace",context.settracing)
local trace_cld = false trackers.register("context.files", function(v) trace_cld = v end)
do
-- This is the most reliable way to deal with nested buffers and other
-- catcode sensitive data.
local resolve = resolvers.savers.byscheme
local validstring = string.valid
local input = context.input
local function viafile(data,tag)
if data and data ~= "" then
local filename = resolve("virtual",validstring(tag,"viafile"),data)
-- context.startregime { "utf" }
input(filename)
-- context.stopregime()
end
end
context.viafile = viafile
-- experiment for xtables, don't use it elsewhere yet
local collected = nil
local nofcollected = 0
local sentinel = string.char(26) -- ASCII SUB character : endoffileasciicode : ignorecatcode
local level = 0
local function collect(c,a,...) -- can be optimized
if type(c) == "userdata" then
nofcollected = nofcollected + 1
-- collected[nofcollected] = userdata(c)
collected[nofcollected] = "\\" .. c.csname
end
if a then
for i=1,select("#",a,...) do
local c = select(i,a,...)
nofcollected = nofcollected + 1
collected[nofcollected] = type(c) == "userdata" and userdata(c) or c
end
end
end
local collectdirect = collect
local permitted = true
-- doesn't work well with tracing do we need to avoid that when
-- collecting stuff
function context.startcollecting()
if level == 0 then
collected = { }
nofcollected = 0
flush = collect
flushdirect = collectdirect
permitted = tracingpermitted
end
level = level + 1
end
function context.stopcollecting()
level = level - 1
if level < 1 then
local result = concat(collected,sentinel)
flush = normalflush
flushdirect = normalflushdirect
tracingpermitted = permitted
collected = nil
nofcollected = 0
level = 0
viafile(result)
end
end
local findtexfile = resolvers.findtexfile
local findfile = resolvers.findfile
function context.runfile(filename)
local foundname = findtexfile(file.addsuffix(filename,"cld")) or ""
if foundname ~= "" then
local ok = dofile(foundname)
if type(ok) == "function" then
if trace_cld then
report_context("begin of file %a (function call)",foundname)
end
ok()
if trace_cld then
report_context("end of file %a (function call)",foundname)
end
elseif ok then
report_context("file %a is processed and returns true",foundname)
else
report_context("file %a is processed and returns nothing",foundname)
end
else
report_context("unknown file %a",filename)
end
end
function context.loadfile(filename)
context(stripstring(loaddata(findfile(filename))))
end
function context.loadviafile(filename)
viafile(stripstring(loaddata(findfile(filename))))
end
end
-- some functions
function context.direct(first,...)
if first ~= nil then
return writer(context,"",first,...)
end
end
-- context.delayed (todo: lines)
do
local delayed = { }
local function indexer(parent,k)
local f = function(...)
local a = { ... } -- this also freezes ...
return function()
-- return context[k](unpack(a))
return core[k](unpack(a))
end
end
parent[k] = f
return f
end
local function caller(parent,...) -- todo: nodes
local a = { ... }
return function()
-- return context(unpack(a))
return defaultcaller(context,unpack(a))
end
end
setmetatableindex(delayed,indexer)
setmetatablecall (delayed,caller)
context.delayed = delayed
end
-- do
--
-- -- context.nested (todo: lines), creates strings
--
-- local nested = { }
--
-- local function indexer(parent,k) -- not ok when traced
-- local f = function(...)
-- local t, savedflush, n = { }, flush, 0
-- flush = function(c,f,s,...) -- catcodes are ignored
-- n = n + 1
-- t[n] = s and concat{f,s,...} or f -- optimized for #args == 1
-- end
-- -- context[k](...)
-- core[k](...)
-- flush = savedflush
-- return concat(t)
-- end
-- parent[k] = f
-- return f
-- end
--
-- local function caller(parent,...)
-- local t, savedflush, n = { }, flush, 0
-- flush = function(c,f,s,...) -- catcodes are ignored
-- n = n + 1
-- t[n] = s and concat{f,s,...} or f -- optimized for #args == 1
-- end
-- -- context(...)
-- defaultcaller(context,...)
-- flush = savedflush
-- return concat(t)
-- end
--
-- setmetatableindex(nested,indexer)
-- setmetatablecall (nested,caller)
--
-- context.nested = nested
--
-- end
context.nested = context.delayed
-- verbatim
function context.newindexer(catcodes,cmdcodes)
local handler = { }
local function indexer(parent,k)
local command = core[k]
local f = function(...)
local savedcatcodes = contentcatcodes
contentcatcodes = catcodes
command(...)
contentcatcodes = savedcatcodes
end
parent[k] = f
return f
end
local function caller(parent,...)
local savedcatcodes = contentcatcodes
contentcatcodes = catcodes
defaultcaller(parent,...)
contentcatcodes = savedcatcodes
end
if tokenflushmode then
handler.cs = core.cs
else
handler.cs = setmetatableindex(function(parent,k)
local c = "\\" .. k -- tostring(k)
local f = function()
flush(cmdcodes,c)
end
parent[k] = f
return f
end)
end
setmetatableindex(handler,indexer)
setmetatablecall (handler,caller)
return handler
end
context.verbatim = context.newindexer(vrbcatcodes,ctxcatcodes)
context.puretext = context.newindexer(txtcatcodes,ctxcatcodes)
context.protected = context.newindexer(prtcatcodes,prtcatcodes)
-- formatted
do
local formatted = { }
-- formatted.command([catcodes,]format[,...])
-- local function formattedflush(parent,c,catcodes,fmt,...)
-- if type(catcodes) == "number" then
-- if fmt then
-- local result
-- pushcatcodes(catcodes)
-- result = writer(parent,c,formatters[fmt](...))
-- popcatcodes()
-- return result
-- else
-- -- no need to change content catcodes
-- return writer(parent,c)
-- end
-- else
-- return writer(parent,c,formatters[catcodes](fmt,...))
-- end
-- end
local function formattedflush(parent,c,catcodes,fmt,...)
if not catcodes then
return writer(parent,c)
elseif not fmt then
return writer(parent,c,catcodes)
elseif type(catcodes) == "number" then
local result
pushcatcodes(catcodes)
result = writer(parent,c,formatters[fmt](...))
popcatcodes()
return result
else
return writer(parent,c,formatters[catcodes](fmt,...))
end
end
local indexer
if tokenflushmode then -- combine them
local toks = tokens.cache
indexer = function(parent,k)
if type(k) == "string" then
local t
local f = function(first,...)
if not t then
t = toks[k]
end
if first == nil then
flush(t)
else
return formattedflush(parent,t,first,...)
end
end
parent[k] = f
return f
else
return context -- catch
end
end
else
indexer = function(parent,k)
if type(k) == "string" then
local c = "\\" .. k
local f = function(first,...)
if first == nil then
flush(currentcatcodes,c)
else
return formattedflush(parent,c,first,...)
end
end
parent[k] = f
return f
else
return context -- catch
end
end
end
-- formatted([catcodes,]format[,...])
local function caller(parent,catcodes,fmt,...)
if not catcodes then
-- nothing
elseif not fmt then
flush(catcodes)
elseif type(catcodes) == "number" then
flush(catcodes,formatters[fmt](...))
else
flush(formatters[catcodes](fmt,...))
end
end
setmetatableindex(formatted,indexer)
setmetatablecall (formatted,caller)
context.formatted = formatted
end
do
-- metafun (this will move to another file)
local metafun = { }
function metafun.start()
context.startMPcode()
end
function metafun.stop()
context.stopMPcode()
end
setmetatablecall(metafun,defaultcaller)
function metafun.color(name) -- obsolete
return name -- formatters[ [[\MPcolor{%s}]] ](name)
end
-- metafun.delayed
local delayed = { }
local function indexer(parent,k)
local f = function(...)
local a = { ... }
return function()
return metafun[k](unpack(a))
end
end
parent[k] = f
return f
end
local function caller(parent,...)
local a = { ... }
return function()
return metafun(unpack(a))
end
end
setmetatableindex(delayed,indexer)
setmetatablecall (delayed,caller)
context.metafun = metafun
metafun.delayed = delayed
end
-- helpers:
do
function context.concat(...)
context(concat(...))
end
local p_texescape = patterns.texescape
function context.escaped(s)
if s then
context(lpegmatch(p_texescape,s) or s)
else
-- context("")
end
end
function context.escape(s)
if s then
return lpegmatch(p_texescape,s) or s
else
return ""
end
end
end
-- templates
do
local single = lpegP("%")
local double = lpegP("%%")
local lquoted = lpegP("%[")
local rquoted = lpegP("]%")
local space = lpegP(" ")
local start = [[
local texescape = lpeg.patterns.texescape
local lpegmatch = lpeg.match
return function(variables) return
]]
local stop = [[
end
]]
local replacer = lpegP { "parser",
parser = lpegCs(lpegCc(start) * lpegV("step") * (lpegCc("..") * lpegV("step"))^0 * lpegCc(stop)),
unquoted = (lquoted*space/'')
* ((lpegC((1-space*rquoted)^1)) / "lpegmatch(texescape,variables%0 or '')" )
* (space*rquoted/'')
+ (lquoted/'')
* ((lpegC((1-rquoted)^1)) / "lpegmatch(texescape,variables['%0'] or '')" )
* (rquoted/''),
key = (single*space/'')
* ((lpegC((1-space*single)^1)) / "(variables%0 or '')" )
* (space*single/'')
+ (single/'')
* ((lpegC((1-single)^1)) / "(variables['%0'] or '')" )
* (single/''),
escape = double/'%%',
step = lpegV("unquoted")
+ lpegV("escape")
+ lpegV("key")
+ lpegCc("\n[===[") * (1 - lpegV("unquoted") - lpegV("escape") - lpegV("key"))^1 * lpegCc("]===]\n"),
}
local templates = { }
local function indexer(parent,k)
local v = lpegmatch(replacer,k)
if not v then
-- report_template("invalid template:\n%s",k)
v = "error: no valid template (1)"
else
local f = loadstring(v)
if type(f) ~= "function" then
-- report_template("invalid template:\n%s\n=>\n%s",k,v)
v = "error: no valid template (2)"
else
f = f()
if not f then
-- report_template("invalid template:\n%s\n=>\n%s",k,v)
v = "error: no valid template (3)"
else
v = f
end
end
end
if type(v) == "function" then
local f = function(first,second)
if second then
pushcatcodes(first)
flushlines(v(second))
popcatcodes()
else
flushlines(v(first))
end
end
parent[k] = f
return f
else
return function()
flush(v)
end
end
end
local function caller(parent,k,...)
return parent[k](...)
end
setmetatableindex(templates,indexer)
setmetatablecall (templates,caller)
context.templates = templates
end
-- The above is a bit over the top as we could also stick to a simple context.replace
-- which is fast enough anyway, but the above fits in nicer, also with the catcodes.
--
-- local replace = utilities.templates.replace
--
-- function context.template(template,variables)
-- context(replace(template,variables))
-- end
|