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
|
\input texinfo @c -*-texinfo-*-
@c %**start of header (This is for running Texinfo on a region.)
@setfilename api.info
@settitle Writing Extensions For Gawk
@c %**end of header (This is for running Texinfo on a region.)
@dircategory Text creation and manipulation
@direntry
* Gawk: (gawk). A text scanning and processing language.
@end direntry
@dircategory Individual utilities
@direntry
* awk: (gawk)Invoking gawk. Text scanning and processing.
@end direntry
@set xref-automatic-section-title
@c The following information should be updated here only!
@c This sets the edition of the document, the version of gawk it
@c applies to and all the info about who's publishing this edition
@c These apply across the board.
@set UPDATE-MONTH October, 2012
@set VERSION 4.1
@set PATCHLEVEL 0
@set FSF
@set TITLE Writing Extensions for Gawk
@set SUBTITLE A Temporary Manual
@set EDITION 1
@iftex
@set DOCUMENT book
@set CHAPTER chapter
@set APPENDIX appendix
@set SECTION section
@set SUBSECTION subsection
@set DARKCORNER @inmargin{@image{lflashlight,1cm}, @image{rflashlight,1cm}}
@set COMMONEXT (c.e.)
@end iftex
@ifinfo
@set DOCUMENT Info file
@set CHAPTER major node
@set APPENDIX major node
@set SECTION minor noderese
`v
@set SUBSECTION node
@set DARKCORNER (d.c.)
@set COMMONEXT (c.e.)
@end ifinfo
@ifhtml
@set DOCUMENT Web page
@set CHAPTER chapter
@set APPENDIX appendix
@set SECTION section
@set SUBSECTION subsection
@set DARKCORNER (d.c.)
@set COMMONEXT (c.e.)
@end ifhtml
@ifdocbook
@set DOCUMENT book
@set CHAPTER chapter
@set APPENDIX appendix
@set SECTION section
@set SUBSECTION subsection
@set DARKCORNER (d.c.)
@set COMMONEXT (c.e.)
@end ifdocbook
@ifplaintext
@set DOCUMENT book
@set CHAPTER chapterrese
`v
@set APPENDIX appendix
@set SECTION section
@set SUBSECTION subsection
@set DARKCORNER (d.c.)
@set COMMONEXT (c.e.)
@end ifplaintext
@c some special symbols
@iftex
@set LEQ @math{@leq}
@set PI @math{@pi}
@end iftex
@ifnottex
@set LEQ <=
@set PI @i{pi}
@end ifnottex
@ifnottex
@macro ii{text}
@i{\text\}
@end macro
@end ifnottex
@c For HTML, spell out email addresses, to avoid problems with
@c address harvesters for spammers.
@ifhtml
@macro EMAIL{real,spelled}
``\spelled\''
@end macro
@end ifhtml
@ifnothtml
@macro EMAIL{real,spelled}
@email{\real\}
@end macro
@end ifnothtml
@set FN file name
@set FFN File Name
@set DF data file
@set DDF Data File
@set PVERSION version
@set CTL Ctrl
@ignore
Some comments on the layout for TeX.
1. Use at least texinfo.tex 2000-09-06.09
2. I have done A LOT of work to make this look good. There are `@page' commands
and use of `@group ... @end group' in a number of places. If you muck
with anything, it's your responsibility not to break the layout.
@end ignore
@c merge the function and variable indexes into the concept index
@ifinfo
@synindex fn cp
@synindex vr cp
@end ifinfo
@iftex
@syncodeindex fn cp
@syncodeindex vr cp
@end iftex
@ifxml
@syncodeindex fn cp
@syncodeindex vr cp
@end ifxml
@c If "finalout" is commented out, the printed output will show
@c black boxes that mark lines that are too long. Thus, it is
@c unwise to comment it out when running a master in case there are
@c overfulls which are deemed okay.
@iftex
@finalout
@end iftex
@copying
Copyright @copyright{} 2012
Free Software Foundation, Inc.
@sp 2
This is Edition @value{EDITION} of @cite{@value{TITLE}: @value{SUBTITLE}},
for the @value{VERSION}.@value{PATCHLEVEL} (or later) version of the GNU
implementation of AWK.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``GNU General Public License'', the Front-Cover
texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below). A copy of the license is included in the section entitled
``GNU Free Documentation License''.
@enumerate a
@item
``A GNU Manual''
@item
``You have the freedom to
copy and modify this GNU manual. Buying copies from the FSF
supports it in developing GNU and promoting software freedom.''
@end enumerate
@end copying
@c Comment out the "smallbook" for technical review. Saves
@c considerable paper. Remember to turn it back on *before*
@c starting the page-breaking work.
@c 4/2002: Karl Berry recommends commenting out this and the
@c `@setchapternewpage odd', and letting users use `texi2dvi -t'
@c if they want to waste paper.
@c @smallbook
@c Uncomment this for the release. Leaving it off saves paper
@c during editing and review.
@setchapternewpage odd
@titlepage
@title @value{TITLE}
@subtitle @value{SUBTITLE}
@subtitle Edition @value{EDITION}
@subtitle @value{UPDATE-MONTH}
@author Arnold D. Robbins
@c Include the Distribution inside the titlepage environment so
@c that headings are turned off. Headings on and off do not work.
@page
@vskip 0pt plus 1filll
``To boldly go where no man has gone before'' is a
Registered Trademark of Paramount Pictures Corporation. @*
@c sorry, i couldn't resist
@sp 3
Published by:
@sp 1
Free Software Foundation @*
51 Franklin Street, Fifth Floor @*
Boston, MA 02110-1301 USA @*
Phone: +1-617-542-5942 @*
Fax: +1-617-542-2652 @*
Email: @email{gnu@@gnu.org} @*
URL: @uref{http://www.gnu.org/} @*
@c This one is correct for gawk 3.1.0 from the FSF
ISBN 1-882114-28-0 @*
@sp 2
@insertcopying
@end titlepage
@node Extension API
@chapter Writing Extensions for @command{gawk}
It is possible to add new built-in
functions to @command{gawk} using dynamically loaded libraries. This
facility is available on systems (such as GNU/Linux) that support
the C @code{dlopen()} and @code{dlsym()} functions.
This @value{CHAPTER} describes how to do so using
code written in C or C++. If you don't know anything about C
programming, you can safely skip this @value{CHAPTER}, although you
may wish to review the documentation on the extensions that come
with @command{gawk} (@pxref{Extension Samples}).
@quotation NOTE
When @option{--sandbox} is specified, extensions are disabled
(@pxref{Options}.
@end quotation
@menu
* Plugin License:: A note about licensing.
@end menu
@node Plugin License
@section Extension Licensing
Every dynamic extension should define the global symbol
@code{plugin_is_GPL_compatible} to assert that it has been licensed under
a GPL-compatible license. If this symbol does not exist, @command{gawk}
will emit a fatal error and exit.
The declared type of the symbol should be @code{int}. It does not need
to be in any allocated section, though. The code merely asserts that
the symbol exists in the global scope. Something like this is enough:
@example
int plugin_is_GPL_compatible;
@end example
@node Extension Intro
@section Introduction
An @dfn{extension} (sometimes called a @dfn{plug-in}) is a piece of
external compiled code that @command{gawk} can load at runtime to
provide additional functionality, over and above the built-in capabilities
described in the rest of this @value{DOCUMENT}.
Extensions are useful because they allow you (of course) to extend
@command{gawk}'s functionality. For example, they can provide access to
system calls (such as @code{chdir()} to change directory) and to other
C library routines that could be of use. As with most software,
``the sky is the limit;'' if you can imagine something that you might
want to do and can write in C or C++, you can write an extension to do it!
Extensions are written in C or C++, using the @dfn{Application Programming
Interface} (API) defined for this purpose by the @command{gawk}
developers. The rest of this @value{CHAPTER} explains the design
decisions behind the API, the facilities it provides and how to use
them, and presents a small sample extension. In addition, it documents
the sample extensions included in the @command{gawk} distribution.
@node Extension Design
@section Extension API Design
The first version of extensions for @command{gawk} was developed in
the mid-1990s and released with @command{gawk} 3.1 in the late 1990s.
The basic mechanisms and design remained unchanged for close to 15 years,
until 2012.
The old extension mechanism used data types and functions from
@command{gawk} itself, with a ``clever hack'' to install extension
functions.
@command{gawk} included some sample extensions, of which a few were
really useful. However, it was clear from the outset that the extension
mechanism was bolted onto the side and was not really thought out.
@menu
@end menu
@node Old Extension Problems
@subsection Problems With The Old Mechanism
The old extension mechanism had several problems:
@itemize @bullet
@item
It depended heavily upon @command{gawk} internals. Any time the
@code{NODE} structure@footnote{A critical central data structure
inside @command{gawk}.} changed, an extension would have to be
recompiled. Furthermore, to really write extensions required understanding
something about @command{gawk}'s internal functions. There was some
documentation in this @value{DOCUMENT}, but it was quite minimal.
@item
Being able to call into @command{gawk} from an extension required linker
facilities that are common on Unix-derived systems but that did
not work on Windows systems; users wanting extensions on Windows
had to statically link them into @command{gawk}, even though Windows supports
dynamic loading of shared objects.
@item
The API would change occasionally as @command{gawk} changed; no compatibility
between versions was ever offered or planned for.
@end itemize
Despite the drawbacks, the @command{xgawk} project developers forked
@command{gawk} and developed several significant extensions. They also
enhanced @command{gawk}'s facilities relating to file inclusion and
shared object access.
A new API was desired for a long time, but only in 2012 did the
@command{gawk} maintainer and the @command{xgawk} developers finally
start working on it together. More information about the @command{xgawk}
project is provided in @ref{gawkextlib}.
@node Extension New Mechansim Goals
@subsection Goals For A New Mechansim
Some goals for the new API were:
@itemize @bullet
@item
The API should be independent of @command{gawk} internals. Changes in
@command{gawk} internals should not be visible to the writer of an
extension function.
@item
The API should provide @emph{binary} compatibility across @command{gawk}
releases as long as the API itself does not change.
@item
The API should enable extensions written in C to have roughly the
same ``appearance'' to @command{awk}-level code as @command{awk}
functions do. This means that extensions should have:
@itemize @minus
@item
The ability to access function parameters.
@item
The ability to turn an undefined parameter into an array (call by reference).
@item
The ability to create, access and update global variables.
@item
Easy access to all the elements of an array at once (``array flattening'')
in order to loop over all the element in an easy fashion for C code.
@end itemize
@item
The ability to create arrays (including @command{gawk}'s true
multi-dimensional arrays).
@end itemize
Some additional important goals were:
@itemize @bullet
@item
The API should use only features in ISO C 90, so that extensions
can be written using the widest range of C and C++ compilers. The header
should include the appropriate @samp{#ifdef __cplusplus} and @samp{extern "C"}
magic so that a C++ compiler could be used. (If using the C++, the runtime
system has to be smart enough to call any constructors and destructors,
as @command{gawk} is a C program. As of this writing, this has not been
tested.)
@item
The API mechanism should not require access to @command{gawk}'s
symbols@footnote{The @dfn{symbols} are the variables and functions
defined inside @command{gawk}. Access to these symbols by code
external to @command{gawk} loaded dynamically at runtime is
problematic on Windows.} by the compile-time or dynamic linker,
in order to enable creation of extensions that will also work on Windows.
@end itemize
During development, it became clear that there were other features
that should be available to extensions, which were also subsequently
provided:
@itemize @bullet
@item
Extensions should have the ability to hook into @command{gawk}'s
I/O redirection mechanism. In particular, the @command{xgawk}
developers provided a so-called ``open hook'' to take over reading
records. During the development, this was generalized to allow
extensions to hook into input processing, output processing, and
two-way I/O.
@item
An extension should be able to provide a ``call back'' function
to perform clean up actions when @command{gawk} exits.
@item
An extension should be able to provide a version string so that
@command{gawk}'s @option{--version} option can provide information
about extensions as well.
@end itemize
@node Extension Other Design Decisions
@subsection Other Design Decisions
As an ``arbitrary'' design decision, extensions can read the values of
built-in variables and arrays (such as @code{ARGV} and @code{FS}), but cannot
change them, with the exception of @code{PROCINFO}.
The reason for this is to prevent an extension function from affecting
the flow of an @command{awk} program outside its control. While a real
@command{awk} function can do what it likes, that is at the discretion
of the programmer. An extension function should provide a service or
make a C API available for use within @command{awk}, and not mess with
@code{FS} or @code{ARGC} and @code{ARGV}.
In addition, it becomes easy to start down a slippery slope. How
much access to @command{gawk} facilities do extensions need?
Do they need @code{getline}? What about calling @code{gsub()} or
compiling regular expressions? What about calling into @command{awk}
functions? (@emph{That} would be messy.)
In order to avoid these issues, the @command{gawk} developers chose
to start with the simplest, most basic features that are still truly useful.
Another decision is that although @command{gawk} provides nice things like
MPFR, and arrays indexed internally by integers, these features are not
being brought out to the API in order to keep things simple and close to
traditional @command{awk} semantics. (In fact, arrays indexed internally
by integers are so transparent that they aren't even documented!)
With time, the API will undoubtedly evolve; the @command{gawk} developers
expect this to be driven by user needs. For now, the current API seems
to provide a minimal yet powerful set of features for extension creation.
@node Extension Mechanism Outline
@subsection At A High Level How It Works
The requirement to avoid access to @command{gawk}'s symbols is, at first
glance, a difficult one to meet.
One design, apparently used by Perl and Ruby and maybe others, would
be to make the mainline @command{gawk} code into a library, with the
@command{gawk} program a small C @code{main()} function linked against
the library.
This seemed like the tail wagging the dog, complicating build and
installation and making a simple copy of the @command{gawk} executable
from one system to another (or one place to another on the same
system!) into a chancy operation.
Pat Rankin suggested the solution that was adopted. Communication between
@command{gawk} and an extension is two-way. First, when an extension
is loaded, it is passed a pointer to a @code{struct} whose fields are
function pointers.
FIXME: Figure 1
The extension can call functions inside @command{gawk} through these
function pointers, at runtime, without needing (link-time) access
to @command{gawk}'s symbols. One of these function pointers is to a
function for ``registering'' new built-in functions.
FIXME: Figure 2
In the other direction, the extension registers its new functions
with @command{gawk} by passing function pointers to the functions that
provide the new feature (@code{do_chdir()}, for example). @command{gawk}
associates the function pointer with a name and can then call it, using a
defined calling convention. The @code{do_@var{xxx}()} function, in turn,
then uses the function pointers in the API @code{struct} to do its work,
such as updating variables or arrays, printing messages, setting @code{ERRNO},
and so on.
FIXME: Figure 3
Convenience macros in the @file{gawkapi.h} header file make calling
through the function pointers look like regular function calls so that
extension code is quite readable and understandable.
Although all of this sounds medium complicated, the result is that
extension code is quite clean and straightforward. This can be seen in
the sample extensions @file{filefuncs.c} and also the @file{testext.c}
code for testing the APIs.
Some other bits and pieces:
@itemize @bullet
@item
The API provides access to @command{gawk}'s @code{do_@var{xxx}} values,
reflecting command line options, like @code{do_lint}, @code{do_profiling}
and so on (@pxref{Extension API Variables}).
These are informational: an extension cannot affect these
inside @command{gawk}. In addtion, attempting to assign to them
produces a compile-time error.
@item
The API also provides major and minor version numbers, so that an
extension can check if the @command{gawk} it is loaded with supports the
facilties it was compiled with. (Version mismatches ``shouldn't''
happen, but we all know how @emph{that} goes.)
@xref{Extension Versioning}, for details.
@item
An extension may register a version string with @command{gawk}; this
allows @command{gawk} to dump extension version information when
invoked with the @option{--version} option.
@end itemize
@node Extension Future Grouth
@subsection Room For Future Growth
The API provides room for future growth, in two ways.
An ``extension id'' is passed into the extension when its loaded. This
extension id is then passed back to @command{gawk} with each function
call. This allows @command{gawk} to identify the extension calling it,
should it need to know.
A ``name space'' is passed into @command{gawk} when an extension function
is registered. This provides for a future mechanism for grouping
extension functions and possibly avoiding name conflicts.
Of course, as of this writing, no decisions have been made with respect
to any of the above.
@node Extension API Description
@section API Description
This (rather large) @value{SECTION} describes the API in detail.
@menu
@end menu
@node Extension API Functions Introduction
@subsection Introduction
Access to facilities within @command{gawk} are made available
by calling through function pointers passed into your extension.
API function pointers are provided for the following kinds of operations:
@itemize @bullet
@item
Registrations functions. You may register
@itemize @bullet
@item
extension functions,
@item
input parsers,
@item
output wrappers,
@item
two-way processors,
@item
exit callbacks,
@item
and a version string.
@end itemize
All of these are discussed in detail, later in this @value{CHAPTER}.
@item
Printing fatal, warning, and lint warning messages.
@item
Updating @code{ERRNO}, or unsetting it.
@item
Accessing parameters, including converting an undefined paramater into
an array.
@item
Symbol table access: retreiving a global variable, creating one,
or changing one. This also includes the ability to create a scalar
variable that will be @emph{constant} within @command{awk} code.
@item
Creating and releasing cached values; this provides an
efficient way to use values for multiple variables and
can be a big performance win.
@item
Manipulating arrays:
@itemize @minus
@item
Retrieving, adding, deleting, and modifying elements
@item
Getting the count of elements in an array
@item
Creating a new array
@item
Clearing an array
@item
Flattening an array for easy C style looping over an array
@end itemize
@end itemize
Some points about using the API:
@itemize @bullet
@item
You must include @code{<sys/types.h>} and @code{<sys/stat.h>} before including
the @file{gawkapi.h} header file. In addition, you must include either
@code{<stddef.h>} or @code{<stdlib.h>} to get the definition of @code{size_t}.
Finally, if you wish to use the boilerplate @code{dl_load_func} macro, you will
need to include @code{<stdio.h>} as well.
@item
Although the API only uses ISO C 90 features, there is an exception; the
``constructor'' functions use the @code{inline} keyword. If your compiler
does not support this keyword, you should either place
@samp{-Dinline=''} on your command line, or use the autotools and include a
@file{config.h} file in your extensions.
@item
All pointers filled in by @command{gawk} are to memory
managed by @command{gawk} and should be treated by the extension as
read-only. Memory for @emph{all} strings passed into @command{gawk}
from the extension @emph{must} come from @code{malloc()} and is managed
by @command{gawk} from then on.
@item
The API defines several simple structs that map values as seen
from @command{awk}. A value can be a @code{double}, a string, or an
array (as in multidimensional arrays, or when creating a new array).
Strings maintain both pointer and length since embedded @code{NUL}
characters are allowed.
By intent, strings are maintained using the current multibyte encoding (as
defined by @env{LC_@var{xxx}} environment variables) and not using wide
characters. This matches how @command{gawk} stores strings internally
and also how characters are likely to be input and output from files.
@item
When retrieving a value (such as a parameter or that of a global variable
or array element), the extension requests a specific type (number, string,
scalars, value cookie, array, or ``undefined''). When the request is
``undefined,'' the returned value will have the real underlying type.
However, if the request and actual type don't match, the access function
returns ``false'' and fills in the type of the actual value that is there,
so that the extension can, e.g., print an error message
(``scalar passed where array expected'').
@c This is documented in the header file and needs some expanding upon.
@c The table there should be presented here
@end itemize
While you may call the API functions by using the function pointers
directly, the interface is not so pretty. To make extension code look
more like regular code, the @file{gawkapi.h} header file defines a number
of macros which you should use in your code. This @value{SECTION} presents
the macros as if they were functions.
@node General Data Types
@subsection General Purpose Data Types
@quotation
@i{I have a true love/hate relationship with unions.}@*
Arnold Robbins
@i{That's the thing about unions: the compiler will arrange things so they
can accommodate both love and hate.}@*
Chet Ramey
@end quotation
The extension API defines a number of simple types and structures for general
purpose use. Additional, more specialized, data structures, are introduced
in subsequent @value{SECTION}s, together with the functions that use them.
@table @code
@item typedef void *awk_ext_id_t;
A value of this type is received from @command{gawk} when an extension is loaded.
That value must then be passed back to @command{gawk} as the first parameter of
each API function.
@item #define awk_const @dots{}
This macro expands to @code{const} when compiling an extension,
and to nothing when compiling @command{gawk} itself. This enables making
certain fields in the API data structures unwritable from extension code,
while allowing @command{gawk} to use them as it needs to.
@item typedef int awk_bool_t;
A simple boolean type. As of this moment, the API does not define special
``true'' and ``false'' values, although perhaps it should.
@item typedef struct @{
@itemx @ @ @ @ char *str;@ @ @ @ @ @ /* data */
@itemx @ @ @ @ size_t len;@ @ @ @ @ /* length thereof, in chars */
@itemx @} awk_string_t;
This represents a mutable string. @command{gawk}
owns the memory pointed to if it supplied
the value. Otherwise, it takes ownership of the memory pointed to.
@strong{Such memory must come from @code{malloc()}!}
As mentioned earlier, strings are maintained using the current
multibyte encoding.
@item typedef enum @{
@itemx @ @ @ @ AWK_UNDEFINED,
@itemx @ @ @ @ AWK_NUMBER,
@itemx @ @ @ @ AWK_STRING,
@itemx @ @ @ @ AWK_ARRAY,
@itemx @ @ @ @ AWK_SCALAR,@ @ @ @ @ @ @ @ @ /* opaque access to a variable */
@itemx @ @ @ @ AWK_VALUE_COOKIE@ @ @ /* for updating a previously created value */
@itemx @} awk_valtype_t;
This @code{enum} indicates the type of a value.
It is used in the following @code{struct}.
@item typedef struct @{
@itemx @ @ @ @ awk_valtype_t val_type;
@itemx @ @ @ @ union @{
@itemx @ @ @ @ @ @ @ @ awk_string_t@ @ @ @ @ @ @ s;
@itemx @ @ @ @ @ @ @ @ double@ @ @ @ @ @ @ @ @ @ @ @ @ d;
@itemx @ @ @ @ @ @ @ @ awk_array_t@ @ @ @ @ @ @ @ a;
@itemx @ @ @ @ @ @ @ @ awk_scalar_t@ @ @ @ @ @ @ scl;
@itemx @ @ @ @ @ @ @ @ awk_value_cookie_t vc;
@itemx @ @ @ @ @} u;
@itemx @} awk_value_t;
An ``@command{awk} value.''
The @code{val_type} member indicates what kind of value the
@code{union} holds, and each member is of the appropriate type.
@item #define str_value@ @ @ @ @ @ u.s
@itemx #define num_value@ @ @ @ @ @ u.d
@itemx #define array_cookie@ @ @ u.a
@itemx #define scalar_cookie@ @ u.scl
@itemx #define value_cookie@ @ @ u.vc
These macros make accessing the fields of the @code{awk_value_t} more
readable.
@item typedef void *awk_scalar_t;
Scalars can be represented as an opaque type. These values are obtained from
@command{gawk} and then passed back into it. This is discussed below.
@item typedef void *awk_value_cookie_t;
A ``value cookie'' is an opaque type representing a cached value.
This is also discussed below.
@end table
Scalar values in @command{awk} are either numbers or strings. The
@code{awk_value_t} struct represents values. The @code{val_type} member
indicates what is in the @code{union}.
Representing numbers is easy---the API uses a C @code{double}. Strings
require more work. Since @command{gawk} allows embedded @code{NUL} bytes
in string values, a string must be represented as a pair containing a
data-pointer and length. This is the @code{awk_string_t} type.
Identifiers (i.e., the names of global variables) can be associated
with either scalar values or with arrays. In addition, @command{gawk}
provides true arrays of arrays, where any given array element can
itself be an array. Discussion of arrays is delayed until
FIXME: ref.
The various macros listed earlier make it easier to use the elements
of the @code{union} as if they were fields in a @code{struct}; this
is a common coding practice in C. Such code is easier to write and to
read, however it remains @emph{your} responsibility to make sure that
the @code{val_type} member correctly reflects the type of the value in
the @code{awk_value_t}.
Conceptually, the first three members of the @code{union} (number, string,
and array) are all that is needed for working with @command{awk} values.
However, since the API provides routines for accessing and changing
the value of global scalar variables only by using the variable's name,
there is a performance penalty: @command{gawk} must find the variable
each time it is accessed and changed. This turns out to be a real issue,
not just a theoretical one.
Thus, if you know that your extension will spend considerable time
reading and/or changing the value of one or more scalar variables, you
can obtain a @dfn{scalar cookie}@footnote{See
@uref{http://catb.org/jargon/html/C/cookie.html, the ``cookie'' entry in the Jargon file} for a
definition of @dfn{cookie}, and @uref{http://catb.org/jargon/html/M/magic-cookie.html,
the ``magic cookie'' entry in the Jargon file} for a nice example. See
also the entry in the FIXME ref to glossary.}
object for that variable, and then use
the cookie for getting the variable's value for changing the variable's
value.
This is the @code{awk_scalar_t} type and @code{scalar_cookie} macro.
Given a scalar cookie, @command{gawk} can directly retrieve or
modify the value, as required, without having to first find it.
The @code{awk_value_cookie_t} type and @code{value_cookie} macro are similar.
If you know that you wish to
use the same numeric or string @emph{value} for one or more variables,
you can create the value once, retaining a @dfn{value cookie} for it,
and then pass in that value cookie whenever you wish to set the value of a
variable. This saves both storage space within the running @command{gawk}
process as well as the time needed to create the value.
@node Requesting Values
@subsection Requesting Values
All of the functions that return values from @command{gawk}
work in the same way. You pass in an @code{awk_valtype_t} value
to indicate what kind of value you want. If the actual value
matches what you requested, the function returns true and fills
in the @code{awk_value_t} result.
Otherwise, the function returns false, and the @code{val_type}
member indicates the type of the actual value. You may then
print an error message, or reissue the request for the actual
value type, as appropriate. This behavior is summarised in
@ref{table-value-types-returned}.
@ifnotplaintext
@float Table,table-value-types-returned
@caption{Value Types Returned}
@multitable @columnfractions .50 .50
@headitem @tab Type of Actual Value:
@end multitable
@multitable @columnfractions .166 .166 .198 .15 .15 .166
@headitem @tab @tab String @tab Number @tab Array @tab Undefined
@item @tab @b{String} @tab String @tab String @tab false @tab false
@item @tab @b{Number} @tab Number if can be converted, else false @tab Number @tab false @tab false
@item @b{Type} @tab @b{Array} @tab false @tab false @tab Array @tab false
@item @b{Requested:} @tab @b{Scalar} @tab Scalar @tab Scalar @tab false @tab false
@item @tab @b{Undefined} @tab String @tab Number @tab Array @tab Undefined
@item @tab @b{Value Cookie} @tab false @tab false @tab false @tab false
@end multitable
@end float
@end ifnotplaintext
@ifplaintext
@float Table,table-value-types-returned
@caption{Value Types Returned}
@example
+-------------------------------------------------+
| Type of Actual Value: |
+------------+------------+-----------+-----------+
| String | Number | Array | Undefined |
+-----------+-----------+------------+------------+-----------+-----------+
| | String | String | String | false | false |
| |-----------+------------+------------+-----------+-----------+
| | Number | Number if | Number | false | false |
| | | can be | | | |
| | | converted, | | | |
| | | else false | | | |
| |-----------+------------+------------+-----------+-----------+
| Type | Array | false | false | Array | false |
| Requested |-----------+------------+------------+-----------+-----------+
| | Scalar | Scalar | Scalar | false | false |
| |-----------+------------+------------+-----------+-----------+
| | Undefined | String | Number | Array | Undefined |
| |-----------+------------+------------+-----------+-----------+
| | Value | false | false | false | false |
| | Cookie | | | | |
+-----------+-----------+------------+------------+-----------+-----------+
@end example
@end float
@end ifplaintext
@node Constructor Functions
@subsection Constructor Functions and Convenience Macros
The API provides a number of @dfn{constructor} functions for creating
string and numeric values, as well as a number of convenience macros.
This @value{SUBSECTION} presents them all as function prototypes, in
the way that extension code would use them.
@table @code
@item static inline awk_value_t *
@itemx make_const_string(const char *string, size_t length, awk_value_t *result)
This function creates a string value in the @code{awk_value_t} variable
pointed to by @code{result}. It expects @code{string} to be a C string constant
(or other string data), and automatically creates a @emph{copy} of the data
for storage in @code{result}.
@item static inline awk_value_t *
@itemx make_malloced_string(const char *string, size_t length, awk_value_t *result)
This function creates a string value in the @code{awk_value_t} variable
pointed to by @code{result}. It expects @code{string} to be a @samp{char *}
value pointing to data previously obtained from @code{malloc()}. The idea here
is that the data will be passed directly to @command{gawk}, which will assume
responsibility for it.
@item static inline awk_value_t *
@itemx make_null_string(awk_value_t *result)
This specialized function creates a null string (the ``undefined'' value)
in the @code{awk_value_t} variable pointed to by @code{result}.
@item static inline awk_value_t *
@itemx make_number(double num, awk_value_t *result)
This function simply creates a numeric value in the @code{awk_value_t} variable
pointed to by @code{result}.
@end table
Two convenience macros may be used for allocating storage from @code{malloc()}
and @code{realloc()}. If the allocation fails, they cause @command{gawk} to
exit with a fatal error message. They should be used as if they were
procedure calls that do not return a value.
@table @code
@item emalloc(pointer, type, size, message)
The arguments to this macro are as follows:
@c nested table
@table @code
@item pointer
The pointer variable to point at the allocated storage.
@item type
The type of the pointer variable, used to create a cast for the call to @code{malloc()}.
@item size
The total number of bytes to be allocated.
@item message
A message to be prefixed to the fatal error message. Typically this is the name
of the function using the macro.
@end table
@noindent
For example, you might allocate a string value like so:
@example
awk_value_t result;
char *message;
const char greet[] = "Don't Panic!";
emalloc(message, char *, sizeof(greet), "myfunc");
strcpy(message, greet);
make_malloced_string(message, strlen(message), & result);
@end example
@item erealloc(pointer, type, size, message)
The arguments are the same as for the @code{emalloc()} macro.
@end table
@node Registration Functions
@subsection Registration Functions
This @value{SECTION} describes the API functions which let you
register parts of your extension with @command{gawk}.
@menu
@end menu
@node Extension Functions
@subsubsection Registering An Extension Function
Extension functions are described by the following record:
@example
typedef struct @{
@ @ @ @ const char *name;
@ @ @ @ awk_value_t *(*function)(int num_actual_args, awk_value_t *result);
@ @ @ @ size_t num_expected_args;
@} awk_ext_func_t;
@end example
The fields are:
@table @code
@item const char *name;
The name of the new function.
@command{awk} level code will call the function by this name.
@item awk_value_t *(*function)(int num_actual_args, awk_value_t *result);
This is a pointer to the C function that provides the desired
functionality.
The function must fill in the result with either a number
or a string. @command{awk takes ownership of any string memory}.
As mentioned earlier, string memory @strong{must} come from @code{malloc()}.
The function must return the value of @code{result}.
This is for the convenience of the calling code inside @command{gawk}.
@item size_t num_expected_args;
This is the number of arguments the function expects to receive.
Each extension function may decide what to do if the number of
arguments isn't what it expected. Following @command{awk} functions, it
is likely OK to ignore extra arguments.
@end table
Once you have a record representing your extension function, you register
it with @command{gawk} using this API function:
@table @code
@item awk_bool_t add_ext_func(const char *namespace, const awk_ext_func_t *func);
This function returns true upon success, false otherwise.
The @code{namespace} parameter is currently not used; you should pass in an
empty string (@code{""}). The @code{func} pointer is the address of a
@code{struct} describing your function, as just described.
@end table
@node Input Parsers
@subsubsection Customized Input Parsers
By default, @command{gawk} reads text files as its input. It uses the value
of @code{RS} to find the end of the record, and then uses @code{FS}
(or @code{FIELDWIDTHS}) to split it into fields. Additionally, it sets
the value of @code{RT}. (FIXME: pxrefs as needed.)
If you want, you can provide your own, custom, input parser. An input
parser's job is to return a record to the @command{gawk} record processing
code, along with indicators for the value and length of the data to be
used for @code{RT}, if any.
To provide an input parser, you must first provide two functions
(where @var{XXX} is a prefix name for your extension):
@table @code
@item awk_bool_t @var{XXX}_can_take_file(const awk_input_buf_t *iobuf)
This function examines the information available in @code{iobuf}
(which we discuss shortly). Based on the information there, it
decides if the input parser should be used for this file.
If so, it should return true (non-zero). Otherwise, it should
return false (zero).
@item awk_bool_t @var{XXX}_take_control_of(awk_input_buf_t *iobuf)
When @command{gawk} decides to hand control of the file over to the
input parser, it calls this function. This function in turn must fill
in certain fields in the @code{awk_input_buf_t} structure, and ensure
that certain conditions are true. It should then return true. If an
error of some kind occurs, it should not fill in any fields, and should
return false; then @command{gawk} will not use the input parser.
The details are presented shortly.
@end table
Your extension should package these functions inside an
@code{awk_input_parser_t}, which looks like this:
@example
typedef struct input_parser @{
const char *name; /* name of parser */
awk_bool_t (*can_take_file)(const awk_input_buf_t *iobuf);
awk_bool_t (*take_control_of)(awk_input_buf_t *iobuf);
awk_const struct input_parser *awk_const next; /* for use by gawk */
@} awk_input_parser_t;
@end example
The steps are as follows:
@enumerate
@item
Create a @code{static awk_input_parser_t} variable and initialize it
appropriately.
@item
When your extension is loaded, register your input parser with
@command{gawk} using the @code{register_input_parser()} API function
(described below).
@end enumerate
An @code{awk_input_buf_t} looks like this:
@example
typedef struct awk_input @{
const char *name; /* filename */
int fd; /* file descriptor */
#define INVALID_HANDLE (-1)
void *opaque; /* private data for input parsers */
int (*get_record)(char **out, struct awk_input *, int *errcode,
char **rt_start, size_t *rt_len);
void (*close_func)(struct awk_input *);
struct stat sbuf; /* stat buf */
@} awk_input_buf_t;
@end example
The fields can be divided into two categories: those for use (initially,
at least) by @code{@var{XXX}_can_take_file()}, and those for use by
@code{@var{XXX}_take_control_of()}. The first group of fields and their uses
are as follows:
@table @code
@item const char *name;
The name of the file.
@item int fd;
A file descriptor for the file. If @command{gawk} was able to
open the file, then it will @emph{not} be equal to
@code{INVALID_HANDLE}. Otherwise, it will.
@item struct stat sbuf;
If file descriptor is valid, then @command{gawk} will have filled
in this structure with a call to the @code{fstat()} system call.
@end table
The @code{@var{XXX}_can_take_file()} function should examine these
fields and decide if the input parser should be used for the file.
The decision can be made based upon @command{gawk} state (the value
of a variable defined previously by the extension and set by
@command{awk} code), the name of the
file, whether or not the file descriptor is valid, the information
in the @code{struct stat}, or any combination of the above.
Once @code{@var{XXX}_can_take_file()} has returned true, and
@command{gawk} has decided to use your input parser, it will call
@code{@var{XXX}_take_control_of()}. That function then fills in at
least the @code{get_record} field of the @code{awk_input_buf_t}. It must
also ensure that @code{fd} is not set to @code{INVALID_HANDLE}. All of
the fields that may be filled by @code{@var{XXX}_take_control_of()}
are as follows:
@table @code
@item void *opaque;
This is used to hold any state information needed by the input parser
for this file. It is ``opaque'' to @command{gawk}. The input parser
is not required to use this pointer.
@item int (*get_record)(char **out, struct awk_input *, int *errcode,
@itemx char **rt_start, size_t *rt_len);
This is a function pointer that should be set to point to the
function that creates the input records.
Said function is the core of the input parser. Its behavior is
described below.
@item void (*close_func)(struct awk_input *);
This is a function pointer that should be set to point to the
function that does the ``tear down.'' It should release any resources
allocated by @code{@var{XXX}_take_control_of()}. It may also close
the file. If it does so, it shold set the @code{fd} field to
@code{INVALID_HANDLE}.
Having a ``tear down'' function is optional. If your input parser does
not need it, do not set this field. In that case, @command{gawk}
will close the regular @code{close()} system call on the
file descriptor, so it should be valid.
@end table
The @code{@var{XXX}_get_record()} function does the work of creating
input records. The parameters are as follows:
@table @code
@item char **out
This is a pointer to a @code{char *} variable which is set to point
to the record. @command{gawk} will make its own copy of the data, so
the extension must manage this storage.
@item struct awk_input *iobuf
This is the @code{awk_input_buf_t} for the file. The fields should be
used for reading data (@code{fd}) and for managing private state
(@code{opaque}), if any.
@item int *errcode
If an error occurs, @code{*errcode} should be set to an appropriate
code from @code{<errno.h>}.
@item char **rt_start
@itemx size_t *rt_len
If the concept of a ``record terminator'' makes sense, then
@code{*rt_start} should be set to point to the data to be used for
@code{RT}, and @code{*rt_len} should be set to the length of the
data. Otherwise, @code{*rt_len} should be set to zero.
@code{gawk} makes its own copy of this data, so the
extension must manage the storage.
@end table
The return value is the length of the buffer pointed to by
@code{*out}, or @code{EOF} if end-of-file was reached or an
error occurred.
It is guaranteed that @code{errcode} is a valid pointer, so there is no
need to test for a @code{NULL} value. @command{gawk} sets @code{*errcode}
to zero, so there is no need to set it unless an error occurs.
If an error does occur, the function should return @code{EOF} and set
@code{*errcode} to a non-zero value. In that case, if @code{*errcode}
does not equal @minus{}1, @command{gawk|} will automatically update
the @code{ERRNO} variable based on the value of @code{*errcode} (e.g.,
setting @samp{*errcode = errno} should do the right thing).
@command{gawk} ships with a sample extension (@pxref{Extension Sample
Readdir}) that reads directories, returning records for each entry in
the directory. You may wish to use that code as a guide for writing
your own input parser.
When writing an input parser, you should think about (and document)
how it is expected to interact with @command{awk} code. You may want
it to always be called, and take effect as appropriate (as the
@code{readdir} extension does). Or you may want it to take effect
based upon the value of an @code{awk} variable, as the XML extension
from the @code{gawkextlib} project does (@pxref{gawkextlib}).
In the latter case, code in a @code{BEGINFILE} section (FIXME: pxref)
can look at @code{FILENAME} and @code{ERRNO} to decide whether or
not to activate an input parser.
You register your input parser with the following function:
@table @code
@item void register_input_parser(awk_input_parser_t *input_parser);
Register the input parser pointed to by @code{input_parser} with
@command{gawk}.
@end table
@node Output Wrappers
@subsubsection Customized Output Wrappers
An @dfn{output wrapper} is the mirror image of an input parser.
It allows an extension to take over the output to a file (opened
with the @samp{>} or @samp{>>} operators, FIXME pxref).
The output wrapper is very similar to the input parser structure:
@example
typedef struct output_wrapper @{
const char *name; /* name of the wrapper */
awk_bool_t (*can_take_file)(const awk_output_buf_t *outbuf);
awk_bool_t (*take_control_of)(awk_output_buf_t *outbuf);
awk_const struct output_wrapper *awk_const next; /* for use by gawk */
@} awk_output_wrapper_t;
@end example
The members are as follows:
@table @code
@item const char *name;
This is the name of the output wrapper.
@item awk_bool_t (*can_take_file)(const awk_output_buf_t *outbuf);
This points to a function that examines the information in
the @code{awk_output_buf_t} structure pointed to by @code{outbuf}.
It should return true if the output wrapper wants to take over the
file, and false otherwise. It should not change any state (variable
values, etc.) within @command{gawk}.
@item awk_bool_t (*take_control_of)(awk_output_buf_t *outbuf);
The function pointed to by this field is called when @command{gawk}
decides to let the output wrapper take control of the file. It should
fill in appropriate members of the @code{awk_output_buf_t} structure,
as described below, and return true if successful, false otherwise.
@item awk_const struct output_wrapper *awk_const next;
This is for use by @command{gawk}.
@end table
The @code{awk_output_buf_t} structure looks like this:
@example
typedef struct @{
const char *name; /* name of output file */
const char *mode; /* mode argument to fopen */
FILE *fp; /* stdio file pointer */
awk_bool_t redirected; /* true if a wrapper is active */
void *opaque; /* for use by output wrapper */
size_t (*gawk_fwrite)(const void *buf, size_t size, size_t count,
FILE *fp, void *opaque);
int (*gawk_fflush)(FILE *fp, void *opaque);
int (*gawk_ferror)(FILE *fp, void *opaque);
int (*gawk_fclose)(FILE *fp, void *opaque);
@} awk_output_buf_t;
@end example
Here too, your extension will define @code{@var{XXX}_can_take_file()}
and @code{@var{XXX}_take_control_of()} functions that examine and update
data members in the @code{awk_output_buf_t}.
The data members are as follows:
@table @code
@item const char *name;
The name of the output file.
@item const char *mode;
The mode string (as would be used in the second argument to @code{fopen()}
with which the file was opened.
@item FILE *fp;
The @code{FILE} pointer from @code{<stdio.h>}. @command{gawk} opens the file
before attempting to find an output wrapper.
@item awk_bool_t redirected;
The field should be set to true in the @code{@var{XXX}_take_control_of()} function.
@item void *opaque;
This pointer is opaque to @command{gawk}. The extension should use it to store
a pointer to any private data associated with the file.
@item size_t (*gawk_fwrite)(const void *buf, size_t size, size_t count,
@itemx @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ FILE *fp, void *opaque);
@itemx int (*gawk_fflush)(FILE *fp, void *opaque);
@itemx int (*gawk_ferror)(FILE *fp, void *opaque);
@itemx int (*gawk_fclose)(FILE *fp, void *opaque);
These pointers should be set to point to functions that perform
the equivalent function as the @code{<stdio.h>} functions do, if appropriate.
@command{gawk} uses these function pointers for all output.
@command{gawk} initializes the pointers to point to internal, ``pass through''
functions that just call the regular @code{<stdio.h>} functions, so an
extension only needs to redefine those functions that are appropriate for
what it does.
@end table
The @code{@var{XXX}_can_take_file()} function should make a decision based
upon the @code{name} and @code{mode} fields, and any additional state
(such as @command{awk} variable values) that is appropriate.
When @command{gawk} calls @code{@var{XXX}_take_control_of()}, it should fill
in the other fields, as appropriate, except for @code{fp}, which it should just
use normally.
You register your output wrapper with the following function:
@table @code
@item void register_output_wrapper(awk_output_wrapper_t *output_wrapper);
Register the output wrapper pointed to by @code{output_wrapper} with
@command{gawk}.
@end table
@node Two-way processors
@subsubsection Customized Two-way Processors
A @dfn{two-way processor} combines an input parser and an output wrapper for
two-way I/O with the @samp{|&} operator (FIXME: pxref). It makes identical
use of the @code{awk_input_parser_t} and @code{awk_output_buf_t} structures,
as described earlier.
A two-way processor is represented by the following structure:
@example
typedef struct two_way_processor @{
const char *name; /* name of the two-way processor */
awk_bool_t (*can_take_two_way)(const char *name);
awk_bool_t (*take_control_of)(const char *name, awk_input_buf_t *inbuf, awk_output_buf_t *outbuf);
awk_const struct two_way_processor *awk_const next; /* for use by gawk */
@} awk_two_way_processor_t;
@end example
The fields are as follows:
@table @code
@item const char *name;
The name of the two-way processor.
@item awk_bool_t (*can_take_two_way)(const char *name);
This function returns true if it wants to take over the two-way I/O for this filename.
@item awk_bool_t (*take_control_of)(const char *name, awk_input_buf_t *inbuf, awk_output_buf_t *outbuf);
This function should fill in the @code{awk_input_buf_t} and
@code{awk_outut_buf_t} structures pointed to by @code{inbuf} and
@code{outbuf}, respectively. These structures were described earlier.
@item awk_const struct two_way_processor *awk_const next;
This is for use by @command{gawk}.
@end table
As with the input parser and output processor, you provide
``yes I can take this'' and ``take over for this'' functions,
@code{@var{XXX}_can_take_two_way()} and @code{@var{XXX}_take_control_of()}.
You register your two-way processor with the following function:
@table @code
@item void register_two_way_processor(awk_two_way_processor_t *two_way_processor);
Register the two-way processor pointed to by @code{two_way_processor} with
@command{gawk}.
@end table
@node Exit Callback Functions
@subsubsection Registering An Exit Callback Function
An @dfn{exit callback} function is a function that
@command{gawk} calls before it exits.
Such functions are useful if you have general ``clean up'' tasks
that should be performed in your extension (such as closing data
base connections or other resource deallocations).
You can register such
a function with @command{gawk} using the following function.
@table @code
@item void awk_atexit(void (*funcp)(void *data, int exit_status),
@itemx @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ void *arg0);
The parameters are:
@c nested table
@table @code
@item funcp
Points to the function to be called before @command{gawk} exits. The @code{data}
parameter will be the original value of @code{arg0}.
The @code{exit_status} parameter is
the exit status value that @command{gawk} will pass to the @code{exit()} system call.
@item arg0
A pointer to private data which @command{gawk} saves in order to pass to
the function pointed to by @code{funcp}.
@end table
@end table
Exit callback functions are called in Last-In-First-Out (LIFO) order---that is, in
the reverse order in which they are registered with @command{gawk}.
@node Extension Version String
@subsubsection Registering An Extension Version String
You can register a version string which indicates the name and
version of your extension, with @command{gawk}, as follows:
@table @code
@item void register_ext_version(const char *version);
Register the string pointed to by @code{version} with @command{gawk}.
@end table
@command{gawk} prints all registered extension version strings when it
is invoked with the @option{--version} option.
@node Printing Messages
@subsection Printing Messages
You can print different kinds of warning messages from your
extension, as described below. Note that for these functions,
you must pass in the extension id received from @command{gawk}
when the extension was loaded.@footnote{Because the API uses only ISO C 90
features, it cannot make use of the ISO C 99 variadic macro feature to hide
that parameter. More's the pity.}
@table @code
@item void fatal(awk_ext_id_t id, const char *format, ...);
Print a message and then cause @command{gawk} to exit immediately.
@item void warning(awk_ext_id_t id, const char *format, ...);
Print a warning message.
@item void lintwarn(awk_ext_id_t id, const char *format, ...);
Print a ``lint warning.'' Normally this is the same as printing a
warning message, but if @command{gawk} was invoked with @samp{--lint=fatal},
then they become fatal error messages.
@end table
All of these functions are otherwise like the C @code{printf()}
family of functions, where the @code{format} parameter is a string
with literal characters and formatting codes intermixed.
@node Updating @code{ERRNO}
@subsection Updating @code{ERRNO}
The following functions allow you to update the @code{ERRNO}
variable.
@table @code
@item void update_ERRNO_int(int errno_val);
Set @code{ERRNO} to the string equivalent of the error code
in @code{errno_val}. The value should be one of the defined
error codes in @code{<errno.h>}, and @command{gawk} will turn it
into a (possibly translated) string using the C @code{strerror()} function.
@item void update_ERRNO_string(const char *string);
Set @code{ERRNO} directly to the string value of @code{ERRNO}.
@command{gawk} will make a copy of the value of @code{string}.
@item void unset_ERRNO();
Unset @code{ERRNO}.
@end table
@node Accessing Parameters
@subsection Accessing and Updating Parameters
Two functions give you access to the arguments (parameters)
passed to your extension function. They are:
@table @code
@item awk_bool_t get_argument(size_t count, awk_valtype_t wanted, awk_value_t *result);
Fill in the @code{awk_value_t} structure pointed to by @code{result}
with the @code{count}'th argument. Counts are zero based---the first argument is
numbered zero, the second one, and so on. @code{wanted} indicates the type of
value expected. Return true if the actual type matches @code{wanted}, false otherwise
In the latter case, @code{result->val_type} indicates the actual type.
@item awk_bool_t set_argument(size_t count, awk_array_t array);
Convert a paramter that was undefined into an array; this provides
call-by-reference for arrays. Return false
if @code{count} is too big, or if the argument's type is
not undefined.
@end table
@node Symbol Table Access
@subsection Symbol Table Access
Three sets of routines provide access to global variables.
@menu
@end menu
@node Symbol table by name
@subsubsection Variable Access and Update by Name
The following routines provide the ability to access and update
global @command{awk}-level variables by name. In compiler terminology,
identifiers of different kinds are termed @dfn{symbols}, thus the ``sym''
in the routines' names. The data structure which stores information
about symbols is termed a @dfn{symbol table}.
@table @code
@item awk_bool_t sym_lookup(const char *name, awk_valtype_t wanted, awk_value_t *result);
Fill in the @code{awk_value_t} structure pointed to by @code{result}
with the value of the variable named by the string @code{name}, which is
a regular C string. @code{wanted} indicates the type of value expected.
Return true if the actual type matches @code{wanted}, false otherwise
In the latter case, @code{result->val_type} indicates the actual type.
@item awk_bool_t sym_update(const char *name, awk_value_t *value);
Update the variable named by the string @code{name}, which is a regular
C string. The variable will be added to @command{gawk}'s symbol table
if it is not there. Return true if everything worked, false otherwise.
Changing types (scalar to array or vice versa) of an existing variable
is @emph{not} allowed, nor may this routine be used to update an array.
This routine can also not be be used to update any of the predefined
variables (such as @code{ARGC} or @code{NF}).
@item awk_bool_t sym_constant(const char *name, awk_value_t *value);
Create a variable named by the string @code{name}, which is
a regular C string, that has the constant value as given by
@code{value}. @command{awk}-level code cannot change the value of this
variable.@footnote{There (currently) is no @code{awk}-level feature that
provides this ability.} The extension may change the value @code{name}'s
variable with subsequent calls to this routine, and may also convert
a variable created by @code{sym_update()} into a constant. However,
once a variable becomes a constant it cannot later be reverted into a
mutable variable.
@node Symbol table by cookie
@subsubsection Variable Access and Update by Cookie
/*
* A ``scalar cookie'' is an opaque handle that provide access
* to a global variable or array. It is an optimization that
* avoids looking up variables in gawk's symbol table every time
* access is needed.
*
* This function retrieves the current value of a scalar cookie.
* Once you have obtained a saclar_cookie using sym_lookup, you can
* use this function to get its value more efficiently.
*
* Return will be false if the value cannot be retrieved.
*
* Flow is thus
* awk_value_t val;
* awk_scalar_t cookie;
* api->sym_lookup(id, "variable", AWK_SCALAR, & val); // get the cookie
* cookie = val.scalar_cookie;
* ...
* api->sym_lookup_scalar(id, cookie, wanted, & val); // get the value
*/
awk_bool_t (*api_sym_lookup_scalar)(awk_ext_id_t id,
awk_scalar_t cookie,
awk_valtype_t wanted,
awk_value_t *result);
/*
* Update the value associated with a scalar cookie.
* Flow is
* sym_lookup with wanted == AWK_SCALAR
* if returns false
* sym_update with real initial value to install it
* sym_lookup again with AWK_SCALAR
* else
* use the scalar cookie
*
* Return will be false if the new value is not one of
* AWK_STRING or AWK_NUMBER.
*
* Here too, the built-in variables may not be updated.
*/
awk_bool_t (*api_sym_update_scalar)(awk_ext_id_t id,
awk_scalar_t cookie, awk_value_t *value);
@node Cached values
@subsubsection Creating and Using Cached Values
/*
* Create a cached string or numeric value for efficient later
* assignment. This improves performance when you want to assign
* the same value to one or more variables repeatedly. Only
* AWK_NUMBER and AWK_STRING values are allowed. Any other type
* is rejected. We disallow AWK_UNDEFINED since that case would
* result in inferior performance.
*/
awk_bool_t (*api_create_value)(awk_ext_id_t id, awk_value_t *value,
awk_value_cookie_t *result);
/*
* Release the memory associated with a cookie from api_create_value.
* Please call this to free memory when the value is no longer needed.
*/
awk_bool_t (*api_release_value)(awk_ext_id_t id, awk_value_cookie_t vc);
@node Array Manipulation
@subsection Array Manipulation
@c @item
typedef void *awk_array_t;
Arrays are represented as an opaque type. These values are obtained from
@command{gawk} and then passed back into it.
In order to make working with arrays manageable,
the @code{awk_array_t} type represents an array to @command{gawk}.
If you request the value of an array variable, you get back an
@code{awk_array_t} value. This value is opaque@footnote{It is also
a ``cookie,'' but the gawk developers did not wish to overuse this
term.} to the extension; it uniquely identifies the array but can
only be used by passing it into API functions or receiving it from API
functions. This is very similar to way @samp{FILE *} values are used
with the @code{<stdio.h>} library routines. FIXME: XREF, for how to use
the value.
/*
* A "flattened" array element. Gawk produces an array of these
* inside the awk_flattened_array_t.
* ALL memory pointed to belongs to gawk. Individual elements may
* be marked for deletion. New elements must be added individually,
* one at a time, using the separate API for that purpose.
*/
typedef struct awk_element {
/* convenience linked list pointer, not used by gawk */
struct awk_element *next;
enum {
AWK_ELEMENT_DEFAULT = 0, /* set by gawk */
AWK_ELEMENT_DELETE = 1 /* set by extension if
should be deleted */
} flags;
awk_value_t index;
awk_value_t value;
} awk_element_t;
/*
* A "flattened" array. See the description above for how
* to use the elements contained herein.
*/
typedef struct awk_flat_array {
awk_const void *opaque1; /* private data for use by gawk */
awk_const void *opaque2; /* private data for use by gawk */
awk_const size_t count; /* how many elements */
awk_element_t elements[1]; /* will be extended */
} awk_flat_array_t;
* 2. Due to gawk internals, after using sym_update() to install an array
* into gawk, you have to retrieve the array cookie from the value
* passed in to sym_update(). Like so:
*
* new_array = create_array();
* val.val_type = AWK_ARRAY;
* val.array_cookie = new_array;
* sym_update("array", & val); // install array in the symbol table
*
* new_array = val.array_cookie; // MUST DO THIS
*
* // fill in new array with lots of subscripts and values
*
* Similarly, if installing a new array as a subarray of an existing
* array, you must add the new array to its parent before adding any
* elements to it.
*
* You must also retrieve the value of the array_cookie after the call
* to set_element().
*
* Thus, the correct way to build an array is to work "top down".
* Create the array, and immediately install it in gawk's symbol table
* using sym_update(), or install it as an element in a previously
* existing array using set_element().
*
* Thus the new array must ultimately be rooted in a global symbol. This is
* necessary before installing any subarrays in it, due to gawk's
* internal implementation. Strictly speaking, this is required only
* for arrays that will have subarrays as elements; however it is
* a good idea to always do this. This restriction may be relaxed
* in a subsequent revision of the API.
@c @table
/*
* Retrieve total number of elements in array.
* Returns false if some kind of error.
*/
awk_bool_t (*api_get_element_count)(awk_ext_id_t id,
awk_array_t a_cookie, size_t *count);
/*
* Return the value of an element - read only!
* Use set_array_element() to change it.
* Behavior for value and return is same as for api_get_argument
* and sym_lookup.
*/
awk_bool_t (*api_get_array_element)(awk_ext_id_t id,
awk_array_t a_cookie,
const awk_value_t *const index,
awk_valtype_t wanted,
awk_value_t *result);
/*
* Change (or create) element in existing array with
* element->index and element->value.
*
* ARGV and ENVIRON may not be updated.
*/
awk_bool_t (*api_set_array_element)(awk_ext_id_t id, awk_array_t a_cookie,
const awk_value_t *const index,
const awk_value_t *const value);
/*
* Remove the element with the given index.
* Returns success if removed or if element did not exist.
*/
awk_bool_t (*api_del_array_element)(awk_ext_id_t id,
awk_array_t a_cookie, const awk_value_t* const index);
/* Create a new array cookie to which elements may be added */
awk_array_t (*api_create_array)(awk_ext_id_t id);
/* Clear out an array */
awk_bool_t (*api_clear_array)(awk_ext_id_t id, awk_array_t a_cookie);
/* Flatten out an array so that it can be looped over easily. */
awk_bool_t (*api_flatten_array)(awk_ext_id_t id,
awk_array_t a_cookie,
awk_flat_array_t **data);
/* When done, delete any marked elements, release the memory. */
awk_bool_t (*api_release_flattened_array)(awk_ext_id_t id,
awk_array_t a_cookie,
awk_flat_array_t *data);
@c @end table
@node Extension API Variables
@subsection Variables
The API provides two sets of variables. The first provides information
about the version of the API (both with which the extension was compiled,
and with which @command{gawk} was compiled). The second provides
information about how @command{gawk} was invoked.
@menu
@end menu
@node Extension Versioning
@subsubsection API Version Constants and Variables
The API provides both a ``major'' and a ``minor'' version number.
The API versions are available at compile time as constants:
@table @code
@item GAWK_API_MAJOR_VERSION
The major version of the API.
@item GAWK_API_MINOR_VERSION
The minor version of the API.
@end table
The minor version increases when new functions are added to the API. Such
new functions are always added to the end of the API @code{struct}.
The major version increases (and the minor version is reset to zero) if any
of the data types change size or member order, or if any of the existing
functions change signature.
It could happen that an extension may be compiled against one version
of the API but loaded by a version of @command{gawk} using a different
version. For this reason, the major and minor API versions of the
running @command{gawk} are included in the API @code{struct} as read-only
constant integers:
@table @code
@item api->major_version
The major version of the running @command{gawk}.
@item api->minor_version
The minor version of the running @command{gawk}.
@end table
It is up to the extension to decide if there are API incompatibilities.
Typically a check like this is enough:
@example
if (api->major_version != GAWK_API_MAJOR_VERSION
|| api->minor_version < GAWK_API_MINOR_VERSION) @{
fprintf(stderr, "foo_extension: version mismatch with gawk!\n");
fprintf(stderr, "\tmy version (%d, %d), gawk version (%d, %d)\n",
GAWK_API_MAJOR_VERSION, GAWK_API_MINOR_VERSION,
api->major_version, api->minor_version);
exit(1);
@}
@end example
Such code is included in the boilerplate @code{dl_load_func} macro
provided in @file{gawkapi.h} (discussed later, in PXREF).
@node Extension API Informational Variables
@subsubsection Informational Variables
The API provides access to several variables that describe
whether the corresponding command-line options were enabled when
@command{gawk} was invoked. The variables are:
@table @code
@item do_lint
This variable will be true if the @option{--lint} option was passed
(FIXME: pxref).
@item do_traditional
This variable will be true if the @option{--traditional} option was passed.
@item do_profile
This variable will be true if the @option{--profile} option was passed.
@item do_sandbox
This variable will be true if the @option{--sandbox} option was passed.
@item do_debug
This variable will be true if the @option{--debug} option was passed.
@item do_mpfr
This variable will be true if the @option{--bignum} option was passed.
@end table
The value of @code{do_lint} can change if @command{awk} code
modifies the @code{LINT} built-in variable (FIXME: pxref).
The others should not change during execution.
@node Extension API Boilerplate
@subsection Boilerplate Code
@node Extension Example
@section Example: Some File Functions
@c It's enough to show chdir and stat, no need for fts
Two useful functions that are not in @command{awk} are @code{chdir()}
(so that an @command{awk} program can change its directory) and
@code{stat()} (so that an @command{awk} program can gather information about
a file).
This @value{SECTION} implements these functions for @command{gawk} in an
external extension.
@menu
* Internal File Description:: What the new functions will do.
* Internal File Ops:: The code for internal file operations.
* Using Internal File Ops:: How to use an external extension.
@end menu
@node Internal File Description
@subsection Using @code{chdir()} and @code{stat()}
This @value{SECTION} shows how to use the new functions at
the @command{awk} level once they've been integrated into the
running @command{gawk} interpreter. Using @code{chdir()} is very
straightforward. It takes one argument, the new directory to change to:
@example
@@load "filefuncs"
@dots{}
newdir = "/home/arnold/funstuff"
ret = chdir(newdir)
if (ret < 0) @{
printf("could not change to %s: %s\n",
newdir, ERRNO) > "/dev/stderr"
exit 1
@}
@dots{}
@end example
The return value is negative if the @code{chdir()} failed, and
@code{ERRNO} (@pxref{Built-in Variables}) is set to a string indicating
the error.
Using @code{stat()} is a bit more complicated. The C @code{stat()}
function fills in a structure that has a fair amount of information.
The right way to model this in @command{awk} is to fill in an associative
array with the appropriate information:
@c broke printf for page breaking
@example
file = "/home/arnold/.profile"
# fdata[1] = "x" # force `fdata' to be an array FIXME: IS THIS NEEDED
ret = stat(file, fdata)
if (ret < 0) @{
printf("could not stat %s: %s\n",
file, ERRNO) > "/dev/stderr"
exit 1
@}
printf("size of %s is %d bytes\n", file, fdata["size"])
@end example
The @code{stat()} function always clears the data array, even if
the @code{stat()} fails. It fills in the following elements:
@table @code
@item "name"
The name of the file that was @code{stat()}'ed.
@item "dev"
@itemx "ino"
The file's device and inode numbers, respectively.
@item "mode"
The file's mode, as a numeric value. This includes both the file's
type and its permissions.
@item "nlink"
The number of hard links (directory entries) the file has.
@item "uid"
@itemx "gid"
The numeric user and group ID numbers of the file's owner.
@item "size"
The size in bytes of the file.
@item "blocks"
The number of disk blocks the file actually occupies. This may not
be a function of the file's size if the file has holes.
@item "atime"
@itemx "mtime"
@itemx "ctime"
The file's last access, modification, and inode update times,
respectively. These are numeric timestamps, suitable for formatting
with @code{strftime()}
(@pxref{Built-in}).
@item "pmode"
The file's ``printable mode.'' This is a string representation of
the file's type and permissions, such as what is produced by
@samp{ls -l}---for example, @code{"drwxr-xr-x"}.
@item "type"
A printable string representation of the file's type. The value
is one of the following:
@table @code
@item "blockdev"
@itemx "chardev"
The file is a block or character device (``special file'').
@ignore
@item "door"
The file is a Solaris ``door'' (special file used for
interprocess communications).
@end ignore
@item "directory"
The file is a directory.
@item "fifo"
The file is a named-pipe (also known as a FIFO).
@item "file"
The file is just a regular file.
@item "socket"
The file is an @code{AF_UNIX} (``Unix domain'') socket in the
filesystem.
@item "symlink"
The file is a symbolic link.
@end table
@end table
Several additional elements may be present depending upon the operating
system and the type of the file. You can test for them in your @command{awk}
program by using the @code{in} operator
(@pxref{Reference to Elements}):
@table @code
@item "blksize"
The preferred block size for I/O to the file. This field is not
present on all POSIX-like systems in the C @code{stat} structure.
@item "linkval"
If the file is a symbolic link, this element is the name of the
file the link points to (i.e., the value of the link).
@item "rdev"
@itemx "major"
@itemx "minor"
If the file is a block or character device file, then these values
represent the numeric device number and the major and minor components
of that number, respectively.
@end table
@node Internal File Ops
@subsection C Code for @code{chdir()} and @code{stat()}
Here is the C code for these extensions.@footnote{This version is
edited slightly for presentation. See @file{extension/filefuncs.c}
in the @command{gawk} distribution for the complete version.}
@c break line for page breaking
@example
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "gawkapi.h"
#include "gettext.h"
#define _(msgid) gettext(msgid)
#define N_(msgid) msgid
#include "gawkfts.h"
#include "stack.h"
static const gawk_api_t *api; /* for convenience macros to work */
static awk_ext_id_t *ext_id;
static awk_bool_t init_filefuncs(void);
static awk_bool_t (*init_func)(void) = init_filefuncs;
static const char *ext_version = "filefuncs extension: version 1.0";
int plugin_is_GPL_compatible;
/* do_chdir --- provide dynamically loaded chdir() builtin for gawk */
static awk_value_t *
do_chdir(int nargs, awk_value_t *result)
@{
awk_value_t newdir;
int ret = -1;
assert(result != NULL);
if (do_lint && nargs != 1)
lintwarn(ext_id, _("chdir: called with incorrect number of arguments, expecting 1"));
@end example
The file includes
a number of standard header files, and then includes the
@code{"gawkapi.h"} header file which provides the API definitions.
@cindex programming conventions, @command{gawk} internals
By convention, for an @command{awk} function @code{foo()}, the function that
implements it is called @samp{do_foo()}. The function should have two
arguments: the first is an
@samp{int} usually called @code{nargs}, that
represents the number of defined arguments for the function.
The second is a pointer to an @code{awk_result_t}, usally named
@code{result}.
The @code{newdir}
variable represents the new directory to change to, retrieved
with @code{get_argument()}. Note that the first argument is
numbered zero.
This code actually accomplishes the @code{chdir()}. It first forces
the argument to be a string and passes the string value to the
@code{chdir()} system call. If the @code{chdir()} fails, @code{ERRNO}
is updated.
@example
if (get_argument(0, AWK_STRING, & newdir)) @{
ret = chdir(newdir.str_value.str);
if (ret < 0)
update_ERRNO_int(errno);
@}
@end example
Finally, the function returns the return value to the @command{awk} level:
@example
return make_number(ret, result);
@}
@end example
The @code{stat()} built-in is more involved. First comes a function
that turns a numeric mode into a printable representation
(e.g., 644 becomes @samp{-rw-r--r--}). This is omitted here for brevity:
@c break line for page breaking
@example
/* format_mode --- turn a stat mode field into something readable */
static char *
format_mode(unsigned long fmode)
@{
@dots{}
@}
@end example
Next comes a function for reading symbolic links, which is also
omitted here for brevity:
@example
/* read_symlink -- read a symbolic link into an allocated buffer.
@dots{} */
static char *
read_symlink(const char *fname, size_t bufsize, ssize_t *linksize)
@{
@dots{}
@}
@end example
Two helper functions simplify entering values in the
array that will contain the result of the @code{stat()}:
@example
/* array_set --- set an array element */
static void
array_set(awk_array_t array, const char *sub, awk_value_t *value)
@{
awk_value_t index;
set_array_element(array,
make_const_string(sub, strlen(sub), & index),
value);
@}
/* array_set_numeric --- set an array element with a number */
static void
array_set_numeric(awk_array_t array, const char *sub, double num)
@{
awk_value_t tmp;
array_set(array, sub, make_number(num, & tmp));
@}
@end example
The following function does most of the work to fill in
the @code{awk_array_t} result array with values obtained
from a valid @code{struct stat}. It is done in a separate function
to support the @code{stat()} function for @command{gawk} and also
to support the @code{fts()} extension which is included in
the same file but whose code is not shown here. (FIXME: XREF to section
with documentation.)
The first part of the function is variable declarations,
including a table to map file types to strings:
@example
/* fill_stat_array --- do the work to fill an array with stat info */
static int
fill_stat_array(const char *name, awk_array_t array, struct stat *sbuf)
@{
char *pmode; /* printable mode */
const char *type = "unknown";
awk_value_t tmp;
static struct ftype_map @{
unsigned int mask;
const char *type;
@} ftype_map[] = @{
@{ S_IFREG, "file" @},
@{ S_IFBLK, "blockdev" @},
@{ S_IFCHR, "chardev" @},
@{ S_IFDIR, "directory" @},
#ifdef S_IFSOCK
@{ S_IFSOCK, "socket" @},
#endif
#ifdef S_IFIFO
@{ S_IFIFO, "fifo" @},
#endif
#ifdef S_IFLNK
@{ S_IFLNK, "symlink" @},
#endif
#ifdef S_IFDOOR /* Solaris weirdness */
@{ S_IFDOOR, "door" @},
#endif /* S_IFDOOR */
@};
int j, k;
@end example
The destination array is cleared, and then code fills in
various elements based on values in the @code{struct stat}:
@example
/* empty out the array */
clear_array(array);
/* fill in the array */
array_set(array, "name", make_const_string(name, strlen(name), & tmp));
array_set_numeric(array, "dev", sbuf->st_dev);
array_set_numeric(array, "ino", sbuf->st_ino);
array_set_numeric(array, "mode", sbuf->st_mode);
array_set_numeric(array, "nlink", sbuf->st_nlink);
array_set_numeric(array, "uid", sbuf->st_uid);
array_set_numeric(array, "gid", sbuf->st_gid);
array_set_numeric(array, "size", sbuf->st_size);
array_set_numeric(array, "blocks", sbuf->st_blocks);
array_set_numeric(array, "atime", sbuf->st_atime);
array_set_numeric(array, "mtime", sbuf->st_mtime);
array_set_numeric(array, "ctime", sbuf->st_ctime);
/* for block and character devices, add rdev, major and minor numbers */
if (S_ISBLK(sbuf->st_mode) || S_ISCHR(sbuf->st_mode)) @{
array_set_numeric(array, "rdev", sbuf->st_rdev);
array_set_numeric(array, "major", major(sbuf->st_rdev));
array_set_numeric(array, "minor", minor(sbuf->st_rdev));
@}
@end example
@noindent
The latter part of the function makes selective additions
to the destinatino array, depending upon the availability of
certain members and/or the type of the file. In the returns zero,
for success:
@example
#ifdef HAVE_ST_BLKSIZE
array_set_numeric(array, "blksize", sbuf->st_blksize);
#endif /* HAVE_ST_BLKSIZE */
pmode = format_mode(sbuf->st_mode);
array_set(array, "pmode", make_const_string(pmode, strlen(pmode), & tmp));
/* for symbolic links, add a linkval field */
if (S_ISLNK(sbuf->st_mode)) @{
char *buf;
ssize_t linksize;
if ((buf = read_symlink(name, sbuf->st_size,
& linksize)) != NULL)
array_set(array, "linkval", make_malloced_string(buf, linksize, & tmp));
else
warning(ext_id, "stat: unable to read symbolic link `%s'", name);
@}
/* add a type field */
type = "unknown"; /* shouldn't happen */
for (j = 0, k = sizeof(ftype_map)/sizeof(ftype_map[0]); j < k; j++) @{
if ((sbuf->st_mode & S_IFMT) == ftype_map[j].mask) @{
type = ftype_map[j].type;
break;
@}
@}
array_set(array, "type", make_const_string(type, strlen(type), &tmp));
return 0;
@}
@end example
Finally, here is the @code{do_stat()} function. It starts with
variable declarations and argument checking:
@ignore
Changed message for page breaking. Used to be:
"stat: called with incorrect number of arguments (%d), should be 2",
@end ignore
@example
/* do_stat --- provide a stat() function for gawk */
static awk_value_t *
do_stat(int nargs, awk_value_t *result)
@{
awk_value_t file_param, array_param;
char *name;
awk_array_t array;
int ret;
struct stat sbuf;
assert(result != NULL);
if (do_lint && nargs != 2) @{
lintwarn(ext_id, _("stat: called with wrong number of arguments"));
return make_number(-1, result);
@}
@end example
Then comes the actual work. First, the function gets the arguments.
Next, it gets the information for the file.
The code use @code{lstat()} (instead of @code{stat()})
to get the file information,
in case the file is a symbolic link.
If there's an error, it sets @code{ERRNO} and returns:
@example
/* file is first arg, array to hold results is second */
if ( ! get_argument(0, AWK_STRING, & file_param)
|| ! get_argument(1, AWK_ARRAY, & array_param)) @{
warning(ext_id, _("stat: bad parameters"));
return make_number(-1, result);
@}
name = file_param.str_value.str;
array = array_param.array_cookie;
/* lstat the file, if error, set ERRNO and return */
ret = lstat(name, & sbuf);
if (ret < 0) @{
update_ERRNO_int(errno);
return make_number(ret, result);
@}
@end example
The tedious work is done by @code{fill_stat_array()}, shown
earlier. When done, return the result from @code{fill_stat_array()}:
@example
ret = fill_stat_array(name, array, & sbuf);
return make_number(ret, result);
@}
@end example
@cindex programming conventions, @command{gawk} internals
Finally, it's necessary to provide the ``glue'' that loads the
new function(s) into @command{gawk}.
The @samp{filefuncs} extension also provides an @code{fts()}
function, which we omit here. For its sake there is an initialization
function:
@example
/* init_filefuncs --- initialization routine */
static awk_bool_t
init_filefuncs(void)
@{
@dots{}
@}
@end example
We are almost done. We need an array of @code{awk_ext_func_t}
structures for loading each function into @command{gawk}:
@example
static awk_ext_func_t func_table[] = @{
@{ "chdir", do_chdir, 1 @},
@{ "stat", do_stat, 2 @},
@{ "fts", do_fts, 3 @},
@};
@end example
Each extension must have a routine named @code{dl_load()} to load
everything that needs to be loaded. The simplest way is to use the
@code{dl_load_func} macro in @code{gawkapi.h}:
@example
/* define the dl_load function using the boilerplate macro */
dl_load_func(func_table, filefuncs, "")
@end example
And that's it! As an exercise, consider adding functions to
implement system calls such as @code{chown()}, @code{chmod()},
and @code{umask()}.
@node Using Internal File Ops
@subsection Integrating the Extensions
@cindex @command{gawk}, interpreter@comma{} adding code to
Now that the code is written, it must be possible to add it at
runtime to the running @command{gawk} interpreter. First, the
code must be compiled. Assuming that the functions are in
a file named @file{filefuncs.c}, and @var{idir} is the location
of the @command{gawk} include files,
the following steps create
a GNU/Linux shared library:
@example
$ @kbd{gcc -fPIC -shared -DHAVE_CONFIG_H -c -O -g -I@var{idir} filefuncs.c}
$ @kbd{ld -o filefuncs.so -shared filefuncs.o}
@end example
@cindex @code{extension()} function (@command{gawk})
Once the library exists, it is loaded by calling the @code{extension()}
built-in function.
This function takes two arguments: the name of the
library to load and the name of a function to call when the library
is first loaded. This function adds the new functions to @command{gawk}.
It returns the value returned by the initialization function
within the shared library:
@example
# file testff.awk
BEGIN @{
extension("./filefuncs.so", "dl_load")
chdir(".") # no-op
data[1] = 1 # force `data' to be an array
print "Info for testff.awk"
ret = stat("testff.awk", data)
print "ret =", ret
for (i in data)
printf "data[\"%s\"] = %s\n", i, data[i]
print "testff.awk modified:",
strftime("%m %d %y %H:%M:%S", data["mtime"])
print "\nInfo for JUNK"
ret = stat("JUNK", data)
print "ret =", ret
for (i in data)
printf "data[\"%s\"] = %s\n", i, data[i]
print "JUNK modified:", strftime("%m %d %y %H:%M:%S", data["mtime"])
@}
@end example
Here are the results of running the program:
@example
$ @kbd{gawk -f testff.awk}
@print{} Info for testff.awk
@print{} ret = 0
@print{} data["size"] = 607
@print{} data["ino"] = 14945891
@print{} data["name"] = testff.awk
@print{} data["pmode"] = -rw-rw-r--
@print{} data["nlink"] = 1
@print{} data["atime"] = 1293993369
@print{} data["mtime"] = 1288520752
@print{} data["mode"] = 33204
@print{} data["blksize"] = 4096
@print{} data["dev"] = 2054
@print{} data["type"] = file
@print{} data["gid"] = 500
@print{} data["uid"] = 500
@print{} data["blocks"] = 8
@print{} data["ctime"] = 1290113572
@print{} testff.awk modified: 10 31 10 12:25:52
@print{}
@print{} Info for JUNK
@print{} ret = -1
@print{} JUNK modified: 01 01 70 02:00:00
@end example
@node Extension Samples
@section The Sample Extensions in the @command{gawk} Distribution
@menu
@end menu
@node Extension Sample File Functions
@subsection File Related Functions
@c can pull doc from man pages in extension directory
@node Extension Sample Fnmatch
@subsection Interface To @code{fnmatch()}
@node Extension Sample Fork
@subsection Interface to @code{fork()}, @code{wait()} and @code{waitpid()}
@node Extension Sample Ord
@subsection Character and Numeric values: @code{ord()} and @code{chr()}
@node Extension Sample Readdir
@subsection Reading Directories
@node Extension Sample Revout
@subsection Reversing Output
@node Extension Sample Rev2way
@subsection Two-Way I/O Example
@node Extension Sample Read write array
@subsection Dumping and Restoring An Array
@node Extension Sample Readfile
@subsection Reading An Entire File
@node Extension Sample API Tests
@subsection API Tests
@node Extension Sample Time
@subsection Time Functions
@cindex time
@cindex sleep
These functions can be used by either invoking @command{gawk}
with a command-line argument of @option{-l time} or by
inserting @code{@@load "time"} in your script.
@table @code
@cindex @code{gettimeofday} time extension function
@item gettimeofday()
This function returns the time that has elapsed since 1970-01-01 UTC
as a floating point value. It should have sub-second precision, but
the actual precision will vary based on the platform. If the time
is unavailable on this platform, it returns @minus{}1 and sets @code{ERRNO}.
If the standard C @code{gettimeofday()} system call is available on this platform,
then it simply returns the value. Otherwise, if on Windows,
it tries to use @code{GetSystemTimeAsFileTime()}.
@cindex @code{sleep} time extension function
@item sleep(@var{seconds})
This function attempts to sleep for @var{seconds} seconds.
Note that @var{seconds} may be a floating-point (non-integral) value.
If @var{seconds} is negative, or the attempt to sleep fails,
then it returns @minus{}1 and sets @code{ERRNO}.
Otherwise, the function should return 0 after sleeping
for the indicated amount of time. Implementation details: depending
on platform availability, it tries to use @code{nanosleep()} or @code{select()}
to implement the delay.
@end table
@node gawkextlib
@section The @code{gawkextlib} Project
The @uref{http://sourceforge.net/projects/gawkextlib/, @code{gawkextlib}}
project provides a number of @command{gawk} extensions, including one for
processing XML files. This is the evolution of the original @command{xgawk}
(XML @command{gawk}) project.
As of this writing, there are four extensions:
@itemize @bullet
@item
XML parser extension, using the @uref{http://expat.sourceforge.net, Expat}
XML parsing library
@item
Postgres SQL extension
@item
GD graphics library extension
@item
MPFR library extension.
This provides access to a number of MPFR functions which @command{gawk}'s
native MPFR support does not.
@end itemize
The @code{time} extension described earlier
(@pxref{Extension Sample Time})
was originally from this project but has been moved in to the
main @command{gawk} distribution.
You can check out the code for the @code{gawkextlib} project
using the @uref{http://git-scm.com, GIT} distributed source
code control system. The command is as follows:
@example
git clone git://git.code.sf.net/p/gawkextlib/code gawkextlib-code
@end example
You will need to have the @uref{http://expat.sourceforge.net, Expat}
XML parser library installed in order to build and use the XML extension.
In addition, you should have the GNU Autotools installed (Autoconf,
Automake, Libtool and Gettext). FIXME: Need URLs.
The simple recipe for building and testing @code{gawkextlib} is as follows.
First, build and install @command{gawk}:
@example
cd .../path/to/gawk/code
./configure --prefix=/tmp/newgawk @i{Install in /tmp/newgawk for now}
make && make check @i{Build and check that all is OK}
make install @i{Install gawk}
@end example
Next, build @code{gawkextlib} and test it:
@example
cd .../path/to/gawkextlib-code
./update-autotools @i{Generate configure, etc. May have to run twice}
./configure --with-gawk=/tmp/newgawk @i{Configure, point at ``installed'' gawk}
make && make check @i{Build and check that all is OK}
@end example
@bye
From: Doug McIlroy <doug@cs.dartmouth.edu>
Date: Sat, 13 Oct 2012 19:55:25 -0400
To: arnold@skeeve.com
Subject: Re: origin of the term "cookie"?
I believe the term "cookie", for a more or less inscrutable
saying or crumb of information, was injected into Unix
jargon by Bob Morris, who used the word quite frequently.
It had no fixed meaning as it now does in browsers.
The word had been around long before it was recognized in
the 8th edition glossary (earlier editions had no glossary):
cookie a peculiar goodie, token, saying or remembrance
returned by or presented to a program. [I would say that
"returned by" would better read "produced by", and assume
responsibility for the inexactitude.]
Doug McIlroy
|