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
|
//
// Test program for Mini-XML, a small XML file parsing library.
//
// Usage:
//
// ./testmxml input.xml [string-output.xml] >stdio-output.xml
// ./testmxml "<?xml ..." [string-output.xml] >stdio-output.xml
//
// https://www.msweet.org/mxml
//
// Copyright © 2003-2025 by Michael R Sweet.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//
#include "config.h"
#include "mxml.h"
#ifndef _WIN32
# include <unistd.h>
#endif // !_WIN32
#include <fcntl.h>
#ifndef O_BINARY
# define O_BINARY 0
#endif // !O_BINARY
//
// Globals...
//
int event_counts[7];
//
// Local functions...
//
bool sax_cb(void *cbdata, mxml_node_t *node, mxml_sax_event_t event);
mxml_type_t type_cb(void *cbdata, mxml_node_t *node);
const char *whitespace_cb(void *cbdata, mxml_node_t *node, mxml_ws_t where);
//
// 'main()' - Main entry for test program.
//
int // O - Exit status
main(int argc, // I - Number of command-line args
char *argv[]) // I - Command-line args
{
int i; // Looping var
FILE *fp; // File to read
int fd; // File descriptor
mxml_options_t *options; // Load/save options
mxml_node_t *xml, // <?xml ...?> node
*tree, // Element tree
*node; // Node which should be in test.xml
mxml_index_t *ind; // XML index
char buffer[16384]; // Save string
const char *text; // Text string
bool whitespace; // Whitespace before text string
static const char *types[] = // Strings for node types
{
"MXML_TYPE_CDATA",
"MXML_TYPE_COMMENT",
"MXML_TYPE_DECLARATION",
"MXML_TYPE_DIRECTIVE",
"MXML_TYPE_ELEMENT",
"MXML_TYPE_INTEGER",
"MXML_TYPE_OPAQUE",
"MXML_TYPE_REAL",
"MXML_TYPE_TEXT",
"MXML_TYPE_CUSTOM"
};
// Check arguments...
if (argc != 2 && argc != 3)
{
fputs("Usage: testmxml filename.xml [string-output.xml]\n", stderr);
return (1);
}
// Test the basic functionality...
options = mxmlOptionsNew();
xml = mxmlNewXML("1.0");
tree = mxmlNewElement(xml, "element");
if (!tree)
{
fputs("ERROR: No parent node in basic test.\n", stderr);
return (1);
}
if (mxmlGetType(tree) != MXML_TYPE_ELEMENT)
{
fprintf(stderr, "ERROR: Parent has type %d(%s), expected MXML_TYPE_ELEMENT.\n", mxmlGetType(tree), types[mxmlGetType(tree)]);
mxmlDelete(tree);
return (1);
}
if (strcmp(mxmlGetElement(tree), "element"))
{
fprintf(stderr, "ERROR: Parent value is \"%s\", expected \"element\".\n", mxmlGetElement(tree));
mxmlDelete(tree);
return (1);
}
mxmlNewInteger(tree, 123);
mxmlNewOpaque(tree, "opaque");
mxmlNewReal(tree, 123.4);
mxmlNewText(tree, 1, "text");
mxmlOptionsSetTypeValue(options, MXML_TYPE_TEXT);
mxmlLoadString(tree, options, "<group type='string'>string string string</group>");
mxmlOptionsSetTypeValue(options, MXML_TYPE_INTEGER);
mxmlLoadString(tree, options, "<group type='integer'>1 2 3</group>");
mxmlOptionsSetTypeValue(options, MXML_TYPE_REAL);
mxmlLoadString(tree, options, "<group type='real'>1.0 2.0 3.0</group>");
mxmlOptionsSetTypeValue(options, MXML_TYPE_OPAQUE);
mxmlLoadString(tree, options, "<group>opaque opaque opaque</group>");
mxmlLoadString(tree, options, "<foo><bar><one><two>value<two>value2</two></two></one></bar></foo>");
mxmlNewCDATA(tree, "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n");
mxmlNewCDATA(tree,
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n");
mxmlNewCDATA(tree,
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n"
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef\n");
node = mxmlGetFirstChild(tree);
if (!node)
{
fputs("ERROR: No first child node in basic test.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlGetType(node) != MXML_TYPE_INTEGER)
{
fprintf(stderr, "ERROR: First child has type %d(%s), expected MXML_TYPE_INTEGER.\n", mxmlGetType(node), types[mxmlGetType(node)]);
mxmlDelete(tree);
return (1);
}
if (mxmlGetInteger(node) != 123)
{
fprintf(stderr, "ERROR: First child value is %ld, expected 123.\n", mxmlGetInteger(node));
mxmlDelete(tree);
return (1);
}
node = mxmlGetNextSibling(node);
if (!node)
{
fputs("ERROR: No second child node in basic test.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlGetType(node) != MXML_TYPE_OPAQUE)
{
fprintf(stderr, "ERROR: Second child has type %s (%d), expected MXML_TYPE_OPAQUE.\n", mxmlGetType(node) < MXML_TYPE_ELEMENT || mxmlGetType(node) > MXML_TYPE_TEXT ? "UNKNOWN" : types[mxmlGetType(node)], mxmlGetType(node));
mxmlDelete(tree);
return (1);
}
if (!mxmlGetOpaque(node) || strcmp(mxmlGetOpaque(node), "opaque"))
{
fprintf(stderr, "ERROR: Second child value is \"%s\", expected \"opaque\".\n", mxmlGetOpaque(node) ? mxmlGetOpaque(node) : "(null)");
mxmlDelete(tree);
return (1);
}
node = mxmlGetNextSibling(node);
if (!node)
{
fputs("ERROR: No third child node in basic test.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlGetType(node) != MXML_TYPE_REAL)
{
fprintf(stderr, "ERROR: Third child has type %s (%d), expected MXML_TYPE_REAL.\n", mxmlGetType(node) < MXML_TYPE_ELEMENT || mxmlGetType(node) > MXML_TYPE_TEXT ? "UNKNOWN" : types[mxmlGetType(node)], mxmlGetType(node));
mxmlDelete(tree);
return (1);
}
if (mxmlGetReal(node) != 123.4)
{
fprintf(stderr, "ERROR: Third child value is %f, expected 123.4.\n", mxmlGetReal(node));
mxmlDelete(tree);
return (1);
}
node = mxmlGetNextSibling(node);
if (!node)
{
fputs("ERROR: No fourth child node in basic test.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlGetType(node) != MXML_TYPE_TEXT)
{
fprintf(stderr, "ERROR: Fourth child has type %s (%d), expected MXML_TYPE_TEXT.\n", mxmlGetType(node) < MXML_TYPE_ELEMENT || mxmlGetType(node) > MXML_TYPE_TEXT ? "UNKNOWN" : types[mxmlGetType(node)], mxmlGetType(node));
mxmlDelete(tree);
return (1);
}
text = mxmlGetText(node, &whitespace);
if (!whitespace || !text || strcmp(text, "text"))
{
fprintf(stderr, "ERROR: Fourth child value is %s,\"%s\", expected true,\"text\".\n", whitespace ? "true" : "false", text);
mxmlDelete(tree);
return (1);
}
for (i = 0; i < 4; i ++)
{
node = mxmlGetNextSibling(node);
if (!node)
{
fprintf(stderr, "ERROR: No group #%d child node in basic test.\n", i + 1);
mxmlDelete(tree);
return (1);
}
if (mxmlGetType(node) != MXML_TYPE_ELEMENT)
{
fprintf(stderr, "ERROR: Group child #%d has type %d(%s), expected MXML_TYPE_ELEMENT.\n", i + 1, mxmlGetType(node), types[mxmlGetType(node)]);
mxmlDelete(tree);
return (1);
}
}
// Test mxmlFindPath...
node = mxmlFindPath(tree, "*/two");
if (!node)
{
fputs("ERROR: Unable to find value for \"*/two\".\n", stderr);
mxmlDelete(tree);
return (1);
}
else if (mxmlGetType(node) != MXML_TYPE_OPAQUE || strcmp(mxmlGetOpaque(node), "value"))
{
fprintf(stderr, "ERROR: Bad value for \"*/two\" - node=%p(%s), opaque=\"%s\"\n", node, types[mxmlGetType(node)], mxmlGetOpaque(node));
mxmlDelete(tree);
return (1);
}
node = mxmlFindPath(tree, "foo/*/two");
if (!node)
{
fputs("ERROR: Unable to find value for \"foo/*/two\".\n", stderr);
mxmlDelete(tree);
return (1);
}
else if (mxmlGetType(node) != MXML_TYPE_OPAQUE || strcmp(mxmlGetOpaque(node), "value"))
{
fputs("ERROR: Bad value for \"foo/*/two\".\n", stderr);
mxmlDelete(tree);
return (1);
}
node = mxmlFindPath(tree, "foo/bar/one/two");
if (!node)
{
fputs("ERROR: Unable to find value for \"foo/bar/one/two\".\n", stderr);
mxmlDelete(tree);
return (1);
}
else if (mxmlGetType(node) != MXML_TYPE_OPAQUE || strcmp(mxmlGetOpaque(node), "value"))
{
fputs("ERROR: Bad value for \"foo/bar/one/two\".\n", stderr);
mxmlDelete(tree);
return (1);
}
// Test indices...
ind = mxmlIndexNew(tree, NULL, NULL);
if (!ind)
{
fputs("ERROR: Unable to create index of all nodes.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlIndexGetCount(ind) != 10)
{
fprintf(stderr, "ERROR: Index of all nodes contains %lu nodes; expected 10.\n", (unsigned long)mxmlIndexGetCount(ind));
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexReset(ind);
if (!mxmlIndexFind(ind, "group", NULL))
{
fputs("ERROR: mxmlIndexFind for \"group\" failed.\n", stderr);
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexDelete(ind);
ind = mxmlIndexNew(tree, "group", NULL);
if (!ind)
{
fputs("ERROR: Unable to create index of groups.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlIndexGetCount(ind) != 4)
{
fprintf(stderr, "ERROR: Index of groups contains %lu nodes; expected 4.\n", (unsigned long)mxmlIndexGetCount(ind));
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexReset(ind);
if (!mxmlIndexEnum(ind))
{
fputs("ERROR: mxmlIndexEnum failed.\n", stderr);
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexDelete(ind);
ind = mxmlIndexNew(tree, NULL, "type");
if (!ind)
{
fputs("ERROR: Unable to create index of type attributes.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlIndexGetCount(ind) != 3)
{
fprintf(stderr, "ERROR: Index of type attributes contains %lu nodes; expected 3.\n", (unsigned long)mxmlIndexGetCount(ind));
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexReset(ind);
if (!mxmlIndexFind(ind, NULL, "string"))
{
fputs("ERROR: mxmlIndexFind for \"string\" failed.\n", stderr);
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexDelete(ind);
ind = mxmlIndexNew(tree, "group", "type");
if (!ind)
{
fputs("ERROR: Unable to create index of elements and attributes.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlIndexGetCount(ind) != 3)
{
fprintf(stderr, "ERROR: Index of elements and attributes contains %lu nodes; expected 3.\n", (unsigned long)mxmlIndexGetCount(ind));
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexReset(ind);
if (!mxmlIndexFind(ind, "group", "string"))
{
fputs("ERROR: mxmlIndexFind for \"string\" failed.\n", stderr);
mxmlIndexDelete(ind);
mxmlDelete(tree);
return (1);
}
mxmlIndexDelete(ind);
// Check the mxmlDelete() works properly...
for (i = 0; i < 12; i ++)
{
if (mxmlGetFirstChild(tree))
{
mxmlDelete(mxmlGetFirstChild(tree));
}
else
{
fprintf(stderr, "ERROR: Child pointer prematurely NULL on child #%d\n", i + 1);
mxmlDelete(tree);
return (1);
}
}
if (mxmlGetFirstChild(tree))
{
fputs("ERROR: Child pointer not NULL after deleting all children.\n", stderr);
return (1);
}
if (mxmlGetLastChild(tree))
{
fputs("ERROR: Last child pointer not NULL after deleting all children.\n", stderr);
return (1);
}
mxmlDelete(xml);
// Open the file/string using the default callback...
mxmlOptionsSetTypeValue(options, MXML_TYPE_TEXT);
if (argv[1][0] == '<')
xml = mxmlLoadString(/*top*/NULL, options, argv[1]);
else
xml = mxmlLoadFilename(/*top*/NULL, options, argv[1]);
if (!xml)
{
fputs("Unable to read XML file with default callback.\n", stderr);
return (1);
}
if (!strcmp(argv[1], "test.xml"))
{
// Verify that mxmlFindElement() and indirectly mxmlWalkNext() work properly...
if ((node = mxmlFindPath(xml, "group/option/keyword")) == NULL)
{
fputs("Unable to find group/option/keyword element in XML tree.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (mxmlGetType(node) != MXML_TYPE_TEXT)
{
fputs("No child node of group/option/keyword.\n", stderr);
mxmlSaveFile(xml, options, stderr);
mxmlDelete(xml);
return (1);
}
if ((text = mxmlGetText(node, NULL)) == NULL || strcmp(text, "InputSlot"))
{
fprintf(stderr, "Child node of group/option/value has value \"%s\" instead of \"InputSlot\".\n", text ? text : "(null)");
mxmlDelete(xml);
return (1);
}
}
mxmlDelete(xml);
// Open the file...
mxmlOptionsSetTypeCallback(options, type_cb, /*cbdata*/NULL);
if (argv[1][0] == '<')
xml = mxmlLoadString(/*top*/NULL, options, argv[1]);
else
xml = mxmlLoadFilename(/*top*/NULL, options, argv[1]);
if (!xml)
{
fputs("Unable to read XML file.\n", stderr);
return (1);
}
if (!strcmp(argv[1], "test.xml"))
{
// Verify that mxmlFindElement() and indirectly mxmlWalkNext() work properly...
if ((node = mxmlFindElement(xml, xml, "choice", NULL, NULL, MXML_DESCEND_ALL)) == NULL)
{
fputs("Unable to find first <choice> element in XML tree.\n", stderr);
mxmlDelete(tree);
return (1);
}
if (!mxmlFindElement(node, xml, "choice", NULL, NULL, MXML_DESCEND_NONE))
{
fputs("Unable to find second <choice> element in XML tree.\n", stderr);
mxmlDelete(tree);
return (1);
}
}
// Print the XML tree...
mxmlOptionsSetWhitespaceCallback(options, whitespace_cb, /*cbdata*/NULL);
mxmlSaveFile(xml, options, stdout);
// Save the XML tree to a string and print it...
if (mxmlSaveString(xml, options, buffer, sizeof(buffer)) > 0)
{
if (argc == 3)
{
fp = fopen(argv[2], "w");
fputs(buffer, fp);
fclose(fp);
}
}
// Delete the tree...
mxmlDelete(xml);
// Read from/write to file descriptors...
if (argv[1][0] != '<')
{
// Open the file again...
if ((fd = open(argv[1], O_RDONLY | O_BINARY)) < 0)
{
perror(argv[1]);
return (1);
}
// Read the file...
xml = mxmlLoadFd(/*top*/NULL, options, fd);
close(fd);
// Create filename.xmlfd...
snprintf(buffer, sizeof(buffer), "%sfd", argv[1]);
if ((fd = open(buffer, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666)) < 0)
{
perror(buffer);
mxmlDelete(tree);
return (1);
}
// Write the file...
mxmlSaveFd(xml, options, fd);
close(fd);
// Delete the tree...
mxmlDelete(xml);
}
// Test SAX methods...
memset(event_counts, 0, sizeof(event_counts));
mxmlOptionsSetSAXCallback(options, sax_cb, /*cbdata*/NULL);
if (argv[1][0] == '<')
mxmlRelease(mxmlLoadString(/*top*/NULL, options, argv[1]));
else
mxmlRelease(mxmlLoadFilename(/*top*/NULL, options, argv[1]));
if (!strcmp(argv[1], "test.xml"))
{
if (event_counts[MXML_SAX_EVENT_CDATA] != 1)
{
fprintf(stderr, "MXML_SAX_EVENT_CDATA seen %d times, expected 1 times.\n", event_counts[MXML_SAX_EVENT_CDATA]);
return (1);
}
if (event_counts[MXML_SAX_EVENT_COMMENT] != 1)
{
fprintf(stderr, "MXML_SAX_EVENT_COMMENT seen %d times, expected 1 times.\n", event_counts[MXML_SAX_EVENT_COMMENT]);
return (1);
}
if (event_counts[MXML_SAX_EVENT_DATA] != 61)
{
fprintf(stderr, "MXML_SAX_EVENT_DATA seen %d times, expected 61 times.\n", event_counts[MXML_SAX_EVENT_DATA]);
return (1);
}
if (event_counts[MXML_SAX_EVENT_DECLARATION] != 0)
{
fprintf(stderr, "MXML_SAX_EVENT_DECLARATION seen %d times, expected 0 times.\n", event_counts[MXML_SAX_EVENT_DECLARATION]);
return (1);
}
if (event_counts[MXML_SAX_EVENT_DIRECTIVE] != 1)
{
fprintf(stderr, "MXML_SAX_EVENT_DIRECTIVE seen %d times, expected 1 times.\n", event_counts[MXML_SAX_EVENT_DIRECTIVE]);
return (1);
}
if (event_counts[MXML_SAX_EVENT_ELEMENT_CLOSE] != 20)
{
fprintf(stderr, "MXML_SAX_EVENT_ELEMENT_CLOSE seen %d times, expected 20 times.\n", event_counts[MXML_SAX_EVENT_ELEMENT_CLOSE]);
return (1);
}
if (event_counts[MXML_SAX_EVENT_ELEMENT_OPEN] != 20)
{
fprintf(stderr, "MXML_SAX_EVENT_ELEMENT_OPEN seen %d times, expected 20 times.\n", event_counts[MXML_SAX_EVENT_ELEMENT_OPEN]);
return (1);
}
}
// Free memory used by options - not explicitly required here since we are
// just exiting, but long-running programs should do this...
mxmlOptionsDelete(options);
#ifndef _WIN32
// Debug hooks...
if (getenv("TEST_DELAY") != NULL)
sleep(atoi(getenv("TEST_DELAY")));
# ifdef __APPLE__
if (getenv("TEST_LEAKS") != NULL)
{
char command[1024];
snprintf(command, sizeof(command), "leaks %d", (int)getpid());
if (system(command))
puts("Unable to check for leaks.");
}
# endif // __APPLE__
#endif // !_WIN32
// Return...
return (0);
}
//
// 'sax_cb()' - Process nodes via SAX.
//
bool // O - `true` to continue, `false` to stop
sax_cb(void *cbdata, // I - SAX callback data (not used)
mxml_node_t *node, // I - Current node
mxml_sax_event_t event) // I - SAX event
{
static const char * const events[] = // Events
{
"MXML_SAX_EVENT_CDATA", // CDATA node
"MXML_SAX_EVENT_COMMENT", // Comment node
"MXML_SAX_EVENT_DATA", // Data node
"MXML_SAX_EVENT_DECLARATION", // Declaration node
"MXML_SAX_EVENT_DIRECTIVE", // Processing directive node
"MXML_SAX_EVENT_ELEMENT_CLOSE", // Element closed
"MXML_SAX_EVENT_ELEMENT_OPEN" // Element opened
};
(void)cbdata;
// This SAX callback just counts the different events.
if (!node)
fprintf(stderr, "ERROR: SAX callback for event %s has NULL node.\n", events[event]);
event_counts[event] ++;
return (true);
}
//
// 'type_cb()' - XML data type callback for mxmlLoadFile()...
//
mxml_type_t // O - Data type
type_cb(void *cbdata, // I - Callback data
mxml_node_t *node) // I - Element node
{
const char *type; // Type string
(void)cbdata;
// You can lookup attributes and/or use the element name, hierarchy, etc...
if ((type = mxmlElementGetAttr(node, "type")) == NULL)
{
if ((type = mxmlGetElement(node)) == NULL)
type = "";
}
if (!strcmp(type, "integer"))
return (MXML_TYPE_INTEGER);
else if (!strcmp(type, "opaque") || !strcmp(type, "pre"))
return (MXML_TYPE_OPAQUE);
else if (!strcmp(type, "real"))
return (MXML_TYPE_REAL);
else
return (MXML_TYPE_TEXT);
}
//
// 'whitespace_cb()' - Let the mxmlSaveFile() function know when to insert
// newlines and tabs...
//
const char * // O - Whitespace string or NULL
whitespace_cb(void *cbdata, // I - Callback data
mxml_node_t *node, // I - Element node
mxml_ws_t where) // I - Open or close tag?
{
mxml_node_t *parent; // Parent node
int level; // Indentation level
const char *name; // Name of element
static const char *tabs = "\t\t\t\t\t\t\t\t";
// Tabs for indentation
(void)cbdata;
// We can conditionally break to a new line before or after any element.
// These are just common HTML elements...
if ((name = mxmlGetElement(node)) == NULL)
name = "";
if (!strcmp(name, "html") || !strcmp(name, "head") || !strcmp(name, "body") || !strcmp(name, "pre") || !strcmp(name, "p") || !strcmp(name, "h1") || !strcmp(name, "h2") || !strcmp(name, "h3") || !strcmp(name, "h4") || !strcmp(name, "h5") || !strcmp(name, "h6"))
{
// Newlines before open and after close...
if (where == MXML_WS_BEFORE_OPEN || where == MXML_WS_AFTER_CLOSE)
return ("\n");
}
else if (!strcmp(name, "dl") || !strcmp(name, "ol") || !strcmp(name, "ul"))
{
// Put a newline before and after list elements...
return ("\n");
}
else if (!strcmp(name, "dd") || !strcmp(name, "dt") || !strcmp(name, "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");
}
else if (mxmlGetType(node) == MXML_TYPE_DIRECTIVE)
{
if (where == MXML_WS_AFTER_OPEN)
return ("\n");
else
return (NULL);
}
else if (where == MXML_WS_BEFORE_OPEN || ((!strcmp(name, "choice") || !strcmp(name, "option")) && where == MXML_WS_BEFORE_CLOSE))
{
for (level = -1, parent = mxmlGetParent(node); parent; level ++, parent = mxmlGetParent(parent));
if (level > 8)
level = 8;
else if (level < 0)
level = 0;
return (tabs + 8 - level);
}
else if (where == MXML_WS_AFTER_CLOSE || ((!strcmp(name, "group") || !strcmp(name, "option") || !strcmp(name, "choice")) && where == MXML_WS_AFTER_OPEN))
return ("\n");
else if (where == MXML_WS_AFTER_OPEN && !mxmlGetFirstChild(node))
return ("\n");
// Return NULL for no added whitespace...
return (NULL);
}
|