1 /* Read an XML document from standard input and print an element 2 outline on standard output. 3 Must be used with Expat compiled for UTF-8 output. 4 __ __ _ 5 ___\ \/ /_ __ __ _| |_ 6 / _ \\ /| '_ \ / _` | __| 7 | __// \| |_) | (_| | |_ 8 \___/_/\_\ .__/ \__,_|\__| 9 |_| XML parser 10 11 Copyright (c) 2000 Clark Cooper <coopercc@users.sourceforge.net> 12 Copyright (c) 2001-2003 Fred L. Drake, Jr. <fdrake@users.sourceforge.net> 13 Copyright (c) 2005-2007 Steven Solie <steven@solie.ca> 14 Copyright (c) 2005-2006 Karl Waclawek <karl@waclawek.net> 15 Copyright (c) 2016-2019 Sebastian Pipping <sebastian@pipping.org> 16 Copyright (c) 2017 Rhodri James <rhodri@wildebeest.org.uk> 17 Licensed under the MIT license: 18 19 Permission is hereby granted, free of charge, to any person obtaining 20 a copy of this software and associated documentation files (the 21 "Software"), to deal in the Software without restriction, including 22 without limitation the rights to use, copy, modify, merge, publish, 23 distribute, sublicense, and/or sell copies of the Software, and to permit 24 persons to whom the Software is furnished to do so, subject to the 25 following conditions: 26 27 The above copyright notice and this permission notice shall be included 28 in all copies or substantial portions of the Software. 29 30 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 31 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 32 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 33 NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 34 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 35 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 36 USE OR OTHER DEALINGS IN THE SOFTWARE. 37 */ 38 39 #include <stdio.h> 40 #include <expat.h> 41 42 #ifdef XML_LARGE_SIZE 43 # define XML_FMT_INT_MOD "ll" 44 #else 45 # define XML_FMT_INT_MOD "l" 46 #endif 47 48 #ifdef XML_UNICODE_WCHAR_T 49 # define XML_FMT_STR "ls" 50 #else 51 # define XML_FMT_STR "s" 52 #endif 53 54 #define BUFFSIZE 8192 55 56 char Buff[BUFFSIZE]; 57 58 int Depth; 59 60 static void XMLCALL 61 start(void *data, const XML_Char *el, const XML_Char **attr) { 62 int i; 63 (void)data; 64 65 for (i = 0; i < Depth; i++) 66 printf(" "); 67 68 printf("%" XML_FMT_STR, el); 69 70 for (i = 0; attr[i]; i += 2) { 71 printf(" %" XML_FMT_STR "='%" XML_FMT_STR "'", attr[i], attr[i + 1]); 72 } 73 74 printf("\n"); 75 Depth++; 76 } 77 78 static void XMLCALL 79 end(void *data, const XML_Char *el) { 80 (void)data; 81 (void)el; 82 83 Depth--; 84 } 85 86 int 87 main(int argc, char *argv[]) { 88 XML_Parser p = XML_ParserCreate(NULL); 89 (void)argc; 90 (void)argv; 91 92 if (! p) { 93 fprintf(stderr, "Couldn't allocate memory for parser\n"); 94 exit(-1); 95 } 96 97 XML_SetElementHandler(p, start, end); 98 99 for (;;) { 100 int done; 101 int len; 102 103 len = (int)fread(Buff, 1, BUFFSIZE, stdin); 104 if (ferror(stdin)) { 105 fprintf(stderr, "Read error\n"); 106 exit(-1); 107 } 108 done = feof(stdin); 109 110 if (XML_Parse(p, Buff, len, done) == XML_STATUS_ERROR) { 111 fprintf(stderr, 112 "Parse error at line %" XML_FMT_INT_MOD "u:\n%" XML_FMT_STR "\n", 113 XML_GetCurrentLineNumber(p), 114 XML_ErrorString(XML_GetErrorCode(p))); 115 exit(-1); 116 } 117 118 if (done) 119 break; 120 } 121 XML_ParserFree(p); 122 return 0; 123 } 124