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
|
---
title: Mini-XML 4.0 Programming Manual
author: Michael R Sweet
copyright: Copyright © 2003-2025, All Rights Reserved.
version: 4.0
...
Introduction
============
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:
- Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and
strings.
- Data is stored in a linked-list tree structure, preserving the XML data
hierarchy.
- SAX (streamed) reading of XML files and strings to minimize memory usage.
- Supports arbitrary element names, attributes, and attribute values with no
preset limits, just available memory.
- Supports integer, real, opaque ("CDATA"), text, and custom data types in
"leaf" nodes.
- Functions for creating and managing trees of data.
- "Find" and "walk" functions for easily locating and navigating trees of
data.
- Support for custom string memory management functions to implement string
pools and other schemes for reducing memory usage.
Mini-XML doesn't do validation or other types of processing on the data based
upon schema files or other sources of definition information.
History
-------
Mini-XML was initially developed for the [Gutenprint](http://gutenprint.sf.net/)
project to replace the rather large and unwieldy `libxml2` 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:
> It's bad enough that we require libxml2, but rolling our own XML parser is a
> bit more than we can handle.
I then replied with:
> 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.
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.
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.
Resources
---------
The Mini-XML home page can be found at <https://www.msweet.org/mxml>. From
there you can download the current version of Mini-XML, access the issue
tracker, and find other resources.
Mini-XML v4 has a slightly different API than prior releases. See the
[Migrating from Mini-XML v3.x](@) chapter for details.
Legal Stuff
-----------
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.
Using Mini-XML
==============
Mini-XML provides a single header file which you include:
```c
#include <mxml.h>
```
The Mini-XML library is included with your program using the `-lmxml4` option:
gcc -o myprogram myprogram.c -lmxml4
If you have the `pkg-config` software installed, you can use it to determine the
proper compiler and linker options for your installation:
gcc `pkg-config --cflags mxml4` -o myprogram myprogram.c `pkg-config --libs mxml4`
> Note: The library name "mxml4" is a configure-time option. If you use the
> `--disable-libmxml4-prefix` configure option the library is named "mxml".
API Basics
----------
Every piece of information in an XML file is stored in memory in "nodes". Nodes
are represented by `mxml_node_t` 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.
For example, if you have an XML file like the following:
```xml
<?xml version="1.0" encoding="utf-8"?>
<data>
<node>val1</node>
<node>val2</node>
<node>val3</node>
<group>
<node>val4</node>
<node>val5</node>
<node>val6</node>
</group>
<node>val7</node>
<node>val8</node>
</data>
```
the node tree for the file would look like the following in memory:
```
<?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
```
where "-" is a pointer to the sibling node and "|" is a pointer to the first
child or parent node.
The [mxmlGetType](@@) function gets the type of a node which is represented as a
`mxml_type_t` enumeration value:
- `MXML_TYPE_CDATA`: CDATA such as `<![CDATA[...]]>`,
- `MXML_TYPE_COMMENT`: A comment such as `<!-- my comment -->`,
- `MXML_TYPE_CUSTOM`: A custom value defined by your application,
- `MXML_TYPE_DECLARATION`: A declaration such as `<!DOCTYPE html>`,
- `MXML_TYPE_DIRECTIVE`: A processing instruction such as
`<?xml version="1.0" encoding="utf-8"?>`,
- `MXML_TYPE_ELEMENT`: An XML element with optional attributes such as
`<element name="value">`,
- `MXML_TYPE_INTEGER`: A whitespace-delimited integer value such as `42`,
- `MXML_TYPE_OPAQUE`: An opaque string value that preserves all whitespace
such as `All work and no play makes Johnny a dull boy.`,
- `MXML_TYPE_REAL`: A whitespace-delimited floating point value such as
`123.4`, or
- `MXML_TYPE_TEXT`: A whitespace-delimited text (fragment) value such as
`Word`.
The parent, sibling, and child nodes are accessed using the [mxmlGetParent](@@),
[mxmlGetNextSibling](@@), [mxmlGetPreviousSibling](@@), [mxmlGetFirstChild](@@),
and [mxmlGetLastChild](@@) functions.
The value(s) of a node are accessed using the [mxmlGetCDATA](@@),
[mxmlGetComment](@@), [mxmlGetDeclaration](@@), [mxmlGetDirective](@@),
[mxmlGetElement](@@), [mxmlElementGetAttr](@@), [mxmlGetInteger](@@),
[mxmlGetOpaque](@@), [mxmlGetReal](@@), and [mxmlGetText](@@) functions.
Loading an XML File
-------------------
You load an XML file using the [mxmlLoadFilename](@@) function:
```c
mxml_node_t *
mxmlLoadFilename(mxml_node_t *top, mxml_options_t *options,
const char *filename);
```
Mini-XML also provides functions to load from a `FILE` pointer, a file
descriptor, a string, or using a callback:
```c
mxml_node_t *
mxmlLoadFd(mxml_node_t *top, mxml_options_t *options,
int 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, void *io_cbdata);
mxml_node_t *
mxmlLoadString(mxml_node_t *top, mxml_options_t *options,
const char *s);
```
Each accepts a pointer to the top-most ("root") node (usually `NULL`) 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:
```c
mxml_node_t *xml;
xml = mxmlLoadFilename(/*top*/NULL, /*options*/NULL,
"example.xml");
```
### Load Options
Load options are specified using a `mxml_options_t` pointer, which you create
using the [mxmlOptionsNew](@@) function:
```c
mxml_options_t *options = mxmlOptionsNew();
```
The default load options will treat any values in your XML as whitespace-
delimited text (`MXML_TYPE_TEXT`). You can specify a different type of values
using the [mxmlOptionsSetTypeValue](@@) function. For example, the following
will specify that values are opaque text strings, including whitespace
(`MXML_TYPE_OPAQUE`):
```c
mxmlOptionsSetTypeValue(options, MXML_TYPE_OPAQUE);
```
For more complex XML documents, you can specify a callback that returns the type
of value for a given element node using the [mxmlOptionsSetTypeCallback](@@)
function. For example, to specify a callback function called `my_type_cb` that
has no callback data:
```c
mxmlOptionsSetTypeCallback(options, my_type_cb, /*cbdata*/NULL);
```
The `my_type_cb` function accepts the callback data pointer (`NULL` in this
case) and the `mxml_node_t` pointer for the current element and returns a
`mxml_type_t` 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:
```c
mxml_type_t
my_load_cb(void *cbdata, mxml_node_t *node)
{
const char *type;
/*
* You can lookup attributes and/or use the element name,
* hierarchy, etc...
*/
type = mxmlElementGetAttr(node, "type");
if (type == NULL)
type = mxmlGetElement(node);
if (type == NULL)
type = "text";
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);
}
```
Finding Nodes
-------------
The [mxmlFindPath](@@) 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:
```c
mxml_node_t *directnode = mxmlFindPath(xml, "data/group/node");
mxml_node_t *wildnode = mxmlFindPath(xml, "data/*/node");
```
The [mxmlFindElement](@@) function can be used to find a named element,
optionally matching an attribute and value:
```c
mxml_node_t *
mxmlFindElement(mxml_node_t *node, mxml_node_t *top,
const char *element, const char *attr,
const char *value, int descend);
```
The `element`, `attr`, and `value` arguments can be passed as `NULL` to act as
wildcards, e.g.:
```c
mxml_node_t *node;
/* Find the first "a" element */
node = mxmlFindElement(tree, tree, "a", NULL, NULL,
MXML_DESCEND_ALL);
/* Find the first "a" element with "href" attribute */
node = mxmlFindElement(tree, tree, "a", "href", NULL,
MXML_DESCEND_ALL);
/* Find the first "a" element with "href" to a URL */
node = mxmlFindElement(tree, tree, "a", "href",
"http://msweet.org/",
MXML_DESCEND_ALL);
/* Find the first element with a "src" attribute*/
node = mxmlFindElement(tree, tree, NULL, "src", NULL,
MXML_DESCEND_ALL);
/* Find the first element with a "src" = "foo.jpg" */
node = mxmlFindElement(tree, tree, NULL, "src", "foo.jpg",
MXML_DESCEND_ALL);
```
You can also iterate with the same function:
```c
mxml_node_t *node;
for (node = mxmlFindElement(tree, tree, "element", NULL,
NULL, MXML_DESCEND_ALL);
node != NULL;
node = mxmlFindElement(node, tree, "element", NULL,
NULL, MXML_DESCEND_ALL))
{
... do something ...
}
```
The `descend` argument \(`MXML_DESCEND_ALL` in the previous examples) can be one
of three constants:
- `MXML_DESCEND_NONE`: ignore child nodes in the element hierarchy, instead
using siblings (same level) or parent nodes (above) until the top (root) node
is reached.
- `MXML_DESCEND_FIRST`: 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 `<node>` and `<group>` elements
under the `<?xml ...?>` parent node in the previous example.
- `MXML_DESCEND_ALL`: search child nodes first, then sibling nodes, and then
parent nodes.
Getting the Value(s) from Nodes
-------------------------------
Once you have the node you can use one of the mxmlGetXxx functions to retrieve
its value(s).
Element \(`MXML_TYPE_ELEMENT`) nodes have an associated name and zero or more
named attributes with (string) values. The [mxmlGetElement](@@) function
retrieves the element name while the [mxmlElementGetAttr](@@) 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:
```c
const char *elemname = mxmlGetElement(node);
const char *id_value = mxmlElementGetAttr(node, "id");
if ((*elemname == 'h' || *elemname == 'H') &&
elemname[1] >= '1' && elemname[1] <= '6' &&
id_value != NULL)
printf("%s: %s\n", elemname, id_value);
```
The [mxmlElementGetAttrByIndex](@@) and [mxmlElementGetAttrCount](@@) functions
allow you to iterate all attributes of an element. For example, the following
code prints the element name and each of its attributes:
```c
const char *elemname = mxmlGetElement(node);
printf("%s:\n", elemname);
size_t i, count;
for (i = 0, count = mxmlElementGetAttrCount(node); i < count; i ++)
{
const char *attrname, *attrvalue;
attrvalue = mxmlElementGetAttrByIndex(node, i, &attrname);
printf(" %s=\"%s\"\n", attrname, attrvalue);
}
```
CDATA \(`MXML_TYPE_CDATA`) nodes have an associated string value consisting of
the text between the `<![CDATA[` and `]]>` delimiters. The [mxmlGetCDATA](@@)
function retrieves the CDATA string pointer for a node. For example, the
following code gets the CDATA string value:
```c
const char *cdatavalue = mxmlGetCDATA(node);
```
Comment \(`MXML_TYPE_COMMENT`) nodes have an associated string value consisting
of the text between the `<!--` and `-->` delimiters. The [mxmlGetComment](@@)
function retrieves the comment string pointer for a node. For example, the
following code gets the comment string value:
```c
const char *commentvalue = mxmlGetComment(node);
```
Processing instruction \(`MXML_TYPE_DIRECTIVE`) nodes have an associated string
value consisting of the text between the `<?` and `?>` delimiters. The
[mxmlGetDirective](@@) function retrieves the processing instruction string
for a node. For example, the following code gets the processing instruction
string value:
```c
const char *instrvalue = mxmlGetDirective(node);
```
Integer \(`MXML_TYPE_INTEGER`) nodes have an associated `long` value. The
[mxmlGetInteger](@@) function retrieves the integer value for a node. For
example, the following code gets the integer value:
```c
long intvalue = mxmlGetInteger(node);
```
Opaque string \(`MXML_TYPE_OPAQUE`) nodes have an associated string value
consisting of the text between elements. The [mxmlGetOpaque](@@) function
retrieves the opaque string pointer for a node. For example, the following
code gets the opaque string value:
```c
const char *opaquevalue = mxmlGetOpaque(node);
```
Real number \(`MXML_TYPE_REAL`) nodes have an associated `double` value. The
[mxmlGetReal](@@) function retrieves the real number for a node. For example,
the following code gets the real value:
```c
double realvalue = mxmlGetReal(node);
```
Whitespace-delimited text string \(`MXML_TYPE_TEXT`) nodes have an associated
whitespace indicator and string value extracted from the text between elements.
The [mxmlGetText](@@) function retrieves the text string pointer and whitespace
boolean value for a node. For example, the following code gets the text and
whitespace indicator:
```c
const char *textvalue;
bool whitespace;
textvalue = mxmlGetText(node, &whitespace);
```
Saving an XML File
------------------
You save an XML file using the [mxmlSaveFilename](@@) function:
```c
bool
mxmlSaveFilename(mxml_node_t *node, mxml_options_t *options,
const char *filename);
```
Mini-XML also provides functions to save to a `FILE` pointer, a file descriptor,
a string, or using a callback:
```c
char *
mxmlSaveAllocString(mxml_node_t *node, mxml_options_t *options);
bool
mxmlSaveFd(mxml_node_t *node, mxml_options_t *options,
int fd);
bool
mxmlSaveFile(mxml_node_t *node, mxml_options_t *options,
FILE *fp);
bool
mxmlSaveIO(mxml_node_t *node, mxml_options_t *options,
mxml_io_cb_t *io_cb, void *io_cbdata);
size_t
mxmlSaveString(mxml_node_t *node, mxml_options_t *options,
char *buffer, size_t bufsize);
```
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:
```c
mxmlSaveFile(xml, /*options*/NULL, "example.xml");
```
### Save Options
Save options are specified using a `mxml_options_t` pointer, which you create
using the [mxmlOptionsNew](@@) function:
```c
mxml_options_t *options = mxmlOptionsNew();
```
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
[mxmlOptionsSetWrapMargin](@@) function. For example, the following will set
the wrap column to 0 which disables wrapping:
```c
mxmlOptionsSetWrapMargin(options, 0);
```
To add additional whitespace to the output, set a whitespace callback using the
[mxmlOptionsSetWhitespaceCallback](@@) function. A whitespace callback accepts
a callback data pointer, the current node, and a whitespace position value of
`MXML_WS_BEFORE_OPEN`, `MXML_WS_AFTER_OPEN`, `MXML_WS_BEFORE_CLOSE`, or
`MXML_WS_AFTER_CLOSE`. The callback should return `NULL` if no whitespace
is to be inserted or a string of spaces, tabs, carriage returns, and newlines to
insert otherwise.
The following whitespace callback can be used to add whitespace to XHTML output
to make it more readable in a standard text editor:
```c
const char *
whitespace_cb(void *cbdata, mxml_node_t *node, mxml_ws_t where)
{
const char *element;
/*
* We can conditionally break to a new line before or after
* any element. These are just common HTML elements...
*/
element = mxmlGetElement(node);
if (!strcmp(element, "html") ||
!strcmp(element, "head") ||
!strcmp(element, "body") ||
!strcmp(element, "pre") ||
!strcmp(element, "p") ||
!strcmp(element, "h1") ||
!strcmp(element, "h2") ||
!strcmp(element, "h3") ||
!strcmp(element, "h4") ||
!strcmp(element, "h5") ||
!strcmp(element, "h6"))
{
/*
* Newlines before open and after close...
*/
if (where == MXML_WS_BEFORE_OPEN ||
where == MXML_WS_AFTER_CLOSE)
return ("\n");
}
else if (!strcmp(element, "dl") ||
!strcmp(element, "ol") ||
!strcmp(element, "ul"))
{
/*
* Put a newline before and after list elements...
*/
return ("\n");
}
else if (!strcmp(element, "dd") ||
!strcmp(element, "dt") ||
!strcmp(element, "li"))
{
/*
* Put a tab before <li>'s, <dd>'s, and <dt>'s, and a
* newline after them...
*/
if (where == MXML_WS_BEFORE_OPEN)
return ("\t");
else if (where == MXML_WS_AFTER_CLOSE)
return ("\n");
}
/*
* Otherwise return NULL for no added whitespace...
*/
return (NULL);
}
```
The following code will set the whitespace callback for the save options:
```c
mxmlOptionsSetWhitespaceCallback(options, whitespace_cb, /*cbdata*/NULL);
```
Freeing Memory
--------------
Once you are done with the XML data, use the [mxmlDelete](@@) 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:
```c
mxmlDelete(xml);
```
Creating New XML Documents
==========================
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 [Using Mini-XML](@) chapter:
```c
mxml_node_t *xml; /* <?xml version="1.0" charset="utf-8"?> */
mxml_node_t *data; /* <data> */
mxml_node_t *node; /* <node> */
mxml_node_t *group; /* <group> */
xml = mxmlNewXML("1.0");
data = mxmlNewElement(xml, "data");
node = mxmlNewElement(data, "node");
mxmlNewText(node, false, "val1");
node = mxmlNewElement(data, "node");
mxmlNewText(node, false, "val2");
node = mxmlNewElement(data, "node");
mxmlNewText(node, false, "val3");
group = mxmlNewElement(data, "group");
node = mxmlNewElement(group, "node");
mxmlNewText(node, false, "val4");
node = mxmlNewElement(group, "node");
mxmlNewText(node, false, "val5");
node = mxmlNewElement(group, "node");
mxmlNewText(node, false, "val6");
node = mxmlNewElement(data, "node");
mxmlNewText(node, false, "val7");
node = mxmlNewElement(data, "node");
mxmlNewText(node, false, "val8");
```
We start by creating the processing instruction node common to all XML files
using the [mxmlNewXML](@@) function:
```c
xml = mxmlNewXML("1.0");
```
We then create the `<data>` node used for this document using the
[mxmlNewElement](@@) function. The first argument specifies the parent node
\(`xml`) while the second specifies the element name \(`data`):
```c
data = mxmlNewElement(xml, "data");
```
Each `<node>...</node>` in the file is created using the [mxmlNewElement](@@)
and [mxmlNewText](@@) functions. The first argument of [mxmlNewText](@@)
specifies the parent node \(`node`). The second argument specifies whether
whitespace appears before the text - `false` in this case. The last argument
specifies the actual text to add:
```c
node = mxmlNewElement(data, "node");
mxmlNewText(node, false, "val1");
```
The resulting in-memory XML document can then be saved or processed just like
one loaded from disk or a string.
Element Nodes
-------------
Element \(`MXML_TYPE_ELEMENT`) nodes are created using the [mxmlNewElement](@@)
function. Element attributes are set using the [mxmlElementSetAttr](@@) and
[mxmlElementSetAttrf](@@) functions and cleared using the
[mxmlElementClearAttr](@@) function:
```c
mxml_node_t *
mxmlNewElement(mxml_node_t *parent, const char *name);
void
mxmlElementClearAttr(mxml_node_t *node, const char *name);
void
mxmlElementSetAttr(mxml_node_t *node, const char *name,
const char *value);
void
mxmlElementSetAttrf(mxml_node_t *node, const char *name,
const char *format, ...);
```
CDATA Nodes
-----------
CDATA \(`MXML_TYPE_CDATA`) nodes are created using the [mxmlNewCDATA](@@)
and [mxmlNewCDATAf](@@) functions and set using the [mxmlSetCDATA](@@) and
[mxmlSetCDATAf](@@) functions:
```c
mxml_node_t *
mxmlNewCDATA(mxml_node_t *parent, const char *string);
mxml_node_t *
mxmlNewCDATAf(mxml_node_t *parent, const char *format, ...);
void
mxmlSetCDATA(mxml_node_t *node, const char *string);
void
mxmlSetCDATAf(mxml_node_t *node, const char *format, ...);
```
Comment Nodes
-------------
Comment \(`MXML_TYPE_COMMENT`) nodes are created using the [mxmlNewComment](@@)
and [mxmlNewCommentf](@@) functions and set using the [mxmlSetComment](@@)
and [mxmlSetCommentf](@@) functions:
```c
mxml_node_t *
mxmlNewComment(mxml_node_t *parent, const char *string);
mxml_node_t *
mxmlNewCommentf(mxml_node_t *parent, const char *format, ...);
void
mxmlSetComment(mxml_node_t *node, const char *string);
void
mxmlSetCommentf(mxml_node_t *node, const char *format, ...);
```
Processing Instruction Nodes
----------------------------
Processing instruction \(`MXML_TYPE_DIRECTIVE`) nodes are created using the
[mxmlNewDirective](@@) and [mxmlNewDirectivef](@@) functions and set using the
[mxmlSetDirective](@@) and [mxmlSetDirectivef](@@) functions:
```c
mxml_node_t *node = mxmlNewDirective("xml-stylesheet type=\"text/css\" href=\"style.css\"");
mxml_node_t *node = mxmlNewDirectivef("xml version=\"%s\"", version);
```
The [mxmlNewXML](@@) function can be used to create the top-level "xml"
processing instruction with an associated version number:
```c
mxml_node_t *
mxmlNewXML(const char *version);
```
Integer Nodes
-------------
Integer \(`MXML_TYPE_INTEGER`) nodes are created using the [mxmlNewInteger](@@)
function and set using the [mxmlSetInteger](@@) function:
```c
mxml_node_t *
mxmlNewInteger(mxml_node_t *parent, long integer);
void
mxmlSetInteger(mxml_node_t *node, long integer);
```
Opaque String Nodes
-------------------
Opaque string \(`MXML_TYPE_OPAQUE`) nodes are created using the
[mxmlNewOpaque](@@) and [mxmlNewOpaquef](@@) functions and set using the
[mxmlSetOpaque](@@) and [mxmlSetOpaquef](@@) functions:
```c
mxml_node_t *
mxmlNewOpaque(mxml_node_t *parent, const char *opaque);
mxml_node_t *
mxmlNewOpaquef(mxml_node_t *parent, const char *format, ...);
void
mxmlSetOpaque(mxml_node_t *node, const char *opaque);
void
mxmlSetOpaquef(mxml_node_t *node, const char *format, ...);
```
Real Number Nodes
-----------------
Real number \(`MXML_TYPE_REAL`) nodes are created using the [mxmlNewReal](@@)
function and set using the [mxmlSetReal](@@) function:
```c
mxml_node_t *
mxmlNewReal(mxml_node_t *parent, double real);
void
mxmlSetReal(mxml_node_t *node, double real);
```
Text Nodes
----------
Whitespace-delimited text string \(`MXML_TYPE_TEXT`) nodes are created using the
[mxmlNewText](@@) and [mxmlNewTextf](@@) functions and set using the
[mxmlSetText](@@) and [mxmlSetTextf](@@) functions. Each text node consists of
a text string and (leading) whitespace boolean value.
```c
mxml_node_t *
mxmlNewText(mxml_node_t *parent, bool whitespace,
const char *string);
mxml_node_t *
mxmlNewTextf(mxml_node_t *parent, bool whitespace,
const char *format, ...);
void
mxmlSetText(mxml_node_t *node, bool whitespace,
const char *string);
void
mxmlSetTextf(mxml_node_t *node, bool whitespace,
const char *format, ...);
```
Iterating and Indexing the Tree
===============================
Iterating Nodes
---------------
While the [mxmlFindNode](@@) and [mxmlFindPath](@@) functions will find a
particular element node, sometimes you need to iterate over all nodes. The
[mxmlWalkNext](@@) and [mxmlWalkPrev](@@) functions can be used to iterate
through the XML node tree:
```c
mxml_node_t *
mxmlWalkNext(mxml_node_t *node, mxml_node_t *top,
int descend);
mxml_node_t *
mxmlWalkPrev(mxml_node_t *node, mxml_node_t *top,
int descend);
```
Depending on the value of the `descend` argument, these functions will
automatically traverse child, sibling, and parent nodes until the `top` node is
reached. For example, the following code will iterate over all of the nodes in
the sample XML document in the [Using Mini-XML](@) chapter:
```c
mxml_node_t *node;
for (node = xml;
node != NULL;
node = mxmlWalkNext(node, xml, MXML_DESCEND_ALL))
{
... do something ...
}
```
The nodes will be returned in the following order:
```
<?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
```
Indexing
--------
The [mxmlIndexNew](@@) function allows you to create an index of nodes for
faster searching and enumeration:
```c
mxml_index_t *
mxmlIndexNew(mxml_node_t *node, const char *element,
const char *attr);
```
The `element` and `attr` arguments control which elements are included in the
index. If `element` is not `NULL` then only elements with the specified name
are added to the index. Similarly, if `attr` is not `NULL` then only elements
containing the specified attribute are added to the index. The nodes are sorted
in the index.
For example, the following code creates an index of all "id" values in an XML
document:
```c
mxml_index_t *ind = mxmlIndexNew(xml, NULL, "id");
```
Once the index is created, the [mxmlIndexFind](@@) function can be used to find a
matching node:
```c
mxml_node_t *
mxmlIndexFind(mxml_index_t *ind, const char *element,
const char *value);
```
For example, the following code will find the element whose "id" string is "42":
```c
mxml_node_t *node = mxmlIndexFind(ind, NULL, "42");
```
Alternately, the [mxmlIndexReset](@@) and [mxmlIndexEnum](@@) functions can be used to
enumerate the nodes in the index:
```c
mxml_node_t *
mxmlIndexReset(mxml_index_t *ind);
mxml_node_t *
mxmlIndexEnum(mxml_index_t *ind);
```
Typically these functions will be used in a `for` loop:
```c
mxml_node_t *node;
for (node = mxmlIndexReset(ind);
node != NULL;
node = mxmlIndexEnum(ind))
{
... do something ...
}
```
The [mxmlIndexCount](@@) function returns the number of nodes in the index:
```c
size_t
mxmlIndexGetCount(mxml_index_t *ind);
```
Finally, the [mxmlIndexDelete](@@) function frees all memory associated with the
index:
```c
void
mxmlIndexDelete(mxml_index_t *ind);
```
Advanced Usage
==============
Custom Data Types
-----------------
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 `mxml_options_t`
pointer, however your callbacks can store additional information in order to
support multiple custom data types as needed. The `MXML_TYPE_CUSTOM` node type
identifies custom data nodes.
The [mxmlGetCustom](@@) function retrieves the custom value pointer for a node.
```c
const void *
mxmlGetCustom(mxml_node_t *node);
```
Custom \(`MXML_TYPE_CUSTOM`) nodes are created using the [mxmlNewCustom](@@)
function or using the custom load callback specified using the
[mxmlOptionsSetCustomCallbacks](@@) function:
```c
typedef void (*mxml_custfree_cb_t)(void *cbdata, void *data);
typedef bool (*mxml_custload_cb_t)(void *cbdata, mxml_node_t *, const char *);
typedef char *(*mxml_custsave_cb_t)(void *cbdata, mxml_node_t *);
mxml_node_t *
mxmlNewCustom(mxml_node_t *parent, void *data,
mxml_custfree_cb_t free_cb, void *free_cbdata);
int
mxmlSetCustom(mxml_node_t *node, void *data,
mxml_custfree_cb_t free_cb, void *free_cbdata);
void
mxmlOptionsSetCustomCallbacks(mxml_option_t *options,
mxml_custload_cb_t load_cb,
mxml_custsave_cb_t save_cb,
void *cbdata);
```
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:
```c
typedef struct iso_date_time_s
{
unsigned year, /* Year */
month, /* Month */
day, /* Day */
hour, /* Hour */
minute, /* Minute */
second; /* Second */
time_t unix; /* UNIX time */
} iso_date_time_t;
bool
custom_load_cb(void *cbdata, mxml_node_t *node, const char *data)
{
iso_date_time_t *dt;
struct tm tmdata;
/*
* Allocate data structure...
*/
dt = calloc(1, sizeof(iso_date_time_t));
/*
* Try reading 6 unsigned integers from the data string...
*/
if (sscanf(data, "%u-%u-%uT%u:%u:%uZ", &(dt->year),
&(dt->month), &(dt->day), &(dt->hour),
&(dt->minute), &(dt->second)) != 6)
{
/*
* Unable to read numbers, free the data structure and
* return an error...
*/
free(dt);
return (false);
}
/*
* Range check values...
*/
if (dt->month < 1 || dt->month > 12 ||
dt->day < 1 || dt->day > 31 ||
dt->hour < 0 || dt->hour > 23 ||
dt->minute < 0 || dt->minute > 59 ||
dt->second < 0 || dt->second > 60)
{
/*
* Date information is out of range...
*/
free(dt);
return (false);
}
/*
* Convert ISO time to UNIX time in seconds...
*/
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;
dt->unix = gmtime(&tmdata);
/*
* Assign custom node data and free callback function/data...
*/
mxmlSetCustom(node, data, custom_free_cb, cbdata);
/*
* Return with no errors...
*/
return (true);
}
```
The function itself can return `true` on success or `false` if it is unable to
decode the custom data or the data contains an error. Custom data nodes contain
a `void` 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 `free` function since everything is
contained in a single calloc'd block.
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:
```c
char *
custom_save_cb(void *cbdata, mxml_node_t *node)
{
char data[255];
iso_date_time_t *dt;
dt = (iso_date_time_t *)mxmlGetCustom(node);
snprintf(data, sizeof(data),
"%04u-%02u-%02uT%02u:%02u:%02uZ",
dt->year, dt->month, dt->day, dt->hour,
dt->minute, dt->second);
return (strdup(data));
}
```
You register these callback functions using the
[mxmlOptionsSetCustomCallbacks](@@) function:
```c
mxmlOptionsSetCustomCallbacks(options, custom_load_cb,
custom_save_cb, /*cbdata*/NULL);
```
SAX (Stream) Loading of Documents
---------------------------------
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.
The mxmlLoadXxx functions support a SAX option that is enabled by setting a
callback function and data pointer with the [mxmlOptionsSetSAXCallback](@@)
function. The callback function receives the data pointer you supplied, the
node, and an event code and returns `true` to continue processing or `false`
to stop:
```c
bool
sax_cb(void *cbdata, mxml_node_t *node,
mxml_sax_event_t event)
{
... do something ...
// Continue processing...
return (true);
}
```
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. For example, the following SAX callback
will retain all nodes, effectively simulating a normal in-memory load:
```c
bool
sax_cb(void *cbdata, mxml_node_t *node, mxml_sax_event_t event)
{
if (event != MXML_SAX_ELEMENT_CLOSE)
mxmlRetain(node);
return (true);
}
```
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 `<html>`, `<head>`, and `<body>`, and processing
directives like `<?xml ... ?>` and declarations like `<!DOCTYPE ... >`:
```c
bool
sax_cb(void *cbdata, mxml_node_t *node,
mxml_sax_event_t event)
{
if (event == MXML_SAX_ELEMENT_OPEN)
{
/*
* Retain headings and titles...
*/
const char *element = mxmlGetElement(node);
if (!strcmp(element, "html") ||
!strcmp(element, "head") ||
!strcmp(element, "title") ||
!strcmp(element, "body") ||
!strcmp(element, "h1") ||
!strcmp(element, "h2") ||
!strcmp(element, "h3") ||
!strcmp(element, "h4") ||
!strcmp(element, "h5") ||
!strcmp(element, "h6"))
mxmlRetain(node);
}
else if (event == MXML_SAX_DECLARATION)
mxmlRetain(node);
else if (event == MXML_SAX_DIRECTIVE)
mxmlRetain(node);
else if (event == MXML_SAX_DATA)
{
if (mxmlGetRefCount(mxmlGetParent(node)) > 1)
{
/*
* If the parent was retained, then retain this data
* node as well.
*/
mxmlRetain(node);
}
}
return (true);
}
```
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:
```c
mxml_options_t *options;
mxml_node_t *xml, *title, *body, *heading;
options = mxmlOptionsNew();
mxmlOptionsSetSAXCallback(options, sax_cb,
/*cbdata*/NULL);
xml = mxmlLoadFd(/*top*/NULL, options, /*fd*/0);
title = mxmlFindElement(doc, doc, "title", NULL, NULL,
MXML_DESCEND_ALL);
if (title)
print_children(title);
body = mxmlFindElement(doc, doc, "body", NULL, NULL,
MXML_DESCEND_ALL);
if (body)
{
for (heading = mxmlGetFirstChild(body);
heading;
heading = mxmlGetNextSibling(heading))
print_children(heading);
}
mxmlDelete(xml);
mxmlOptionsDelete(options);
```
The `print_children` function is:
```c
void
print_children(mxml_node_t *parent)
{
mxml_node_t *node;
const char *text;
bool whitespace;
for (node = mxmlGetFirstChild(parent);
node != NULL;
node = mxmlGetNextSibling(node))
{
text = mxmlGetText(node, &whitespace);
if (whitespace)
putchar(' ');
fputs(text, stdout);
}
putchar('\n');
}
```
User Data
---------
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 *not*
managed by Mini-XML so it is up to you to free it as necessary.
The [mxmlSetUserData](@@) function sets any user (application) data associated
with the node while the [mxmlGetUserData](@@) function gets any user
(application) data associated with the node:
```c
void *
mxmlGetUserData(mxml_node_t *node);
void
mxmlSetUserData(mxml_node_t *node, void *user_data);
```
Memory Management
-----------------
Nodes support reference counting to manage memory usage. The [mxmlRetain](@@)
and [mxmlRelease](@@) functions increment and decrement a node's reference
count, respectively. When the reference count goes to zero, [mxmlRelease](@@)
calls [mxmlDelete](@@) to actually free the memory used by the node tree. New
nodes start with a reference count of `1`. You can get a node's current
reference count using the [mxmlGetRefCount](@@) function.
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 [mxmlSetStringCallbacks](@@) 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:
```c
typedef struct string_pool_s
{
size_t num_strings; // Number of strings
size_t alloc_strings; // Allocated strings
char **strings; // Array of strings
} string_pool_t;
char *
copy_string(string_pool_t *pool, const char *s)
{
size_t i; // Looping var
char *news; // Copy of string
// See if the string is already in the pool...
for (i = 0; i < pool->num_strings; i ++)
{
if (!strcmp(pool->strings[i], s))
return (pool->strings[i]);
}
// Not in the pool, add new string
if (pool->num_strings >= pool->alloc_strings)
{
// Expand the string pool...
char **temp; // New strings array
temp = realloc(pool->strings,
(pool->alloc_strings + 32) *
sizeof(char *));
if (temp == NULL)
return (NULL);
pool->alloc_strings += 32;
pool->strings = temp;
}
if ((news = strdup(s)) != NULL)
pool->strings[pool->num_strings ++] = news;
return (news);
}
void
free_string(string_pool_t *pool, char *s)
{
// Do nothing here...
}
void
free_all_strings(string_pool_t *pool)
{
size_t i; // Looping var
for (i = 0; i < pool->num_strings; i ++)
free(pool->strings[i]);
free(pool->strings);
}
...
// Setup the string pool...
string_pool_t pool = { 0, 0, NULL };
mxmlSetStringCallbacks((mxml_strcopy_cb_t)copy_string,
(mxml_strfree_cb_t)free_string,
&pool);
// Load an XML file...
mxml_node_t *xml;
xml = mxmlLoadFilename(/*top*/NULL, /*options*/NULL,
"example.xml");
// Process the XML file...
...
// Free memory used by the XML file...
mxmlDelete(xml);
// Free all strings in the pool...
free_all_strings(&pool);
```
Migrating from Mini-XML v3.x
============================
The following incompatible API changes were made in Mini-XML v4.0:
- Load and save callbacks and options are now managed using `mxml_options_t`
values.
- The mxmlSAXLoadXxx functions have been removed in favor of setting the SAX
callback function and data pointers of the `mxml_options_t` value prior to
calling the corresponding mxmlLoadXxx functions.
- SAX events are now named `MXML_SAX_EVENT_foo` instead of `MXML_SAX_foo`.
- SAX callbacks now return a boolean value.
- Node types are now named `MXML_TYPE_foo` instead of `MXML_foo`.
- Descend values are now normalized to `MXML_DESCEND_ALL`, `MXML_DESCEND_FIRST`,
and `MXML_DESCEND_NONE`.
- Functions that returned `0` on success and `-1` on error now return `true` on
success and `false` on error.
- CDATA nodes ("`<![CDATA[...]]>`") now have their own type (`MXML_TYPE_CDATA`).
- Comment nodes ("`<!-- ... -->`") now have their own type
(`MXML_TYPE_COMMENT`).
- Declaration nodes ("`<!...>`") now have their own type
(`MXML_TYPE_DECLARATION`).
- Element attributes are now cleared with the [mxmlElementClearAttr](@@)
function instead of mxmlElementDeleteAttr.
- Processing instruction/directive nodes ("`<?...?>`") now have their own type
(`MXML_TYPE_DIRECTIVE`).
- Integer nodes (`MXML_TYPE_INTEGER`) now use the `long` type.
- Text nodes (`MXML_TYPE_TEXT`) now use the `bool` type for the whitespace
value.
- Custom node callbacks are now set using the
[mxmlOptionsSetCustomCallbacks](@@) function instead of the thread-global
mxmlSetCustomHandlers function.
|