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
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
|
if not modules then modules = { } end modules ['data-inp'] = {
version = 1.001,
comment = "companion to luat-lib.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files",
}
-- After a few years using the code the large luat-inp.lua file
-- has been split up a bit. In the process some functionality was
-- dropped:
--
-- * support for reading lsr files
-- * selective scanning (subtrees)
-- * some public auxiliary functions were made private
--
-- TODO: os.getenv -> os.env[]
-- TODO: instances.[hashes,cnffiles,configurations,522]
-- TODO: check escaping in find etc, too much, too slow
-- This lib is multi-purpose and can be loaded again later on so that
-- additional functionality becomes available. We will split thislogs.report("fileio",
-- module in components once we're done with prototyping. This is the
-- first code I wrote for LuaTeX, so it needs some cleanup. Before changing
-- something in this module one can best check with Taco or Hans first; there
-- is some nasty trickery going on that relates to traditional kpse support.
-- To be considered: hash key lowercase, first entry in table filename
-- (any case), rest paths (so no need for optimization). Or maybe a
-- separate table that matches lowercase names to mixed case when
-- present. In that case the lower() cases can go away. I will do that
-- only when we run into problems with names ... well ... Iwona-Regular.
-- Beware, loading and saving is overloaded in luat-tmp!
local format, gsub, find, lower, upper, match, gmatch = string.format, string.gsub, string.find, string.lower, string.upper, string.match, string.gmatch
local concat, insert, sortedkeys = table.concat, table.insert, table.sortedkeys
local next, type = next, type
local lpegmatch = lpeg.match
local trace_locating, trace_detail, trace_expansions = false, false, false
trackers.register("resolvers.locating", function(v) trace_locating = v end)
trackers.register("resolvers.details", function(v) trace_detail = v end)
trackers.register("resolvers.expansions", function(v) trace_expansions = v end) -- todo
if not resolvers then
resolvers = {
suffixes = { },
formats = { },
dangerous = { },
suffixmap = { },
alternatives = { },
locators = { }, -- locate databases
hashers = { }, -- load databases
generators = { }, -- generate databases
}
end
local resolvers = resolvers
resolvers.locators .notfound = { nil }
resolvers.hashers .notfound = { nil }
resolvers.generators.notfound = { nil }
resolvers.cacheversion = '1.0.1'
resolvers.cnfname = 'texmf.cnf'
resolvers.luaname = 'texmfcnf.lua'
resolvers.homedir = os.env[os.type == "windows" and 'USERPROFILE'] or os.env['HOME'] or '~'
resolvers.cnfdefault = '{$SELFAUTODIR,$SELFAUTOPARENT}{,{/share,}/texmf{-local,.local,}/web2c}'
local dummy_path_expr = "^!*unset/*$"
local formats = resolvers.formats
local suffixes = resolvers.suffixes
local dangerous = resolvers.dangerous
local suffixmap = resolvers.suffixmap
local alternatives = resolvers.alternatives
formats['afm'] = 'AFMFONTS' suffixes['afm'] = { 'afm' }
formats['enc'] = 'ENCFONTS' suffixes['enc'] = { 'enc' }
formats['fmt'] = 'TEXFORMATS' suffixes['fmt'] = { 'fmt' }
formats['map'] = 'TEXFONTMAPS' suffixes['map'] = { 'map' }
formats['mp'] = 'MPINPUTS' suffixes['mp'] = { 'mp' }
formats['ocp'] = 'OCPINPUTS' suffixes['ocp'] = { 'ocp' }
formats['ofm'] = 'OFMFONTS' suffixes['ofm'] = { 'ofm', 'tfm' }
formats['otf'] = 'OPENTYPEFONTS' suffixes['otf'] = { 'otf' } -- 'ttf'
formats['opl'] = 'OPLFONTS' suffixes['opl'] = { 'opl' }
formats['otp'] = 'OTPINPUTS' suffixes['otp'] = { 'otp' }
formats['ovf'] = 'OVFFONTS' suffixes['ovf'] = { 'ovf', 'vf' }
formats['ovp'] = 'OVPFONTS' suffixes['ovp'] = { 'ovp' }
formats['tex'] = 'TEXINPUTS' suffixes['tex'] = { 'tex' }
formats['tfm'] = 'TFMFONTS' suffixes['tfm'] = { 'tfm' }
formats['ttf'] = 'TTFONTS' suffixes['ttf'] = { 'ttf', 'ttc', 'dfont' }
formats['pfb'] = 'T1FONTS' suffixes['pfb'] = { 'pfb', 'pfa' }
formats['vf'] = 'VFFONTS' suffixes['vf'] = { 'vf' }
formats['fea'] = 'FONTFEATURES' suffixes['fea'] = { 'fea' }
formats['cid'] = 'FONTCIDMAPS' suffixes['cid'] = { 'cid', 'cidmap' }
formats ['texmfscripts'] = 'TEXMFSCRIPTS' -- new
suffixes['texmfscripts'] = { 'rb', 'pl', 'py' } -- 'lua'
formats ['lua'] = 'LUAINPUTS' -- new
suffixes['lua'] = { 'lua', 'luc', 'tma', 'tmc' }
-- backward compatible ones
alternatives['map files'] = 'map'
alternatives['enc files'] = 'enc'
alternatives['cid maps'] = 'cid' -- great, why no cid files
alternatives['font feature files'] = 'fea' -- and fea files here
alternatives['opentype fonts'] = 'otf'
alternatives['truetype fonts'] = 'ttf'
alternatives['truetype collections'] = 'ttc'
alternatives['truetype dictionary'] = 'dfont'
alternatives['type1 fonts'] = 'pfb'
-- obscure ones
formats ['misc fonts'] = ''
suffixes['misc fonts'] = { }
formats ['sfd'] = 'SFDFONTS'
suffixes ['sfd'] = { 'sfd' }
alternatives['subfont definition files'] = 'sfd'
-- lib paths
formats ['lib'] = 'CLUAINPUTS' -- new (needs checking)
suffixes['lib'] = (os.libsuffix and { os.libsuffix }) or { 'dll', 'so' }
-- In practice we will work within one tds tree, but i want to keep
-- the option open to build tools that look at multiple trees, which is
-- why we keep the tree specific data in a table. We used to pass the
-- instance but for practical pusposes we now avoid this and use a
-- instance variable.
-- here we catch a few new thingies (todo: add these paths to context.tmf)
--
-- FONTFEATURES = .;$TEXMF/fonts/fea//
-- FONTCIDMAPS = .;$TEXMF/fonts/cid//
-- we always have one instance active
resolvers.instance = resolvers.instance or nil -- the current one (slow access)
local instance = resolvers.instance or nil -- the current one (fast access)
function resolvers.newinstance()
-- store once, freeze and faster (once reset we can best use
-- instance.environment) maybe better have a register suffix
-- function
for k, v in next, suffixes do
for i=1,#v do
local vi = v[i]
if vi then
suffixmap[vi] = k
end
end
end
-- because vf searching is somewhat dangerous, we want to prevent
-- too liberal searching esp because we do a lookup on the current
-- path anyway; only tex (or any) is safe
for k, v in next, formats do
dangerous[k] = true
end
dangerous.tex = nil
-- the instance
local newinstance = {
rootpath = '',
treepath = '',
progname = 'context',
engine = 'luatex',
format = '',
environment = { },
variables = { },
expansions = { },
files = { },
remap = { },
configuration = { },
setup = { },
order = { },
found = { },
foundintrees = { },
kpsevars = { },
hashes = { },
cnffiles = { },
luafiles = { },
lists = { },
remember = true,
diskcache = true,
renewcache = false,
scandisk = true,
cachepath = nil,
loaderror = false,
sortdata = false,
savelists = true,
cleanuppaths = true,
allresults = false,
pattern = nil, -- lists
data = { }, -- only for loading
force_suffixes = true,
fakepaths = { },
}
local ne = newinstance.environment
for k,v in next, os.env do
ne[k] = resolvers.bare_variable(v)
end
return newinstance
end
function resolvers.setinstance(someinstance)
instance = someinstance
resolvers.instance = someinstance
return someinstance
end
function resolvers.reset()
return resolvers.setinstance(resolvers.newinstance())
end
local function reset_hashes()
instance.lists = { }
instance.found = { }
end
local function check_configuration() -- not yet ok, no time for debugging now
if os.env["OSFONTDIR"] then
-- ok
elseif os.type == "windows" then
os.setenv("OSFONTDIR","c:/windows/fonts//")
elseif os.type == "macosx" then
os.setenv("OSFONTDIR","$HOME/Library/Fonts//;/Library/Fonts//;/System/Library/Fonts//")
end
end
function resolvers.bare_variable(str) -- assumes str is a string
return (gsub(str,"\s*([\"\']?)(.+)%1\s*", "%2"))
end
function resolvers.settrace(n) -- no longer number but: 'locating' or 'detail'
if n then
trackers.disable("resolvers.*")
trackers.enable("resolvers."..n)
end
end
resolvers.settrace(os.getenv("MTX_INPUT_TRACE"))
function resolvers.osenv(key)
local ie = instance.environment
local value = ie[key]
if value == nil then
-- local e = os.getenv(key)
local e = os.env[key]
if e == nil then
-- value = "" -- false
else
value = resolvers.bare_variable(e)
end
ie[key] = value
end
return value or ""
end
function resolvers.env(key)
return instance.environment[key] or resolvers.osenv(key)
end
--
local function expand_vars(lst) -- simple vars
local variables, env = instance.variables, resolvers.env
local function resolve(a)
return variables[a] or env(a)
end
for k=1,#lst do
lst[k] = gsub(lst[k],"%$([%a%d%_%-]+)",resolve)
end
end
local function expanded_var(var) -- simple vars
local function resolve(a)
return instance.variables[a] or resolvers.env(a)
end
return (gsub(var,"%$([%a%d%_%-]+)",resolve))
end
local function entry(entries,name)
if name and (name ~= "") then
name = gsub(name,'%$','')
local result = entries[name..'.'..instance.progname] or entries[name]
if result then
return result
else
result = resolvers.env(name)
if result then
instance.variables[name] = result
resolvers.expand_variables()
return instance.expansions[name] or ""
end
end
end
return ""
end
local function is_entry(entries,name)
if name and name ~= "" then
name = gsub(name,'%$','')
return (entries[name..'.'..instance.progname] or entries[name]) ~= nil
else
return false
end
end
-- {a,b,c,d}
-- a,b,c/{p,q,r},d
-- a,b,c/{p,q,r}/d/{x,y,z}//
-- a,b,c/{p,q/{x,y,z},r},d/{p,q,r}
-- a,b,c/{p,q/{x,y,z},r},d/{p,q,r}
-- a{b,c}{d,e}f
-- {a,b,c,d}
-- {a,b,c/{p,q,r},d}
-- {a,b,c/{p,q,r}/d/{x,y,z}//}
-- {a,b,c/{p,q/{x,y,z}},d/{p,q,r}}
-- {a,b,c/{p,q/{x,y,z},w}v,d/{p,q,r}}
-- {$SELFAUTODIR,$SELFAUTOPARENT}{,{/share,}/texmf{-local,.local,}/web2c}
-- this one is better and faster, but it took me a while to realize
-- that this kind of replacement is cleaner than messy parsing and
-- fuzzy concatenating we can probably gain a bit with selectively
-- applying lpeg, but experiments with lpeg parsing this proved not to
-- work that well; the parsing is ok, but dealing with the resulting
-- table is a pain because we need to work inside-out recursively
local function do_first(a,b)
local t = { }
for s in gmatch(b,"[^,]+") do t[#t+1] = a .. s end
return "{" .. concat(t,",") .. "}"
end
local function do_second(a,b)
local t = { }
for s in gmatch(a,"[^,]+") do t[#t+1] = s .. b end
return "{" .. concat(t,",") .. "}"
end
local function do_both(a,b)
local t = { }
for sa in gmatch(a,"[^,]+") do
for sb in gmatch(b,"[^,]+") do
t[#t+1] = sa .. sb
end
end
return "{" .. concat(t,",") .. "}"
end
local function do_three(a,b,c)
return a .. b.. c
end
local function splitpathexpr(str, t, validate)
-- no need for further optimization as it is only called a
-- few times, we can use lpeg for the sub
if trace_expansions then
logs.report("fileio","expanding variable '%s'",str)
end
t = t or { }
str = gsub(str,",}",",@}")
str = gsub(str,"{,","{@,")
-- str = "@" .. str .. "@"
local ok, done
while true do
done = false
while true do
str, ok = gsub(str,"([^{},]+){([^{}]+)}",do_first)
if ok > 0 then done = true else break end
end
while true do
str, ok = gsub(str,"{([^{}]+)}([^{},]+)",do_second)
if ok > 0 then done = true else break end
end
while true do
str, ok = gsub(str,"{([^{}]+)}{([^{}]+)}",do_both)
if ok > 0 then done = true else break end
end
str, ok = gsub(str,"({[^{}]*){([^{}]+)}([^{}]*})",do_three)
if ok > 0 then done = true end
if not done then break end
end
str = gsub(str,"[{}]", "")
str = gsub(str,"@","")
if validate then
for s in gmatch(str,"[^,]+") do
s = validate(s)
if s then t[#t+1] = s end
end
else
for s in gmatch(str,"[^,]+") do
t[#t+1] = s
end
end
if trace_expansions then
for k=1,#t do
logs.report("fileio","% 4i: %s",k,t[k])
end
end
return t
end
local function expanded_path_from_list(pathlist) -- maybe not a list, just a path
-- a previous version fed back into pathlist
local newlist, ok = { }, false
for k=1,#pathlist do
if find(pathlist[k],"[{}]") then
ok = true
break
end
end
if ok then
local function validate(s)
s = file.collapse_path(s)
return s ~= "" and not find(s,dummy_path_expr) and s
end
for k=1,#pathlist do
splitpathexpr(pathlist[k],newlist,validate)
end
else
for k=1,#pathlist do
for p in gmatch(pathlist[k],"([^,]+)") do
p = file.collapse_path(p)
if p ~= "" then newlist[#newlist+1] = p end
end
end
end
return newlist
end
-- we follow a rather traditional approach:
--
-- (1) texmf.cnf given in TEXMFCNF
-- (2) texmf.cnf searched in default variable
--
-- also we now follow the stupid route: if not set then just assume *one*
-- cnf file under texmf (i.e. distribution)
local args = environment and environment.original_arguments or arg -- this needs a cleanup
resolvers.ownbin = resolvers.ownbin or args[-2] or arg[-2] or args[-1] or arg[-1] or arg[0] or "luatex"
resolvers.ownbin = gsub(resolvers.ownbin,"\\","/")
function resolvers.getownpath()
local ownpath = resolvers.ownpath or os.selfdir
if not ownpath or ownpath == "" or ownpath == "unset" then
ownpath = args[-1] or arg[-1]
ownpath = ownpath and file.dirname(gsub(ownpath,"\\","/"))
if not ownpath or ownpath == "" then
ownpath = args[-0] or arg[-0]
ownpath = ownpath and file.dirname(gsub(ownpath,"\\","/"))
end
local binary = resolvers.ownbin
if not ownpath or ownpath == "" then
ownpath = ownpath and file.dirname(binary)
end
if not ownpath or ownpath == "" then
if os.binsuffix ~= "" then
binary = file.replacesuffix(binary,os.binsuffix)
end
for p in gmatch(os.getenv("PATH"),"[^"..io.pathseparator.."]+") do
local b = file.join(p,binary)
if lfs.isfile(b) then
-- we assume that after changing to the path the currentdir function
-- resolves to the real location and use this side effect here; this
-- trick is needed because on the mac installations use symlinks in the
-- path instead of real locations
local olddir = lfs.currentdir()
if lfs.chdir(p) then
local pp = lfs.currentdir()
if trace_locating and p ~= pp then
logs.report("fileio","following symlink '%s' to '%s'",p,pp)
end
ownpath = pp
lfs.chdir(olddir)
else
if trace_locating then
logs.report("fileio","unable to check path '%s'",p)
end
ownpath = p
end
break
end
end
end
if not ownpath or ownpath == "" then
ownpath = "."
logs.report("fileio","forcing fallback ownpath .")
elseif trace_locating then
logs.report("fileio","using ownpath '%s'",ownpath)
end
end
resolvers.ownpath = ownpath
function resolvers.getownpath()
return resolvers.ownpath
end
return ownpath
end
local own_places = { "SELFAUTOLOC", "SELFAUTODIR", "SELFAUTOPARENT", "TEXMFCNF" }
local function identify_own()
local ownpath = resolvers.getownpath() or dir.current()
local ie = instance.environment
if ownpath then
if resolvers.env('SELFAUTOLOC') == "" then os.env['SELFAUTOLOC'] = file.collapse_path(ownpath) end
if resolvers.env('SELFAUTODIR') == "" then os.env['SELFAUTODIR'] = file.collapse_path(ownpath .. "/..") end
if resolvers.env('SELFAUTOPARENT') == "" then os.env['SELFAUTOPARENT'] = file.collapse_path(ownpath .. "/../..") end
else
logs.report("fileio","error: unable to locate ownpath")
os.exit()
end
if resolvers.env('TEXMFCNF') == "" then os.env['TEXMFCNF'] = resolvers.cnfdefault end
if resolvers.env('TEXOS') == "" then os.env['TEXOS'] = resolvers.env('SELFAUTODIR') end
if resolvers.env('TEXROOT') == "" then os.env['TEXROOT'] = resolvers.env('SELFAUTOPARENT') end
if trace_locating then
for i=1,#own_places do
local v = own_places[i]
logs.report("fileio","variable '%s' set to '%s'",v,resolvers.env(v) or "unknown")
end
end
identify_own = function() end
end
function resolvers.identify_cnf()
if #instance.cnffiles == 0 then
-- fallback
identify_own()
-- the real search
resolvers.expand_variables()
local t = resolvers.split_path(resolvers.env('TEXMFCNF'))
t = expanded_path_from_list(t)
expand_vars(t) -- redundant
local function locate(filename,list)
for i=1,#t do
local ti = t[i]
local texmfcnf = file.collapse_path(file.join(ti,filename))
if lfs.isfile(texmfcnf) then
list[#list+1] = texmfcnf
end
end
end
locate(resolvers.luaname,instance.luafiles)
locate(resolvers.cnfname,instance.cnffiles)
end
end
local function load_cnf_file(fname)
fname = resolvers.clean_path(fname)
local lname = file.replacesuffix(fname,'lua')
if lfs.isfile(lname) then
local dname = file.dirname(fname) -- fname ?
if not instance.configuration[dname] then
resolvers.load_data(dname,'configuration',lname and file.basename(lname))
instance.order[#instance.order+1] = instance.configuration[dname]
end
else
f = io.open(fname)
if f then
if trace_locating then
logs.report("fileio","loading configuration file %s", fname)
end
local line, data, n, k, v
local dname = file.dirname(fname)
if not instance.configuration[dname] then
instance.configuration[dname] = { }
instance.order[#instance.order+1] = instance.configuration[dname]
end
local data = instance.configuration[dname]
while true do
local line, n = f:read(), 0
if line then
while true do -- join lines
line, n = gsub(line,"\\%s*$", "")
if n > 0 then
line = line .. f:read()
else
break
end
end
if not find(line,"^[%%#]") then
local l = gsub(line,"%s*%%.*$","")
local k, v = match(l,"%s*(.-)%s*=%s*(.-)%s*$")
if k and v and not data[k] then
v = gsub(v,"[%%#].*",'')
data[k] = gsub(v,"~","$HOME")
instance.kpsevars[k] = true
end
end
else
break
end
end
f:close()
elseif trace_locating then
logs.report("fileio","skipping configuration file '%s'", fname)
end
end
end
local function collapse_cnf_data() -- potential optimization: pass start index (setup and configuration are shared)
local order = instance.order
for i=1,#order do
local c = order[i]
for k,v in next, c do
if not instance.variables[k] then
if instance.environment[k] then
instance.variables[k] = instance.environment[k]
else
instance.kpsevars[k] = true
instance.variables[k] = resolvers.bare_variable(v)
end
end
end
end
end
function resolvers.load_cnf()
local function loadoldconfigdata()
local cnffiles = instance.cnffiles
for i=1,#cnffiles do
load_cnf_file(cnffiles[i])
end
end
-- instance.cnffiles contain complete names now !
-- we still use a funny mix of cnf and new but soon
-- we will switch to lua exclusively as we only use
-- the file to collect the tree roots
if #instance.cnffiles == 0 then
if trace_locating then
logs.report("fileio","no cnf files found (TEXMFCNF may not be set/known)")
end
else
local cnffiles = instance.cnffiles
instance.rootpath = cnffiles[1]
for k=1,#cnffiles do
instance.cnffiles[k] = file.collapse_path(cnffiles[k])
end
for i=1,3 do
instance.rootpath = file.dirname(instance.rootpath)
end
instance.rootpath = file.collapse_path(instance.rootpath)
if instance.diskcache and not instance.renewcache then
resolvers.loadoldconfig(instance.cnffiles)
if instance.loaderror then
loadoldconfigdata()
resolvers.saveoldconfig()
end
else
loadoldconfigdata()
if instance.renewcache then
resolvers.saveoldconfig()
end
end
collapse_cnf_data()
end
check_configuration()
end
function resolvers.load_lua()
if #instance.luafiles == 0 then
-- yet harmless
else
instance.rootpath = instance.luafiles[1]
local luafiles = instance.luafiles
for k=1,#luafiles do
instance.luafiles[k] = file.collapse_path(luafiles[k])
end
for i=1,3 do
instance.rootpath = file.dirname(instance.rootpath)
end
instance.rootpath = file.collapse_path(instance.rootpath)
resolvers.loadnewconfig()
collapse_cnf_data()
end
check_configuration()
end
-- database loading
function resolvers.load_hash()
resolvers.locatelists()
if instance.diskcache and not instance.renewcache then
resolvers.loadfiles()
if instance.loaderror then
resolvers.loadlists()
resolvers.savefiles()
end
else
resolvers.loadlists()
if instance.renewcache then
resolvers.savefiles()
end
end
end
function resolvers.append_hash(type,tag,name)
if trace_locating then
logs.report("fileio","hash '%s' appended",tag)
end
insert(instance.hashes, { ['type']=type, ['tag']=tag, ['name']=name } )
end
function resolvers.prepend_hash(type,tag,name)
if trace_locating then
logs.report("fileio","hash '%s' prepended",tag)
end
insert(instance.hashes, 1, { ['type']=type, ['tag']=tag, ['name']=name } )
end
function resolvers.extend_texmf_var(specification) -- crap, we could better prepend the hash
-- local t = resolvers.expanded_path_list('TEXMF') -- full expansion
local t = resolvers.split_path(resolvers.env('TEXMF'))
insert(t,1,specification)
local newspec = concat(t,";")
if instance.environment["TEXMF"] then
instance.environment["TEXMF"] = newspec
elseif instance.variables["TEXMF"] then
instance.variables["TEXMF"] = newspec
else
-- weird
end
resolvers.expand_variables()
reset_hashes()
end
-- locators
function resolvers.locatelists()
local texmfpaths = resolvers.clean_path_list('TEXMF')
for i=1,#texmfpaths do
local path = texmfpaths[i]
if trace_locating then
logs.report("fileio","locating list of '%s'",path)
end
resolvers.locatedatabase(file.collapse_path(path))
end
end
function resolvers.locatedatabase(specification)
return resolvers.methodhandler('locators', specification)
end
function resolvers.locators.tex(specification)
if specification and specification ~= '' and lfs.isdir(specification) then
if trace_locating then
logs.report("fileio","tex locator '%s' found",specification)
end
resolvers.append_hash('file',specification,filename)
elseif trace_locating then
logs.report("fileio","tex locator '%s' not found",specification)
end
end
-- hashers
function resolvers.hashdatabase(tag,name)
return resolvers.methodhandler('hashers',tag,name)
end
function resolvers.loadfiles()
instance.loaderror = false
instance.files = { }
if not instance.renewcache then
local hashes = instance.hashes
for k=1,#hashes do
local hash = hashes[k]
resolvers.hashdatabase(hash.tag,hash.name)
if instance.loaderror then break end
end
end
end
function resolvers.hashers.tex(tag,name)
resolvers.load_data(tag,'files')
end
-- generators:
function resolvers.loadlists()
local hashes = instance.hashes
for i=1,#hashes do
resolvers.generatedatabase(hashes[i].tag)
end
end
function resolvers.generatedatabase(specification)
return resolvers.methodhandler('generators', specification)
end
-- starting with . or .. etc or funny char
local weird = lpeg.P(".")^1 + lpeg.anywhere(lpeg.S("~`!#$%^&*()={}[]:;\"\'||<>,?\n\r\t"))
--~ local l_forbidden = lpeg.S("~`!#$%^&*()={}[]:;\"\'||\\/<>,?\n\r\t")
--~ local l_confusing = lpeg.P(" ")
--~ local l_character = lpeg.patterns.utf8
--~ local l_dangerous = lpeg.P(".")
--~ local l_normal = (l_character - l_forbidden - l_confusing - l_dangerous) * (l_character - l_forbidden - l_confusing^2)^0 * lpeg.P(-1)
--~ ----- l_normal = l_normal * lpeg.Cc(true) + lpeg.Cc(false)
--~ local function test(str)
--~ print(str,lpeg.match(l_normal,str))
--~ end
--~ test("ヒラギノ明朝 Pro W3")
--~ test("..ヒラギノ明朝 Pro W3")
--~ test(":ヒラギノ明朝 Pro W3;")
--~ test("ヒラギノ明朝 /Pro W3;")
--~ test("ヒラギノ明朝 Pro W3")
function resolvers.generators.tex(specification)
local tag = specification
if trace_locating then
logs.report("fileio","scanning path '%s'",specification)
end
instance.files[tag] = { }
local files = instance.files[tag]
local n, m, r = 0, 0, 0
local spec = specification .. '/'
local attributes = lfs.attributes
local directory = lfs.dir
local function action(path)
local full
if path then
full = spec .. path .. '/'
else
full = spec
end
for name in directory(full) do
if not lpegmatch(weird,name) then
-- if lpegmatch(l_normal,name) then
local mode = attributes(full..name,'mode')
if mode == 'file' then
if path then
n = n + 1
local f = files[name]
if f then
if type(f) == 'string' then
files[name] = { f, path }
else
f[#f+1] = path
end
else -- probably unique anyway
files[name] = path
local lower = lower(name)
if name ~= lower then
files["remap:"..lower] = name
r = r + 1
end
end
end
elseif mode == 'directory' then
m = m + 1
if path then
action(path..'/'..name)
else
action(name)
end
end
end
end
end
action()
if trace_locating then
logs.report("fileio","%s files found on %s directories with %s uppercase remappings",n,m,r)
end
end
-- savers, todo
function resolvers.savefiles()
resolvers.save_data('files')
end
-- A config (optionally) has the paths split in tables. Internally
-- we join them and split them after the expansion has taken place. This
-- is more convenient.
--~ local checkedsplit = string.checkedsplit
local cache = { }
local splitter = lpeg.Ct(lpeg.splitat(lpeg.S(os.type == "windows" and ";" or ":;")))
local function split_kpse_path(str) -- beware, this can be either a path or a {specification}
local found = cache[str]
if not found then
if str == "" then
found = { }
else
str = gsub(str,"\\","/")
--~ local split = (find(str,";") and checkedsplit(str,";")) or checkedsplit(str,io.pathseparator)
local split = lpegmatch(splitter,str)
found = { }
for i=1,#split do
local s = split[i]
if not find(s,"^{*unset}*") then
found[#found+1] = s
end
end
if trace_expansions then
logs.report("fileio","splitting path specification '%s'",str)
for k=1,#found do
logs.report("fileio","% 4i: %s",k,found[k])
end
end
cache[str] = found
end
end
return found
end
resolvers.split_kpse_path = split_kpse_path
function resolvers.splitconfig()
for i=1,#instance do
local c = instance[i]
for k,v in next, c do
if type(v) == 'string' then
local t = split_kpse_path(v)
if #t > 1 then
c[k] = t
end
end
end
end
end
function resolvers.joinconfig()
local order = instance.order
for i=1,#order do
local c = order[i]
for k,v in next, c do -- indexed?
if type(v) == 'table' then
c[k] = file.join_path(v)
end
end
end
end
function resolvers.split_path(str)
if type(str) == 'table' then
return str
else
return split_kpse_path(str)
end
end
function resolvers.join_path(str)
if type(str) == 'table' then
return file.join_path(str)
else
return str
end
end
function resolvers.splitexpansions()
local ie = instance.expansions
for k,v in next, ie do
local t, h, p = { }, { }, split_kpse_path(v)
for kk=1,#p do
local vv = p[kk]
if vv ~= "" and not h[vv] then
t[#t+1] = vv
h[vv] = true
end
end
if #t > 1 then
ie[k] = t
else
ie[k] = t[1]
end
end
end
-- end of split/join code
function resolvers.saveoldconfig()
resolvers.splitconfig()
resolvers.save_data('configuration')
resolvers.joinconfig()
end
resolvers.configbanner = [[
-- This is a Luatex configuration file created by 'luatools.lua' or
-- 'luatex.exe' directly. For comment, suggestions and questions you can
-- contact the ConTeXt Development Team. This configuration file is
-- not copyrighted. [HH & TH]
]]
function resolvers.serialize(files)
-- This version is somewhat optimized for the kind of
-- tables that we deal with, so it's much faster than
-- the generic serializer. This makes sense because
-- luatools and mtxtools are called frequently. Okay,
-- we pay a small price for properly tabbed tables.
local t = { }
local function dump(k,v,m) -- could be moved inline
if type(v) == 'string' then
return m .. "['" .. k .. "']='" .. v .. "',"
elseif #v == 1 then
return m .. "['" .. k .. "']='" .. v[1] .. "',"
else
return m .. "['" .. k .. "']={'" .. concat(v,"','").. "'},"
end
end
t[#t+1] = "return {"
if instance.sortdata then
local sortedfiles = sortedkeys(files)
for i=1,#sortedfiles do
local k = sortedfiles[i]
local fk = files[k]
if type(fk) == 'table' then
t[#t+1] = "\t['" .. k .. "']={"
local sortedfk = sortedkeys(fk)
for j=1,#sortedfk do
local kk = sortedfk[j]
t[#t+1] = dump(kk,fk[kk],"\t\t")
end
t[#t+1] = "\t},"
else
t[#t+1] = dump(k,fk,"\t")
end
end
else
for k, v in next, files do
if type(v) == 'table' then
t[#t+1] = "\t['" .. k .. "']={"
for kk,vv in next, v do
t[#t+1] = dump(kk,vv,"\t\t")
end
t[#t+1] = "\t},"
else
t[#t+1] = dump(k,v,"\t")
end
end
end
t[#t+1] = "}"
return concat(t,"\n")
end
local data_state = { }
function resolvers.data_state()
return data_state or { }
end
function resolvers.save_data(dataname, makename) -- untested without cache overload
for cachename, files in next, instance[dataname] do
local name = (makename or file.join)(cachename,dataname)
local luaname, lucname = name .. ".lua", name .. ".luc"
if trace_locating then
logs.report("fileio","preparing '%s' for '%s'",dataname,cachename)
end
for k, v in next, files do
if type(v) == "table" and #v == 1 then
files[k] = v[1]
end
end
local data = {
type = dataname,
root = cachename,
version = resolvers.cacheversion,
date = os.date("%Y-%m-%d"),
time = os.date("%H:%M:%S"),
content = files,
uuid = os.uuid(),
}
local ok = io.savedata(luaname,resolvers.serialize(data))
if ok then
if trace_locating then
logs.report("fileio","'%s' saved in '%s'",dataname,luaname)
end
if utils.lua.compile(luaname,lucname,false,true) then -- no cleanup but strip
if trace_locating then
logs.report("fileio","'%s' compiled to '%s'",dataname,lucname)
end
else
if trace_locating then
logs.report("fileio","compiling failed for '%s', deleting file '%s'",dataname,lucname)
end
os.remove(lucname)
end
elseif trace_locating then
logs.report("fileio","unable to save '%s' in '%s' (access error)",dataname,luaname)
end
end
end
function resolvers.load_data(pathname,dataname,filename,makename) -- untested without cache overload
filename = ((not filename or (filename == "")) and dataname) or filename
filename = (makename and makename(dataname,filename)) or file.join(pathname,filename)
local blob = loadfile(filename .. ".luc") or loadfile(filename .. ".lua")
if blob then
local data = blob()
if data and data.content and data.type == dataname and data.version == resolvers.cacheversion then
data_state[#data_state+1] = data.uuid
if trace_locating then
logs.report("fileio","loading '%s' for '%s' from '%s'",dataname,pathname,filename)
end
instance[dataname][pathname] = data.content
else
if trace_locating then
logs.report("fileio","skipping '%s' for '%s' from '%s'",dataname,pathname,filename)
end
instance[dataname][pathname] = { }
instance.loaderror = true
end
elseif trace_locating then
logs.report("fileio","skipping '%s' for '%s' from '%s'",dataname,pathname,filename)
end
end
-- some day i'll use the nested approach, but not yet (actually we even drop
-- engine/progname support since we have only luatex now)
--
-- first texmfcnf.lua files are located, next the cached texmf.cnf files
--
-- return {
-- TEXMFBOGUS = 'effe checken of dit werkt',
-- }
function resolvers.resetconfig()
identify_own()
instance.configuration, instance.setup, instance.order, instance.loaderror = { }, { }, { }, false
end
function resolvers.loadnewconfig()
local luafiles = instance.luafiles
for i=1,#luafiles do
local cnf = luafiles[i]
local pathname = file.dirname(cnf)
local filename = file.join(pathname,resolvers.luaname)
local blob = loadfile(filename)
if blob then
local data = blob()
if data then
if trace_locating then
logs.report("fileio","loading configuration file '%s'",filename)
end
if true then
-- flatten to variable.progname
local t = { }
for k, v in next, data do -- v = progname
if type(v) == "string" then
t[k] = v
else
for kk, vv in next, v do -- vv = variable
if type(vv) == "string" then
t[vv.."."..v] = kk
end
end
end
end
instance['setup'][pathname] = t
else
instance['setup'][pathname] = data
end
else
if trace_locating then
logs.report("fileio","skipping configuration file '%s'",filename)
end
instance['setup'][pathname] = { }
instance.loaderror = true
end
elseif trace_locating then
logs.report("fileio","skipping configuration file '%s'",filename)
end
instance.order[#instance.order+1] = instance.setup[pathname]
if instance.loaderror then break end
end
end
function resolvers.loadoldconfig()
if not instance.renewcache then
local cnffiles = instance.cnffiles
for i=1,#cnffiles do
local cnf = cnffiles[i]
local dname = file.dirname(cnf)
resolvers.load_data(dname,'configuration')
instance.order[#instance.order+1] = instance.configuration[dname]
if instance.loaderror then break end
end
end
resolvers.joinconfig()
end
function resolvers.expand_variables()
local expansions, environment, variables = { }, instance.environment, instance.variables
local env = resolvers.env
instance.expansions = expansions
local engine, progname = instance.engine, instance.progname
if type(engine) ~= "string" then instance.engine, engine = "", "" end
if type(progname) ~= "string" then instance.progname, progname = "", "" end
if engine ~= "" then environment['engine'] = engine end
if progname ~= "" then environment['progname'] = progname end
for k,v in next, environment do
local a, b = match(k,"^(%a+)%_(.*)%s*$")
if a and b then
expansions[a..'.'..b] = v
else
expansions[k] = v
end
end
for k,v in next, environment do -- move environment to expansions
if not expansions[k] then expansions[k] = v end
end
for k,v in next, variables do -- move variables to expansions
if not expansions[k] then expansions[k] = v end
end
local busy = false
local function resolve(a)
busy = true
return expansions[a] or env(a)
end
while true do
busy = false
for k,v in next, expansions do
local s, n = gsub(v,"%$([%a%d%_%-]+)",resolve)
local s, m = gsub(s,"%$%{([%a%d%_%-]+)%}",resolve)
if n > 0 or m > 0 then
expansions[k]= s
end
end
if not busy then break end
end
for k,v in next, expansions do
expansions[k] = gsub(v,"\\", '/')
end
end
function resolvers.variable(name)
return entry(instance.variables,name)
end
function resolvers.expansion(name)
return entry(instance.expansions,name)
end
function resolvers.is_variable(name)
return is_entry(instance.variables,name)
end
function resolvers.is_expansion(name)
return is_entry(instance.expansions,name)
end
function resolvers.unexpanded_path_list(str)
local pth = resolvers.variable(str)
local lst = resolvers.split_path(pth)
return expanded_path_from_list(lst)
end
function resolvers.unexpanded_path(str)
return file.join_path(resolvers.unexpanded_path_list(str))
end
do -- no longer needed
local done = { }
function resolvers.reset_extra_path()
local ep = instance.extra_paths
if not ep then
ep, done = { }, { }
instance.extra_paths = ep
elseif #ep > 0 then
instance.lists, done = { }, { }
end
end
function resolvers.register_extra_path(paths,subpaths)
local ep = instance.extra_paths or { }
local n = #ep
if paths and paths ~= "" then
if subpaths and subpaths ~= "" then
for p in gmatch(paths,"[^,]+") do
-- we gmatch each step again, not that fast, but used seldom
for s in gmatch(subpaths,"[^,]+") do
local ps = p .. "/" .. s
if not done[ps] then
ep[#ep+1] = resolvers.clean_path(ps)
done[ps] = true
end
end
end
else
for p in gmatch(paths,"[^,]+") do
if not done[p] then
ep[#ep+1] = resolvers.clean_path(p)
done[p] = true
end
end
end
elseif subpaths and subpaths ~= "" then
for i=1,n do
-- we gmatch each step again, not that fast, but used seldom
for s in gmatch(subpaths,"[^,]+") do
local ps = ep[i] .. "/" .. s
if not done[ps] then
ep[#ep+1] = resolvers.clean_path(ps)
done[ps] = true
end
end
end
end
if #ep > 0 then
instance.extra_paths = ep -- register paths
end
if #ep > n then
instance.lists = { } -- erase the cache
end
end
end
local function made_list(instance,list)
local ep = instance.extra_paths
if not ep or #ep == 0 then
return list
else
local done, new = { }, { }
-- honour . .. ../.. but only when at the start
for k=1,#list do
local v = list[k]
if not done[v] then
if find(v,"^[%.%/]$") then
done[v] = true
new[#new+1] = v
else
break
end
end
end
-- first the extra paths
for k=1,#ep do
local v = ep[k]
if not done[v] then
done[v] = true
new[#new+1] = v
end
end
-- next the formal paths
for k=1,#list do
local v = list[k]
if not done[v] then
done[v] = true
new[#new+1] = v
end
end
return new
end
end
function resolvers.clean_path_list(str)
local t = resolvers.expanded_path_list(str)
if t then
for i=1,#t do
t[i] = file.collapse_path(resolvers.clean_path(t[i]))
end
end
return t
end
function resolvers.expand_path(str)
return file.join_path(resolvers.expanded_path_list(str))
end
function resolvers.expanded_path_list(str)
if not str then
return ep or { } -- ep ?
elseif instance.savelists then
-- engine+progname hash
str = gsub(str,"%$","")
if not instance.lists[str] then -- cached
local lst = made_list(instance,resolvers.split_path(resolvers.expansion(str)))
instance.lists[str] = expanded_path_from_list(lst)
end
return instance.lists[str]
else
local lst = resolvers.split_path(resolvers.expansion(str))
return made_list(instance,expanded_path_from_list(lst))
end
end
function resolvers.expanded_path_list_from_var(str) -- brrr
local tmp = resolvers.var_of_format_or_suffix(gsub(str,"%$",""))
if tmp ~= "" then
return resolvers.expanded_path_list(tmp)
else
return resolvers.expanded_path_list(str)
end
end
function resolvers.expand_path_from_var(str)
return file.join_path(resolvers.expanded_path_list_from_var(str))
end
function resolvers.format_of_var(str)
return formats[str] or formats[alternatives[str]] or ''
end
function resolvers.format_of_suffix(str)
return suffixmap[file.extname(str)] or 'tex'
end
function resolvers.variable_of_format(str)
return formats[str] or formats[alternatives[str]] or ''
end
function resolvers.var_of_format_or_suffix(str)
local v = formats[str]
if v then
return v
end
v = formats[alternatives[str]]
if v then
return v
end
v = suffixmap[file.extname(str)]
if v then
return formats[isf]
end
return ''
end
function resolvers.expand_braces(str) -- output variable and brace expansion of STRING
local ori = resolvers.variable(str)
local pth = expanded_path_from_list(resolvers.split_path(ori))
return file.join_path(pth)
end
resolvers.isreadable = { }
function resolvers.isreadable.file(name)
local readable = lfs.isfile(name) -- brrr
if trace_detail then
if readable then
logs.report("fileio","file '%s' is readable",name)
else
logs.report("fileio","file '%s' is not readable", name)
end
end
return readable
end
resolvers.isreadable.tex = resolvers.isreadable.file
-- name
-- name/name
local function collect_files(names)
local filelist = { }
for k=1,#names do
local fname = names[k]
if trace_detail then
logs.report("fileio","checking name '%s'",fname)
end
local bname = file.basename(fname)
local dname = file.dirname(fname)
if dname == "" or find(dname,"^%.") then
dname = false
else
dname = "/" .. dname .. "$"
end
local hashes = instance.hashes
for h=1,#hashes do
local hash = hashes[h]
local blobpath = hash.tag
local files = blobpath and instance.files[blobpath]
if files then
if trace_detail then
logs.report("fileio","deep checking '%s' (%s)",blobpath,bname)
end
local blobfile = files[bname]
if not blobfile then
local rname = "remap:"..bname
blobfile = files[rname]
if blobfile then
bname = files[rname]
blobfile = files[bname]
end
end
if blobfile then
if type(blobfile) == 'string' then
if not dname or find(blobfile,dname) then
filelist[#filelist+1] = {
hash.type,
file.join(blobpath,blobfile,bname), -- search
resolvers.concatinators[hash.type](blobpath,blobfile,bname) -- result
}
end
else
for kk=1,#blobfile do
local vv = blobfile[kk]
if not dname or find(vv,dname) then
filelist[#filelist+1] = {
hash.type,
file.join(blobpath,vv,bname), -- search
resolvers.concatinators[hash.type](blobpath,vv,bname) -- result
}
end
end
end
end
elseif trace_locating then
logs.report("fileio","no match in '%s' (%s)",blobpath,bname)
end
end
end
if #filelist > 0 then
return filelist
else
return nil
end
end
function resolvers.suffix_of_format(str)
if suffixes[str] then
return suffixes[str][1]
else
return ""
end
end
function resolvers.suffixes_of_format(str)
if suffixes[str] then
return suffixes[str]
else
return {}
end
end
function resolvers.register_in_trees(name)
if not find(name,"^%.") then
instance.foundintrees[name] = (instance.foundintrees[name] or 0) + 1 -- maybe only one
end
end
-- split the next one up for readability (bu this module needs a cleanup anyway)
local function can_be_dir(name) -- can become local
local fakepaths = instance.fakepaths
if not fakepaths[name] then
if lfs.isdir(name) then
fakepaths[name] = 1 -- directory
else
fakepaths[name] = 2 -- no directory
end
end
return (fakepaths[name] == 1)
end
local function collect_instance_files(filename,collected) -- todo : plugin (scanners, checkers etc)
local result = collected or { }
local stamp = nil
filename = file.collapse_path(filename)
-- speed up / beware: format problem
if instance.remember then
stamp = filename .. "--" .. instance.engine .. "--" .. instance.progname .. "--" .. instance.format
if instance.found[stamp] then
if trace_locating then
logs.report("fileio","remembering file '%s'",filename)
end
return instance.found[stamp]
end
end
if not dangerous[instance.format or "?"] then
if resolvers.isreadable.file(filename) then
if trace_detail then
logs.report("fileio","file '%s' found directly",filename)
end
instance.found[stamp] = { filename }
return { filename }
end
end
if find(filename,'%*') then
if trace_locating then
logs.report("fileio","checking wildcard '%s'", filename)
end
result = resolvers.find_wildcard_files(filename)
elseif file.is_qualified_path(filename) then
if resolvers.isreadable.file(filename) then
if trace_locating then
logs.report("fileio","qualified name '%s'", filename)
end
result = { filename }
else
local forcedname, ok, suffix = "", false, file.extname(filename)
if suffix == "" then -- why
if instance.format == "" then
forcedname = filename .. ".tex"
if resolvers.isreadable.file(forcedname) then
if trace_locating then
logs.report("fileio","no suffix, forcing standard filetype 'tex'")
end
result, ok = { forcedname }, true
end
else
local suffixes = resolvers.suffixes_of_format(instance.format)
for _, s in next, suffixes do
forcedname = filename .. "." .. s
if resolvers.isreadable.file(forcedname) then
if trace_locating then
logs.report("fileio","no suffix, forcing format filetype '%s'", s)
end
result, ok = { forcedname }, true
break
end
end
end
end
if not ok and suffix ~= "" then
-- try to find in tree (no suffix manipulation), here we search for the
-- matching last part of the name
local basename = file.basename(filename)
local pattern = gsub(filename .. "$","([%.%-])","%%%1")
local savedformat = instance.format
local format = savedformat or ""
if format == "" then
instance.format = resolvers.format_of_suffix(suffix)
end
if not format then
instance.format = "othertextfiles" -- kind of everything, maybe texinput is better
end
--
if basename ~= filename then
local resolved = collect_instance_files(basename)
if #result == 0 then
local lowered = lower(basename)
if filename ~= lowered then
resolved = collect_instance_files(lowered)
end
end
resolvers.format = savedformat
--
for r=1,#resolved do
local rr = resolved[r]
if find(rr,pattern) then
result[#result+1], ok = rr, true
end
end
end
-- a real wildcard:
--
-- if not ok then
-- local filelist = collect_files({basename})
-- for f=1,#filelist do
-- local ff = filelist[f][3] or ""
-- if find(ff,pattern) then
-- result[#result+1], ok = ff, true
-- end
-- end
-- end
end
if not ok and trace_locating then
logs.report("fileio","qualified name '%s'", filename)
end
end
else
-- search spec
local filetype, extra, done, wantedfiles, ext = '', nil, false, { }, file.extname(filename)
if ext == "" then
if not instance.force_suffixes then
wantedfiles[#wantedfiles+1] = filename
end
else
wantedfiles[#wantedfiles+1] = filename
end
if instance.format == "" then
if ext == "" then
local forcedname = filename .. '.tex'
wantedfiles[#wantedfiles+1] = forcedname
filetype = resolvers.format_of_suffix(forcedname)
if trace_locating then
logs.report("fileio","forcing filetype '%s'",filetype)
end
else
filetype = resolvers.format_of_suffix(filename)
if trace_locating then
logs.report("fileio","using suffix based filetype '%s'",filetype)
end
end
else
if ext == "" then
local suffixes = resolvers.suffixes_of_format(instance.format)
for _, s in next, suffixes do
wantedfiles[#wantedfiles+1] = filename .. "." .. s
end
end
filetype = instance.format
if trace_locating then
logs.report("fileio","using given filetype '%s'",filetype)
end
end
local typespec = resolvers.variable_of_format(filetype)
local pathlist = resolvers.expanded_path_list(typespec)
if not pathlist or #pathlist == 0 then
-- no pathlist, access check only / todo == wildcard
if trace_detail then
logs.report("fileio","checking filename '%s', filetype '%s', wanted files '%s'",filename, filetype or '?',concat(wantedfiles," | "))
end
for k=1,#wantedfiles do
local fname = wantedfiles[k]
if fname and resolvers.isreadable.file(fname) then
filename, done = fname, true
result[#result+1] = file.join('.',fname)
break
end
end
-- this is actually 'other text files' or 'any' or 'whatever'
local filelist = collect_files(wantedfiles)
local fl = filelist and filelist[1]
if fl then
filename = fl[3]
result[#result+1] = filename
done = true
end
else
-- list search
local filelist = collect_files(wantedfiles)
local dirlist = { }
if filelist then
for i=1,#filelist do
dirlist[i] = file.dirname(filelist[i][2]) .. "/"
end
end
if trace_detail then
logs.report("fileio","checking filename '%s'",filename)
end
-- a bit messy ... esp the doscan setting here
local doscan
for k=1,#pathlist do
local path = pathlist[k]
if find(path,"^!!") then doscan = false else doscan = true end
local pathname = gsub(path,"^!+", '')
done = false
-- using file list
if filelist then
local expression
-- compare list entries with permitted pattern -- /xx /xx//
if not find(pathname,"/$") then
expression = pathname .. "/"
else
expression = pathname
end
expression = gsub(expression,"([%-%.])","%%%1") -- this also influences
expression = gsub(expression,"//+$", '/.*') -- later usage of pathname
expression = gsub(expression,"//", '/.-/') -- not ok for /// but harmless
expression = "^" .. expression .. "$"
if trace_detail then
logs.report("fileio","using pattern '%s' for path '%s'",expression,pathname)
end
for k=1,#filelist do
local fl = filelist[k]
local f = fl[2]
local d = dirlist[k]
if find(d,expression) then
--- todo, test for readable
result[#result+1] = fl[3]
resolvers.register_in_trees(f) -- for tracing used files
done = true
if instance.allresults then
if trace_detail then
logs.report("fileio","match in hash for file '%s' on path '%s', continue scanning",f,d)
end
else
if trace_detail then
logs.report("fileio","match in hash for file '%s' on path '%s', quit scanning",f,d)
end
break
end
elseif trace_detail then
logs.report("fileio","no match in hash for file '%s' on path '%s'",f,d)
end
end
end
if not done and doscan then
-- check if on disk / unchecked / does not work at all / also zips
if resolvers.splitmethod(pathname).scheme == 'file' then -- ?
local pname = gsub(pathname,"%.%*$",'')
if not find(pname,"%*") then
local ppname = gsub(pname,"/+$","")
if can_be_dir(ppname) then
for k=1,#wantedfiles do
local w = wantedfiles[k]
local fname = file.join(ppname,w)
if resolvers.isreadable.file(fname) then
if trace_detail then
logs.report("fileio","found '%s' by scanning",fname)
end
result[#result+1] = fname
done = true
if not instance.allresults then break end
end
end
else
-- no access needed for non existing path, speedup (esp in large tree with lots of fake)
end
end
end
end
if not done and doscan then
-- todo: slow path scanning
end
if done and not instance.allresults then break end
end
end
end
for k=1,#result do
result[k] = file.collapse_path(result[k])
end
if instance.remember then
instance.found[stamp] = result
end
return result
end
if not resolvers.concatinators then resolvers.concatinators = { } end
resolvers.concatinators.tex = file.join
resolvers.concatinators.file = resolvers.concatinators.tex
function resolvers.find_files(filename,filetype,mustexist)
if type(mustexist) == boolean then
-- all set
elseif type(filetype) == 'boolean' then
filetype, mustexist = nil, false
elseif type(filetype) ~= 'string' then
filetype, mustexist = nil, false
end
instance.format = filetype or ''
local result = collect_instance_files(filename)
if #result == 0 then
local lowered = lower(filename)
if filename ~= lowered then
return collect_instance_files(lowered)
end
end
instance.format = ''
return result
end
function resolvers.find_file(filename,filetype,mustexist)
return (resolvers.find_files(filename,filetype,mustexist)[1] or "")
end
function resolvers.find_given_files(filename)
local bname, result = file.basename(filename), { }
local hashes = instance.hashes
for k=1,#hashes do
local hash = hashes[k]
local files = instance.files[hash.tag] or { }
local blist = files[bname]
if not blist then
local rname = "remap:"..bname
blist = files[rname]
if blist then
bname = files[rname]
blist = files[bname]
end
end
if blist then
if type(blist) == 'string' then
result[#result+1] = resolvers.concatinators[hash.type](hash.tag,blist,bname) or ""
if not instance.allresults then break end
else
for kk=1,#blist do
local vv = blist[kk]
result[#result+1] = resolvers.concatinators[hash.type](hash.tag,vv,bname) or ""
if not instance.allresults then break end
end
end
end
end
return result
end
function resolvers.find_given_file(filename)
return (resolvers.find_given_files(filename)[1] or "")
end
local function doit(path,blist,bname,tag,kind,result,allresults)
local done = false
if blist and kind then
if type(blist) == 'string' then
-- make function and share code
if find(lower(blist),path) then
result[#result+1] = resolvers.concatinators[kind](tag,blist,bname) or ""
done = true
end
else
for kk=1,#blist do
local vv = blist[kk]
if find(lower(vv),path) then
result[#result+1] = resolvers.concatinators[kind](tag,vv,bname) or ""
done = true
if not allresults then break end
end
end
end
end
return done
end
function resolvers.find_wildcard_files(filename) -- todo: remap:
local result = { }
local bname, dname = file.basename(filename), file.dirname(filename)
local path = gsub(dname,"^*/","")
path = gsub(path,"*",".*")
path = gsub(path,"-","%%-")
if dname == "" then
path = ".*"
end
local name = bname
name = gsub(name,"*",".*")
name = gsub(name,"-","%%-")
path = lower(path)
name = lower(name)
local files, allresults, done = instance.files, instance.allresults, false
if find(name,"%*") then
local hashes = instance.hashes
for k=1,#hashes do
local hash = hashes[k]
local tag, kind = hash.tag, hash.type
for kk, hh in next, files[hash.tag] do
if not find(kk,"^remap:") then
if find(lower(kk),name) then
if doit(path,hh,kk,tag,kind,result,allresults) then done = true end
if done and not allresults then break end
end
end
end
end
else
local hashes = instance.hashes
for k=1,#hashes do
local hash = hashes[k]
local tag, kind = hash.tag, hash.type
if doit(path,files[tag][bname],bname,tag,kind,result,allresults) then done = true end
if done and not allresults then break end
end
end
-- we can consider also searching the paths not in the database, but then
-- we end up with a messy search (all // in all path specs)
return result
end
function resolvers.find_wildcard_file(filename)
return (resolvers.find_wildcard_files(filename)[1] or "")
end
-- main user functions
function resolvers.automount()
-- implemented later
end
function resolvers.load(option)
statistics.starttiming(instance)
resolvers.resetconfig()
resolvers.identify_cnf()
resolvers.load_lua() -- will become the new method
resolvers.expand_variables()
resolvers.load_cnf() -- will be skipped when we have a lua file
resolvers.expand_variables()
if option ~= "nofiles" then
resolvers.load_hash()
resolvers.automount()
end
statistics.stoptiming(instance)
end
function resolvers.for_files(command, files, filetype, mustexist)
if files and #files > 0 then
local function report(str)
if trace_locating then
logs.report("fileio",str) -- has already verbose
else
print(str)
end
end
if trace_locating then
report('') -- ?
end
for f=1,#files do
local file = files[f]
local result = command(file,filetype,mustexist)
if type(result) == 'string' then
report(result)
else
for i=1,#result do
report(result[i]) -- could be unpack
end
end
end
end
end
-- strtab
resolvers.var_value = resolvers.variable -- output the value of variable $STRING.
resolvers.expand_var = resolvers.expansion -- output variable expansion of STRING.
function resolvers.show_path(str) -- output search path for file type NAME
return file.join_path(resolvers.expanded_path_list(resolvers.format_of_var(str)))
end
-- resolvers.find_file(filename)
-- resolvers.find_file(filename, filetype, mustexist)
-- resolvers.find_file(filename, mustexist)
-- resolvers.find_file(filename, filetype)
function resolvers.register_file(files, name, path)
if files[name] then
if type(files[name]) == 'string' then
files[name] = { files[name], path }
else
files[name] = path
end
else
files[name] = path
end
end
function resolvers.splitmethod(filename)
if not filename then
return { } -- safeguard
elseif type(filename) == "table" then
return filename -- already split
elseif not find(filename,"://") then
return { scheme="file", path = filename, original=filename } -- quick hack
else
return url.hashed(filename)
end
end
function table.sequenced(t,sep) -- temp here
local s = { }
for k, v in next, t do -- indexed?
s[#s+1] = k .. "=" .. tostring(v)
end
return concat(s, sep or " | ")
end
function resolvers.methodhandler(what, filename, filetype) -- ...
filename = file.collapse_path(filename)
local specification = (type(filename) == "string" and resolvers.splitmethod(filename)) or filename -- no or { }, let it bomb
local scheme = specification.scheme
if resolvers[what][scheme] then
if trace_locating then
logs.report("fileio","handler '%s' -> '%s' -> '%s'",specification.original,what,table.sequenced(specification))
end
return resolvers[what][scheme](filename,filetype) -- todo: specification
else
return resolvers[what].tex(filename,filetype) -- todo: specification
end
end
function resolvers.clean_path(str)
if str then
str = gsub(str,"\\","/")
str = gsub(str,"^!+","")
str = gsub(str,"^~",resolvers.homedir)
return str
else
return nil
end
end
function resolvers.do_with_path(name,func)
local pathlist = resolvers.expanded_path_list(name)
for i=1,#pathlist do
func("^"..resolvers.clean_path(pathlist[i]))
end
end
function resolvers.do_with_var(name,func)
func(expanded_var(name))
end
function resolvers.with_files(pattern,handle)
local hashes = instance.hashes
for i=1,#hashes do
local hash = hashes[i]
local blobpath = hash.tag
local blobtype = hash.type
if blobpath then
local files = instance.files[blobpath]
if files then
for k,v in next, files do
if find(k,"^remap:") then
k = files[k]
v = files[k] -- chained
end
if find(k,pattern) then
if type(v) == "string" then
handle(blobtype,blobpath,v,k)
else
for _,vv in next, v do -- indexed
handle(blobtype,blobpath,vv,k)
end
end
end
end
end
end
end
end
function resolvers.locate_format(name)
local barename, fmtname = gsub(name,"%.%a+$",""), ""
if resolvers.usecache then
local path = file.join(caches.setpath("formats")) -- maybe platform
fmtname = file.join(path,barename..".fmt") or ""
end
if fmtname == "" then
fmtname = resolvers.find_files(barename..".fmt")[1] or ""
end
fmtname = resolvers.clean_path(fmtname)
if fmtname ~= "" then
local barename = file.removesuffix(fmtname)
local luaname, lucname, luiname = barename .. ".lua", barename .. ".luc", barename .. ".lui"
if lfs.isfile(luiname) then
return barename, luiname
elseif lfs.isfile(lucname) then
return barename, lucname
elseif lfs.isfile(luaname) then
return barename, luaname
end
end
return nil, nil
end
function resolvers.boolean_variable(str,default)
local b = resolvers.expansion(str)
if b == "" then
return default
else
b = toboolean(b)
return (b == nil and default) or b
end
end
texconfig.kpse_init = false
kpse = { original = kpse } setmetatable(kpse, { __index = function(k,v) return resolvers[v] end } )
-- for a while
input = resolvers
|