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
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
|
if not modules then modules = { } end modules ['strc-ref'] = {
version = 1.001,
comment = "companion to strc-ref.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- beware, this is a first step in the rewrite (just getting rid of
-- the tuo file); later all access and parsing will also move to lua
-- the useddata and pagedata names might change
-- todo: pack exported data
-- todo: autoload components when :::
local format, find, gmatch, match, strip = string.format, string.find, string.gmatch, string.match, string.strip
local floor = math.floor
local rawget, tonumber, type = rawget, tonumber, type
local lpegmatch = lpeg.match
local insert, remove, copytable = table.insert, table.remove, table.copy
local formatters = string.formatters
local P, Cs, lpegmatch = lpeg.P, lpeg.Cs, lpeg.match
local allocate = utilities.storage.allocate
local mark = utilities.storage.mark
local setmetatableindex = table.setmetatableindex
local trace_referencing = false trackers.register("structures.referencing", function(v) trace_referencing = v end)
local trace_analyzing = false trackers.register("structures.referencing.analyzing", function(v) trace_analyzing = v end)
local trace_identifying = false trackers.register("structures.referencing.identifying", function(v) trace_identifying = v end)
local trace_importing = false trackers.register("structures.referencing.importing", function(v) trace_importing = v end)
local trace_empty = false trackers.register("structures.referencing.empty", function(v) trace_empty = v end)
local check_duplicates = true
directives.register("structures.referencing.checkduplicates", function(v) check_duplicates = v end)
local report_references = logs.reporter("references")
local report_unknown = logs.reporter("references","unknown")
local report_identifying = logs.reporter("references","identifying")
local report_importing = logs.reporter("references","importing")
local report_empty = logs.reporter("references","empty")
local variables = interfaces.variables
local v_page = variables.page
local v_auto = variables.auto
local v_yes = variables.yes
local v_name = variables.name
local context = context
local commands = commands
local implement = interfaces.implement
local texgetcount = tex.getcount
local texsetcount = tex.setcount
local texconditionals = tex.conditionals
local productcomponent = resolvers.jobs.productcomponent
local justacomponent = resolvers.jobs.justacomponent
local logsnewline = logs.newline
local logspushtarget = logs.pushtarget
local logspoptarget = logs.poptarget
----- settings_to_array = utilities.parsers.settings_to_array
local settings_to_table = utilities.parsers.settings_to_array_obey_fences
local process_settings = utilities.parsers.process_stripped_settings
local unsetvalue = attributes.unsetvalue
local structures = structures
local helpers = structures.helpers
local sections = structures.sections
local references = structures.references
local lists = structures.lists
local counters = structures.counters
local jobpositions = job.positions
-- some might become local
references.defined = references.defined or allocate()
local defined = references.defined
local derived = allocate()
local specials = allocate()
local functions = allocate()
local runners = allocate()
local internals = allocate()
local filters = allocate()
local executers = allocate()
local handlers = allocate()
local tobesaved = allocate()
local collected = allocate()
local tobereferred = allocate()
local referred = allocate()
local usedinternals = allocate()
local flaginternals = allocate()
local usedviews = allocate()
references.derived = derived
references.specials = specials
references.functions = functions
references.runners = runners
references.internals = internals
references.filters = filters
references.executers = executers
references.handlers = handlers
references.tobesaved = tobesaved
references.collected = collected
references.tobereferred = tobereferred
references.referred = referred
references.usedinternals = usedinternals
references.flaginternals = flaginternals
references.usedviews = usedviews
local splitreference = references.splitreference
local splitprefix = references.splitcomponent -- replaces: references.splitprefix
local prefixsplitter = references.prefixsplitter
local componentsplitter = references.componentsplitter
local currentreference = nil
local txtcatcodes = catcodes.numbers.txtcatcodes -- or just use "txtcatcodes"
local ctx_pushcatcodes = context.pushcatcodes
local ctx_popcatcodes = context.popcatcodes
local ctx_dofinishreference = context.dofinishreference
local ctx_dofromurldescription = context.dofromurldescription
local ctx_dofromurlliteral = context.dofromurlliteral
local ctx_dofromfiledescription = context.dofromfiledescription
local ctx_dofromfileliteral = context.dofromfileliteral
local ctx_expandreferenceoperation = context.expandreferenceoperation
local ctx_expandreferencearguments = context.expandreferencearguments
local ctx_convertnumber = context.convertnumber
local ctx_emptyreference = context.emptyreference
storage.register("structures/references/defined", references.defined, "structures.references.defined")
local initializers = { }
local finalizers = { }
function references.registerinitializer(func) -- we could use a token register instead
initializers[#initializers+1] = func
end
function references.registerfinalizer(func) -- we could use a token register instead
finalizers[#finalizers+1] = func
end
local function initializer() -- can we use a tobesaved as metatable for collected?
tobesaved = references.tobesaved
collected = references.collected
for i=1,#initializers do
initializers[i](tobesaved,collected)
end
for prefix, list in next, collected do
for tag, data in next, list do
local r = data.references
local i = r.internal
if i then
internals[i] = data
usedinternals[i] = r.used
end
end
end
end
local function finalizer()
for i=1,#finalizers do
finalizers[i](tobesaved)
end
for prefix, list in next, tobesaved do
for tag, data in next, list do
local r = data.references
local i = r.internal
local f = flaginternals[i]
if f then
r.used = usedviews[i] or true
end
end
end
end
job.register('structures.references.collected', tobesaved, initializer, finalizer)
local maxreferred = 1
local nofreferred = 0
local function initializer() -- can we use a tobesaved as metatable for collected?
tobereferred = references.tobereferred
referred = references.referred
nofreferred = #referred
end
-- no longer done this way
-- references.resolvers = references.resolvers or { }
-- local resolvers = references.resolvers
--
-- function resolvers.section(var)
-- local vi = lists.collected[var.i[2]]
-- if vi then
-- var.i = vi
-- var.r = (vi.references and vi.references.realpage) or (vi.pagedata and vi.pagedata.realpage) or 1
-- else
-- var.i = nil
-- var.r = 1
-- end
-- end
--
-- resolvers.float = resolvers.section
-- resolvers.description = resolvers.section
-- resolvers.formula = resolvers.section
-- resolvers.note = resolvers.section
--
-- function resolvers.reference(var)
-- local vi = var.i[2]
-- if vi then
-- var.i = vi
-- var.r = (vi.references and vi.references.realpage) or (vi.pagedata and vi.pagedata.realpage) or 1
-- else
-- var.i = nil
-- var.r = 1
-- end
-- end
-- We make the array sparse (maybe a finalizer should optionally return a table) because
-- there can be quite some page links involved. We only store one action number per page
-- which is normally good enough for what we want (e.g. see above/below) and we do
-- a combination of a binary search and traverse backwards. A previous implementation
-- always did a traverse and was pretty slow on a large number of links (given that this
-- methods was used). It took me about a day to locate this as a bottleneck in processing
-- a 2500 page interactive document with 60 links per page. In that case, traversing
-- thousands of slots per link then brings processing to a grinding halt (especially when
-- there are no slots at all, which is the case in a first run).
local sparsetobereferred = { }
local function finalizer()
local lastr, lasti
local n = 0
for i=1,maxreferred do
local r = tobereferred[i]
if not lastr then
lastr = r
lasti = i
elseif r ~= lastr then
n = n + 1
sparsetobereferred[n] = { lastr, lasti }
lastr = r
lasti = i
end
end
if lastr then
n = n + 1
sparsetobereferred[n] = { lastr, lasti }
end
end
job.register('structures.references.referred', sparsetobereferred, initializer, finalizer)
local function referredpage(n)
local max = nofreferred
if max > 0 then
-- find match
local min = 1
while true do
local mid = floor((min+max)/2)
local r = referred[mid]
local m = r[2]
if n == m then
return r[1]
elseif n > m then
min = mid + 1
else
max = mid - 1
end
if min > max then
break
end
end
-- find first previous
for i=min,1,-1 do
local r = referred[i]
if r and r[2] < n then
return r[1]
end
end
end
-- fallback
return texgetcount("realpageno")
end
references.referredpage = referredpage
function references.registerpage(n) -- called in the backend code
if not tobereferred[n] then
if n > maxreferred then
maxreferred = n
end
tobereferred[n] = texgetcount("realpageno")
end
end
-- todo: delay split till later as in destinations we split anyway
local orders, lastorder = { }, 0
local function setnextorder(kind,name)
lastorder = 0
if kind and name then
local ok = orders[kind]
if not ok then
ok = { }
orders[kind] = ok
end
lastorder = (ok[name] or 0) + 1
ok[name] = lastorder
end
texsetcount("global","locationorder",lastorder)
end
local function setnextinternal(kind,name)
setnextorder(kind,name) -- always incremented with internal
local n = texgetcount("locationcount") + 1
texsetcount("global","locationcount",n)
return n
end
local function currentorder(kind,name)
return orders[kind] and orders[kind][name] or lastorder
end
local function setcomponent(data)
-- we might consider doing this at the tex end, just like prefix
local component = productcomponent()
if component then
local references = data and data.references
if references then
references.component = component
if references.prefix == component then
references.prefix = nil
end
end
return component
end
-- but for the moment we do it here (experiment)
end
references.setnextorder = setnextorder
references.setnextinternal = setnextinternal
references.currentorder = currentorder
references.setcomponent = setcomponent
implement {
name = "setnextreferenceorder",
actions = setnextorder,
arguments = { "string", "string" }
}
implement {
name = "setnextinternalreference",
actions = setnextinternal,
arguments = { "string", "string" }
}
implement {
name = "currentreferenceorder",
actions = { currentorder, context },
arguments = { "string", "string" }
}
function references.set(data)
local references = data.references
local reference = references.reference
if not reference or reference == "" then
-- report_references("invalid reference") -- harmless
return 0
end
local prefix = references.prefix or ""
local pd = tobesaved[prefix] -- nicer is a metatable
if not pd then
pd = { }
tobesaved[prefix] = pd
end
local n = 0
local function action(ref)
if ref == "" then
-- skip
elseif check_duplicates and pd[ref] then
if prefix and prefix ~= "" then
report_references("redundant reference %a in namespace %a",ref,prefix)
else
report_references("redundant reference %a",ref)
end
else
n = n + 1
pd[ref] = data
local r = data.references
ctx_dofinishreference(prefix or "",ref or "",r and r.internal or 0)
end
end
process_settings(reference,action)
return n > 0
end
-- function references.enhance(prefix,tag)
-- local l = tobesaved[prefix][tag]
-- if l then
-- l.references.realpage = texgetcount("realpageno")
-- end
-- end
local getpos = function() getpos = backends.codeinjections.getpos return getpos () end
local function synchronizepage(reference) -- non public helper
reference.realpage = texgetcount("realpageno")
if jobpositions.used then
reference.x, reference.y = getpos()
end
end
references.synchronizepage = synchronizepage
function references.enhance(prefix,tag)
local l = tobesaved[prefix][tag]
if l then
synchronizepage(l.references)
end
end
implement {
name = "enhancereference",
actions = references.enhance,
arguments = { "string", "string" }
}
-- -- -- related to strc-ini.lua -- -- --
-- no metatable here .. better be sparse
local function register_from_lists(collected,derived,pages,sections)
local derived_g = derived[""] -- global
local derived_p = nil
local derived_c = nil
local prefix = nil
local component = nil
local entry = nil
if not derived_g then
derived_g = { }
derived[""] = derived_g
end
local function action(s)
if trace_referencing then
report_references("list entry %a provides %a reference %a on realpage %a",i,kind,s,realpage)
end
if derived_p and not derived_p[s] then
derived_p[s] = entry
end
if derived_c and not derived_c[s] then
derived_c[s] = entry
end
if not derived_g[s] then
derived_g[s] = entry -- first wins
end
end
for i=1,#collected do
entry = collected[i]
local metadata = entry.metadata
if metadata then
local kind = metadata.kind -- why this check
if kind then
local references = entry.references
if references then
local reference = references.reference
if reference and reference ~= "" then
local realpage = references.realpage
if realpage then
prefix = references.prefix
component = references.component
if prefix and prefix ~= "" then
derived_p = derived[prefix]
if not derived_p then
derived_p = { }
derived[prefix] = derived_p
end
end
if component and component ~= "" and component ~= prefix then
derived_c = derived[component]
if not derived_c then
derived_c = { }
derived[component] = derived_c
end
end
process_settings(reference,action)
end
end
end
end
end
end
end
references.registerinitializer(function() register_from_lists(lists.collected,derived) end)
-- tracing
local function collectbypage(tracedpages)
-- lists
do
local collected = structures.lists.collected
local data = nil
local function action(reference)
local prefix = data.prefix
local component = data.component
local realpage = data.realpage
if realpage then
local pagelist = rawget(tracedpages,realpage)
local internal = data.internal or 0
local prefix = (prefix ~= "" and prefix) or (component ~= "" and component) or ""
local pagedata = { prefix, reference, internal }
if pagelist then
pagelist[#pagelist+1] = pagedata
else
tracedpages[realpage] = { pagedata }
end
if internal > 0 then
data.usedprefix = prefix
end
end
end
for i=1,#collected do
local entry = collected[i]
local metadata = entry.metadata
if metadata and metadata.kind then
data = entry.references
if data then
local reference = data.reference
if reference and reference ~= "" then
process_settings(reference,action)
end
end
end
end
end
-- references
do
for prefix, list in next, collected do
for reference, entry in next, list do
local data = entry.references
if data then
local realpage = data.realpage
local internal = data.internal or 0
local pagelist = rawget(tracedpages,realpage)
local pagedata = { prefix, reference, internal }
if pagelist then
pagelist[#pagelist+1] = pagedata
else
tracedpages[realpage] = { pagedata }
end
if internal > 0 then
data.usedprefix = prefix
end
end
end
end
end
end
references.tracedpages = table.setmetatableindex(allocate(),function(t,k)
if collectbypage then
collectbypage(t)
collectbypage = nil
end
return rawget(t,k)
end)
-- urls
local urls = references.urls or { }
references.urls = urls
local urldata = urls.data or { }
urls.data = urldata
local p_untexurl = Cs ( (
P("\\")/"" * (P("%")/"%%" + P(1))
+ P(" ")/"%%20"
+ P(1)
)^1 )
function urls.untex(url)
return lpegmatch(p_untexurl,url) or url
end
function urls.define(name,url,file,description)
if name and name ~= "" then
-- url = lpegmatch(replacer,url)
urldata[name] = { url or "", file or "", description or url or file or ""}
end
end
function urls.get(name)
local u = urldata[name]
if u then
local url, file = u[1], u[2]
if file and file ~= "" then
return formatters["%s/%s"](url,file)
else
return url
end
end
end
function urls.found(name)
return urldata[name]
end
local function geturl(name)
local url = urls.get(name)
if url and url ~= "" then
ctx_pushcatcodes(txtcatcodes)
context(url)
ctx_popcatcodes()
end
end
implement {
name = "doifelseurldefined",
actions = { urls.found, commands.doifelse },
arguments = "string"
}
implement {
name = "useurl",
actions = urls.define,
arguments = { "string", "string", "string", "string" }
}
implement {
name = "geturl",
actions = geturl,
arguments = "string",
}
-- files
local files = references.files or { }
references.files = files
local filedata = files.data or { }
files.data = filedata
function files.define(name,file,description)
if name and name ~= "" then
filedata[name] = { file or "", description or file or "" }
end
end
function files.get(name,method,space) -- method: none, before, after, both, space: yes/no
local f = filedata[name]
if f then
context(f[1])
end
end
function files.found(name)
return filedata[name]
end
local function getfile(name)
local fil = files.get(name)
if fil and fil ~= "" then
ctx_pushcatcodes(txtcatcodes)
context(fil)
ctx_popcatcodes()
end
end
implement {
name = "doifelsefiledefined",
actions = { files.found, commands.doifelse },
arguments = "string"
}
implement {
name = "usefile",
actions = files.define,
arguments = { "string", "string", "string" }
}
implement {
name = "getfile",
actions = getfile,
arguments = "string"
}
-- helpers
function references.checkedfile(whatever) -- return whatever if not resolved
if whatever then
local w = filedata[whatever]
if w then
return w[1]
else
return whatever
end
end
end
function references.checkedurl(whatever) -- return whatever if not resolved
if whatever then
local w = urldata[whatever]
if w then
local u, f = w[1], w[2]
if f and f ~= "" then
return u .. "/" .. f
else
return u
end
else
return whatever
end
end
end
function references.checkedfileorurl(whatever,default) -- return nil, nil if not resolved
if whatever then
local w = filedata[whatever]
if w then
return w[1], nil
else
local w = urldata[whatever]
if w then
local u, f = w[1], w[2]
if f and f ~= "" then
return nil, u .. "/" .. f
else
return nil, u
end
end
end
end
return default
end
-- programs
local programs = references.programs or { }
references.programs = programs
local programdata = programs.data or { }
programs.data = programdata
function programs.define(name,file,description)
if name and name ~= "" then
programdata[name] = { file or "", description or file or ""}
end
end
function programs.get(name)
local f = programdata[name]
return f and f[1]
end
function references.checkedprogram(whatever) -- return whatever if not resolved
if whatever then
local w = programdata[whatever]
if w then
return w[1]
else
return whatever
end
end
end
implement {
name = "defineprogram",
actions = programs.define,
arguments = { "string", "string", "string" }
}
local function getprogram(name)
local p = programdata[name]
if p then
context(p[1])
end
end
implement {
name = "getprogram",
actions = getprogram,
arguments = "string"
}
-- shared by urls and files
function references.from(name)
local u = urldata[name]
if u then
local url, file, description = u[1], u[2], u[3]
if description ~= "" then
return description
-- ok
elseif file and file ~= "" then
return url .. "/" .. file
else
return url
end
else
local f = filedata[name]
if f then
local file, description = f[1], f[2]
if description ~= "" then
return description
else
return file
end
end
end
end
local function from(name)
local u = urldata[name]
if u then
local url, file, description = u[1], u[2], u[3]
if description ~= "" then
ctx_dofromurldescription(description)
-- ok
elseif file and file ~= "" then
ctx_dofromurlliteral(url .. "/" .. file)
else
ctx_dofromurlliteral(url)
end
else
local f = filedata[name]
if f then
local file, description = f[1], f[2]
if description ~= "" then
ctx_dofromfiledescription(description)
else
ctx_dofromfileliteral(file)
end
end
end
end
implement {
name = "from",
actions = from,
arguments = "string"
}
function references.define(prefix,reference,list)
local d = defined[prefix] if not d then d = { } defined[prefix] = d end
d[reference] = list
end
function references.reset(prefix,reference)
local d = defined[prefix]
if d then
d[reference] = nil
end
end
implement {
name = "definereference",
actions = references.define,
arguments = { "string", "string", "string" }
}
implement {
name = "resetreference",
actions = references.reset,
arguments = { "string", "string" }
}
setmetatableindex(defined,"table")
local function resolve(prefix,reference,args,set) -- we start with prefix,reference
if reference and reference ~= "" then
if not set then
set = { prefix = prefix, reference = reference }
else
if not set.reference then set.reference = reference end
if not set.prefix then set.prefix = prefix end
end
-- local r = settings_to_array(reference)
local r = settings_to_table(reference) -- maybe option to honor () []
for i=1,#r do
local ri = r[i]
local d = defined[prefix][ri] or defined[""][ri]
if d then
resolve(prefix,d,nil,set)
else
local var = splitreference(ri)
if var then
var.reference = ri
local vo, vi = var.outer, var.inner
-- we catch this here .. it's a way to pass references with commas
if vi == "name" then
local arguments = var.arguments
if arguments then
vi = arguments
var.inner = arguments
var.reference = arguments
var.arguments = nil
end
elseif var.special == "name" then
local operation = var.operation
if operation then
vi = operation
var.inner = operation
var.reference = operation
var.operation = nil
var.special = nil
end
end
-- end of catch
if not vo and vi then
-- to be checked
d = defined[prefix][vi] or defined[""][vi]
--
if d then
resolve(prefix,d,var.arguments,set) -- args can be nil
else
if args then var.arguments = args end
set[#set+1] = var
end
else
if args then var.arguments = args end
set[#set+1] = var
end
if var.has_tex then
set.has_tex = true
end
else
-- report_references("funny pattern %a",ri)
end
end
end
return set
else
return { }
end
end
-- prefix == "" is valid prefix which saves multistep lookup
references.currentset = nil
local function setreferenceoperation(k,v)
references.currentset[k].operation = v
end
local function setreferencearguments(k,v)
references.currentset[k].arguments = v
end
function references.expandcurrent() -- todo: two booleans: o_has_tex& a_has_tex
local currentset = references.currentset
if currentset and currentset.has_tex then
for i=1,#currentset do
local ci = currentset[i]
local operation = ci.operation
if operation and find(operation,"\\",1,true) then -- if o_has_tex then
ctx_expandreferenceoperation(i,operation)
end
local arguments = ci.arguments
if arguments and find(arguments,"\\",1,true) then -- if a_has_tex then
ctx_expandreferencearguments(i,arguments)
end
end
end
end
implement {
name = "expandcurrentreference",
actions = references.expandcurrent
}
implement {
name = "setreferenceoperation",
actions = setreferenceoperation,
arguments = { "integer", "string" }
}
implement {
name = "setreferencearguments",
actions = setreferencearguments,
arguments = { "integer", "string" }
}
local externals = { }
-- we have prefixes but also components:
--
-- : prefix
-- :: always external
-- ::: internal (for products) or external (for components)
local function loadexternalreferences(name,utilitydata)
local struc = utilitydata.structures
if struc then
local external = struc.references.collected -- direct references
local lists = struc.lists.collected -- indirect references (derived)
local pages = struc.pages.collected -- pagenumber data
-- a bit weird one, as we don't have the externals in the collected
for prefix, set in next, external do
if prefix == "" then
prefix = name -- this can clash!
end
for reference, data in next, set do
if trace_importing then
report_importing("registering %a reference, kind %a, name %a, prefix %a, reference %a",
"external","regular",name,prefix,reference)
end
local section = reference.section
local realpage = reference.realpage
if section then
reference.sectiondata = lists[section]
end
if realpage then
reference.pagedata = pages[realpage]
end
end
end
for i=1,#lists do
local entry = lists[i]
local metadata = entry.metadata
local references = entry.references
if metadata and references then
local reference = references.reference
if reference and reference ~= "" then
local kind = metadata.kind
local realpage = references.realpage
if kind and realpage then
references.pagedata = pages[realpage]
local prefix = references.prefix or ""
if prefix == "" then
prefix = name -- this can clash!
end
local target = external[prefix]
if not target then
target = { }
external[prefix] = target
end
-- for s in gmatch(reference,"%s*([^,]+)") do
-- if trace_importing then
-- report_importing("registering %s reference, kind %a, name %a, prefix %a, reference %a",
-- "external",kind,name,prefix,s)
-- end
-- target[s] = target[s] or entry
-- end
local function action(s)
if trace_importing then
report_importing("registering %s reference, kind %a, name %a, prefix %a, reference %a",
"external",kind,name,prefix,s)
end
target[s] = target[s] or entry
end
process_settings(reference,action)
end
end
end
end
externals[name] = external
return external
end
end
local externalfiles = { }
setmetatableindex(externalfiles, function(t,k)
local v = filedata[k]
if not v then
v = { k, k }
end
externalfiles[k] = v
return v
end)
setmetatableindex(externals, function(t,k) -- either or not automatically
local filename = externalfiles[k][1] -- filename
local fullname = file.replacesuffix(filename,"tuc")
if lfs.isfile(fullname) then -- todo: use other locator
local utilitydata = job.loadother(fullname)
if utilitydata then
local external = loadexternalreferences(k,utilitydata)
t[k] = external or false
return external
end
end
t[k] = false
return false
end)
local productdata = allocate {
productreferences = { },
componentreferences = { },
components = { },
}
references.productdata = productdata
local function loadproductreferences(productname,componentname,utilitydata)
local struc = utilitydata.structures
if struc then
local productreferences = struc.references.collected -- direct references
local lists = struc.lists.collected -- indirect references (derived)
local pages = struc.pages.collected -- pagenumber data
-- we use indirect tables to save room but as they are eventually
-- just references we resolve them to data here (the mechanisms
-- that use this data check for indirectness)
for prefix, set in next, productreferences do
for reference, data in next, set do
if trace_importing then
report_importing("registering %s reference, kind %a, name %a, prefix %a, reference %a",
"product","regular",productname,prefix,reference)
end
local section = reference.section
local realpage = reference.realpage
if section then
reference.sectiondata = lists[section]
end
if realpage then
reference.pagedata = pages[realpage]
end
end
end
--
local componentreferences = { }
for i=1,#lists do
local entry = lists[i]
local metadata = entry.metadata
local references = entry.references
if metadata and references then
local reference = references.reference
if reference and reference ~= "" then
local kind = metadata.kind
local realpage = references.realpage
if kind and realpage then
references.pagedata = pages[realpage]
local prefix = references.prefix or ""
local component = references.component
local ctarget, ptarget
if not component or component == componentname then
-- skip
else
-- one level up
local external = componentreferences[component]
if not external then
external = { }
componentreferences[component] = external
end
if component == prefix then
prefix = ""
end
ctarget = external[prefix]
if not ctarget then
ctarget = { }
external[prefix] = ctarget
end
end
ptarget = productreferences[prefix]
if not ptarget then
ptarget = { }
productreferences[prefix] = ptarget
end
local function action(s)
if ptarget then
if trace_importing then
report_importing("registering %s reference, kind %a, name %a, prefix %a, reference %a",
"product",kind,productname,prefix,s)
end
ptarget[s] = ptarget[s] or entry
end
if ctarget then
if trace_importing then
report_importing("registering %s reference, kind %a, name %a, prefix %a, referenc %a",
"component",kind,productname,prefix,s)
end
ctarget[s] = ctarget[s] or entry
end
end
process_settings(reference,action)
end
end
end
end
productdata.productreferences = productreferences -- not yet used
productdata.componentreferences = componentreferences
end
end
local function loadproductvariables(product,component,utilitydata)
local struc = utilitydata.structures
if struc then
local lists = struc.lists and struc.lists.collected
if lists then
local pages = struc.pages and struc.pages.collected
for i=1,#lists do
local li = lists[i]
if li.metadata.kind == "section" and li.references.component == component then
local firstsection = li
if firstsection.numberdata then
local numbers = firstsection.numberdata.numbers
if numbers then
if trace_importing then
report_importing("initializing section number to %:t",numbers)
end
productdata.firstsection = firstsection
structures.documents.preset(numbers)
end
end
if pages and firstsection.references then
local firstpage = pages[firstsection.references.realpage]
local number = firstpage and firstpage.number
if number then
if trace_importing then
report_importing("initializing page number to %a",number)
end
productdata.firstpage = firstpage
counters.set("userpage",1,number)
end
end
break
end
end
end
end
end
local function componentlist(tree,target)
local branches = tree and tree.branches
if branches then
for i=1,#branches do
local branch = branches[i]
local type = branch.type
if type == "component" then
if target then
target[#target+1] = branch.name
else
target = { branch.name }
end
elseif type == "product" or type == "component" then
target = componentlist(branch,target)
end
end
end
return target
end
local function loadproductcomponents(product,component,utilitydata)
local job = utilitydata.job
productdata.components = componentlist(job and job.structure and job.structure.collected) or { }
end
references.registerinitializer(function(tobesaved,collected)
-- not that much related to tobesaved or collected
productdata.components = componentlist(job.structure.collected) or { }
end)
function references.loadpresets(product,component) -- we can consider a special components hash
if product and component and product~= "" and component ~= "" and not productdata.product then -- maybe: productdata.filename ~= filename
productdata.product = product
productdata.component = component
local fullname = file.replacesuffix(product,"tuc")
if lfs.isfile(fullname) then -- todo: use other locator
local utilitydata = job.loadother(fullname)
if utilitydata then
if trace_importing then
report_importing("loading references for component %a of product %a from %a",component,product,fullname)
end
loadproductvariables (product,component,utilitydata)
loadproductreferences(product,component,utilitydata)
loadproductcomponents(product,component,utilitydata)
end
end
end
end
references.productdata = productdata
local useproduct = commands.useproduct
if useproduct then
local function newuseproduct(product)
useproduct(product)
if texconditionals.autocrossfilereferences then
local component = justacomponent()
if component then
if trace_referencing or trace_importing then
report_references("loading presets for component %a of product %a",component,product)
end
references.loadpresets(product,component)
end
end
end
implement {
name = "useproduct",
actions = newuseproduct,
arguments = "string",
overload = true,
}
end
-- productdata.firstsection.numberdata.numbers
-- productdata.firstpage.number
local function report_identify_special(set,var,i,type)
local reference = set.reference
local prefix = set.prefix or ""
local special = var.special
local error = var.error
local kind = var.kind
if error then
report_identifying("type %a, reference %a, index %a, prefix %a, special %a, error %a",type,reference,i,prefix,special,error)
else
report_identifying("type %a, reference %a, index %a, prefix %a, special %a, kind %a",type,reference,i,prefix,special,kind)
end
end
local function report_identify_arguments(set,var,i,type)
local reference = set.reference
local prefix = set.prefix or ""
local arguments = var.arguments
local error = var.error
local kind = var.kind
if error then
report_identifying("type %a, reference %a, index %a, prefix %a, arguments %a, error %a",type,reference,i,prefix,arguments,error)
else
report_identifying("type %a, reference %a, index %a, prefix %a, arguments %a, kind %a",type,reference,i,prefix,arguments,kind)
end
end
local function report_identify_outer(set,var,i,type)
local reference = set.reference
local prefix = set.prefix or ""
local outer = var.outer
local error = var.error
local kind = var.kind
if outer then
if error then
report_identifying("type %a, reference %a, index %a, prefix %a, outer %a, error %a",type,reference,i,prefix,outer,error)
else
report_identifying("type %a, reference %a, index %a, prefix %a, outer %a, kind %a",type,reference,i,prefix,outer,kind)
end
else
if error then
report_identifying("type %a, reference %a, index %a, prefix %a, error %a",type,reference,i,prefix,error)
else
report_identifying("type %a, reference %a, index %a, prefix %a, kind %a",type,reference,i,prefix,kind)
end
end
end
local function identify_special(set,var,i)
local special = var.special
local s = specials[special]
if s then
local outer = var.outer
local operation = var.operation
local arguments = var.arguments
if outer then
if operation then
-- special(outer::operation)
var.kind = "special outer with operation"
else
-- special()
var.kind = "special outer"
end
var.f = outer
elseif operation then
if arguments then
-- special(operation{argument,argument})
var.kind = "special operation with arguments"
else
-- special(operation)
var.kind = "special operation"
end
else
-- special()
var.kind = "special"
end
if trace_identifying then
report_identify_special(set,var,i,"1a")
end
else
var.error = "unknown special"
end
return var
end
local function identify_arguments(set,var,i)
local s = specials[var.inner]
if s then
-- inner{argument}
var.kind = "special operation with arguments"
else
var.error = "unknown inner or special"
end
if trace_identifying then
report_identify_arguments(set,var,i,"3a")
end
return var
end
-- needs checking: if we don't do too much (redundant) checking now
-- inner ... we could move the prefix logic into the parser so that we have 'm for each entry
-- foo:bar -> foo == prefix (first we try the global one)
-- -:bar -> ignore prefix
local function finish_inner(var,p,i)
var.kind = "inner"
var.i = i
var.p = p
var.r = (i.references and i.references.realpage) or (i.pagedata and i.pagedata.realpage) or 1
return var
end
local function identify_inner(set,var,prefix,collected,derived)
local inner = var.inner
-- the next test is a safeguard when references are auto loaded from outer
if not inner or inner == "" then
return false
end
local splitprefix, splitinner = lpegmatch(prefixsplitter,inner)
if splitprefix and splitinner then
-- we check for a prefix:reference instance in the regular set of collected
-- references; a special case is -: which forces a lookup in the global list
if splitprefix == "-" then
local i = collected[""]
if i then
i = i[splitinner]
if i then
return finish_inner(var,"",i)
end
end
end
local i = collected[splitprefix]
if i then
i = i[splitinner]
if i then
return finish_inner(var,splitprefix,i)
end
end
if derived then
-- next we look for a reference in the regular set of collected references
-- using the prefix that is active at this moment (so we overload the given
-- these are taken from other data structures (like lists)
if splitprefix == "-" then
local i = derived[""]
if i then
i = i[splitinner]
if i then
return finish_inner(var,"",i)
end
end
end
local i = derived[splitprefix]
if i then
i = i[splitinner]
if i then
return finish_inner(var,splitprefix,i)
end
end
end
end
-- we now ignore the split prefix and treat the whole inner as a potential
-- referenice into the global list
local i = collected[prefix]
if i then
i = i[inner]
if i then
return finish_inner(var,prefix,i)
end
end
if not i and derived then
-- and if not found we look in the derived references
local i = derived[prefix]
if i then
i = i[inner]
if i then
return finish_inner(var,prefix,i)
end
end
end
return false
end
local function unprefixed_inner(set,var,prefix,collected,derived,tobesaved)
local inner = var.inner
local s = specials[inner]
if s then
var.kind = "special"
else
local i = (collected and collected[""] and collected[""][inner]) or
(derived and derived [""] and derived [""][inner]) or
(tobesaved and tobesaved[""] and tobesaved[""][inner])
if i then
var.kind = "inner"
var.p = ""
var.i = i
var.r = (i.references and i.references.realpage) or (i.pagedata and i.pagedata.realpage) or 1
else
var.error = "unknown inner or special"
end
end
return var
end
local function identify_outer(set,var,i)
local outer = var.outer
local inner = var.inner
local external = externals[outer]
if external then
local v = identify_inner(set,var,nil,external)
if v then
v.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,v,i,"2a")
end
return v
end
local v = identify_inner(set,var,var.outer,external)
if v then
v.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,v,i,"2b")
end
return v
end
end
local external = productdata.componentreferences[outer]
if external then
local v = identify_inner(set,var,nil,external)
if v then
v.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,v,i,"2c")
end
return v
end
end
local external = productdata.productreferences[outer]
if external then
local vi = external[inner]
if vi then
var.kind = "outer with inner"
var.i = vi
set.external = true
if trace_identifying then
report_identify_outer(set,var,i,"2d")
end
return var
end
end
-- the rest
local special = var.special
local arguments = var.arguments
local operation = var.operation
if inner then
-- tricky: in this case we can only use views when we're sure that all inners
-- are flushed in the outer document so that should become an option
if arguments then
-- outer::inner{argument}
var.kind = "outer with inner with arguments"
else
-- outer::inner
var.kind = "outer with inner"
end
var.i = inner
var.f = outer
var.r = (inner.references and inner.references.realpage) or (inner.pagedata and inner.pagedata.realpage) or 1
if trace_identifying then
report_identify_outer(set,var,i,"2e")
end
elseif special then
local s = specials[special]
if s then
if operation then
if arguments then
-- outer::special(operation{argument,argument})
var.kind = "outer with special and operation and arguments"
else
-- outer::special(operation)
var.kind = "outer with special and operation"
end
else
-- outer::special()
var.kind = "outer with special"
end
var.f = outer
else
var.error = "unknown outer with special"
end
if trace_identifying then
report_identify_outer(set,var,i,"2f")
end
else
-- outer::
var.kind = "outer"
var.f = outer
if trace_identifying then
report_identify_outer(set,var,i,"2g")
end
end
return var
end
-- todo: avoid copy
local function identify_inner_or_outer(set,var,i)
-- here we fall back on product data
local inner = var.inner
if inner and inner ~= "" then
-- first we look up in collected and derived using the current prefix
local prefix = set.prefix
local v = identify_inner(set,var,set.prefix,collected,derived)
if v then
if trace_identifying then
report_identify_outer(set,v,i,"4a")
end
return v
end
-- nest we look at each component (but we can omit the already consulted one
local jobstructure = job.structure
local components = jobstructure and jobstructure.components
if components then
for c=1,#components do
local component = components[c]
if component ~= prefix then
local v = identify_inner(set,var,component,collected,derived)
if v then
if trace_identifying then
report_identify_outer(set,var,i,"4b")
end
return v
end
end
end
end
-- as a last resort we will consult the global lists
local v = unprefixed_inner(set,var,"",collected,derived,tobesaved)
if v then
if trace_identifying then
report_identify_outer(set,v,i,"4c")
end
return v
end
-- not it gets bad ... we need to look in external files ... keep in mind that
-- we can best use explicit references for this ... we might issue a warning
local componentreferences = productdata.componentreferences
local productreferences = productdata.productreferences
local components = productdata.components
if components and componentreferences then
for c=1,#components do
local component = components[c]
local data = componentreferences[component]
if data then
local d = data[""]
local vi = d and d[inner]
if vi then
var.outer = component
var.i = vi
var.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,var,i,"4d")
end
return var
end
end
end
end
local component, inner = lpegmatch(componentsplitter,inner)
if component then
local data = componentreferences and componentreferences[component]
if data then
local d = data[""]
local vi = d and d[inner]
if vi then
var.inner = inner
var.outer = component
var.i = vi
var.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,var,i,"4e")
end
return var
end
end
local data = productreferences and productreferences[component]
if data then
local vi = data[inner]
if vi then
var.inner = inner
var.outer = component
var.i = vi
var.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,var,i,"4f")
end
return var
end
end
end
var.error = "unknown inner"
else
var.error = "no inner"
end
if trace_identifying then
report_identify_outer(set,var,i,"4g")
end
return var
end
local function identify_inner_component(set,var,i)
-- we're in a product (maybe ignore when same as component)
local component = var.component
local v = identify_inner(set,var,component,collected,derived)
if not v then
var.error = "unknown inner in component"
end
if trace_identifying then
report_identify_outer(set,var,i,"5a")
end
return var
end
local function identify_outer_component(set,var,i)
local component = var.component
local inner = var.inner
local data = productdata.componentreferences[component]
if data then
local d = data[""]
local vi = d and d[inner]
if vi then
var.inner = inner
var.outer = component
var.i = vi
var.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,var,i,"6a")
end
return var
end
end
local data = productdata.productreferences[component]
if data then
local vi = data[inner]
if vi then
var.inner = inner
var.outer = component
var.i = vi
var.kind = "outer with inner"
set.external = true
if trace_identifying then
report_identify_outer(set,var,i,"6b")
end
return var
end
end
var.error = "unknown component"
if trace_identifying then
report_identify_outer(set,var,i,"6c")
end
return var
end
local nofidentified = 0
local function identify(prefix,reference)
if not reference then
prefix = ""
reference = prefix
end
local set = resolve(prefix,reference)
local bug = false
texsetcount("referencehastexstate",set.has_tex and 1 or 0)
nofidentified = nofidentified + 1
set.n = nofidentified
for i=1,#set do
local var = set[i]
local spe = var.special
local fnc = functions[spe]
if fnc then
var = fnc(var) or { error = "invalid special function" }
elseif spe then
var = identify_special(set,var,i)
elseif var.outer then
var = identify_outer(set,var,i)
elseif var.arguments then
var = identify_arguments(set,var,i)
elseif not var.component then
var = identify_inner_or_outer(set,var,i)
elseif productcomponent() then
var = identify_inner_component(set,var,i)
else
var = identify_outer_component(set,var,i)
end
set[i] = var
bug = bug or var.error
end
references.currentset = mark(set) -- mark, else in api doc
if trace_analyzing then
report_references(table.serialize(set,reference))
end
return set, bug
end
references.identify = identify
local unknowns, nofunknowns, f_valid = { }, 0, formatters["[%s][%s]"]
function references.valid(prefix,reference,specification)
local set, bug = identify(prefix,reference)
local unknown = bug or #set == 0
if unknown then
currentreference = nil -- will go away
local str = f_valid(prefix,reference)
local u = unknowns[str]
if not u then
interfaces.showmessage("references",1,str) -- 1 = unknown, 4 = illegal
unknowns[str] = 1
nofunknowns = nofunknowns + 1
else
unknowns[str] = u + 1
end
else
set.highlight = specification.highlight
set.newwindow = specification.newwindow
set.layer = specification.layer
currentreference = set[1]
end
-- we can do the expansion here which saves a call
return not unknown
end
implement {
name = "doifelsereference",
actions = { references.valid, commands.doifelse },
arguments = {
"string",
"string",
{
{ "highlight", "boolean" },
{ "newwindow", "boolean" },
{ "layer" },
}
}
}
function references.reportproblems() -- might become local
if nofunknowns > 0 then
statistics.register("cross referencing", function()
return format("%s identified, %s unknown",nofidentified,nofunknowns)
end)
logspushtarget("logfile")
logsnewline()
report_references("start problematic references")
logsnewline()
for k, v in table.sortedpairs(unknowns) do
report_unknown("%4i: %s",v,k)
end
logsnewline()
report_references("stop problematic references")
logsnewline()
logspoptarget()
end
end
luatex.registerstopactions(references.reportproblems)
-- The auto method will try to avoid named internals in a clever way which
-- can make files smaller without sacrificing external references. Some of
-- the housekeeping happens the backend side.
local innermethod = v_auto -- only page|auto now
local defaultinnermethod = defaultinnermethod
references.innermethod = innermethod -- don't mess with this one directly
function references.setinnermethod(m)
if toboolean(m) or m == v_page or m == v_yes then
innermethod = v_page
elseif m == v_name then
innermethod = v_name
else
innermethod = v_auto
end
references.innermethod = innermethod
function references.setinnermethod()
report_references("inner method is already set and frozen to %a",innermethod)
end
end
implement {
name = "setinnerreferencemethod",
actions = references.setinnermethod,
arguments = "string",
-- onlyonce = true
}
function references.getinnermethod()
return innermethod or defaultinnermethod
end
directives.register("references.linkmethod", function(v) -- page auto
references.setinnermethod(v)
end)
-- we can call setinternalreference with an already known internal or with
-- a reference/prefix specification
local destinationattributes = { }
local function setinternalreference(specification)
local internal = specification.internal
local destination = unsetvalue
if innermethod == v_auto or innermethod == v_name then
local t, tn = { }, 0 -- maybe add to current (now only used for tracing)
local reference = specification.reference
local view = specification.view
if reference then
local prefix = specification.prefix
if prefix and prefix ~= "" then
prefix = prefix .. ":" -- watch out, : here
local function action(ref)
tn = tn + 1
t[tn] = prefix .. ref
end
process_settings(reference,action)
else
local function action(ref)
tn = tn + 1
t[tn] = ref
end
process_settings(reference,action)
end
end
-- ugly .. later we decide to ignore it when we have a real one
-- but for testing we might want to see them all
if internal then
if innermethod ~= v_name then -- so page and auto
-- we don't want too many #1 #2 #3 etc
tn = tn + 1
t[tn] = internal -- when number it's internal
end
if not view then
local i = references.internals[internal]
if i then
view = i.references.view
end
end
end
destination = references.mark(t,nil,nil,view) -- returns an attribute
end
if internal then -- new
destinationattributes[internal] = destination
end
texsetcount("lastdestinationattribute",destination)
return destination
end
local function getinternalreference(internal)
return destinationattributes[internal] or 0
end
references.setinternalreference = setinternalreference
references.getinternalreference = getinternalreference
implement {
name = "setinternalreference",
actions = setinternalreference,
arguments = {
{
{ "prefix" },
{ "reference" },
{ "internal", "integer" },
{ "view" }
}
}
}
-- implement {
-- name = "getinternalreference",
-- actions = { getinternalreference, context },
-- arguments = "integer",
-- }
function references.setandgetattribute(data) -- maybe do internal automatically here
local attr = unsetvalue
local mdat = data.metadata
local rdat = data.references
if mdat and rdat then
if not rdat.section then
rdat.section = structures.sections.currentid()
end
local ndat = data.numberdata
if ndat then
local numbers = ndat.numbers
if type(numbers) == "string" then
ndat.numbers = counters.compact(numbers,nil,true)
end
data.numberdata = helpers.simplify(ndat)
end
local pdat = data.prefixdata
if pdat then
data.prefixdata = helpers.simplify(pdat)
end
local udat = data.userdata
if type(udat) == "string" then
data.userdata = helpers.touserdata(udat)
end
if not rdat.block then
rdat.block = structures.sections.currentblock()
end
local done = references.set(data) -- we had kind i.e .item -> full
if done then
attr = setinternalreference {
prefix = prefix,
reference = rdat.reference,
internal = rdat.internal,
view = rdat.view
} or unsetvalue
end
end
texsetcount("lastdestinationattribute",attr)
return attr
end
implement {
name = "setdestinationattribute",
actions = references.setandgetattribute,
arguments = {
{
{
"references", {
{ "internal", "integer" },
{ "block" },
{ "view" },
{ "prefix" },
{ "reference" },
},
},
{
"metadata", {
{ "kind" },
{ "xmlroot" },
{ "catcodes", "integer" },
},
},
{
"prefixdata", { "*" }
},
{
"numberdata", { "*" }
},
{
"entries", { "*" }
},
{
"userdata"
}
}
}
}
function references.getinternallistreference(n) -- n points into list (todo: registers)
local l = lists.collected[n]
local i = l and l.references.internal
return i and destinationattributes[i] or 0
end
function references.getinternalcachedlistreference(n) -- n points into list (todo: registers)
local l = lists.cached[n]
local i = l and l.references.internal
return i and destinationattributes[i] or 0
end
implement {
name = "getinternallistreference",
actions = { references.getinternallistreference, context },
arguments = "integer"
}
implement {
name = "getinternalcachedlistreference",
actions = { references.getinternalcachedlistreference, context },
arguments = "integer"
}
--
function references.getcurrentmetadata(tag)
local data = currentreference and currentreference.i
return data and data.metadata and data.metadata[tag]
end
implement {
name = "getcurrentreferencemetadata",
actions = { references.getcurrentmetadata, context },
arguments = "string",
}
local function currentmetadata(tag)
local data = currentreference and currentreference.i
return data and data.metadata and data.metadata[tag]
end
references.currentmetadata = currentmetadata
local function getcurrentprefixspec(default)
local data = currentreference and currentreference.i
local metadata = data and data.metadata
return
metadata and metadata.kind or "?",
metadata and metadata.name or "?",
default or "?"
end
references.getcurrentprefixspec = getcurrentprefixspec
-- implement {
-- name = "getcurrentprefixspec",
-- actions = { getcurrentprefixspec, context }, -- returns 3 arguments
-- arguments = "string",
-- }
implement {
name = "getcurrentprefixspec",
actions = function(tag)
context("{%s}{%s}{%s}",getcurrentprefixspec(tag))
end,
arguments = "string",
}
local genericfilters = { }
local userfilters = { }
local textfilters = { }
local fullfilters = { }
local sectionfilters = { }
filters.generic = genericfilters
filters.user = userfilters
filters.text = textfilters
filters.full = fullfilters
filters.section = sectionfilters
local function filterreference(name,prefixspec,numberspec) -- number page title ...
local data = currentreference and currentreference.i -- maybe we should take realpage from here
if data then
if name == "realpage" then
local cs = references.analyze() -- normally already analyzed but also sets state
context(tonumber(cs.realpage) or 0)
else -- assumes data is table
local kind = type(data) == "table" and data.metadata and data.metadata.kind
if kind then
local filter = filters[kind] or genericfilters
filter = filter and (filter[name] or filter.unknown or genericfilters[name] or genericfilters.unknown)
if filter then
if trace_referencing then
report_references("name %a, kind %a, using dedicated filter",name,kind)
end
filter(data,name,prefixspec,numberspec)
elseif trace_referencing then
report_references("name %a, kind %a, using generic filter",name,kind)
end
elseif trace_referencing then
report_references("name %a, unknown kind",name)
end
end
elseif name == "realpage" then
context(0)
elseif trace_referencing then
report_references("name %a, no reference",name)
end
end
local function filterreferencedefault()
return filterreference("default",getcurrentprefixspec("default"))
end
references.filter = filterreference
references.filterdefault = filterreferencedefault
implement {
name = "filterreference",
actions = filterreference,
arguments = "string",
}
implement {
name = "filterdefaultreference",
actions = filterreference,
arguments = {
"string", -- 'default'
{ { "*" } }, -- prefixspec
{ { "*" } }, -- numberspec
}
}
function genericfilters.title(data)
if data then
local titledata = data.titledata or data.useddata
if titledata then
helpers.title(titledata.title or "?",data.metadata)
end
end
end
function genericfilters.text(data)
if data then
local entries = data.entries or data.useddata
if entries then
helpers.title(entries.text or "?",data.metadata)
end
end
end
function genericfilters.number(data,what,prefixspec,numberspec)
if data then
numberdata = lists.reordered(data) -- data.numberdata
if numberdata then
helpers.prefix(data,prefixspec)
sections.typesetnumber(numberdata,"number",numberspec,numberdata)
else
local useddata = data.useddata
if useddata and useddata.number then
context(useddata.number)
end
end
end
end
genericfilters.default = genericfilters.text
function genericfilters.page(data,prefixspec,pagespec)
local pagedata = data.pagedata
if pagedata then
local number, conversion = pagedata.number, pagedata.conversion
if not number then
-- error
elseif conversion then
ctx_convertnumber(conversion,number)
else
context(number)
end
else
helpers.prefixpage(data,prefixspec,pagespec)
end
end
function userfilters.unknown(data,name)
if data then
local userdata = data.userdata
local userkind = userdata and userdata.kind
if userkind then
local filter = filters[userkind] or genericfilters
filter = filter and (filter[name] or filter.unknown)
if filter then
filter(data,name)
return
end
end
local namedata = userdata and userdata[name]
if namedata then
context(namedata)
end
end
end
function textfilters.title(data)
helpers.title(data.entries.text or "?",data.metadata)
end
-- no longer considered useful:
--
-- function filters.text.number(data)
-- helpers.title(data.entries.text or "?",data.metadata)
-- end
function textfilters.page(data,prefixspec,pagespec)
helpers.prefixpage(data,prefixspec,pagespec)
end
fullfilters.title = textfilters.title
fullfilters.page = textfilters.page
function sectionfilters.number(data,what,prefixspec)
if data then
local numberdata = data.numberdata
if not numberdata then
local useddata = data.useddata
if useddata and useddata.number then
context(useddata.number)
end
elseif numberdata.hidenumber then
local references = data.references
if trace_empty then
report_empty("reference %a has a hidden number",references.reference)
ctx_emptyreference() -- maybe an option
end
else
sections.typesetnumber(numberdata,"number",prefixspec,numberdata)
end
end
end
sectionfilters.title = genericfilters.title
sectionfilters.page = genericfilters.page
sectionfilters.default = sectionfilters.number
-- filters.note = { default = genericfilters.number }
-- filters.formula = { default = genericfilters.number }
-- filters.float = { default = genericfilters.number }
-- filters.description = { default = genericfilters.number }
-- filters.item = { default = genericfilters.number }
setmetatableindex(filters, function(t,k) -- beware, test with rawget
local v = { default = genericfilters.number } -- not copy as it might be extended differently
t[k] = v
return v
end)
-- function references.sectiontitle(n)
-- helpers.sectiontitle(lists.collected[tonumber(n) or 0])
-- end
-- function references.sectionnumber(n)
-- helpers.sectionnumber(lists.collected[tonumber(n) or 0])
-- end
-- function references.sectionpage(n,prefixspec,pagespec)
-- helpers.prefixedpage(lists.collected[tonumber(n) or 0],prefixspec,pagespec)
-- end
-- analyze
references.testrunners = references.testrunners or { }
references.testspecials = references.testspecials or { }
local runners = references.testrunners
local specials = references.testspecials
-- We need to prevent ending up in the 'relative location' analyzer as it is
-- pretty slow (progressively). In the pagebody one can best check the reference
-- real page to determine if we need contrastlocation as that is more lightweight.
local function checkedpagestate(n,page,actions,position,spread)
local p = tonumber(page)
if not p then
return 0
end
if position and #actions > 0 then
local i = actions[1].i -- brrr
if i then
local a = i.references
if a then
local x = a.x
local y = a.y
if x and y then
local jp = jobpositions.collected[position]
if jp then
local px = jp.x
local py = jp.y
local pp = jp.p
if p == pp then
-- same page
if py > y then
return 5 -- above
elseif py < y then
return 4 -- below
elseif px > x then
return 4 -- below
elseif px < x then
return 5 -- above
else
return 1 -- same
end
elseif spread then
if pp % 2 == 0 then
-- left page
if pp > p then
return 2 -- before
elseif pp + 1 == p then
-- return 4 -- below (on right page)
return 5 -- above (on left page)
else
return 3 -- after
end
else
-- right page
if pp < p then
return 3 -- after
elseif pp - 1 == p then
-- return 5 -- above (on left page)
return 4 -- below (on right page)
else
return 2 -- before
end
end
elseif pp > p then
return 2 -- before
else
return 3 -- after
end
end
end
end
end
end
local r = referredpage(n) -- sort of obsolete
if p > r then
return 3 -- after
elseif p < r then
return 2 -- before
else
return 1 -- same
end
end
local function setreferencerealpage(actions)
if not actions then
actions = references.currentset
end
if type(actions) == "table" then
local realpage = actions.realpage
if realpage then
return realpage
end
local nofactions = #actions
if nofactions > 0 then
for i=1,nofactions do
local a = actions[i]
local what = runners[a.kind]
if what then
what = what(a,actions) -- needs documentation
end
end
realpage = actions.realpage
if realpage then
return realpage
end
end
actions.realpage = 0
end
return 0
end
references.setreferencerealpage = setreferencerealpage
-- we store some analysis data alongside the indexed array
-- at this moment only the real reference page is analyzed
-- normally such an analysis happens in the backend code
function references.analyze(actions,position,spread)
if not actions then
actions = references.currentset
end
if not actions then
actions = { realpage = 0, pagestate = 0 }
elseif actions.pagestate then
-- already done
else
local realpage = actions.realpage or setreferencerealpage(actions)
if realpage == 0 then
actions.pagestate = 0
elseif actions.external then
actions.pagestate = 0
else
actions.pagestate = checkedpagestate(actions.n,realpage,actions,position,spread)
end
end
return actions
end
local function referencepagestate(position,detail,spread)
local actions = references.currentset
if not actions then
return 0
else
if not actions.pagestate then
references.analyze(actions,position,spread) -- delayed unless explicitly asked for
end
local pagestate = actions.pagestate
if detail then
return pagestate
elseif pagestate == 4 then
return 2 -- compatible
elseif pagestate == 5 then
return 3 -- compatible
else
return pagestate
end
end
end
implement {
name = "referencepagestate",
actions = { referencepagestate, context },
arguments = "string"
}
implement {
name = "referencepagedetail",
actions = { referencepagestate, context },
arguments = { "string", "boolean", "boolean" }
}
local function referencerealpage()
local actions = references.currentset
return not actions and 0 or actions.realpage or setreferencerealpage(actions)
end
implement {
name = "referencerealpage",
actions = { referencerealpage, context },
arguments = "string"
}
local plist, nofrealpages
local function realpageofpage(p) -- the last one counts !
if not plist then
local pages = structures.pages.collected
nofrealpages = #pages
plist = { }
for rp=1,nofrealpages do
local page = pages[rp]
if page then
plist[page.number] = rp
end
end
references.nofrealpages = nofrealpages
end
return plist[p]
end
references.realpageofpage = realpageofpage
function references.checkedrealpage(r)
if not plist then
realpageofpage(r) -- just initialize
end
if not r then
return texgetcount("realpageno")
elseif r < 1 then
return 1
elseif r > nofrealpages then
return nofrealpages
else
return r
end
end
-- use local ?
local pages = allocate {
[variables.firstpage] = function() return counters.record("realpage")["first"] end,
[variables.previouspage] = function() return counters.record("realpage")["previous"] end,
[variables.nextpage] = function() return counters.record("realpage")["next"] end,
[variables.lastpage] = function() return counters.record("realpage")["last"] end,
[variables.firstsubpage] = function() return counters.record("subpage" )["first"] end,
[variables.previoussubpage] = function() return counters.record("subpage" )["previous"] end,
[variables.nextsubpage] = function() return counters.record("subpage" )["next"] end,
[variables.lastsubpage] = function() return counters.record("subpage" )["last"] end,
[variables.forward] = function() return counters.record("realpage")["forward"] end,
[variables.backward] = function() return counters.record("realpage")["backward"] end,
}
references.pages = pages
-- maybe some day i will merge this in the backend code with a testmode (so each
-- runner then implements a branch)
runners["inner"] = function(var,actions)
local r = var.r
if r then
actions.realpage = r
end
end
runners["special"] = function(var,actions)
local handler = specials[var.special]
return handler and handler(var,actions)
end
runners["special operation"] = runners["special"]
runners["special operation with arguments"] = runners["special"]
function specials.internal(var,actions)
local v = internals[tonumber(var.operation)]
local r = v and v.references
if r then
local p = r.realpage
if p then
-- setmetatableindex(actions,r)
actions.realpage = p
actions.view = r.view
end
end
end
specials.i = specials.internal
function specials.page(var,actions)
local o = var.operation
local p = pages[o]
if type(p) == "function" then
p = p()
else
p = tonumber(realpageofpage(tonumber(o)))
end
if p then
var.r = p
actions.realpage = actions.realpage or p -- first wins
end
end
function specials.realpage(var,actions)
local p = tonumber(var.operation)
if p then
var.r = p
actions.realpage = actions.realpage or p -- first wins
end
end
function specials.userpage(var,actions)
local p = tonumber(realpageofpage(var.operation))
if p then
var.r = p
actions.realpage = actions.realpage or p -- first wins
end
end
function specials.deltapage(var,actions)
local p = tonumber(var.operation)
if p then
p = references.checkedrealpage(p + texgetcount("realpageno"))
var.r = p
actions.realpage = actions.realpage or p -- first wins
end
end
function specials.section(var,actions)
local sectionname = var.arguments
local destination = var.operation
local internal = structures.sections.internalreference(sectionname,destination)
if internal then
var.special = "internal"
var.operation = internal
var.arguments = nil
specials.internal(var,actions)
end
end
-- experimental:
local p_splitter = lpeg.splitat(":")
local p_lower = lpeg.patterns.utf8lower
-- We can cache lowercased titles which saves a lot of time, but then
-- we can better have a global cache with weak keys.
-- local lowercache = table.setmetatableindex(function(t,k)
-- local v = lpegmatch(p_lower,k)
-- t[k] = v
-- return v
-- end)
local lowercache = false
local function locate(list,askedkind,askedname,pattern)
local kinds = lists.kinds
local names = lists.names
if askedkind and not kinds[askedkind] then
return false
end
if askedname and not names[askedname] then
return false
end
for i=1,#list do
local entry = list[i]
local metadata = entry.metadata
if metadata then
local found = false
if askedname then
local name = metadata.name
if name then
found = name == askedname
end
elseif askedkind then
local kind = metadata.kind
if kind then
found = kind == askedkind
end
end
if found then
local titledata = entry.titledata
if titledata then
local title = titledata.title
if title then
if lowercache then
found = lpegmatch(pattern,lowercache[title])
else
found = lpegmatch(pattern,lpegmatch(p_lower,title))
end
if found then
return {
inner = pattern,
kind = "inner",
reference = pattern,
i = entry,
p = "",
r = entry.references.realpage,
}
end
end
end
end
end
end
end
function functions.match(var,actions)
if not var.outer then
local operation = var.operation
if operation and operation ~= "" then
local operation = lpegmatch(p_lower,operation)
local list = lists.collected
local names = false
local kinds = false
local where, what = lpegmatch(p_splitter,operation)
if where and what then
local pattern = lpeg.finder(what)
return
locate(list,false,where,pattern)
or locate(list,where,false,pattern)
or { error = "no match" }
else
local pattern = lpeg.finder(operation)
-- todo: don't look at section and float in last pass
return
locate(list,"section",false,pattern)
or locate(list,"float",false,pattern)
or locate(list,false,false,pattern)
or { error = "no match" }
end
end
end
end
-- needs a better split ^^^
-- done differently now:
function references.export(usedname) end
function references.import(usedname) end
function references.load (usedname) end
implement { name = "exportreferences", actions =references.export }
-- better done here .... we don't insert/remove, just use a pointer
local prefixstack = { "" }
local prefixlevel = 1
local function pushreferenceprefix(prefix)
prefixlevel = prefixlevel + 1
prefixstack[prefixlevel] = prefix
return prefix
end
local function popreferenceprefix()
prefixlevel = prefixlevel - 1
if prefixlevel > 0 then
return prefixstack[prefixlevel]
else
report_references("unable to pop referenceprefix")
return ""
end
end
implement {
name = "pushreferenceprefix",
actions = { pushreferenceprefix, context }, -- we can use setmacro
arguments = "string",
}
implement {
name = "popreferenceprefix",
actions = { popreferenceprefix, context }, -- we can use setmacro
}
|