1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Mini-XML 4.0 Programming Manual</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="generator" content="codedoc v3.8">
<meta name="author" content="Michael R Sweet">
<meta name="language" content="en-US">
<meta name="copyright" content="Copyright © 2003-2025, All Rights Reserved.">
<meta name="version" content="4.0">
<style type="text/css"><!--
body {
background: white;
color: black;
font-family: sans-serif;
font-size: 12pt;
}
a {
color: black;
}
a:link, a:visited {
color: #00f;
}
a:link:hover, a:visited:hover, a:active {
color: #c0c;
}
body, p, h1, h2, h3, h4, h5, h6 {
font-family: sans-serif;
line-height: 1.4;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
page-break-inside: avoid;
}
h1 {
font-size: 250%;
margin: 0;
}
h2 {
font-size: 250%;
margin-top: 1.5em;
}
h3 {
font-size: 200%;
margin-bottom: 0.5em;
margin-top: 1.5em;
}
h4 {
font-size: 150%;
margin-bottom: 0.5em;
margin-top: 1.5em;
}
h5 {
font-size: 125%;
margin-bottom: 0.5em;
margin-top: 1.5em;
}
h6 {
font-size: 110%;
margin-bottom: 0.5em;
margin-top: 1.5em;
}
img.title {
width: 256px;
}
div.header h1, div.header p {
text-align: center;
}
div.contents, div.body, div.footer {
page-break-before: always;
}
.class, .enumeration, .function, .struct, .typedef, .union {
border-bottom: solid 2px gray;
}
.description {
margin-top: 0.5em;
}
.function {
margin-bottom: 0;
}
blockquote {
border: solid thin gray;
box-shadow: 3px 3px 5px rgba(127,127,127,0.25);
margin: 1em 0;
padding: 10px;
page-break-inside: avoid;
}
blockquote :first-child {
margin-top: 0;
}
blockquote :first-child {
margin-bottom: 0;
}
p code, li code, p.code, pre, ul.code li {
font-family: monospace;
hyphens: manual;
-webkit-hyphens: manual;
}
p.code, pre, ul.code li {
background: rgba(127,127,127,0.25);
border: thin dotted gray;
padding: 10px;
page-break-inside: avoid;
}
pre {
white-space: pre-wrap;
}
a:link, a:visited {
text-decoration: none;
}
span.info {
background: black;
border: solid thin black;
color: white;
font-size: 80%;
font-style: italic;
font-weight: bold;
white-space: nowrap;
}
h1 span.info, h2 span.info, h3 span.info, h4 span.info {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
float: right;
padding: 3px 6px;
}
ul.code, ul.contents, ul.subcontents {
list-style-type: none;
margin: 0;
padding-left: 0;
}
ul.code li {
margin: 0;
}
ul.contents > li {
margin-top: 1em;
}
ul.contents li ul.code, ul.contents li ul.subcontents {
padding-left: 2em;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td {
border: solid 1px gray;
padding: 5px 10px;
vertical-align: top;
}
td.left {
text-align: left;
}
td.center {
text-align: center;
}
td.right {
text-align: right;
}
th {
border-bottom: solid 2px gray;
padding: 1px 5px;
text-align: center;
vertical-align: bottom;
}
tr:nth-child(even) {
background: rgba(127,127,127,0.25);
}
table.list {
border-collapse: collapse;
width: 100%;
}
table.list th {
border-bottom: none;
border-right: 2px solid gray;
font-family: monospace;
font-weight: normal;
padding: 5px 10px 5px 2px;
text-align: right;
vertical-align: top;
}
table.list td {
border: none;
padding: 5px 2px 5px 10px;
text-align: left;
vertical-align: top;
}
h2.title, h3.title {
border-bottom: solid 2px gray;
}
/* Syntax highlighting */
span.comment {
color: darkgreen;
}
span.directive {
color: red;
}
span.number {
color: brown;
}
span.reserved {
color: blue;
}
span.string {
color: magenta;
}
/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
body {
background: black;
color: #ccc;
}
a {
color: #ccc;
}
a:link, a:visited {
color: #66f;
}
a:link:hover, a:visited:hover, a:active {
color: #f06;
}
}
/* Show contents on left side in web browser */
@media screen and (min-width: 800px) {
div.contents {
border-right: solid thin gray;
bottom: 0px;
box-shadow: 3px 3px 5px rgba(127,127,127,0.5);
font-size: 10pt;
left: 0px;
overflow: scroll;
padding: 1%;
position: fixed;
top: 0px;
width: 18%;
}
div.contents h2.title {
margin-top: 0px;
}
div.header, div.body, div.footer {
margin-left: 20%;
padding: 1% 2%;
}
}
/* Center title page content vertically */
@media print {
div.header {
padding-top: 33%;
}
}
--></style>
</head>
<body>
<div class="header">
<p><img class="title" src="mxml-cover.png"></p>
<h1 class="title">Mini-XML 4.0 Programming Manual</h1>
<p>Michael R Sweet</p>
<p>Copyright © 2003-2025, All Rights Reserved.</p>
</div>
<div class="contents">
<h2 class="title">Contents</h2>
<ul class="contents">
<li><a href="#introduction">Introduction</a><ul class="subcontents">
<li><a href="#history">History</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#legal-stuff">Legal Stuff</a></li>
</ul></li>
<li><a href="#using-mini-xml">Using Mini-XML</a><ul class="subcontents">
<li><a href="#api-basics">API Basics</a></li>
<li><a href="#loading-an-xml-file">Loading an XML File</a></li>
<li><a href="#finding-nodes">Finding Nodes</a></li>
<li><a href="#getting-the-values-from-nodes">Getting the Value(s) from Nodes</a></li>
<li><a href="#saving-an-xml-file">Saving an XML File</a></li>
<li><a href="#freeing-memory">Freeing Memory</a></li>
</ul></li>
<li><a href="#creating-new-xml-documents">Creating New XML Documents</a><ul class="subcontents">
<li><a href="#element-nodes">Element Nodes</a></li>
<li><a href="#cdata-nodes">CDATA Nodes</a></li>
<li><a href="#comment-nodes">Comment Nodes</a></li>
<li><a href="#processing-instruction-nodes">Processing Instruction Nodes</a></li>
<li><a href="#integer-nodes">Integer Nodes</a></li>
<li><a href="#opaque-string-nodes">Opaque String Nodes</a></li>
<li><a href="#real-number-nodes">Real Number Nodes</a></li>
<li><a href="#text-nodes">Text Nodes</a></li>
</ul></li>
<li><a href="#iterating-and-indexing-the-tree">Iterating and Indexing the Tree</a><ul class="subcontents">
<li><a href="#iterating-nodes">Iterating Nodes</a></li>
<li><a href="#indexing">Indexing</a></li>
</ul></li>
<li><a href="#advanced-usage">Advanced Usage</a><ul class="subcontents">
<li><a href="#custom-data-types">Custom Data Types</a></li>
<li><a href="#sax-stream-loading-of-documents">SAX (Stream) Loading of Documents</a></li>
<li><a href="#user-data">User Data</a></li>
<li><a href="#memory-management">Memory Management</a></li>
</ul></li>
<li><a href="#migrating-from-mini-xml-v3.x">Migrating from Mini-XML v3.x</a></li>
<li><a href="#FUNCTIONS">Functions</a><ul class="subcontents">
<li><a href="#mxmlAdd">mxmlAdd</a></li>
<li><a href="#mxmlDelete">mxmlDelete</a></li>
<li><a href="#mxmlElementClearAttr">mxmlElementClearAttr</a></li>
<li><a href="#mxmlElementGetAttr">mxmlElementGetAttr</a></li>
<li><a href="#mxmlElementGetAttrByIndex">mxmlElementGetAttrByIndex</a></li>
<li><a href="#mxmlElementGetAttrCount">mxmlElementGetAttrCount</a></li>
<li><a href="#mxmlElementSetAttr">mxmlElementSetAttr</a></li>
<li><a href="#mxmlElementSetAttrf">mxmlElementSetAttrf</a></li>
<li><a href="#mxmlFindElement">mxmlFindElement</a></li>
<li><a href="#mxmlFindPath">mxmlFindPath</a></li>
<li><a href="#mxmlGetCDATA">mxmlGetCDATA</a></li>
<li><a href="#mxmlGetComment">mxmlGetComment</a></li>
<li><a href="#mxmlGetCustom">mxmlGetCustom</a></li>
<li><a href="#mxmlGetDeclaration">mxmlGetDeclaration</a></li>
<li><a href="#mxmlGetDirective">mxmlGetDirective</a></li>
<li><a href="#mxmlGetElement">mxmlGetElement</a></li>
<li><a href="#mxmlGetFirstChild">mxmlGetFirstChild</a></li>
<li><a href="#mxmlGetInteger">mxmlGetInteger</a></li>
<li><a href="#mxmlGetLastChild">mxmlGetLastChild</a></li>
<li><a href="#mxmlGetNextSibling">mxmlGetNextSibling</a></li>
<li><a href="#mxmlGetOpaque">mxmlGetOpaque</a></li>
<li><a href="#mxmlGetParent">mxmlGetParent</a></li>
<li><a href="#mxmlGetPrevSibling">mxmlGetPrevSibling</a></li>
<li><a href="#mxmlGetReal">mxmlGetReal</a></li>
<li><a href="#mxmlGetRefCount">mxmlGetRefCount</a></li>
<li><a href="#mxmlGetText">mxmlGetText</a></li>
<li><a href="#mxmlGetType">mxmlGetType</a></li>
<li><a href="#mxmlGetUserData">mxmlGetUserData</a></li>
<li><a href="#mxmlIndexDelete">mxmlIndexDelete</a></li>
<li><a href="#mxmlIndexEnum">mxmlIndexEnum</a></li>
<li><a href="#mxmlIndexFind">mxmlIndexFind</a></li>
<li><a href="#mxmlIndexGetCount">mxmlIndexGetCount</a></li>
<li><a href="#mxmlIndexNew">mxmlIndexNew</a></li>
<li><a href="#mxmlIndexReset">mxmlIndexReset</a></li>
<li><a href="#mxmlLoadFd">mxmlLoadFd</a></li>
<li><a href="#mxmlLoadFile">mxmlLoadFile</a></li>
<li><a href="#mxmlLoadFilename">mxmlLoadFilename</a></li>
<li><a href="#mxmlLoadIO">mxmlLoadIO</a></li>
<li><a href="#mxmlLoadString">mxmlLoadString</a></li>
<li><a href="#mxmlNewCDATA">mxmlNewCDATA</a></li>
<li><a href="#mxmlNewCDATAf">mxmlNewCDATAf</a></li>
<li><a href="#mxmlNewComment">mxmlNewComment</a></li>
<li><a href="#mxmlNewCommentf">mxmlNewCommentf</a></li>
<li><a href="#mxmlNewCustom">mxmlNewCustom</a></li>
<li><a href="#mxmlNewDeclaration">mxmlNewDeclaration</a></li>
<li><a href="#mxmlNewDeclarationf">mxmlNewDeclarationf</a></li>
<li><a href="#mxmlNewDirective">mxmlNewDirective</a></li>
<li><a href="#mxmlNewDirectivef">mxmlNewDirectivef</a></li>
<li><a href="#mxmlNewElement">mxmlNewElement</a></li>
<li><a href="#mxmlNewInteger">mxmlNewInteger</a></li>
<li><a href="#mxmlNewOpaque">mxmlNewOpaque</a></li>
<li><a href="#mxmlNewOpaquef">mxmlNewOpaquef</a></li>
<li><a href="#mxmlNewReal">mxmlNewReal</a></li>
<li><a href="#mxmlNewText">mxmlNewText</a></li>
<li><a href="#mxmlNewTextf">mxmlNewTextf</a></li>
<li><a href="#mxmlNewXML">mxmlNewXML</a></li>
<li><a href="#mxmlOptionsDelete">mxmlOptionsDelete</a></li>
<li><a href="#mxmlOptionsNew">mxmlOptionsNew</a></li>
<li><a href="#mxmlOptionsSetCustomCallbacks">mxmlOptionsSetCustomCallbacks</a></li>
<li><a href="#mxmlOptionsSetEntityCallback">mxmlOptionsSetEntityCallback</a></li>
<li><a href="#mxmlOptionsSetErrorCallback">mxmlOptionsSetErrorCallback</a></li>
<li><a href="#mxmlOptionsSetSAXCallback">mxmlOptionsSetSAXCallback</a></li>
<li><a href="#mxmlOptionsSetTypeCallback">mxmlOptionsSetTypeCallback</a></li>
<li><a href="#mxmlOptionsSetTypeValue">mxmlOptionsSetTypeValue</a></li>
<li><a href="#mxmlOptionsSetWhitespaceCallback">mxmlOptionsSetWhitespaceCallback</a></li>
<li><a href="#mxmlOptionsSetWrapMargin">mxmlOptionsSetWrapMargin</a></li>
<li><a href="#mxmlRelease">mxmlRelease</a></li>
<li><a href="#mxmlRemove">mxmlRemove</a></li>
<li><a href="#mxmlRetain">mxmlRetain</a></li>
<li><a href="#mxmlSaveAllocString">mxmlSaveAllocString</a></li>
<li><a href="#mxmlSaveFd">mxmlSaveFd</a></li>
<li><a href="#mxmlSaveFile">mxmlSaveFile</a></li>
<li><a href="#mxmlSaveFilename">mxmlSaveFilename</a></li>
<li><a href="#mxmlSaveIO">mxmlSaveIO</a></li>
<li><a href="#mxmlSaveString">mxmlSaveString</a></li>
<li><a href="#mxmlSetCDATA">mxmlSetCDATA</a></li>
<li><a href="#mxmlSetCDATAf">mxmlSetCDATAf</a></li>
<li><a href="#mxmlSetComment">mxmlSetComment</a></li>
<li><a href="#mxmlSetCommentf">mxmlSetCommentf</a></li>
<li><a href="#mxmlSetCustom">mxmlSetCustom</a></li>
<li><a href="#mxmlSetDeclaration">mxmlSetDeclaration</a></li>
<li><a href="#mxmlSetDeclarationf">mxmlSetDeclarationf</a></li>
<li><a href="#mxmlSetDirective">mxmlSetDirective</a></li>
<li><a href="#mxmlSetDirectivef">mxmlSetDirectivef</a></li>
<li><a href="#mxmlSetElement">mxmlSetElement</a></li>
<li><a href="#mxmlSetInteger">mxmlSetInteger</a></li>
<li><a href="#mxmlSetOpaque">mxmlSetOpaque</a></li>
<li><a href="#mxmlSetOpaquef">mxmlSetOpaquef</a></li>
<li><a href="#mxmlSetReal">mxmlSetReal</a></li>
<li><a href="#mxmlSetText">mxmlSetText</a></li>
<li><a href="#mxmlSetTextf">mxmlSetTextf</a></li>
<li><a href="#mxmlSetUserData">mxmlSetUserData</a></li>
<li><a href="#mxmlWalkNext">mxmlWalkNext</a></li>
<li><a href="#mxmlWalkPrev">mxmlWalkPrev</a></li>
</ul></li>
<li><a href="#TYPES">Data Types</a><ul class="subcontents">
<li><a href="#mxml_add_t">mxml_add_t</a></li>
<li><a href="#mxml_custfree_cb_t">mxml_custfree_cb_t</a></li>
<li><a href="#mxml_custload_cb_t">mxml_custload_cb_t</a></li>
<li><a href="#mxml_custsave_cb_t">mxml_custsave_cb_t</a></li>
<li><a href="#mxml_descend_t">mxml_descend_t</a></li>
<li><a href="#mxml_entity_cb_t">mxml_entity_cb_t</a></li>
<li><a href="#mxml_error_cb_t">mxml_error_cb_t</a></li>
<li><a href="#mxml_index_t">mxml_index_t</a></li>
<li><a href="#mxml_io_cb_t">mxml_io_cb_t</a></li>
<li><a href="#mxml_node_t">mxml_node_t</a></li>
<li><a href="#mxml_options_t">mxml_options_t</a></li>
<li><a href="#mxml_sax_cb_t">mxml_sax_cb_t</a></li>
<li><a href="#mxml_sax_event_t">mxml_sax_event_t</a></li>
<li><a href="#mxml_strcopy_cb_t">mxml_strcopy_cb_t</a></li>
<li><a href="#mxml_strfree_cb_t">mxml_strfree_cb_t</a></li>
<li><a href="#mxml_type_cb_t">mxml_type_cb_t</a></li>
<li><a href="#mxml_type_t">mxml_type_t</a></li>
<li><a href="#mxml_ws_cb_t">mxml_ws_cb_t</a></li>
<li><a href="#mxml_ws_t">mxml_ws_t</a></li>
</ul></li>
<li><a href="#ENUMERATIONS">Enumerations</a><ul class="subcontents">
<li><a href="#mxml_add_e">mxml_add_e</a></li>
<li><a href="#mxml_descend_e">mxml_descend_e</a></li>
<li><a href="#mxml_sax_event_e">mxml_sax_event_e</a></li>
<li><a href="#mxml_type_e">mxml_type_e</a></li>
<li><a href="#mxml_ws_e">mxml_ws_e</a></li>
</ul></li>
</ul>
</div>
<div class="body">
<h2 class="title" id="introduction">Introduction</h2>
<p>Mini-XML is a small XML parsing library that you can use to read XML data files or strings in your application without requiring large non-standard libraries. Mini-XML provides the following functionality:</p>
<ul>
<li><p>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and strings.</p>
</li>
<li><p>Data is stored in a linked-list tree structure, preserving the XML data hierarchy.</p>
</li>
<li><p>SAX (streamed) reading of XML files and strings to minimize memory usage.</p>
</li>
<li><p>Supports arbitrary element names, attributes, and attribute values with no preset limits, just available memory.</p>
</li>
<li><p>Supports integer, real, opaque ("CDATA"), text, and custom data types in "leaf" nodes.</p>
</li>
<li><p>Functions for creating and managing trees of data.</p>
</li>
<li><p>"Find" and "walk" functions for easily locating and navigating trees of data.</p>
</li>
<li><p>Support for custom string memory management functions to implement string pools and other schemes for reducing memory usage.</p>
</li>
</ul>
<p>Mini-XML doesn't do validation or other types of processing on the data based upon schema files or other sources of definition information.</p>
<h3 class="title" id="history">History</h3>
<p>Mini-XML was initially developed for the <a href="http://gutenprint.sf.net/">Gutenprint</a> project to replace the rather large and unwieldy <code>libxml2</code> library with something substantially smaller and easier-to-use. It all began one morning in June of 2003 when Robert posted the following sentence to the developer's list:</p>
<blockquote>
<p>It's bad enough that we require libxml2, but rolling our own XML parser is a bit more than we can handle.</p>
</blockquote>
<p>I then replied with:</p>
<blockquote>
<p>Given the limited scope of what you use in XML, it should be trivial to code a mini-XML API in a few hundred lines of code.</p>
</blockquote>
<p>I took my own challenge and coded furiously for two days to produce the initial public release of Mini-XML, total lines of code: 696. Robert promptly integrated Mini-XML into Gutenprint and removed libxml2.</p>
<p>Thanks to lots of feedback and support from various developers, Mini-XML has evolved since then to provide a more complete XML implementation and now stands at a whopping 3,491 lines of code, compared to 175,808 lines of code for libxml2 version 2.11.7.</p>
<h3 class="title" id="resources">Resources</h3>
<p>The Mini-XML home page can be found at <a href="https://www.msweet.org/mxml">https://www.msweet.org/mxml</a>. From there you can download the current version of Mini-XML, access the issue tracker, and find other resources.</p>
<p>Mini-XML v4 has a slightly different API than prior releases. See the <a href="#migrating-from-mini-xml-v3.x">Migrating from Mini-XML v3.x</a> chapter for details.</p>
<h3 class="title" id="legal-stuff">Legal Stuff</h3>
<p>The Mini-XML library is copyright © 2003-2024 by Michael R Sweet and is provided under the Apache License Version 2.0 with an (optional) exception to allow linking against GPL2/LGPL2-only software. See the files "LICENSE" and "NOTICE" for more information.</p>
<h2 class="title" id="using-mini-xml">Using Mini-XML</h2>
<p>Mini-XML provides a single header file which you include:</p>
<pre><code class="language-c"><span class="directive">#include <mxml.h></span>
</code></pre>
<p>The Mini-XML library is included with your program using the <code>-lmxml4</code> option:</p>
<pre><code>gcc -o myprogram myprogram.c -lmxml4
</code></pre>
<p>If you have the <code>pkg-config</code> software installed, you can use it to determine the proper compiler and linker options for your installation:</p>
<pre><code>gcc `pkg-config --cflags mxml4` -o myprogram myprogram.c `pkg-config --libs mxml4`
</code></pre>
<p>> Note: The library name "mxml4" is a configure-time option. If you use the</p>
<blockquote>
<p><code>--disable-libmxml4-prefix</code> configure option the library is named "mxml".</p>
</blockquote>
<h3 class="title" id="api-basics">API Basics</h3>
<p>Every piece of information in an XML file is stored in memory in "nodes". Nodes are represented by <code>mxml_node_t</code> pointers. Each node has an associated type, value(s), a parent node, sibling nodes (previous and next), potentially first and last child nodes, and an optional user data pointer.</p>
<p>For example, if you have an XML file like the following:</p>
<pre><code class="language-xml"><span class="directive"><?xml version=</span><span class="string">"1.0"</span><span class="directive"> encoding=</span><span class="string">"utf-8"</span><span class="directive">?></span>
<span class="reserved"><data></span>
<span class="reserved"><node></span>val1<span class="reserved"></node></span>
<span class="reserved"><node></span>val2<span class="reserved"></node></span>
<span class="reserved"><node></span>val3<span class="reserved"></node></span>
<span class="reserved"><group></span>
<span class="reserved"><node></span>val4<span class="reserved"></node></span>
<span class="reserved"><node></span>val5<span class="reserved"></node></span>
<span class="reserved"><node></span>val6<span class="reserved"></node></span>
<span class="reserved"></group></span>
<span class="reserved"><node></span>val7<span class="reserved"></node></span>
<span class="reserved"><node></span>val8<span class="reserved"></node></span>
<span class="reserved"></data></span>
</code></pre>
<p>the node tree for the file would look like the following in memory:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
|
<data>
|
<node> - <node> - <node> - <group> - <node> - <node>
| | | | | |
val1 val2 val3 | val7 val8
|
<node> - <node> - <node>
| | |
val4 val5 val6
</code></pre>
<p>where "-" is a pointer to the sibling node and "|" is a pointer to the first child or parent node.</p>
<p>The <a href="#mxmlGetType">mxmlGetType</a> function gets the type of a node which is represented as a <code>mxml_type_t</code> enumeration value:</p>
<ul>
<li><p><code>MXML_TYPE_CDATA</code>: CDATA such as <code><![CDATA[...]]></code>,</p>
</li>
<li><p><code>MXML_TYPE_COMMENT</code>: A comment such as <code><!-- my comment --></code>,</p>
</li>
<li><p><code>MXML_TYPE_CUSTOM</code>: A custom value defined by your application,</p>
</li>
<li><p><code>MXML_TYPE_DECLARATION</code>: A declaration such as <code><!DOCTYPE html></code>,</p>
</li>
<li><p><code>MXML_TYPE_DIRECTIVE</code>: A processing instruction such as <code><?xml version="1.0" encoding="utf-8"?></code>,</p>
</li>
<li><p><code>MXML_TYPE_ELEMENT</code>: An XML element with optional attributes such as <code><element name="value"></code>,</p>
</li>
<li><p><code>MXML_TYPE_INTEGER</code>: A whitespace-delimited integer value such as <code>42</code>,</p>
</li>
<li><p><code>MXML_TYPE_OPAQUE</code>: An opaque string value that preserves all whitespace such as <code>All work and no play makes Johnny a dull boy.</code>,</p>
</li>
<li><p><code>MXML_TYPE_REAL</code>: A whitespace-delimited floating point value such as <code>123.4</code>, or</p>
</li>
<li><p><code>MXML_TYPE_TEXT</code>: A whitespace-delimited text (fragment) value such as <code>Word</code>.</p>
</li>
</ul>
<p>The parent, sibling, and child nodes are accessed using the <a href="#mxmlGetParent">mxmlGetParent</a>, <a href="#mxmlGetNextSibling">mxmlGetNextSibling</a>, <a href="#mxmlGetPreviousSibling">mxmlGetPreviousSibling</a>, <a href="#mxmlGetFirstChild">mxmlGetFirstChild</a>, and <a href="#mxmlGetLastChild">mxmlGetLastChild</a> functions.</p>
<p>The value(s) of a node are accessed using the <a href="#mxmlGetCDATA">mxmlGetCDATA</a>, <a href="#mxmlGetComment">mxmlGetComment</a>, <a href="#mxmlGetDeclaration">mxmlGetDeclaration</a>, <a href="#mxmlGetDirective">mxmlGetDirective</a>, <a href="#mxmlGetElement">mxmlGetElement</a>, <a href="#mxmlElementGetAttr">mxmlElementGetAttr</a>, <a href="#mxmlGetInteger">mxmlGetInteger</a>, <a href="#mxmlGetOpaque">mxmlGetOpaque</a>, <a href="#mxmlGetReal">mxmlGetReal</a>, and <a href="#mxmlGetText">mxmlGetText</a> functions.</p>
<h3 class="title" id="loading-an-xml-file">Loading an XML File</h3>
<p>You load an XML file using the <a href="#mxmlLoadFilename">mxmlLoadFilename</a> function:</p>
<pre><code class="language-c">mxml_node_t *
mxmlLoadFilename(mxml_node_t *top, mxml_options_t *options,
<span class="reserved">const</span> <span class="reserved">char</span> *filename);
</code></pre>
<p>Mini-XML also provides functions to load from a <code>FILE</code> pointer, a file descriptor, a string, or using a callback:</p>
<pre><code class="language-c">mxml_node_t *
mxmlLoadFd(mxml_node_t *top, mxml_options_t *options,
<span class="reserved">int</span> fd);
mxml_node_t *
mxmlLoadFile(mxml_node_t *top, mxml_options_t *options,
FILE *fp);
mxml_node_t *
mxmlLoadIO(mxml_node_t *top, mxml_options_t *options,
mxml_io_cb_t io_cb, <span class="reserved">void</span> *io_cbdata);
mxml_node_t *
mxmlLoadString(mxml_node_t *top, mxml_options_t *options,
<span class="reserved">const</span> <span class="reserved">char</span> *s);
</code></pre>
<p>Each accepts a pointer to the top-most ("root") node (usually <code>NULL</code>) you want to add the XML data to, any load options, and the content to be loaded. For example, the following code will load an XML file called "example.xml" using the default load options:</p>
<pre><code class="language-c">mxml_node_t *xml;
xml = mxmlLoadFilename(<span class="comment">/*top*/</span>NULL, <span class="comment">/*options*/</span>NULL,
<span class="string">"example.xml"</span>);
</code></pre>
<h4 id="load-options">Load Options</h4>
<p>Load options are specified using a <code>mxml_options_t</code> pointer, which you create using the <a href="#mxmlOptionsNew">mxmlOptionsNew</a> function:</p>
<pre><code class="language-c">mxml_options_t *options = mxmlOptionsNew();
</code></pre>
<p>The default load options will treat any values in your XML as whitespace- delimited text (<code>MXML_TYPE_TEXT</code>). You can specify a different type of values using the <a href="#mxmlOptionsSetTypeValue">mxmlOptionsSetTypeValue</a> function. For example, the following will specify that values are opaque text strings, including whitespace (<code>MXML_TYPE_OPAQUE</code>):</p>
<pre><code class="language-c">mxmlOptionsSetTypeValue(options, MXML_TYPE_OPAQUE);
</code></pre>
<p>For more complex XML documents, you can specify a callback that returns the type of value for a given element node using the <a href="#mxmlOptionsSetTypeCallback">mxmlOptionsSetTypeCallback</a> function. For example, to specify a callback function called <code>my_type_cb</code> that has no callback data:</p>
<pre><code class="language-c">mxmlOptionsSetTypeCallback(options, my_type_cb, <span class="comment">/*cbdata*/</span>NULL);
</code></pre>
<p>The <code>my_type_cb</code> function accepts the callback data pointer (<code>NULL</code> in this case) and the <code>mxml_node_t</code> pointer for the current element and returns a <code>mxml_type_t</code> enumeration value specifying the value type for child nodes. For example, the following function looks at the "type" attribute and the element name to determine the value types of the node's children:</p>
<pre><code class="language-c">mxml_type_t
my_load_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node)
{
<span class="reserved">const</span> <span class="reserved">char</span> *type;
<span class="comment">/*</span>
<span class="comment"> * You can lookup attributes and/or use the element name,</span>
<span class="comment"> * hierarchy, etc...</span>
<span class="comment"> */</span>
type = mxmlElementGetAttr(node, <span class="string">"type"</span>);
<span class="reserved">if</span> (type == NULL)
type = mxmlGetElement(node);
<span class="reserved">if</span> (type == NULL)
type = <span class="string">"text"</span>;
<span class="reserved">if</span> (!strcmp(type, <span class="string">"integer"</span>))
<span class="reserved">return</span> (MXML_TYPE_INTEGER);
<span class="reserved">else</span> <span class="reserved">if</span> (!strcmp(type, <span class="string">"opaque"</span>))
<span class="reserved">return</span> (MXML_TYPE_OPAQUE);
<span class="reserved">else</span> <span class="reserved">if</span> (!strcmp(type, <span class="string">"real"</span>))
<span class="reserved">return</span> (MXML_TYPE_REAL);
<span class="reserved">else</span>
<span class="reserved">return</span> (MXML_TYPE_TEXT);
}
</code></pre>
<h3 class="title" id="finding-nodes">Finding Nodes</h3>
<p>The <a href="#mxmlFindPath">mxmlFindPath</a> function finds the (first) value node under a specific element using a path. The path string can contain the "*" wildcard to match a single element node in the hierarchy. For example, the following code will find the first "node" element under the "group" element, first using an explicit path and then using a wildcard:</p>
<pre><code class="language-c">mxml_node_t *directnode = mxmlFindPath(xml, <span class="string">"data/group/node"</span>);
mxml_node_t *wildnode = mxmlFindPath(xml, <span class="string">"data/*/node"</span>);
</code></pre>
<p>The <a href="#mxmlFindElement">mxmlFindElement</a> function can be used to find a named element, optionally matching an attribute and value:</p>
<pre><code class="language-c">mxml_node_t *
mxmlFindElement(mxml_node_t *node, mxml_node_t *top,
<span class="reserved">const</span> <span class="reserved">char</span> *element, <span class="reserved">const</span> <span class="reserved">char</span> *attr,
<span class="reserved">const</span> <span class="reserved">char</span> *value, <span class="reserved">int</span> descend);
</code></pre>
<p>The <code>element</code>, <code>attr</code>, and <code>value</code> arguments can be passed as <code>NULL</code> to act as wildcards, e.g.:</p>
<pre><code class="language-c">mxml_node_t *node;
<span class="comment">/* Find the first "a" element */</span>
node = mxmlFindElement(tree, tree, <span class="string">"a"</span>, NULL, NULL,
MXML_DESCEND_ALL);
<span class="comment">/* Find the first "a" element with "href" attribute */</span>
node = mxmlFindElement(tree, tree, <span class="string">"a"</span>, <span class="string">"href"</span>, NULL,
MXML_DESCEND_ALL);
<span class="comment">/* Find the first "a" element with "href" to a URL */</span>
node = mxmlFindElement(tree, tree, <span class="string">"a"</span>, <span class="string">"href"</span>,
<span class="string">"http://msweet.org/"</span>,
MXML_DESCEND_ALL);
<span class="comment">/* Find the first element with a "src" attribute*/</span>
node = mxmlFindElement(tree, tree, NULL, <span class="string">"src"</span>, NULL,
MXML_DESCEND_ALL);
<span class="comment">/* Find the first element with a "src" = "foo.jpg" */</span>
node = mxmlFindElement(tree, tree, NULL, <span class="string">"src"</span>, <span class="string">"foo.jpg"</span>,
MXML_DESCEND_ALL);
</code></pre>
<p>You can also iterate with the same function:</p>
<pre><code class="language-c">mxml_node_t *node;
<span class="reserved">for</span> (node = mxmlFindElement(tree, tree, <span class="string">"element"</span>, NULL,
NULL, MXML_DESCEND_ALL);
node != NULL;
node = mxmlFindElement(node, tree, <span class="string">"element"</span>, NULL,
NULL, MXML_DESCEND_ALL))
{
... <span class="reserved">do</span> something ...
}
</code></pre>
<p>The <code>descend</code> argument (<code>MXML_DESCEND_ALL</code> in the previous examples) can be one of three constants:</p>
<ul>
<li><p><code>MXML_DESCEND_NONE</code>: ignore child nodes in the element hierarchy, instead using siblings (same level) or parent nodes (above) until the top (root) node is reached.</p>
</li>
<li><p><code>MXML_DESCEND_FIRST</code>: start the search with the first child of the node, and then search siblings. You'll normally use this when iterating through direct children of a parent node, e.g. all of the <code><node></code> and <code><group></code> elements under the <code><?xml ...?></code> parent node in the previous example.</p>
</li>
<li><p><code>MXML_DESCEND_ALL</code>: search child nodes first, then sibling nodes, and then parent nodes.</p>
</li>
</ul>
<h3 class="title" id="getting-the-values-from-nodes">Getting the Value(s) from Nodes</h3>
<p>Once you have the node you can use one of the mxmlGetXxx functions to retrieve its value(s).</p>
<p>Element (<code>MXML_TYPE_ELEMENT</code>) nodes have an associated name and zero or more named attributes with (string) values. The <a href="#mxmlGetElement">mxmlGetElement</a> function retrieves the element name while the <a href="#mxmlElementGetAttr">mxmlElementGetAttr</a> function retrieves the value string for a named attribute. For example, the following code looks for HTML heading elements and, when found, displays the "id" attribute for the heading:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *elemname = mxmlGetElement(node);
<span class="reserved">const</span> <span class="reserved">char</span> *id_value = mxmlElementGetAttr(node, <span class="string">"id"</span>);
<span class="reserved">if</span> ((*elemname == <span class="string">'h'</span> || *elemname == <span class="string">'H'</span>) &&
elemname[<span class="number">1</span>] >= <span class="string">'1'</span> && elemname[<span class="number">1</span>] <= <span class="string">'6'</span> &&
id_value != NULL)
printf(<span class="string">"%s: %s\n"</span>, elemname, id_value);
</code></pre>
<p>The <a href="#mxmlElementGetAttrByIndex">mxmlElementGetAttrByIndex</a> and <a href="#mxmlElementGetAttrCount">mxmlElementGetAttrCount</a> functions allow you to iterate all attributes of an element. For example, the following code prints the element name and each of its attributes:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *elemname = mxmlGetElement(node);
printf(<span class="string">"%s:\n"</span>, elemname);
size_t i, count;
<span class="reserved">for</span> (i = <span class="number">0</span>, count = mxmlElementGetAttrCount(node); i < count; i ++)
{
<span class="reserved">const</span> <span class="reserved">char</span> *attrname, *attrvalue;
attrvalue = mxmlElementGetAttrByIndex(node, i, &attrname);
printf(<span class="string">" %s=\"%s\"\n"</span>, attrname, attrvalue);
}
</code></pre>
<p>CDATA (<code>MXML_TYPE_CDATA</code>) nodes have an associated string value consisting of the text between the <code><![CDATA[</code> and <code>]]></code> delimiters. The <a href="#mxmlGetCDATA">mxmlGetCDATA</a> function retrieves the CDATA string pointer for a node. For example, the following code gets the CDATA string value:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *cdatavalue = mxmlGetCDATA(node);
</code></pre>
<p>Comment (<code>MXML_TYPE_COMMENT</code>) nodes have an associated string value consisting of the text between the <code><!--</code> and <code>--></code> delimiters. The <a href="#mxmlGetComment">mxmlGetComment</a> function retrieves the comment string pointer for a node. For example, the following code gets the comment string value:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *commentvalue = mxmlGetComment(node);
</code></pre>
<p>Processing instruction (<code>MXML_TYPE_DIRECTIVE</code>) nodes have an associated string value consisting of the text between the <code><?</code> and <code>?></code> delimiters. The <a href="#mxmlGetDirective">mxmlGetDirective</a> function retrieves the processing instruction string for a node. For example, the following code gets the processing instruction string value:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *instrvalue = mxmlGetDirective(node);
</code></pre>
<p>Integer (<code>MXML_TYPE_INTEGER</code>) nodes have an associated <code>long</code> value. The <a href="#mxmlGetInteger">mxmlGetInteger</a> function retrieves the integer value for a node. For example, the following code gets the integer value:</p>
<pre><code class="language-c"><span class="reserved">long</span> intvalue = mxmlGetInteger(node);
</code></pre>
<p>Opaque string (<code>MXML_TYPE_OPAQUE</code>) nodes have an associated string value consisting of the text between elements. The <a href="#mxmlGetOpaque">mxmlGetOpaque</a> function retrieves the opaque string pointer for a node. For example, the following code gets the opaque string value:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *opaquevalue = mxmlGetOpaque(node);
</code></pre>
<p>Real number (<code>MXML_TYPE_REAL</code>) nodes have an associated <code>double</code> value. The <a href="#mxmlGetReal">mxmlGetReal</a> function retrieves the real number for a node. For example, the following code gets the real value:</p>
<pre><code class="language-c"><span class="reserved">double</span> realvalue = mxmlGetReal(node);
</code></pre>
<p>Whitespace-delimited text string (<code>MXML_TYPE_TEXT</code>) nodes have an associated whitespace indicator and string value extracted from the text between elements. The <a href="#mxmlGetText">mxmlGetText</a> function retrieves the text string pointer and whitespace boolean value for a node. For example, the following code gets the text and whitespace indicator:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *textvalue;
<span class="reserved">bool</span> whitespace;
textvalue = mxmlGetText(node, &whitespace);
</code></pre>
<h3 class="title" id="saving-an-xml-file">Saving an XML File</h3>
<p>You save an XML file using the <a href="#mxmlSaveFilename">mxmlSaveFilename</a> function:</p>
<pre><code class="language-c"><span class="reserved">bool</span>
mxmlSaveFilename(mxml_node_t *node, mxml_options_t *options,
<span class="reserved">const</span> <span class="reserved">char</span> *filename);
</code></pre>
<p>Mini-XML also provides functions to save to a <code>FILE</code> pointer, a file descriptor, a string, or using a callback:</p>
<pre><code class="language-c"><span class="reserved">char</span> *
mxmlSaveAllocString(mxml_node_t *node, mxml_options_t *options);
<span class="reserved">bool</span>
mxmlSaveFd(mxml_node_t *node, mxml_options_t *options,
<span class="reserved">int</span> fd);
<span class="reserved">bool</span>
mxmlSaveFile(mxml_node_t *node, mxml_options_t *options,
FILE *fp);
<span class="reserved">bool</span>
mxmlSaveIO(mxml_node_t *node, mxml_options_t *options,
mxml_io_cb_t *io_cb, <span class="reserved">void</span> *io_cbdata);
size_t
mxmlSaveString(mxml_node_t *node, mxml_options_t *options,
<span class="reserved">char</span> *buffer, size_t bufsize);
</code></pre>
<p>Each accepts a pointer to the top-most ("root") node, any save options, and (as needed) the destination. For example, the following code saves an XML file to the file "example.xml" with the default options:</p>
<pre><code class="language-c">mxmlSaveFile(xml, <span class="comment">/*options*/</span>NULL, <span class="string">"example.xml"</span>);
</code></pre>
<h4 id="save-options">Save Options</h4>
<p>Save options are specified using a <code>mxml_options_t</code> pointer, which you create using the <a href="#mxmlOptionsNew">mxmlOptionsNew</a> function:</p>
<pre><code class="language-c">mxml_options_t *options = mxmlOptionsNew();
</code></pre>
<p>The default save options will wrap output lines at column 72 but not add any additional whitespace otherwise. You can change the wrap column using the <a href="#mxmlOptionsSetWrapMargin">mxmlOptionsSetWrapMargin</a> function. For example, the following will set the wrap column to 0 which disables wrapping:</p>
<pre><code class="language-c">mxmlOptionsSetWrapMargin(options, <span class="number">0</span>);
</code></pre>
<p>To add additional whitespace to the output, set a whitespace callback using the <a href="#mxmlOptionsSetWhitespaceCallback">mxmlOptionsSetWhitespaceCallback</a> function. A whitespace callback accepts a callback data pointer, the current node, and a whitespace position value of <code>MXML_WS_BEFORE_OPEN</code>, <code>MXML_WS_AFTER_OPEN</code>, <code>MXML_WS_BEFORE_CLOSE</code>, or <code>MXML_WS_AFTER_CLOSE</code>. The callback should return <code>NULL</code> if no whitespace is to be inserted or a string of spaces, tabs, carriage returns, and newlines to insert otherwise.</p>
<p>The following whitespace callback can be used to add whitespace to XHTML output to make it more readable in a standard text editor:</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">char</span> *
whitespace_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node, mxml_ws_t where)
{
<span class="reserved">const</span> <span class="reserved">char</span> *element;
<span class="comment">/*</span>
<span class="comment"> * We can conditionally break to a new line before or after</span>
<span class="comment"> * any element. These are just common HTML elements...</span>
<span class="comment"> */</span>
element = mxmlGetElement(node);
<span class="reserved">if</span> (!strcmp(element, <span class="string">"html"</span>) ||
!strcmp(element, <span class="string">"head"</span>) ||
!strcmp(element, <span class="string">"body"</span>) ||
!strcmp(element, <span class="string">"pre"</span>) ||
!strcmp(element, <span class="string">"p"</span>) ||
!strcmp(element, <span class="string">"h1"</span>) ||
!strcmp(element, <span class="string">"h2"</span>) ||
!strcmp(element, <span class="string">"h3"</span>) ||
!strcmp(element, <span class="string">"h4"</span>) ||
!strcmp(element, <span class="string">"h5"</span>) ||
!strcmp(element, <span class="string">"h6"</span>))
{
<span class="comment">/*</span>
<span class="comment"> * Newlines before open and after close...</span>
<span class="comment"> */</span>
<span class="reserved">if</span> (where == MXML_WS_BEFORE_OPEN ||
where == MXML_WS_AFTER_CLOSE)
<span class="reserved">return</span> (<span class="string">"\n"</span>);
}
<span class="reserved">else</span> <span class="reserved">if</span> (!strcmp(element, <span class="string">"dl"</span>) ||
!strcmp(element, <span class="string">"ol"</span>) ||
!strcmp(element, <span class="string">"ul"</span>))
{
<span class="comment">/*</span>
<span class="comment"> * Put a newline before and after list elements...</span>
<span class="comment"> */</span>
<span class="reserved">return</span> (<span class="string">"\n"</span>);
}
<span class="reserved">else</span> <span class="reserved">if</span> (!strcmp(element, <span class="string">"dd"</span>) ||
!strcmp(element, <span class="string">"dt"</span>) ||
!strcmp(element, <span class="string">"li"</span>))
{
<span class="comment">/*</span>
<span class="comment"> * Put a tab before <li>'s, <dd>'s, and <dt>'s, and a</span>
<span class="comment"> * newline after them...</span>
<span class="comment"> */</span>
<span class="reserved">if</span> (where == MXML_WS_BEFORE_OPEN)
<span class="reserved">return</span> (<span class="string">"\t"</span>);
<span class="reserved">else</span> <span class="reserved">if</span> (where == MXML_WS_AFTER_CLOSE)
<span class="reserved">return</span> (<span class="string">"\n"</span>);
}
<span class="comment">/*</span>
<span class="comment"> * Otherwise return NULL for no added whitespace...</span>
<span class="comment"> */</span>
<span class="reserved">return</span> (NULL);
}
</code></pre>
<p>The following code will set the whitespace callback for the save options:</p>
<pre><code class="language-c">mxmlOptionsSetWhitespaceCallback(options, whitespace_cb, <span class="comment">/*cbdata*/</span>NULL);
</code></pre>
<h3 class="title" id="freeing-memory">Freeing Memory</h3>
<p>Once you are done with the XML data, use the <a href="#mxmlDelete">mxmlDelete</a> function to free the memory that is used for a particular node and its children. For example, the following code frees the XML data loaded by the previous examples:</p>
<pre><code class="language-c">mxmlDelete(xml);
</code></pre>
<h2 class="title" id="creating-new-xml-documents">Creating New XML Documents</h2>
<p>You can create new and update existing XML documents in memory using the various mxmlNewXxx functions. The following code will create the XML document described in the <a href="#using-mini-xml">Using Mini-XML</a> chapter:</p>
<pre><code class="language-c">mxml_node_t *xml; <span class="comment">/* <?xml version="1.0" charset="utf-8"?> */</span>
mxml_node_t *data; <span class="comment">/* <data> */</span>
mxml_node_t *node; <span class="comment">/* <node> */</span>
mxml_node_t *group; <span class="comment">/* <group> */</span>
xml = mxmlNewXML(<span class="string">"1.0"</span>);
data = mxmlNewElement(xml, <span class="string">"data"</span>);
node = mxmlNewElement(data, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val1"</span>);
node = mxmlNewElement(data, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val2"</span>);
node = mxmlNewElement(data, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val3"</span>);
group = mxmlNewElement(data, <span class="string">"group"</span>);
node = mxmlNewElement(group, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val4"</span>);
node = mxmlNewElement(group, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val5"</span>);
node = mxmlNewElement(group, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val6"</span>);
node = mxmlNewElement(data, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val7"</span>);
node = mxmlNewElement(data, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val8"</span>);
</code></pre>
<p>We start by creating the processing instruction node common to all XML files using the <a href="#mxmlNewXML">mxmlNewXML</a> function:</p>
<pre><code class="language-c">xml = mxmlNewXML(<span class="string">"1.0"</span>);
</code></pre>
<p>We then create the <code><data></code> node used for this document using the <a href="#mxmlNewElement">mxmlNewElement</a> function. The first argument specifies the parent node (<code>xml</code>) while the second specifies the element name (<code>data</code>):</p>
<pre><code class="language-c">data = mxmlNewElement(xml, <span class="string">"data"</span>);
</code></pre>
<p>Each <code><node>...</node></code> in the file is created using the <a href="#mxmlNewElement">mxmlNewElement</a> and <a href="#mxmlNewText">mxmlNewText</a> functions. The first argument of <a href="#mxmlNewText">mxmlNewText</a> specifies the parent node (<code>node</code>). The second argument specifies whether whitespace appears before the text - <code>false</code> in this case. The last argument specifies the actual text to add:</p>
<pre><code class="language-c">node = mxmlNewElement(data, <span class="string">"node"</span>);
mxmlNewText(node, <span class="reserved">false</span>, <span class="string">"val1"</span>);
</code></pre>
<p>The resulting in-memory XML document can then be saved or processed just like one loaded from disk or a string.</p>
<h3 class="title" id="element-nodes">Element Nodes</h3>
<p>Element (<code>MXML_TYPE_ELEMENT</code>) nodes are created using the <a href="#mxmlNewElement">mxmlNewElement</a> function. Element attributes are set using the <a href="#mxmlElementSetAttr">mxmlElementSetAttr</a> and <a href="#mxmlElementSetAttrf">mxmlElementSetAttrf</a> functions and cleared using the <a href="#mxmlElementClearAttr">mxmlElementClearAttr</a> function:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewElement(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *name);
<span class="reserved">void</span>
mxmlElementClearAttr(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *name);
<span class="reserved">void</span>
mxmlElementSetAttr(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *name,
<span class="reserved">const</span> <span class="reserved">char</span> *value);
<span class="reserved">void</span>
mxmlElementSetAttrf(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *name,
<span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
</code></pre>
<h3 class="title" id="cdata-nodes">CDATA Nodes</h3>
<p>CDATA (<code>MXML_TYPE_CDATA</code>) nodes are created using the <a href="#mxmlNewCDATA">mxmlNewCDATA</a> and <a href="#mxmlNewCDATAf">mxmlNewCDATAf</a> functions and set using the <a href="#mxmlSetCDATA">mxmlSetCDATA</a> and <a href="#mxmlSetCDATAf">mxmlSetCDATAf</a> functions:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewCDATA(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *string);
mxml_node_t *
mxmlNewCDATAf(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
<span class="reserved">void</span>
mxmlSetCDATA(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *string);
<span class="reserved">void</span>
mxmlSetCDATAf(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
</code></pre>
<h3 class="title" id="comment-nodes">Comment Nodes</h3>
<p>Comment (<code>MXML_TYPE_COMMENT</code>) nodes are created using the <a href="#mxmlNewComment">mxmlNewComment</a> and <a href="#mxmlNewCommentf">mxmlNewCommentf</a> functions and set using the <a href="#mxmlSetComment">mxmlSetComment</a> and <a href="#mxmlSetCommentf">mxmlSetCommentf</a> functions:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewComment(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *string);
mxml_node_t *
mxmlNewCommentf(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
<span class="reserved">void</span>
mxmlSetComment(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *string);
<span class="reserved">void</span>
mxmlSetCommentf(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
</code></pre>
<h3 class="title" id="processing-instruction-nodes">Processing Instruction Nodes</h3>
<p>Processing instruction (<code>MXML_TYPE_DIRECTIVE</code>) nodes are created using the <a href="#mxmlNewDirective">mxmlNewDirective</a> and <a href="#mxmlNewDirectivef">mxmlNewDirectivef</a> functions and set using the <a href="#mxmlSetDirective">mxmlSetDirective</a> and <a href="#mxmlSetDirectivef">mxmlSetDirectivef</a> functions:</p>
<pre><code class="language-c">mxml_node_t *node = mxmlNewDirective(<span class="string">"xml-stylesheet type=\"text/css\" href=\"style.css\""</span>);
mxml_node_t *node = mxmlNewDirectivef(<span class="string">"xml version=\"%s\""</span>, version);
</code></pre>
<p>The <a href="#mxmlNewXML">mxmlNewXML</a> function can be used to create the top-level "xml" processing instruction with an associated version number:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewXML(<span class="reserved">const</span> <span class="reserved">char</span> *version);
</code></pre>
<h3 class="title" id="integer-nodes">Integer Nodes</h3>
<p>Integer (<code>MXML_TYPE_INTEGER</code>) nodes are created using the <a href="#mxmlNewInteger">mxmlNewInteger</a> function and set using the <a href="#mxmlSetInteger">mxmlSetInteger</a> function:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewInteger(mxml_node_t *parent, <span class="reserved">long</span> integer);
<span class="reserved">void</span>
mxmlSetInteger(mxml_node_t *node, <span class="reserved">long</span> integer);
</code></pre>
<h3 class="title" id="opaque-string-nodes">Opaque String Nodes</h3>
<p>Opaque string (<code>MXML_TYPE_OPAQUE</code>) nodes are created using the <a href="#mxmlNewOpaque">mxmlNewOpaque</a> and <a href="#mxmlNewOpaquef">mxmlNewOpaquef</a> functions and set using the <a href="#mxmlSetOpaque">mxmlSetOpaque</a> and <a href="#mxmlSetOpaquef">mxmlSetOpaquef</a> functions:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewOpaque(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *opaque);
mxml_node_t *
mxmlNewOpaquef(mxml_node_t *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
<span class="reserved">void</span>
mxmlSetOpaque(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *opaque);
<span class="reserved">void</span>
mxmlSetOpaquef(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
</code></pre>
<h3 class="title" id="real-number-nodes">Real Number Nodes</h3>
<p>Real number (<code>MXML_TYPE_REAL</code>) nodes are created using the <a href="#mxmlNewReal">mxmlNewReal</a> function and set using the <a href="#mxmlSetReal">mxmlSetReal</a> function:</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewReal(mxml_node_t *parent, <span class="reserved">double</span> real);
<span class="reserved">void</span>
mxmlSetReal(mxml_node_t *node, <span class="reserved">double</span> real);
</code></pre>
<h3 class="title" id="text-nodes">Text Nodes</h3>
<p>Whitespace-delimited text string (<code>MXML_TYPE_TEXT</code>) nodes are created using the <a href="#mxmlNewText">mxmlNewText</a> and <a href="#mxmlNewTextf">mxmlNewTextf</a> functions and set using the <a href="#mxmlSetText">mxmlSetText</a> and <a href="#mxmlSetTextf">mxmlSetTextf</a> functions. Each text node consists of a text string and (leading) whitespace boolean value.</p>
<pre><code class="language-c">mxml_node_t *
mxmlNewText(mxml_node_t *parent, <span class="reserved">bool</span> whitespace,
<span class="reserved">const</span> <span class="reserved">char</span> *string);
mxml_node_t *
mxmlNewTextf(mxml_node_t *parent, <span class="reserved">bool</span> whitespace,
<span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
<span class="reserved">void</span>
mxmlSetText(mxml_node_t *node, <span class="reserved">bool</span> whitespace,
<span class="reserved">const</span> <span class="reserved">char</span> *string);
<span class="reserved">void</span>
mxmlSetTextf(mxml_node_t *node, <span class="reserved">bool</span> whitespace,
<span class="reserved">const</span> <span class="reserved">char</span> *format, ...);
</code></pre>
<h2 class="title" id="iterating-and-indexing-the-tree">Iterating and Indexing the Tree</h2>
<h3 class="title" id="iterating-nodes">Iterating Nodes</h3>
<p>While the <a href="#mxmlFindNode">mxmlFindNode</a> and <a href="#mxmlFindPath">mxmlFindPath</a> functions will find a particular element node, sometimes you need to iterate over all nodes. The <a href="#mxmlWalkNext">mxmlWalkNext</a> and <a href="#mxmlWalkPrev">mxmlWalkPrev</a> functions can be used to iterate through the XML node tree:</p>
<pre><code class="language-c">mxml_node_t *
mxmlWalkNext(mxml_node_t *node, mxml_node_t *top,
<span class="reserved">int</span> descend);
mxml_node_t *
mxmlWalkPrev(mxml_node_t *node, mxml_node_t *top,
<span class="reserved">int</span> descend);
</code></pre>
<p>Depending on the value of the <code>descend</code> argument, these functions will automatically traverse child, sibling, and parent nodes until the <code>top</code> node is reached. For example, the following code will iterate over all of the nodes in the sample XML document in the <a href="#using-mini-xml">Using Mini-XML</a> chapter:</p>
<pre><code class="language-c">mxml_node_t *node;
<span class="reserved">for</span> (node = xml;
node != NULL;
node = mxmlWalkNext(node, xml, MXML_DESCEND_ALL))
{
... <span class="reserved">do</span> something ...
}
</code></pre>
<p>The nodes will be returned in the following order:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<data>
<node>
val1
<node>
val2
<node>
val3
<group>
<node>
val4
<node>
val5
<node>
val6
<node>
val7
<node>
val8
</code></pre>
<h3 class="title" id="indexing">Indexing</h3>
<p>The <a href="#mxmlIndexNew">mxmlIndexNew</a> function allows you to create an index of nodes for faster searching and enumeration:</p>
<pre><code class="language-c">mxml_index_t *
mxmlIndexNew(mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *element,
<span class="reserved">const</span> <span class="reserved">char</span> *attr);
</code></pre>
<p>The <code>element</code> and <code>attr</code> arguments control which elements are included in the index. If <code>element</code> is not <code>NULL</code> then only elements with the specified name are added to the index. Similarly, if <code>attr</code> is not <code>NULL</code> then only elements containing the specified attribute are added to the index. The nodes are sorted in the index.</p>
<p>For example, the following code creates an index of all "id" values in an XML document:</p>
<pre><code class="language-c">mxml_index_t *ind = mxmlIndexNew(xml, NULL, <span class="string">"id"</span>);
</code></pre>
<p>Once the index is created, the <a href="#mxmlIndexFind">mxmlIndexFind</a> function can be used to find a matching node:</p>
<pre><code class="language-c">mxml_node_t *
mxmlIndexFind(mxml_index_t *ind, <span class="reserved">const</span> <span class="reserved">char</span> *element,
<span class="reserved">const</span> <span class="reserved">char</span> *value);
</code></pre>
<p>For example, the following code will find the element whose "id" string is "42":</p>
<pre><code class="language-c">mxml_node_t *node = mxmlIndexFind(ind, NULL, <span class="string">"42"</span>);
</code></pre>
<p>Alternately, the <a href="#mxmlIndexReset">mxmlIndexReset</a> and <a href="#mxmlIndexEnum">mxmlIndexEnum</a> functions can be used to enumerate the nodes in the index:</p>
<pre><code class="language-c">mxml_node_t *
mxmlIndexReset(mxml_index_t *ind);
mxml_node_t *
mxmlIndexEnum(mxml_index_t *ind);
</code></pre>
<p>Typically these functions will be used in a <code>for</code> loop:</p>
<pre><code class="language-c">mxml_node_t *node;
<span class="reserved">for</span> (node = mxmlIndexReset(ind);
node != NULL;
node = mxmlIndexEnum(ind))
{
... <span class="reserved">do</span> something ...
}
</code></pre>
<p>The <a href="#mxmlIndexCount">mxmlIndexCount</a> function returns the number of nodes in the index:</p>
<pre><code class="language-c">size_t
mxmlIndexGetCount(mxml_index_t *ind);
</code></pre>
<p>Finally, the <a href="#mxmlIndexDelete">mxmlIndexDelete</a> function frees all memory associated with the index:</p>
<pre><code class="language-c"><span class="reserved">void</span>
mxmlIndexDelete(mxml_index_t *ind);
</code></pre>
<h2 class="title" id="advanced-usage">Advanced Usage</h2>
<h3 class="title" id="custom-data-types">Custom Data Types</h3>
<p>Mini-XML supports custom data types via load and save callback options. Only a single set of callbacks can be active at any time for a <code>mxml_options_t</code> pointer, however your callbacks can store additional information in order to support multiple custom data types as needed. The <code>MXML_TYPE_CUSTOM</code> node type identifies custom data nodes.</p>
<p>The <a href="#mxmlGetCustom">mxmlGetCustom</a> function retrieves the custom value pointer for a node.</p>
<pre><code class="language-c"><span class="reserved">const</span> <span class="reserved">void</span> *
mxmlGetCustom(mxml_node_t *node);
</code></pre>
<p>Custom (<code>MXML_TYPE_CUSTOM</code>) nodes are created using the <a href="#mxmlNewCustom">mxmlNewCustom</a> function or using the custom load callback specified using the <a href="#mxmlOptionsSetCustomCallbacks">mxmlOptionsSetCustomCallbacks</a> function:</p>
<pre><code class="language-c"><span class="reserved">typedef</span> <span class="reserved">void</span> (*mxml_custfree_cb_t)(<span class="reserved">void</span> *cbdata, <span class="reserved">void</span> *data);
<span class="reserved">typedef</span> <span class="reserved">bool</span> (*mxml_custload_cb_t)(<span class="reserved">void</span> *cbdata, mxml_node_t *, <span class="reserved">const</span> <span class="reserved">char</span> *);
<span class="reserved">typedef</span> <span class="reserved">char</span> *(*mxml_custsave_cb_t)(<span class="reserved">void</span> *cbdata, mxml_node_t *);
mxml_node_t *
mxmlNewCustom(mxml_node_t *parent, <span class="reserved">void</span> *data,
mxml_custfree_cb_t free_cb, <span class="reserved">void</span> *free_cbdata);
<span class="reserved">int</span>
mxmlSetCustom(mxml_node_t *node, <span class="reserved">void</span> *data,
mxml_custfree_cb_t free_cb, <span class="reserved">void</span> *free_cbdata);
<span class="reserved">void</span>
mxmlOptionsSetCustomCallbacks(mxml_option_t *options,
mxml_custload_cb_t load_cb,
mxml_custsave_cb_t save_cb,
<span class="reserved">void</span> *cbdata);
</code></pre>
<p>The load callback receives the callback data pointer, a pointer to the current data node, and a string of opaque character data from the XML source with character entities converted to the corresponding UTF-8 characters. For example, if we wanted to support a custom date/time type whose value is encoded as "yyyy-mm-ddThh:mm:ssZ" (ISO 8601 format), the load callback would look like the following:</p>
<pre><code class="language-c"><span class="reserved">typedef</span> <span class="reserved">struct</span> iso_date_time_s
{
<span class="reserved">unsigned</span> year, <span class="comment">/* Year */</span>
month, <span class="comment">/* Month */</span>
day, <span class="comment">/* Day */</span>
hour, <span class="comment">/* Hour */</span>
minute, <span class="comment">/* Minute */</span>
second; <span class="comment">/* Second */</span>
time_t unix; <span class="comment">/* UNIX time */</span>
} iso_date_time_t;
<span class="reserved">bool</span>
custom_load_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node, <span class="reserved">const</span> <span class="reserved">char</span> *data)
{
iso_date_time_t *dt;
<span class="reserved">struct</span> tm tmdata;
<span class="comment">/*</span>
<span class="comment"> * Allocate data structure...</span>
<span class="comment"> */</span>
dt = calloc(<span class="number">1</span>, <span class="reserved">sizeof</span>(iso_date_time_t));
<span class="comment">/*</span>
<span class="comment"> * Try reading 6 unsigned integers from the data string...</span>
<span class="comment"> */</span>
<span class="reserved">if</span> (sscanf(data, <span class="string">"%u-%u-%uT%u:%u:%uZ"</span>, &(dt->year),
&(dt->month), &(dt->day), &(dt->hour),
&(dt->minute), &(dt->second)) != <span class="number">6</span>)
{
<span class="comment">/*</span>
<span class="comment"> * Unable to read numbers, free the data structure and</span>
<span class="comment"> * return an error...</span>
<span class="comment"> */</span>
free(dt);
<span class="reserved">return</span> (<span class="reserved">false</span>);
}
<span class="comment">/*</span>
<span class="comment"> * Range check values...</span>
<span class="comment"> */</span>
<span class="reserved">if</span> (dt->month < <span class="number">1</span> || dt->month > <span class="number">12</span> ||
dt->day < <span class="number">1</span> || dt->day > <span class="number">31</span> ||
dt->hour < <span class="number">0</span> || dt->hour > <span class="number">23</span> ||
dt->minute < <span class="number">0</span> || dt->minute > <span class="number">59</span> ||
dt->second < <span class="number">0</span> || dt->second > <span class="number">60</span>)
{
<span class="comment">/*</span>
<span class="comment"> * Date information is out of range...</span>
<span class="comment"> */</span>
free(dt);
<span class="reserved">return</span> (<span class="reserved">false</span>);
}
<span class="comment">/*</span>
<span class="comment"> * Convert ISO time to UNIX time in seconds...</span>
<span class="comment"> */</span>
tmdata.tm_year = dt->year - <span class="number">1900</span>;
tmdata.tm_mon = dt->month - <span class="number">1</span>;
tmdata.tm_day = dt->day;
tmdata.tm_hour = dt->hour;
tmdata.tm_min = dt->minute;
tmdata.tm_sec = dt->second;
dt->unix = gmtime(&tmdata);
<span class="comment">/*</span>
<span class="comment"> * Assign custom node data and free callback function/data...</span>
<span class="comment"> */</span>
mxmlSetCustom(node, data, custom_free_cb, cbdata);
<span class="comment">/*</span>
<span class="comment"> * Return with no errors...</span>
<span class="comment"> */</span>
<span class="reserved">return</span> (<span class="reserved">true</span>);
}
</code></pre>
<p>The function itself can return <code>true</code> on success or <code>false</code> if it is unable to decode the custom data or the data contains an error. Custom data nodes contain a <code>void</code> pointer to the allocated custom data for the node and a pointer to a destructor function which will free the custom data when the node is deleted. In this example, we use the standard <code>free</code> function since everything is contained in a single calloc'd block.</p>
<p>The save callback receives the node pointer and returns an allocated string containing the custom data value. The following save callback could be used for our ISO date/time type:</p>
<pre><code class="language-c"><span class="reserved">char</span> *
custom_save_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node)
{
<span class="reserved">char</span> data[<span class="number">255</span>];
iso_date_time_t *dt;
dt = (iso_date_time_t *)mxmlGetCustom(node);
snprintf(data, <span class="reserved">sizeof</span>(data),
<span class="string">"%04u-%02u-%02uT%02u:%02u:%02uZ"</span>,
dt->year, dt->month, dt->day, dt->hour,
dt->minute, dt->second);
<span class="reserved">return</span> (strdup(data));
}
</code></pre>
<p>You register these callback functions using the <a href="#mxmlOptionsSetCustomCallbacks">mxmlOptionsSetCustomCallbacks</a> function:</p>
<pre><code class="language-c">mxmlOptionsSetCustomCallbacks(options, custom_load_cb,
custom_save_cb, <span class="comment">/*cbdata*/</span>NULL);
</code></pre>
<h3 class="title" id="sax-stream-loading-of-documents">SAX (Stream) Loading of Documents</h3>
<p>Mini-XML supports an implementation of the Simple API for XML (SAX) which allows you to load and process an XML document as a stream of nodes. Aside from allowing you to process XML documents of any size, the Mini-XML implementation also allows you to retain portions of the document in memory for later processing.</p>
<p>The mxmlLoadXxx functions support a SAX option that is enabled by setting a callback function and data pointer with the <a href="#mxmlOptionsSetSAXCallback">mxmlOptionsSetSAXCallback</a> function. The callback function receives the data pointer you supplied, the node, and an event code and returns <code>true</code> to continue processing or <code>false</code> to stop:</p>
<pre><code class="language-c"><span class="reserved">bool</span>
sax_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node,
mxml_sax_event_t event)
{
... <span class="reserved">do</span> something ...
<span class="comment">// Continue processing...</span>
<span class="reserved">return</span> (<span class="reserved">true</span>);
}
</code></pre>
<p>The event will be one of the following:</p>
<ul>
<li><p><code>MXML_SAX_EVENT_CDATA</code>: CDATA was just read.</p>
</li>
<li><p><code>MXML_SAX_EVENT_COMMENT</code>: A comment was just read.</p>
</li>
<li><p><code>MXML_SAX_EVENT_DATA</code>: Data (integer, opaque, real, or text) was just read.</p>
</li>
<li><p><code>MXML_SAX_EVENT_DECLARATION</code>: A declaration was just read.</p>
</li>
<li><p><code>MXML_SAX_EVENT_DIRECTIVE</code>: A processing directive/instruction was just read.</p>
</li>
<li><p><code>MXML_SAX_EVENT_ELEMENT_CLOSE</code> - A close element was just read (<code></element></code>)</p>
</li>
<li><p><code>MXML_SAX_EVENT_ELEMENT_OPEN</code> - An open element was just read (<code><element></code>)</p>
</li>
</ul>
<p>Elements are <em>released</em> after the close element is processed. All other nodes are released after they are processed. The SAX callback can <em>retain</em> the node using the <a href="#mxmlRetain">mxmlRetain</a> function. For example, the following SAX callback will retain all nodes, effectively simulating a normal in-memory load:</p>
<pre><code class="language-c"><span class="reserved">bool</span>
sax_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node, mxml_sax_event_t event)
{
<span class="reserved">if</span> (event != MXML_SAX_ELEMENT_CLOSE)
mxmlRetain(node);
<span class="reserved">return</span> (<span class="reserved">true</span>);
}
</code></pre>
<p>More typically the SAX callback will only retain a small portion of the document that is needed for post-processing. For example, the following SAX callback will retain the title and headings in an XHTML file. It also retains the (parent) elements like <code><html></code>, <code><head></code>, and <code><body></code>, and processing directives like <code><?xml ... ?></code> and declarations like <code><!DOCTYPE ... ></code>:</p>
<pre><code class="language-c"><span class="reserved">bool</span>
sax_cb(<span class="reserved">void</span> *cbdata, mxml_node_t *node,
mxml_sax_event_t event)
{
<span class="reserved">if</span> (event == MXML_SAX_ELEMENT_OPEN)
{
<span class="comment">/*</span>
<span class="comment"> * Retain headings and titles...</span>
<span class="comment"> */</span>
<span class="reserved">const</span> <span class="reserved">char</span> *element = mxmlGetElement(node);
<span class="reserved">if</span> (!strcmp(element, <span class="string">"html"</span>) ||
!strcmp(element, <span class="string">"head"</span>) ||
!strcmp(element, <span class="string">"title"</span>) ||
!strcmp(element, <span class="string">"body"</span>) ||
!strcmp(element, <span class="string">"h1"</span>) ||
!strcmp(element, <span class="string">"h2"</span>) ||
!strcmp(element, <span class="string">"h3"</span>) ||
!strcmp(element, <span class="string">"h4"</span>) ||
!strcmp(element, <span class="string">"h5"</span>) ||
!strcmp(element, <span class="string">"h6"</span>))
mxmlRetain(node);
}
<span class="reserved">else</span> <span class="reserved">if</span> (event == MXML_SAX_DECLARATION)
mxmlRetain(node);
<span class="reserved">else</span> <span class="reserved">if</span> (event == MXML_SAX_DIRECTIVE)
mxmlRetain(node);
<span class="reserved">else</span> <span class="reserved">if</span> (event == MXML_SAX_DATA)
{
<span class="reserved">if</span> (mxmlGetRefCount(mxmlGetParent(node)) > <span class="number">1</span>)
{
<span class="comment">/*</span>
<span class="comment"> * If the parent was retained, then retain this data</span>
<span class="comment"> * node as well.</span>
<span class="comment"> */</span>
mxmlRetain(node);
}
}
<span class="reserved">return</span> (<span class="reserved">true</span>);
}
</code></pre>
<p>The resulting skeleton document tree can then be searched just like one loaded without the SAX callback function. For example, a filter that reads an XHTML document from stdin and then shows the title and headings in the document would look like:</p>
<pre><code class="language-c">mxml_options_t *options;
mxml_node_t *xml, *title, *body, *heading;
options = mxmlOptionsNew();
mxmlOptionsSetSAXCallback(options, sax_cb,
<span class="comment">/*cbdata*/</span>NULL);
xml = mxmlLoadFd(<span class="comment">/*top*/</span>NULL, options, <span class="comment">/*fd*/</span><span class="number">0</span>);
title = mxmlFindElement(doc, doc, <span class="string">"title"</span>, NULL, NULL,
MXML_DESCEND_ALL);
<span class="reserved">if</span> (title)
print_children(title);
body = mxmlFindElement(doc, doc, <span class="string">"body"</span>, NULL, NULL,
MXML_DESCEND_ALL);
<span class="reserved">if</span> (body)
{
<span class="reserved">for</span> (heading = mxmlGetFirstChild(body);
heading;
heading = mxmlGetNextSibling(heading))
print_children(heading);
}
mxmlDelete(xml);
mxmlOptionsDelete(options);
</code></pre>
<p>The <code>print_children</code> function is:</p>
<pre><code class="language-c"><span class="reserved">void</span>
print_children(mxml_node_t *parent)
{
mxml_node_t *node;
<span class="reserved">const</span> <span class="reserved">char</span> *text;
<span class="reserved">bool</span> whitespace;
<span class="reserved">for</span> (node = mxmlGetFirstChild(parent);
node != NULL;
node = mxmlGetNextSibling(node))
{
text = mxmlGetText(node, &whitespace);
<span class="reserved">if</span> (whitespace)
putchar(<span class="string">' '</span>);
fputs(text, stdout);
}
putchar(<span class="string">'\n'</span>);
}
</code></pre>
<h3 class="title" id="user-data">User Data</h3>
<p>Each node has an associated user data pointer that can be used to store useful information for your application. The memory used by the data pointer is <em>not</em> managed by Mini-XML so it is up to you to free it as necessary.</p>
<p>The <a href="#mxmlSetUserData">mxmlSetUserData</a> function sets any user (application) data associated with the node while the <a href="#mxmlGetUserData">mxmlGetUserData</a> function gets any user (application) data associated with the node:</p>
<pre><code class="language-c"><span class="reserved">void</span> *
mxmlGetUserData(mxml_node_t *node);
<span class="reserved">void</span>
mxmlSetUserData(mxml_node_t *node, <span class="reserved">void</span> *user_data);
</code></pre>
<h3 class="title" id="memory-management">Memory Management</h3>
<p>Nodes support reference counting to manage memory usage. The <a href="#mxmlRetain">mxmlRetain</a> and <a href="#mxmlRelease">mxmlRelease</a> functions increment and decrement a node's reference count, respectively. When the reference count goes to zero, <a href="#mxmlRelease">mxmlRelease</a> calls <a href="#mxmlDelete">mxmlDelete</a> to actually free the memory used by the node tree. New nodes start with a reference count of <code>1</code>. You can get a node's current reference count using the <a href="#mxmlGetRefCount">mxmlGetRefCount</a> function.</p>
<p>Strings can also support different kinds of memory management. The default is to use the standard C library strdup and free functions. To use alternate an alternate mechanism, call the <a href="#mxmlSetStringCallbacks">mxmlSetStringCallbacks</a> function to set string copy and free callbacks. The copy callback receives the callback data pointer and the string to copy, and returns a new string that will persist for the life of the XML data. The free callback receives the callback data pointer and the copied string and potentially frees the memory used for it. For example, the following code implements a simple string pool that eliminates duplicate strings:</p>
<pre><code class="language-c"><span class="reserved">typedef</span> <span class="reserved">struct</span> string_pool_s
{
size_t num_strings; <span class="comment">// Number of strings</span>
size_t alloc_strings; <span class="comment">// Allocated strings</span>
<span class="reserved">char</span> **strings; <span class="comment">// Array of strings</span>
} string_pool_t;
<span class="reserved">char</span> *
copy_string(string_pool_t *pool, <span class="reserved">const</span> <span class="reserved">char</span> *s)
{
size_t i; <span class="comment">// Looping var</span>
<span class="reserved">char</span> *news; <span class="comment">// Copy of string</span>
<span class="comment">// See if the string is already in the pool...</span>
<span class="reserved">for</span> (i = <span class="number">0</span>; i < pool->num_strings; i ++)
{
<span class="reserved">if</span> (!strcmp(pool->strings[i], s))
<span class="reserved">return</span> (pool->strings[i]);
}
<span class="comment">// Not in the pool, add new string</span>
<span class="reserved">if</span> (pool->num_strings >= pool->alloc_strings)
{
<span class="comment">// Expand the string pool...</span>
<span class="reserved">char</span> **temp; <span class="comment">// New strings array</span>
temp = realloc(pool->strings,
(pool->alloc_strings + <span class="number">32</span>) *
<span class="reserved">sizeof</span>(<span class="reserved">char</span> *));
<span class="reserved">if</span> (temp == NULL)
<span class="reserved">return</span> (NULL);
pool->alloc_strings += <span class="number">32</span>;
pool->strings = temp;
}
<span class="reserved">if</span> ((news = strdup(s)) != NULL)
pool->strings[pool->num_strings ++] = news;
<span class="reserved">return</span> (news);
}
<span class="reserved">void</span>
free_string(string_pool_t *pool, <span class="reserved">char</span> *s)
{
<span class="comment">// Do nothing here...</span>
}
<span class="reserved">void</span>
free_all_strings(string_pool_t *pool)
{
size_t i; <span class="comment">// Looping var</span>
<span class="reserved">for</span> (i = <span class="number">0</span>; i < pool->num_strings; i ++)
free(pool->strings[i]);
free(pool->strings);
}
...
<span class="comment">// Setup the string pool...</span>
string_pool_t pool = { <span class="number">0</span>, <span class="number">0</span>, NULL };
mxmlSetStringCallbacks((mxml_strcopy_cb_t)copy_string,
(mxml_strfree_cb_t)free_string,
&pool);
<span class="comment">// Load an XML file...</span>
mxml_node_t *xml;
xml = mxmlLoadFilename(<span class="comment">/*top*/</span>NULL, <span class="comment">/*options*/</span>NULL,
<span class="string">"example.xml"</span>);
<span class="comment">// Process the XML file...</span>
...
<span class="comment">// Free memory used by the XML file...</span>
mxmlDelete(xml);
<span class="comment">// Free all strings in the pool...</span>
free_all_strings(&pool);
</code></pre>
<h2 class="title" id="migrating-from-mini-xml-v3.x">Migrating from Mini-XML v3.x</h2>
<p>The following incompatible API changes were made in Mini-XML v4.0:</p>
<ul>
<li><p>Load and save callbacks and options are now managed using <code>mxml_options_t</code> values.</p>
</li>
<li><p>The mxmlSAXLoadXxx functions have been removed in favor of setting the SAX callback function and data pointers of the <code>mxml_options_t</code> value prior to calling the corresponding mxmlLoadXxx functions.</p>
</li>
<li><p>SAX events are now named <code>MXML_SAX_EVENT_foo</code> instead of <code>MXML_SAX_foo</code>.</p>
</li>
<li><p>SAX callbacks now return a boolean value.</p>
</li>
<li><p>Node types are now named <code>MXML_TYPE_foo</code> instead of <code>MXML_foo</code>.</p>
</li>
<li><p>Descend values are now normalized to <code>MXML_DESCEND_ALL</code>, <code>MXML_DESCEND_FIRST</code>, and <code>MXML_DESCEND_NONE</code>.</p>
</li>
<li><p>Functions that returned <code>0</code> on success and <code>-1</code> on error now return <code>true</code> on success and <code>false</code> on error.</p>
</li>
<li><p>CDATA nodes ("<code><![CDATA[...]]></code>") now have their own type (<code>MXML_TYPE_CDATA</code>).</p>
</li>
<li><p>Comment nodes ("<code><!-- ... --></code>") now have their own type (<code>MXML_TYPE_COMMENT</code>).</p>
</li>
<li><p>Declaration nodes ("<code><!...></code>") now have their own type (<code>MXML_TYPE_DECLARATION</code>).</p>
</li>
<li><p>Element attributes are now cleared with the <a href="#mxmlElementClearAttr">mxmlElementClearAttr</a> function instead of mxmlElementDeleteAttr.</p>
</li>
<li><p>Processing instruction/directive nodes ("<code><?...?></code>") now have their own type (<code>MXML_TYPE_DIRECTIVE</code>).</p>
</li>
<li><p>Integer nodes (<code>MXML_TYPE_INTEGER</code>) now use the <code>long</code> type.</p>
</li>
<li><p>Text nodes (<code>MXML_TYPE_TEXT</code>) now use the <code>bool</code> type for the whitespace value.</p>
</li>
<li><p>Custom node callbacks are now set using the <a href="#mxmlOptionsSetCustomCallbacks">mxmlOptionsSetCustomCallbacks</a> function instead of the thread-global mxmlSetCustomHandlers function.</p>
</li>
</ul>
<h2 class="title"><a id="FUNCTIONS">Functions</a></h2>
<h3 class="function"><a id="mxmlAdd">mxmlAdd</a></h3>
<p class="description">Add a node to a tree.</p>
<p class="code">
<span class="reserved">void</span> mxmlAdd(<a href="#mxml_node_t">mxml_node_t</a> *parent, <a href="#mxml_add_t">mxml_add_t</a> add, <a href="#mxml_node_t">mxml_node_t</a> *child, <a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node</td></tr>
<tr><th>add</th>
<td class="description">Where to add, <code>MXML_ADD_BEFORE</code> or <code>MXML_ADD_AFTER</code></td></tr>
<tr><th>child</th>
<td class="description">Child node for where or <code>MXML_ADD_TO_PARENT</code></td></tr>
<tr><th>node</th>
<td class="description">Node to add</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function adds the specified node <code>node</code> to the parent. If the <code>child</code>
argument is not <code>NULL</code>, the new node is added before or after the specified
child depending on the value of the <code>add</code> argument. If the <code>child</code> argument
is <code>NULL</code>, the new node is placed at the beginning of the child list
(<code>MXML_ADD_BEFORE</code>) or at the end of the child list (<code>MXML_ADD_AFTER</code>).</p>
<h3 class="function"><a id="mxmlDelete">mxmlDelete</a></h3>
<p class="description">Delete a node and all of its children.</p>
<p class="code">
<span class="reserved">void</span> mxmlDelete(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to delete</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function deletes the node <code>node</code> and all of its children. If the
specified node has a parent, this function first removes the node from its
parent using the <a href="#mxmlRemove"><code>mxmlRemove</code></a> function.</p>
<h3 class="function"><a id="mxmlElementClearAttr">mxmlElementClearAttr</a></h3>
<p class="description">Remove an attribute from an element.</p>
<p class="code">
<span class="reserved">void</span> mxmlElementClearAttr(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *name);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Element</td></tr>
<tr><th>name</th>
<td class="description">Attribute name</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function removes the attribute <code>name</code> from the element <code>node</code>.</p>
<h3 class="function"><a id="mxmlElementGetAttr">mxmlElementGetAttr</a></h3>
<p class="description">Get the value of an attribute.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlElementGetAttr(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *name);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Element node</td></tr>
<tr><th>name</th>
<td class="description">Name of attribute</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Attribute value or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the value for the attribute <code>name</code> from the element
<code>node</code>. <code>NULL</code> is returned if the node is not an element or the named
attribute does not exist.</p>
<h3 class="function"><a id="mxmlElementGetAttrByIndex">mxmlElementGetAttrByIndex</a></h3>
<p class="description">Get an attribute by index.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlElementGetAttrByIndex(<a href="#mxml_node_t">mxml_node_t</a> *node, size_t idx, <span class="reserved">const</span> <span class="reserved">char</span> **name);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>idx</th>
<td class="description">Attribute index, starting at <code>0</code></td></tr>
<tr><th>name</th>
<td class="description">Attribute name or <code>NULL</code> to not return it</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Attribute value</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function returned the Nth (<code>idx</code>) attribute for element <code>node</code>. The
attribute name is optionallly returned in the <code>name</code> argument. <code>NULL</code> is
returned if node is not an element or the specified index is out of range.</p>
<h3 class="function"><a id="mxmlElementGetAttrCount">mxmlElementGetAttrCount</a></h3>
<p class="description">Get the number of element attributes.</p>
<p class="code">
size_t mxmlElementGetAttrCount(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Number of attributes</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function returns the number of attributes for the element <code>node</code>. <code>0</code>
is returned if the node is not an element or there are no attributes for the
element.</p>
<h3 class="function"><a id="mxmlElementSetAttr">mxmlElementSetAttr</a></h3>
<p class="description">Set an attribute for an element.</p>
<p class="code">
<span class="reserved">void</span> mxmlElementSetAttr(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *name, <span class="reserved">const</span> <span class="reserved">char</span> *value);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Element node</td></tr>
<tr><th>name</th>
<td class="description">Name of attribute</td></tr>
<tr><th>value</th>
<td class="description">Attribute value</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets attribute <code>name</code> to the string <code>value</code> for the element
<code>node</code>. If the named attribute already exists, the value of the attribute
is replaced by the new string value. The string value is copied.</p>
<h3 class="function"><a id="mxmlElementSetAttrf">mxmlElementSetAttrf</a></h3>
<p class="description">Set an attribute with a formatted value.</p>
<p class="code">
<span class="reserved">void</span> mxmlElementSetAttrf(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *name, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Element node</td></tr>
<tr><th>name</th>
<td class="description">Name of attribute</td></tr>
<tr><th>format</th>
<td class="description">Printf-style attribute value</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets attribute <code>name</code> to the formatted value of <code>format</code> for
the element <code>node</code>. If the named attribute already exists, the value of the
attribute is replaced by the new formatted string value.</p>
<h3 class="function"><a id="mxmlFindElement">mxmlFindElement</a></h3>
<p class="description">Find the named element.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlFindElement(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_node_t">mxml_node_t</a> *top, <span class="reserved">const</span> <span class="reserved">char</span> *element, <span class="reserved">const</span> <span class="reserved">char</span> *attr, <span class="reserved">const</span> <span class="reserved">char</span> *value, <a href="#mxml_descend_t">mxml_descend_t</a> descend);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Current node</td></tr>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>element</th>
<td class="description">Element name or <code>NULL</code> for any</td></tr>
<tr><th>attr</th>
<td class="description">Attribute name, or <code>NULL</code> for none</td></tr>
<tr><th>value</th>
<td class="description">Attribute value, or <code>NULL</code> for any</td></tr>
<tr><th>descend</th>
<td class="description">Descend into tree - <code>MXML_DESCEND_ALL</code>, <code>MXML_DESCEND_NONE</code>, or <code>MXML_DESCEND_FIRST</code></td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Element node or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function finds the named element <code>element</code> in XML tree <code>top</code> starting at
node <code>node</code>. The search is constrained by element name <code>element</code>, attribute
name <code>attr</code>, and attribute value <code>value</code> - <code>NULL</code> names or values are treated
as wildcards, so different kinds of searches can be implemented by looking
for all elements of a given name or all elements with a specific attribute.<br>
<br>
The <code>descend</code> argument determines whether the search descends into child
nodes; normally you will use <code>MXML_DESCEND_FIRST</code> for the initial search and
<code>MXML_DESCEND_NONE</code> to find additional direct descendents of the node.</p>
<h3 class="function"><a id="mxmlFindPath">mxmlFindPath</a></h3>
<p class="description">Find a node with the given path.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlFindPath(<a href="#mxml_node_t">mxml_node_t</a> *top, <span class="reserved">const</span> <span class="reserved">char</span> *path);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>path</th>
<td class="description">Path to element</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Found node or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function finds a node in XML tree <code>top</code> using a slash-separated list of
element names in <code>path</code>. The name "<em>" is considered a wildcard for one or
more levels of elements, for example, "foo/one/two", "bar/two/one", "</em>/one",
and so forth.<br>
<br>
The first child node of the found node is returned if the given node has
children and the first child is a value node.</p>
<h3 class="function"><a id="mxmlGetCDATA">mxmlGetCDATA</a></h3>
<p class="description">Get the value for a CDATA node.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetCDATA(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">CDATA value or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the string value of a CDATA node. <code>NULL</code> is returned if
the node is not a CDATA element.</p>
<h3 class="function"><a id="mxmlGetComment">mxmlGetComment</a></h3>
<p class="description">Get the value for a comment node.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetComment(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Comment value or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the string value of a comment node. <code>NULL</code> is returned
if the node is not a comment.</p>
<h3 class="function"><a id="mxmlGetCustom">mxmlGetCustom</a></h3>
<p class="description">Get the value for a custom node.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">void</span> *mxmlGetCustom(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Custom value or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the binary value of a custom node. <code>NULL</code> is returned if
the node (or its first child) is not a custom value node.</p>
<h3 class="function"><a id="mxmlGetDeclaration">mxmlGetDeclaration</a></h3>
<p class="description">Get the value for a declaration node.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetDeclaration(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Declaraction value or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the string value of a declaraction node. <code>NULL</code> is
returned if the node is not a declaration.</p>
<h3 class="function"><a id="mxmlGetDirective">mxmlGetDirective</a></h3>
<p class="description">Get the value for a processing instruction node.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetDirective(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Comment value or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the string value of a processing instruction. <code>NULL</code> is
returned if the node is not a processing instruction.</p>
<h3 class="function"><a id="mxmlGetElement">mxmlGetElement</a></h3>
<p class="description">Get the name for an element node.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetElement(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Element name or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the name of an element node. <code>NULL</code> is returned if the
node is not an element node.</p>
<h3 class="function"><a id="mxmlGetFirstChild">mxmlGetFirstChild</a></h3>
<p class="description">Get the first child of a node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlGetFirstChild(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First child or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the first child of a node. <code>NULL</code> is returned if the node
has no children.</p>
<h3 class="function"><a id="mxmlGetInteger">mxmlGetInteger</a></h3>
<p class="description">Get the integer value from the specified node or its
first child.</p>
<p class="code">
<span class="reserved">long</span> mxmlGetInteger(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Integer value or <code>0</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the value of an integer node. <code>0</code> is returned if the node
(or its first child) is not an integer value node.</p>
<h3 class="function"><a id="mxmlGetLastChild">mxmlGetLastChild</a></h3>
<p class="description">Get the last child of a node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlGetLastChild(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Last child or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the last child of a node. <code>NULL</code> is returned if the node
has no children.</p>
<h3 class="function"><a id="mxmlGetNextSibling">mxmlGetNextSibling</a></h3>
<p class="description"></p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlGetNextSibling(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Get the next node for the current parent.</p>
<p class="discussion">This function gets the next node for the current parent. <code>NULL</code> is returned
if this is the last child for the current parent.</p>
<h3 class="function"><a id="mxmlGetOpaque">mxmlGetOpaque</a></h3>
<p class="description">Get an opaque string value for a node or its first child.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetOpaque(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Opaque string or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the string value of an opaque node. <code>NULL</code> is returned if
the node (or its first child) is not an opaque value node.</p>
<h3 class="function"><a id="mxmlGetParent">mxmlGetParent</a></h3>
<p class="description">Get the parent node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlGetParent(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Parent node or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the parent of a node. <code>NULL</code> is returned for a root node.</p>
<h3 class="function"><a id="mxmlGetPrevSibling">mxmlGetPrevSibling</a></h3>
<p class="description">Get the previous node for the current parent.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlGetPrevSibling(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Previous node or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the previous node for the current parent. <code>NULL</code> is
returned if this is the first child for the current parent.</p>
<h3 class="function"><a id="mxmlGetReal">mxmlGetReal</a></h3>
<p class="description">Get the real value for a node or its first child.</p>
<p class="code">
<span class="reserved">double</span> mxmlGetReal(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Real value or 0.0</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the value of a real value node. <code>0.0</code> is returned if the
node (or its first child) is not a real value node.</p>
<h3 class="function"><a id="mxmlGetRefCount">mxmlGetRefCount</a></h3>
<p class="description">Get the current reference (use) count for a node.</p>
<p class="code">
size_t mxmlGetRefCount(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Reference count</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The initial reference count of new nodes is 1. Use the <a href="#mxmlRetain"><code>mxmlRetain</code></a>
and <a href="#mxmlRelease"><code>mxmlRelease</code></a> functions to increment and decrement a node's
reference count.</p>
<h3 class="function"><a id="mxmlGetText">mxmlGetText</a></h3>
<p class="description">Get the text value for a node or its first child.</p>
<p class="code">
<span class="reserved">const</span> <span class="reserved">char</span> *mxmlGetText(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">bool</span> *whitespace);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
<tr><th>whitespace</th>
<td class="description"><code>true</code> if string is preceded by whitespace, <code>false</code> otherwise</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Text string or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the string and whitespace values of a text node. <code>NULL</code>
and <code>false</code> are returned if the node (or its first child) is not a text node.
The <code>whitespace</code> argument can be <code>NULL</code> if you don't want to know the
whitespace value.<br>
<br>
Note: Text nodes consist of whitespace-delimited words. You will only get
single words of text when reading an XML file with <code>MXML_TYPE_TEXT</code> nodes.
If you want the entire string between elements in the XML file, you MUST read
the XML file with <code>MXML_TYPE_OPAQUE</code> nodes and get the resulting strings
using the <a href="#mxmlGetOpaque"><code>mxmlGetOpaque</code></a> function instead.</p>
<h3 class="function"><a id="mxmlGetType">mxmlGetType</a></h3>
<p class="description">Get the node type.</p>
<p class="code">
<a href="#mxml_type_t">mxml_type_t</a> mxmlGetType(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Type of node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the type of <code>node</code>. <code>MXML_TYPE_IGNORE</code> is returned if
<code>node</code> is <code>NULL</code>.</p>
<h3 class="function"><a id="mxmlGetUserData">mxmlGetUserData</a></h3>
<p class="description">Get the user data pointer for a node.</p>
<p class="code">
<span class="reserved">void</span> *mxmlGetUserData(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to get</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">User data pointer</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function gets the user data pointer associated with <code>node</code>.</p>
<h3 class="function"><a id="mxmlIndexDelete">mxmlIndexDelete</a></h3>
<p class="description">Delete an index.</p>
<p class="code">
<span class="reserved">void</span> mxmlIndexDelete(<a href="#mxml_index_t">mxml_index_t</a> *ind);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>ind</th>
<td class="description">Index to delete</td></tr>
</tbody></table>
<h3 class="function"><a id="mxmlIndexEnum">mxmlIndexEnum</a></h3>
<p class="description">Return the next node in the index.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlIndexEnum(<a href="#mxml_index_t">mxml_index_t</a> *ind);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>ind</th>
<td class="description">Index to enumerate</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Next node or <code>NULL</code> if there is none</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function returns the next node in index <code>ind</code>.<br>
<br>
You should call <a href="#mxmlIndexReset"><code>mxmlIndexReset</code></a> prior to using this function to get
the first node in the index. Nodes are returned in the sorted order of the
index.</p>
<h3 class="function"><a id="mxmlIndexFind">mxmlIndexFind</a></h3>
<p class="description">Find the next matching node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlIndexFind(<a href="#mxml_index_t">mxml_index_t</a> *ind, <span class="reserved">const</span> <span class="reserved">char</span> *element, <span class="reserved">const</span> <span class="reserved">char</span> *value);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>ind</th>
<td class="description">Index to search</td></tr>
<tr><th>element</th>
<td class="description">Element name to find, if any</td></tr>
<tr><th>value</th>
<td class="description">Attribute value, if any</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Node or <code>NULL</code> if none found</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function finds the next matching node in index <code>ind</code>.<br>
<br>
You should call <a href="#mxmlIndexReset"><code>mxmlIndexReset</code></a> prior to using this function for
the first time with a particular set of <code>element</code> and <code>value</code>
strings. Passing <code>NULL</code> for both <code>element</code> and <code>value</code> is equivalent
to calling <a href="#mxmlIndexEnum"><code>mxmlIndexEnum</code></a>.</p>
<h3 class="function"><a id="mxmlIndexGetCount">mxmlIndexGetCount</a></h3>
<p class="description">Get the number of nodes in an index.</p>
<p class="code">
size_t mxmlIndexGetCount(<a href="#mxml_index_t">mxml_index_t</a> *ind);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>ind</th>
<td class="description">Index of nodes</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Number of nodes in index</p>
<h3 class="function"><a id="mxmlIndexNew">mxmlIndexNew</a></h3>
<p class="description">Create a new index.</p>
<p class="code">
<a href="#mxml_index_t">mxml_index_t</a> *mxmlIndexNew(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *element, <span class="reserved">const</span> <span class="reserved">char</span> *attr);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">XML node tree</td></tr>
<tr><th>element</th>
<td class="description">Element to index or <code>NULL</code> for all</td></tr>
<tr><th>attr</th>
<td class="description">Attribute to index or <code>NULL</code> for none</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New index</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function creates a new index for XML tree <code>node</code>.<br>
<br>
The index will contain all nodes that contain the named element and/or
attribute. If both <code>element</code> and <code>attr</code> are <code>NULL</code>, then the index will
contain a sorted list of the elements in the node tree. Nodes are
sorted by element name and optionally by attribute value if the <code>attr</code>
argument is not <code>NULL</code>.</p>
<h3 class="function"><a id="mxmlIndexReset">mxmlIndexReset</a></h3>
<p class="description">Reset the enumeration/find pointer in the index and
return the first node in the index.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlIndexReset(<a href="#mxml_index_t">mxml_index_t</a> *ind);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>ind</th>
<td class="description">Index to reset</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First node or <code>NULL</code> if there is none</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function resets the enumeration/find pointer in index <code>ind</code> and should
be called prior to using <a href="#mxmlIndexEnum"><code>mxmlIndexEnum</code></a> or <a href="#mxmlIndexFind"><code>mxmlIndexFind</code></a> for the
first time.</p>
<h3 class="function"><a id="mxmlLoadFd">mxmlLoadFd</a></h3>
<p class="description">Load a file descriptor into an XML node tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlLoadFd(<a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">int</span> fd);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>fd</th>
<td class="description">File descriptor to read from</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First node or <code>NULL</code> if the file could not be read.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function loads the file descriptor <code>fd</code> into an XML node tree. The
nodes in the specified file are added to the specified node <code>top</code> - if <code>NULL</code>
the XML file MUST be well-formed with a single parent processing instruction
node like <code><?xml version="1.0"?></code> at the start of the file.<br>
<br>
Load options are provides via the <code>options</code> argument. If <code>NULL</code>, all values
will be loaded into <code>MXML_TYPE_TEXT</code> nodes. Use the <a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a>
function to create options when loading XML data.</p>
<h3 class="function"><a id="mxmlLoadFile">mxmlLoadFile</a></h3>
<p class="description">Load a file into an XML node tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlLoadFile(<a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_options_t">mxml_options_t</a> *options, FILE *fp);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>fp</th>
<td class="description">File to read from</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First node or <code>NULL</code> if the file could not be read.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function loads the <code>FILE</code> pointer <code>fp</code> into an XML node tree. The
nodes in the specified file are added to the specified node <code>top</code> - if <code>NULL</code>
the XML file MUST be well-formed with a single parent processing instruction
node like <code><?xml version="1.0"?></code> at the start of the file.<br>
<br>
Load options are provides via the <code>options</code> argument. If <code>NULL</code>, all values
will be loaded into <code>MXML_TYPE_TEXT</code> nodes. Use the <a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a>
function to create options when loading XML data.</p>
<h3 class="function"><a id="mxmlLoadFilename">mxmlLoadFilename</a></h3>
<p class="description">Load a file into an XML node tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlLoadFilename(<a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">const</span> <span class="reserved">char</span> *filename);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>filename</th>
<td class="description">File to read from</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First node or <code>NULL</code> if the file could not be read.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function loads the named file <code>filename</code> into an XML node tree. The
nodes in the specified file are added to the specified node <code>top</code> - if <code>NULL</code>
the XML file MUST be well-formed with a single parent processing instruction
node like <code><?xml version="1.0"?></code> at the start of the file.<br>
<br>
Load options are provides via the <code>options</code> argument. If <code>NULL</code>, all values
will be loaded into <code>MXML_TYPE_TEXT</code> nodes. Use the <a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a>
function to create options when loading XML data.</p>
<h3 class="function"><a id="mxmlLoadIO">mxmlLoadIO</a></h3>
<p class="description">Load an XML node tree using a read callback.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlLoadIO(<a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_io_cb_t">mxml_io_cb_t</a> io_cb, <span class="reserved">void</span> *io_cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>io_cb</th>
<td class="description">Read callback function</td></tr>
<tr><th>io_cbdata</th>
<td class="description">Read callback data</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First node or <code>NULL</code> if the file could not be read.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function loads data into an XML node tree using a read callback. The
nodes in the specified file are added to the specified node <code>top</code> - if <code>NULL</code>
the XML file MUST be well-formed with a single parent processing instruction
node like <code><?xml version="1.0"?></code> at the start of the file.<br>
<br>
Load options are provides via the <code>options</code> argument. If <code>NULL</code>, all values
will be loaded into <code>MXML_TYPE_TEXT</code> nodes. Use the <a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a>
function to create options when loading XML data.<br>
<br>
The read callback function <code>io_cb</code> is called to read a number of bytes from
the source. The callback data pointer <code>io_cbdata</code> is passed to the read
callback with a pointer to a buffer and the maximum number of bytes to read,
for example:<br>
<br>
<code>`</code>c
size_t my_io_cb(void <em>cbdata, void </em>buffer, size_t bytes)
{
... copy up to "bytes" bytes into buffer ...
... return the number of bytes "read" or 0 on error ...
}
<code>`</code></p>
<h3 class="function"><a id="mxmlLoadString">mxmlLoadString</a></h3>
<p class="description">Load a string into an XML node tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlLoadString(<a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">const</span> <span class="reserved">char</span> *s);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>s</th>
<td class="description">String to load</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">First node or <code>NULL</code> if the string has errors.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function loads the string into an XML node tree. The nodes in the
specified file are added to the specified node <code>top</code> - if <code>NULL</code> the XML file
MUST be well-formed with a single parent processing instruction node like
<code><?xml version="1.0"?></code> at the start of the file.<br>
<br>
Load options are provides via the <code>options</code> argument. If <code>NULL</code>, all values
will be loaded into <code>MXML_TYPE_TEXT</code> nodes. Use the <a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a>
function to create options when loading XML data.</p>
<h3 class="function"><a id="mxmlNewCDATA">mxmlNewCDATA</a></h3>
<p class="description">Create a new CDATA node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewCDATA(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *data);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>data</th>
<td class="description">Data string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new CDATA node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new CDATA node
has no parent. The data string must be nul-terminated and is copied into the
new node.</p>
<h3 class="function"><a id="mxmlNewCDATAf">mxmlNewCDATAf</a></h3>
<p class="description">Create a new formatted CDATA node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewCDATAf(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional args as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new CDATA node is added to the end of the specified parent's child list.
The constant <code>NULL</code> can be used to specify that the new opaque string node
has no parent. The format string must be nul-terminated and is formatted
into the new node.</p>
<h3 class="function"><a id="mxmlNewComment">mxmlNewComment</a></h3>
<p class="description">Create a new comment node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewComment(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *comment);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>comment</th>
<td class="description">Comment string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new comment node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new comment node
has no parent. The comment string must be nul-terminated and is copied into
the new node.</p>
<h3 class="function"><a id="mxmlNewCommentf">mxmlNewCommentf</a></h3>
<p class="description">Create a new formatted comment string node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewCommentf(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional args as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new comment string node is added to the end of the specified parent's
child list. The constant <code>NULL</code> can be used to specify that the new opaque
string node has no parent. The format string must be nul-terminated and is
formatted into the new node.</p>
<h3 class="function"><a id="mxmlNewCustom">mxmlNewCustom</a></h3>
<p class="description">Create a new custom data node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewCustom(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">void</span> *data, <a href="#mxml_custfree_cb_t">mxml_custfree_cb_t</a> free_cb, <span class="reserved">void</span> *free_cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>data</th>
<td class="description">Pointer to data</td></tr>
<tr><th>free_cb</th>
<td class="description">Free callback function or <code>NULL</code> if none needed</td></tr>
<tr><th>free_cbdata</th>
<td class="description">Free callback data</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new custom node is added to the end of the specified parent's child
list. The <code>free_cb</code> argument specifies a function to call to free the custom
data when the node is deleted.</p>
<h3 class="function"><a id="mxmlNewDeclaration">mxmlNewDeclaration</a></h3>
<p class="description">Create a new declaraction node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewDeclaration(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *declaration);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>declaration</th>
<td class="description">Declaration string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new declaration node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new
declaration node has no parent. The declaration string must be nul-
terminated and is copied into the new node.</p>
<h3 class="function"><a id="mxmlNewDeclarationf">mxmlNewDeclarationf</a></h3>
<p class="description">Create a new formatted declaration node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewDeclarationf(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional args as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new declaration node is added to the end of the specified parent's
child list. The constant <code>NULL</code> can be used to specify that
the new opaque string node has no parent. The format string must be
nul-terminated and is formatted into the new node.</p>
<h3 class="function"><a id="mxmlNewDirective">mxmlNewDirective</a></h3>
<p class="description">Create a new processing instruction node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewDirective(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *directive);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>directive</th>
<td class="description">Directive string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new processing instruction node is added to the end of the specified
parent's child list. The constant <code>NULL</code> can be used to specify that the new
processing instruction node has no parent. The data string must be
nul-terminated and is copied into the new node.</p>
<h3 class="function"><a id="mxmlNewDirectivef">mxmlNewDirectivef</a></h3>
<p class="description">Create a new formatted processing instruction node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewDirectivef(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional args as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new processing instruction node is added to the end of the specified
parent's child list. The constant <code>NULL</code> can be used to specify that the new
opaque string node has no parent. The format string must be
nul-terminated and is formatted into the new node.</p>
<h3 class="function"><a id="mxmlNewElement">mxmlNewElement</a></h3>
<p class="description">Create a new element node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewElement(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *name);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>name</th>
<td class="description">Name of element</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new element node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new element node
has no parent.</p>
<h3 class="function"><a id="mxmlNewInteger">mxmlNewInteger</a></h3>
<p class="description">Create a new integer node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewInteger(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">long</span> integer);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>integer</th>
<td class="description">Integer value</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new integer node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new integer node
has no parent.</p>
<h3 class="function"><a id="mxmlNewOpaque">mxmlNewOpaque</a></h3>
<p class="description">Create a new opaque string.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewOpaque(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *opaque);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>opaque</th>
<td class="description">Opaque string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new opaque string node is added to the end of the specified parent's
child list. The constant <code>NULL</code> can be used to specify that the new opaque
string node has no parent. The opaque string must be nul-terminated and is
copied into the new node.</p>
<h3 class="function"><a id="mxmlNewOpaquef">mxmlNewOpaquef</a></h3>
<p class="description">Create a new formatted opaque string node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewOpaquef(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional args as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new opaque string node is added to the end of the specified parent's
child list. The constant <code>NULL</code> can be used to specify that the new opaque
string node has no parent. The format string must be nul-terminated and is
formatted into the new node.</p>
<h3 class="function"><a id="mxmlNewReal">mxmlNewReal</a></h3>
<p class="description">Create a new real number node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewReal(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">double</span> real);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>real</th>
<td class="description">Real number value</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new real number node is added to the end of the specified parent's
child list. The constant <code>NULL</code> can be used to specify that the new real
number node has no parent.</p>
<h3 class="function"><a id="mxmlNewText">mxmlNewText</a></h3>
<p class="description">Create a new text fragment node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewText(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">bool</span> whitespace, <span class="reserved">const</span> <span class="reserved">char</span> *string);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>whitespace</th>
<td class="description"><code>true</code> = leading whitespace, <code>false</code> = no whitespace</td></tr>
<tr><th>string</th>
<td class="description">String</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new text node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new text node has
no parent. The whitespace parameter is used to specify whether leading
whitespace is present before the node. The text string must be
nul-terminated and is copied into the new node.</p>
<h3 class="function"><a id="mxmlNewTextf">mxmlNewTextf</a></h3>
<p class="description">Create a new formatted text fragment node.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewTextf(<a href="#mxml_node_t">mxml_node_t</a> *parent, <span class="reserved">bool</span> whitespace, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>parent</th>
<td class="description">Parent node or <code>NULL</code></td></tr>
<tr><th>whitespace</th>
<td class="description"><code>true</code> = leading whitespace, <code>false</code> = no whitespace</td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional args as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The new text node is added to the end of the specified parent's child
list. The constant <code>NULL</code> can be used to specify that the new text node has
no parent. The whitespace parameter is used to specify whether leading
whitespace is present before the node. The format string must be
nul-terminated and is formatted into the new node.</p>
<h3 class="function"><a id="mxmlNewXML">mxmlNewXML</a></h3>
<p class="description">Create a new XML document tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlNewXML(<span class="reserved">const</span> <span class="reserved">char</span> *version);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>version</th>
<td class="description">Version number to use</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New ?xml node</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The "version" argument specifies the version number to put in the
?xml directive node. If <code>NULL</code>, version "1.0" is assumed.</p>
<h3 class="function"><a id="mxmlOptionsDelete">mxmlOptionsDelete</a></h3>
<p class="description">Free load/save options.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsDelete(<a href="#mxml_options_t">mxml_options_t</a> *options);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
</tbody></table>
<h3 class="function"><a id="mxmlOptionsNew">mxmlOptionsNew</a></h3>
<p class="description">Allocate load/save options.</p>
<p class="code">
<a href="#mxml_options_t">mxml_options_t</a> *mxmlOptionsNew(<span class="reserved">void</span>);</p>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Options</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function creates a new set of load/save options to use with the
<a href="#mxmlLoadFd"><code>mxmlLoadFd</code></a>, <a href="#mxmlLoadFile"><code>mxmlLoadFile</code></a>, <a href="#mxmlLoadFilename"><code>mxmlLoadFilename</code></a>,
<a href="#mxmlLoadIO"><code>mxmlLoadIO</code></a>, <a href="#mxmlLoadString"><code>mxmlLoadString</code></a>, <a href="#mxmlSaveAllocString"><code>mxmlSaveAllocString</code></a>,
<a href="#mxmlSaveFd"><code>mxmlSaveFd</code></a>, <a href="#mxmlSaveFile"><code>mxmlSaveFile</code></a>, <a href="#mxmlSaveFilename"><code>mxmlSaveFilename</code></a>,
<a href="#mxmlSaveIO"><code>mxmlSaveIO</code></a>, and <a href="#mxmlSaveString"><code>mxmlSaveString</code></a> functions. Options can be
reused for multiple calls to these functions and should be freed using the
<a href="#mxmlOptionsDelete"><code>mxmlOptionsDelete</code></a> function.<br>
<br>
The default load/save options load values using the constant type
<code>MXML_TYPE_TEXT</code> and save XML data with a wrap margin of 72 columns.
The various <code>mxmlOptionsSet</code> functions are used to change the defaults,
for example:
<pre>
mxml_options_t *options = mxmlOptionsNew();
/* Load values as opaque strings */
mxmlOptionsSetTypeValue(options, MXML_TYPE_OPAQUE);
</pre>
Note: The most common programming error when using the Mini-XML library is
to load an XML file using the <code>MXML_TYPE_TEXT</code> node type, which returns
inline text as a series of whitespace-delimited words, instead of using the
<code>MXML_TYPE_OPAQUE</code> node type which returns the inline text as a single string
(including whitespace).</p>
<h3 class="function"><a id="mxmlOptionsSetCustomCallbacks">mxmlOptionsSetCustomCallbacks</a></h3>
<p class="description">Set the custom data callbacks.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetCustomCallbacks(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_custload_cb_t">mxml_custload_cb_t</a> load_cb, <a href="#mxml_custsave_cb_t">mxml_custsave_cb_t</a> save_cb, <span class="reserved">void</span> *cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>load_cb</th>
<td class="description">Custom load callback function</td></tr>
<tr><th>save_cb</th>
<td class="description">Custom save callback function</td></tr>
<tr><th>cbdata</th>
<td class="description">Custom callback data</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the callbacks that are used for loading and saving custom
data types. The load callback <code>load_cb</code> accepts the callback data pointer
<code>cbdata</code>, a node pointer, and a data string and returns <code>true</code> on success and
<code>false</code> on error, for example:<br>
<br>
<code>`</code>c
typedef struct
{
unsigned year, /<em> Year </em>/
month, /<em> Month </em>/
day, /<em> Day </em>/
hour, /<em> Hour </em>/
minute, /<em> Minute </em>/
second; /<em> Second </em>/
time_t unix; /<em> UNIX time </em>/
} iso_date_time_t;<br>
<br>
void
my_custom_free_cb(void <em>cbdata, void </em>data)
{
free(data);
}<br>
<br>
bool
my_custom_load_cb(void <em>cbdata, mxml_node_t </em>node, const char <em>data)
{
iso_date_time_t </em>dt;
struct tm tmdata;<br>
<br>
/<em> Allocate custom data structure ... </em>/
dt = calloc(1, sizeof(iso_date_time_t));<br>
<br>
/<em> Parse the data string... </em>/
if (sscanf(data, "%u-%u-%uT%u:%u:%uZ", &(dt->year), &(dt->month),
&(dt->day), &(dt->hour), &(dt->minute), &(dt->second)) != 6)
{
/<em> Unable to parse date and time numbers... </em>/
free(dt);
return (false);
}<br>
<br>
/<em> Range check values... </em>/
if (dt->month <a href=" 1 || dt-"> 1 || dt-</a>month > 12 || dt->day <a href=" 1 || dt-"> 1 || dt-</a>day > 31 ||
dt->hour <a href=" 0 || dt-"> 0 || dt-</a>hour > 23 || dt->minute <a href=" 0 || dt-"> 0 || dt-</a>minute > 59 ||
dt->second <a href=" 0 || dt-"> 0 || dt-</a>second > 60)
{
/<em> Date information is out of range... </em>/
free(dt);
return (false);
}<br>
<br>
/<em> Convert ISO time to UNIX time in seconds... </em>/
tmdata.tm_year = dt->year - 1900;
tmdata.tm_mon = dt->month - 1;
tmdata.tm_day = dt->day;
tmdata.tm_hour = dt->hour;
tmdata.tm_min = dt->minute;
tmdata.tm_sec = dt->second;<br>
<br>
dt->unix = gmtime(&tmdata);<br>
<br>
/<em> Set custom data and free function... </em>/
mxmlSetCustom(node, data, my_custom_free, /<em>cbdata</em>/NULL);<br>
<br>
/<em> Return with no errors... </em>/
return (true);
}
<pre>
The save callback `save_cb` accepts the callback data pointer `cbdata` and a
node pointer and returns a malloc'd string on success and `NULL` on error,
for example:
```c
char *
my_custom_save_cb(void *cbdata, mxml_node_t *node)
{
char data[255];
iso_date_time_t *dt;
/* Get the custom data structure */
dt = (iso_date_time_t *)mxmlGetCustom(node);
/* Generate string version of the date/time... */
snprintf(data, sizeof(data), "%04u-%02u-%02uT%02u:%02u:%02uZ",
dt->year, dt->month, dt->day, dt->hour, dt->minute, dt->second);
/* Duplicate the string and return... */
return (strdup(data));
}
</pre>
</p>
<h3 class="function"><a id="mxmlOptionsSetEntityCallback">mxmlOptionsSetEntityCallback</a></h3>
<p class="description">Set the entity lookup callback to use when loading XML data.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetEntityCallback(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_entity_cb_t">mxml_entity_cb_t</a> cb, <span class="reserved">void</span> *cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>cb</th>
<td class="description">Entity callback function</td></tr>
<tr><th>cbdata</th>
<td class="description">Entity callback data</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the callback that is used to lookup named XML character
entities when loading XML data. The callback function <code>cb</code> accepts the
callback data pointer <code>cbdata</code> and the entity name. The function returns a
Unicode character value or <code>-1</code> if the entity is not known. For example, the
following entity callback supports the "euro" entity:<br>
<br>
<code>`</code>c
int my_entity_cb(void <em>cbdata, const char </em>name)
{
if (!strcmp(name, "euro"))
return (0x20ac);
else
return (-1);
}
<pre>
Mini-XML automatically supports the "amp", "gt", "lt", and "quot" character
entities which are required by the base XML specification.</pre>
char *data)
{
iso_date_time_t </p>
<h3 class="function"><a id="mxmlOptionsSetErrorCallback">mxmlOptionsSetErrorCallback</a></h3>
<p class="description">Set the error message callback.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetErrorCallback(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_error_cb_t">mxml_error_cb_t</a> cb, <span class="reserved">void</span> *cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>cb</th>
<td class="description">Error callback function</td></tr>
<tr><th>cbdata</th>
<td class="description">Error callback data</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets a function to use when reporting errors. The callback
<code>cb</code> accepts the data pointer <code>cbdata</code> and a string pointer containing the
error message:<br>
<br>
<code>`</code>c
void my_error_cb(void <em>cbdata, const char </em>message)
{
fprintf(stderr, "myprogram: %sn", message);
}
<pre>
The default error callback writes the error message to the `stderr` file.</pre>
ack supports the "euro" entity:<br>
<br>
<code>`</code></p>
<h3 class="function"><a id="mxmlOptionsSetSAXCallback">mxmlOptionsSetSAXCallback</a></h3>
<p class="description">Set the SAX callback to use when reading XML data.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetSAXCallback(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_sax_cb_t">mxml_sax_cb_t</a> cb, <span class="reserved">void</span> *cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>cb</th>
<td class="description">SAX callback function</td></tr>
<tr><th>cbdata</th>
<td class="description">SAX callback data</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets a SAX callback to use when reading XML data. The SAX
callback function <code>cb</code> and associated callback data <code>cbdata</code> are used to
enable the Simple API for XML streaming mode. The callback is called as the
XML node tree is parsed and receives the <code>cbdata</code> pointer, the <code>mxml_node_t</code>
pointer, and an event code. The function returns <code>true</code> to continue
processing or <code>false</code> to stop:<br>
<br>
<code>`</code>c
bool
sax_cb(void <em>cbdata, mxml_node_t </em>node,
mxml_sax_event_t event)
{
... do something ...<br>
<br>
/<em> Continue processing... </em>/
return (true);
}
<pre>
The event will be one of the following:
- `MXML_SAX_EVENT_CDATA`: CDATA was just read.
- `MXML_SAX_EVENT_COMMENT`: A comment was just read.
- `MXML_SAX_EVENT_DATA`: Data (integer, opaque, real, or text) was just read.
- `MXML_SAX_EVENT_DECLARATION`: A declaration was just read.
- `MXML_SAX_EVENT_DIRECTIVE`: A processing directive/instruction was just read.
- `MXML_SAX_EVENT_ELEMENT_CLOSE` - A close element was just read (`</element>`)
- `MXML_SAX_EVENT_ELEMENT_OPEN` - An open element was just read (`<element>`)
Elements are *released* after the close element is processed. All other nodes
are released after they are processed. The SAX callback can *retain* the node
using the [mxmlRetain](@@) function.</pre>
/* Date information is out of range... </p>
<h3 class="function"><a id="mxmlOptionsSetTypeCallback">mxmlOptionsSetTypeCallback</a></h3>
<p class="description">Set the type callback for child/value nodes.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetTypeCallback(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_type_cb_t">mxml_type_cb_t</a> cb, <span class="reserved">void</span> *cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>cb</th>
<td class="description">Type callback function</td></tr>
<tr><th>cbdata</th>
<td class="description">Type callback data</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">The load callback function <code>cb</code> is called to obtain the node type child/value
nodes and receives the <code>cbdata</code> pointer and the <code>mxml_node_t</code> pointer, for
example:<br>
<br>
<code>`</code>c
mxml_type_t
my_type_cb(void <em>cbdata, mxml_node_t </em>node)
{
const char <em>type;
/</em>
<em> You can lookup attributes and/or use the element name,
</em> hierarchy, etc...
*/<br>
<br>
type = mxmlElementGetAttr(node, "type");
if (type == NULL)
type = mxmlGetElement(node);
if (type == NULL)
type = "text";<br>
<br>
if (!strcmp(type, "integer"))
return (MXML_TYPE_INTEGER);
else if (!strcmp(type, "opaque"))
return (MXML_TYPE_OPAQUE);
else if (!strcmp(type, "real"))
return (MXML_TYPE_REAL);
else
return (MXML_TYPE_TEXT);
}
<code>`</code></p>
<h3 class="function"><a id="mxmlOptionsSetTypeValue">mxmlOptionsSetTypeValue</a></h3>
<p class="description">Set the type to use for all child/value nodes.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetTypeValue(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_type_t">mxml_type_t</a> type);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>type</th>
<td class="description">Value node type</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This functions sets a constant node type to use for all child/value nodes.</p>
<h3 class="function"><a id="mxmlOptionsSetWhitespaceCallback">mxmlOptionsSetWhitespaceCallback</a></h3>
<p class="description">Set the whitespace callback.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetWhitespaceCallback(<a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_ws_cb_t">mxml_ws_cb_t</a> cb, <span class="reserved">void</span> *cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>cb</th>
<td class="description">Whitespace callback function</td></tr>
<tr><th>cbdata</th>
<td class="description">Whitespace callback data</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the whitespace callback that is used when saving XML data.
The callback function <code>cb</code> specifies a function that returns a whitespace
string or <code>NULL</code> before and after each element. The function receives the
callback data pointer <code>cbdata</code>, the <code>mxml_node_t</code> pointer, and a "when"
value indicating where the whitespace is being added, for example:<br>
<br>
<code>`</code>c
const char <em>my_whitespace_cb(void </em>cbdata, mxml_node_t *node, mxml_ws_t when)
{
if (when == MXML_WS_BEFORE_OPEN || when == MXML_WS_AFTER_CLOSE)
return ("n");
else
return (NULL);
}
<code>`</code></p>
<h3 class="function"><a id="mxmlOptionsSetWrapMargin">mxmlOptionsSetWrapMargin</a></h3>
<p class="description">Set the wrap margin when saving XML data.</p>
<p class="code">
<span class="reserved">void</span> mxmlOptionsSetWrapMargin(<a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">int</span> column);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>column</th>
<td class="description">Wrap column</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the wrap margin used when saving XML data. Wrapping is
disabled when <code>column</code> is <code>0</code>.</p>
<h3 class="function"><a id="mxmlRelease">mxmlRelease</a></h3>
<p class="description">Release a node.</p>
<p class="code">
<span class="reserved">int</span> mxmlRelease(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New reference count</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">When the reference count reaches zero, the node (and any children)
is deleted via <a href="#mxmlDelete"><code>mxmlDelete</code></a>.</p>
<h3 class="function"><a id="mxmlRemove">mxmlRemove</a></h3>
<p class="description">Remove a node from its parent.</p>
<p class="code">
<span class="reserved">void</span> mxmlRemove(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to remove</td></tr>
</tbody></table>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function does not free memory used by the node - use <a href="#mxmlDelete"><code>mxmlDelete</code></a>
for that. This function does nothing if the node has no parent.</p>
<h3 class="function"><a id="mxmlRetain">mxmlRetain</a></h3>
<p class="description">Retain a node.</p>
<p class="code">
<span class="reserved">int</span> mxmlRetain(<a href="#mxml_node_t">mxml_node_t</a> *node);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">New reference count</p>
<h3 class="function"><a id="mxmlSaveAllocString">mxmlSaveAllocString</a></h3>
<p class="description">Save an XML tree to an allocated string.</p>
<p class="code">
<span class="reserved">char</span> *mxmlSaveAllocString(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_options_t">mxml_options_t</a> *options);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to write</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Allocated string or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function saves the XML tree <code>node</code> to an allocated string. The string
should be freed using <code>free</code> (or the string free callback set using
<a href="#mxmlSetStringCallbacks"><code>mxmlSetStringCallbacks</code></a>) when you are done with it.<br>
<br>
<code>NULL</code> is returned if the node would produce an empty string or if the string
cannot be allocated.<br>
<br>
Save options are provides via the <code>options</code> argument. If <code>NULL</code>, the XML
output will be wrapped at column 72 with no additional whitespace. Use the
<a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a> function to create options for saving XML data.</p>
<h3 class="function"><a id="mxmlSaveFd">mxmlSaveFd</a></h3>
<p class="description">Save an XML tree to a file descriptor.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSaveFd(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">int</span> fd);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to write</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>fd</th>
<td class="description">File descriptor to write to</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on error.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function saves the XML tree <code>node</code> to a file descriptor.<br>
<br>
Save options are provides via the <code>options</code> argument. If <code>NULL</code>, the XML
output will be wrapped at column 72 with no additional whitespace. Use the
<a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a> function to create options for saving XML data.</p>
<h3 class="function"><a id="mxmlSaveFile">mxmlSaveFile</a></h3>
<p class="description">Save an XML tree to a file.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSaveFile(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_options_t">mxml_options_t</a> *options, FILE *fp);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to write</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>fp</th>
<td class="description">File to write to</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on error.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function saves the XML tree <code>node</code> to a stdio <code>FILE</code>.<br>
<br>
Save options are provides via the <code>options</code> argument. If <code>NULL</code>, the XML
output will be wrapped at column 72 with no additional whitespace. Use the
<a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a> function to create options for saving XML data.</p>
<h3 class="function"><a id="mxmlSaveFilename">mxmlSaveFilename</a></h3>
<p class="description">Save an XML tree to a file.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSaveFilename(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">const</span> <span class="reserved">char</span> *filename);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to write</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>filename</th>
<td class="description">File to write to</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on error.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function saves the XML tree <code>node</code> to a named file.<br>
<br>
Save options are provides via the <code>options</code> argument. If <code>NULL</code>, the XML
output will be wrapped at column 72 with no additional whitespace. Use the
<a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a> function to create options for saving XML data.</p>
<h3 class="function"><a id="mxmlSaveIO">mxmlSaveIO</a></h3>
<p class="description">Save an XML tree using a callback.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSaveIO(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_options_t">mxml_options_t</a> *options, <a href="#mxml_io_cb_t">mxml_io_cb_t</a> io_cb, <span class="reserved">void</span> *io_cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to write</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>io_cb</th>
<td class="description">Write callback function</td></tr>
<tr><th>io_cbdata</th>
<td class="description">Write callback data</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on error.</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function saves the XML tree <code>node</code> using a write callback function
<code>io_cb</code>. The write callback is called with the callback data pointer
<code>io_cbdata</code>, a buffer pointer, and the number of bytes to write, for
example:<br>
<br>
<code>`</code>c
size_t my_io_cb(void <em>cbdata, const void </em>buffer, size_t bytes)
{
... write/copy bytes from buffer to the output ...
... return the number of bytes written/copied or 0 on error ...
}
<pre>
Save options are provides via the `options` argument. If `NULL`, the XML
output will be wrapped at column 72 with no additional whitespace. Use the
@link mxmlOptionsNew@ function to create options for saving XML data.</pre>
, "real"))
return (MXML_TYPE_REAL);
else
return (MXML_TYPE_TEXT);
}
<code>`</code></p>
<h3 class="function"><a id="mxmlSaveString">mxmlSaveString</a></h3>
<p class="description">Save an XML node tree to a string.</p>
<p class="code">
size_t mxmlSaveString(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_options_t">mxml_options_t</a> *options, <span class="reserved">char</span> *buffer, size_t bufsize);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to write</td></tr>
<tr><th>options</th>
<td class="description">Options</td></tr>
<tr><th>buffer</th>
<td class="description">String buffer</td></tr>
<tr><th>bufsize</th>
<td class="description">Size of string buffer</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Size of string</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function saves the XML tree <code>node</code> to a fixed-size string buffer.<br>
<br>
Save options are provides via the <code>options</code> argument. If <code>NULL</code>, the XML
output will be wrapped at column 72 with no additional whitespace. Use the
<a href="#mxmlOptionsNew"><code>mxmlOptionsNew</code></a> function to create options for saving XML data.</p>
<h3 class="function"><a id="mxmlSetCDATA">mxmlSetCDATA</a></h3>
<p class="description">Set the data for a CDATA node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetCDATA(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *data);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>data</th>
<td class="description">New data string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the value string for a CDATA node. The node is not
changed if it (or its first child) is not a CDATA node.</p>
<h3 class="function"><a id="mxmlSetCDATAf">mxmlSetCDATAf</a></h3>
<p class="description">Set the data for a CDATA to a formatted string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetCDATAf(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>format</th>
<td class="description"><code>printf</code>-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the formatted string value of a CDATA node. The node is
not changed if it (or its first child) is not a CDATA node.</p>
<h3 class="function"><a id="mxmlSetComment">mxmlSetComment</a></h3>
<p class="description">Set a comment to a literal string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetComment(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *comment);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>comment</th>
<td class="description">Literal string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the string value of a comment node.</p>
<h3 class="function"><a id="mxmlSetCommentf">mxmlSetCommentf</a></h3>
<p class="description">Set a comment to a formatted string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetCommentf(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>format</th>
<td class="description"><code>printf</code>-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the formatted string value of a comment node.</p>
<h3 class="function"><a id="mxmlSetCustom">mxmlSetCustom</a></h3>
<p class="description">Set the data and destructor of a custom data node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetCustom(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">void</span> *data, <a href="#mxml_custfree_cb_t">mxml_custfree_cb_t</a> free_cb, <span class="reserved">void</span> *free_cbdata);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>data</th>
<td class="description">New data pointer</td></tr>
<tr><th>free_cb</th>
<td class="description">Free callback function</td></tr>
<tr><th>free_cbdata</th>
<td class="description">Free callback data</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the data pointer <code>data</code> and destructor callback
<code>destroy_cb</code> of a custom data node. The node is not changed if it (or its
first child) is not a custom node.</p>
<h3 class="function"><a id="mxmlSetDeclaration">mxmlSetDeclaration</a></h3>
<p class="description">Set a declaration to a literal string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetDeclaration(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *declaration);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>declaration</th>
<td class="description">Literal string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the string value of a declaration node.</p>
<h3 class="function"><a id="mxmlSetDeclarationf">mxmlSetDeclarationf</a></h3>
<p class="description">Set a declaration to a formatted string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetDeclarationf(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>format</th>
<td class="description"><code>printf</code>-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the formatted string value of a declaration node.</p>
<h3 class="function"><a id="mxmlSetDirective">mxmlSetDirective</a></h3>
<p class="description">Set a processing instruction to a literal string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetDirective(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *directive);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>directive</th>
<td class="description">Literal string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the string value of a processing instruction node.</p>
<h3 class="function"><a id="mxmlSetDirectivef">mxmlSetDirectivef</a></h3>
<p class="description">Set a processing instruction to a formatted string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetDirectivef(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node</td></tr>
<tr><th>format</th>
<td class="description"><code>printf</code>-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the formatted string value of a processing instruction
node.</p>
<h3 class="function"><a id="mxmlSetElement">mxmlSetElement</a></h3>
<p class="description">Set the name of an element node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetElement(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *name);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>name</th>
<td class="description">New name string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the name of an element node. The node is not changed if
it is not an element node.</p>
<h3 class="function"><a id="mxmlSetInteger">mxmlSetInteger</a></h3>
<p class="description">Set the value of an integer node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetInteger(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">long</span> integer);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>integer</th>
<td class="description">Integer value</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the value of an integer node. The node is not changed if
it (or its first child) is not an integer node.</p>
<h3 class="function"><a id="mxmlSetOpaque">mxmlSetOpaque</a></h3>
<p class="description">Set the value of an opaque node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetOpaque(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *opaque);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>opaque</th>
<td class="description">Opaque string</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the string value of an opaque node. The node is not
changed if it (or its first child) is not an opaque node.</p>
<h3 class="function"><a id="mxmlSetOpaquef">mxmlSetOpaquef</a></h3>
<p class="description">Set the value of an opaque string node to a formatted string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetOpaquef(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the formatted string value of an opaque node. The node is
not changed if it (or its first child) is not an opaque node.</p>
<h3 class="function"><a id="mxmlSetReal">mxmlSetReal</a></h3>
<p class="description">Set the value of a real value node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetReal(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">double</span> real);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>real</th>
<td class="description">Real number value</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the value of a real value node. The node is not changed
if it (or its first child) is not a real value node.</p>
<h3 class="function"><a id="mxmlSetText">mxmlSetText</a></h3>
<p class="description">Set the value of a text node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetText(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">bool</span> whitespace, <span class="reserved">const</span> <span class="reserved">char</span> *string);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>whitespace</th>
<td class="description"><code>true</code> = leading whitespace, <code>false</code> = no whitespace</td></tr>
<tr><th>string</th>
<td class="description">String</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the string and whitespace values of a text node. The node
is not changed if it (or its first child) is not a text node.</p>
<h3 class="function"><a id="mxmlSetTextf">mxmlSetTextf</a></h3>
<p class="description">Set the value of a text node to a formatted string.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetTextf(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">bool</span> whitespace, <span class="reserved">const</span> <span class="reserved">char</span> *format, ...);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>whitespace</th>
<td class="description"><code>true</code> = leading whitespace, <code>false</code> = no whitespace</td></tr>
<tr><th>format</th>
<td class="description">Printf-style format string</td></tr>
<tr><th>...</th>
<td class="description">Additional arguments as needed</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function sets the formatted string and whitespace values of a text node.
The node is not changed if it (or its first child) is not a text node.</p>
<h3 class="function"><a id="mxmlSetUserData">mxmlSetUserData</a></h3>
<p class="description">Set the user data pointer for a node.</p>
<p class="code">
<span class="reserved">bool</span> mxmlSetUserData(<a href="#mxml_node_t">mxml_node_t</a> *node, <span class="reserved">void</span> *data);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Node to set</td></tr>
<tr><th>data</th>
<td class="description">User data pointer</td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description"><code>true</code> on success, <code>false</code> on failure</p>
<h3 class="function"><a id="mxmlWalkNext">mxmlWalkNext</a></h3>
<p class="description">Walk to the next logical node in the tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlWalkNext(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_descend_t">mxml_descend_t</a> descend);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Current node</td></tr>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>descend</th>
<td class="description">Descend into tree - <code>MXML_DESCEND_ALL</code>, <code>MXML_DESCEND_NONE</code>, or <code>MXML_DESCEND_FIRST</code></td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Next node or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function walks to the next logical node in the tree. The <code>descend</code>
argument controls whether the first child is considered to be the next node.
The <code>top</code> argument constrains the walk to that node's children.</p>
<h3 class="function"><a id="mxmlWalkPrev">mxmlWalkPrev</a></h3>
<p class="description">Walk to the previous logical node in the tree.</p>
<p class="code">
<a href="#mxml_node_t">mxml_node_t</a> *mxmlWalkPrev(<a href="#mxml_node_t">mxml_node_t</a> *node, <a href="#mxml_node_t">mxml_node_t</a> *top, <a href="#mxml_descend_t">mxml_descend_t</a> descend);</p>
<h4 class="parameters">Parameters</h4>
<table class="list"><tbody>
<tr><th>node</th>
<td class="description">Current node</td></tr>
<tr><th>top</th>
<td class="description">Top node</td></tr>
<tr><th>descend</th>
<td class="description">Descend into tree - <code>MXML_DESCEND_ALL</code>, <code>MXML_DESCEND_NONE</code>, or <code>MXML_DESCEND_FIRST</code></td></tr>
</tbody></table>
<h4 class="returnvalue">Return Value</h4>
<p class="description">Previous node or <code>NULL</code></p>
<h4 class="discussion">Discussion</h4>
<p class="discussion">This function walks to the previous logical node in the tree. The <code>descend</code>
argument controls whether the first child is considered to be the next node.
The <code>top</code> argument constrains the walk to that node's children.</p>
<h2 class="title"><a id="TYPES">Data Types</a></h2>
<h3 class="typedef"><a id="mxml_add_t">mxml_add_t</a></h3>
<p class="description"><a href="#mxmlAdd"><code>mxmlAdd</code></a> add values</p>
<p class="code">
typedef enum <a href="#mxml_add_e">mxml_add_e</a> mxml_add_t;
</p>
<h3 class="typedef"><a id="mxml_custfree_cb_t">mxml_custfree_cb_t</a></h3>
<p class="description">Custom data destructor</p>
<p class="code">
typedef void (*mxml_custfree_cb_t)(void *cbdata void *custdata);
</p>
<h3 class="typedef"><a id="mxml_custload_cb_t">mxml_custload_cb_t</a></h3>
<p class="description">Custom data load callback function</p>
<p class="code">
typedef bool (*mxml_custload_cb_t)(void *cbdata <a href="#mxml_node_t">mxml_node_t</a> *node const char *s);
</p>
<h3 class="typedef"><a id="mxml_custsave_cb_t">mxml_custsave_cb_t</a></h3>
<p class="description">Custom data save callback function</p>
<p class="code">
typedef char *(*mxml_custsave_cb_t)(void *cbdata <a href="#mxml_node_t">mxml_node_t</a> *node);
</p>
<h3 class="typedef"><a id="mxml_descend_t">mxml_descend_t</a></h3>
<p class="description"><a href="#mxmlFindElement"><code>mxmlFindElement</code></a>, <a href="#mxmlWalkNext"><code>mxmlWalkNext</code></a>, and <a href="#mxmlWalkPrev"><code>mxmlWalkPrev</code></a> descend values</p>
<p class="code">
typedef enum <a href="#mxml_descend_e">mxml_descend_e</a> mxml_descend_t;
</p>
<h3 class="typedef"><a id="mxml_entity_cb_t">mxml_entity_cb_t</a></h3>
<p class="description">Entity callback function</p>
<p class="code">
typedef int (*mxml_entity_cb_t)(void *cbdata const char *name);
</p>
<h3 class="typedef"><a id="mxml_error_cb_t">mxml_error_cb_t</a></h3>
<p class="description">Error callback function</p>
<p class="code">
typedef void (*mxml_error_cb_t)(void *cbdata const char *message);
</p>
<h3 class="typedef"><a id="mxml_index_t">mxml_index_t</a></h3>
<p class="description">An XML node index</p>
<p class="code">
typedef struct _mxml_index_s mxml_index_t;
</p>
<h3 class="typedef"><a id="mxml_io_cb_t">mxml_io_cb_t</a></h3>
<p class="description">Read/write callback function</p>
<p class="code">
typedef size_t (*mxml_io_cb_t)(void *cbdata void *buffer size_t bytes);
</p>
<h3 class="typedef"><a id="mxml_node_t">mxml_node_t</a></h3>
<p class="description">An XML node</p>
<p class="code">
typedef struct _mxml_node_s mxml_node_t;
</p>
<h3 class="typedef"><a id="mxml_options_t">mxml_options_t</a></h3>
<p class="description">XML options</p>
<p class="code">
typedef struct _mxml_options_s mxml_options_t;
</p>
<h3 class="typedef"><a id="mxml_sax_cb_t">mxml_sax_cb_t</a></h3>
<p class="description">SAX callback function</p>
<p class="code">
typedef bool (*mxml_sax_cb_t)(void *cbdata <a href="#mxml_node_t">mxml_node_t</a> *node <a href="#mxml_sax_event_t">mxml_sax_event_t</a> event);
</p>
<h3 class="typedef"><a id="mxml_sax_event_t">mxml_sax_event_t</a></h3>
<p class="description">SAX event type.</p>
<p class="code">
typedef enum <a href="#mxml_sax_event_e">mxml_sax_event_e</a> mxml_sax_event_t;
</p>
<h3 class="typedef"><a id="mxml_strcopy_cb_t">mxml_strcopy_cb_t</a></h3>
<p class="description">String copy/allocation callback</p>
<p class="code">
typedef char *(*mxml_strcopy_cb_t)(void *cbdata const char *s);
</p>
<h3 class="typedef"><a id="mxml_strfree_cb_t">mxml_strfree_cb_t</a></h3>
<p class="description">String free callback</p>
<p class="code">
typedef void (*mxml_strfree_cb_t)(void *cbdata char *s);
</p>
<h3 class="typedef"><a id="mxml_type_cb_t">mxml_type_cb_t</a></h3>
<p class="description">Type callback function</p>
<p class="code">
typedef <a href="#mxml_type_t">mxml_type_t</a> (*mxml_type_cb_t)(void *cbdata <a href="#mxml_node_t">mxml_node_t</a> *node);
</p>
<h3 class="typedef"><a id="mxml_type_t">mxml_type_t</a></h3>
<p class="description">The XML node type.</p>
<p class="code">
typedef enum <a href="#mxml_type_e">mxml_type_e</a> mxml_type_t;
</p>
<h3 class="typedef"><a id="mxml_ws_cb_t">mxml_ws_cb_t</a></h3>
<p class="description">Whitespace callback function</p>
<p class="code">
typedef const char *(*mxml_ws_cb_t)(void *cbdata <a href="#mxml_node_t">mxml_node_t</a> *node <a href="#mxml_ws_t">mxml_ws_t</a> when);
</p>
<h3 class="typedef"><a id="mxml_ws_t">mxml_ws_t</a></h3>
<p class="description">Whitespace periods</p>
<p class="code">
typedef enum <a href="#mxml_ws_e">mxml_ws_e</a> mxml_ws_t;
</p>
<h2 class="title"><a id="ENUMERATIONS">Constants</a></h2>
<h3 class="enumeration"><a id="mxml_add_e">mxml_add_e</a></h3>
<p class="description"><a href="#mxmlAdd"><code>mxmlAdd</code></a> add values</p>
<h4 class="constants">Constants</h4>
<table class="list"><tbody>
<tr><th>MXML_ADD_AFTER </th><td class="description">Add node after specified node</td></tr>
<tr><th>MXML_ADD_BEFORE </th><td class="description">Add node before specified node</td></tr>
</tbody></table>
<h3 class="enumeration"><a id="mxml_descend_e">mxml_descend_e</a></h3>
<p class="description"><a href="#mxmlFindElement"><code>mxmlFindElement</code></a>, <a href="#mxmlWalkNext"><code>mxmlWalkNext</code></a>, and <a href="#mxmlWalkPrev"><code>mxmlWalkPrev</code></a> descend values</p>
<h4 class="constants">Constants</h4>
<table class="list"><tbody>
<tr><th>MXML_DESCEND_ALL </th><td class="description">Descend when finding/walking</td></tr>
<tr><th>MXML_DESCEND_FIRST </th><td class="description">Descend for first find</td></tr>
<tr><th>MXML_DESCEND_NONE </th><td class="description">Don't descend when finding/walking</td></tr>
</tbody></table>
<h3 class="enumeration"><a id="mxml_sax_event_e">mxml_sax_event_e</a></h3>
<p class="description">SAX event type.</p>
<h4 class="constants">Constants</h4>
<table class="list"><tbody>
<tr><th>MXML_SAX_EVENT_CDATA </th><td class="description">CDATA node</td></tr>
<tr><th>MXML_SAX_EVENT_COMMENT </th><td class="description">Comment node</td></tr>
<tr><th>MXML_SAX_EVENT_DATA </th><td class="description">Data node</td></tr>
<tr><th>MXML_SAX_EVENT_DECLARATION </th><td class="description">Declaration node</td></tr>
<tr><th>MXML_SAX_EVENT_DIRECTIVE </th><td class="description">Processing instruction node</td></tr>
<tr><th>MXML_SAX_EVENT_ELEMENT_CLOSE </th><td class="description">Element closed</td></tr>
<tr><th>MXML_SAX_EVENT_ELEMENT_OPEN </th><td class="description">Element opened</td></tr>
</tbody></table>
<h3 class="enumeration"><a id="mxml_type_e">mxml_type_e</a></h3>
<p class="description">The XML node type.</p>
<h4 class="constants">Constants</h4>
<table class="list"><tbody>
<tr><th>MXML_TYPE_CDATA </th><td class="description">CDATA value ("<a href="[CDATA[...]]">[CDATA[...]]</a>")</td></tr>
<tr><th>MXML_TYPE_COMMENT </th><td class="description">Comment ("<a href="!--...--">!--...--</a>")</td></tr>
<tr><th>MXML_TYPE_CUSTOM </th><td class="description">Custom data</td></tr>
<tr><th>MXML_TYPE_DECLARATION </th><td class="description">Declaration ("<a href="!...">!...</a>")</td></tr>
<tr><th>MXML_TYPE_DIRECTIVE </th><td class="description">Processing instruction ("<a href="?...?">?...?</a>")</td></tr>
<tr><th>MXML_TYPE_ELEMENT </th><td class="description">XML element with attributes</td></tr>
<tr><th>MXML_TYPE_IGNORE </th><td class="description">Ignore/throw away node</td></tr>
<tr><th>MXML_TYPE_INTEGER </th><td class="description">Integer value</td></tr>
<tr><th>MXML_TYPE_OPAQUE </th><td class="description">Opaque string</td></tr>
<tr><th>MXML_TYPE_REAL </th><td class="description">Real value</td></tr>
<tr><th>MXML_TYPE_TEXT </th><td class="description">Text fragment</td></tr>
</tbody></table>
<h3 class="enumeration"><a id="mxml_ws_e">mxml_ws_e</a></h3>
<p class="description">Whitespace periods</p>
<h4 class="constants">Constants</h4>
<table class="list"><tbody>
<tr><th>MXML_WS_AFTER_CLOSE </th><td class="description">Callback for after close tag</td></tr>
<tr><th>MXML_WS_AFTER_OPEN </th><td class="description">Callback for after open tag</td></tr>
<tr><th>MXML_WS_BEFORE_CLOSE </th><td class="description">Callback for before close tag</td></tr>
<tr><th>MXML_WS_BEFORE_OPEN </th><td class="description">Callback for before open tag</td></tr>
</tbody></table>
</div>
</body>
</html>
|