$65 GRAYBYTE WORDPRESS FILE MANAGER $92

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/libxml2/usr/share/doc/alt-libxml2-devel/examples/

HOME
Current File : /opt/alt/libxml2/usr/share/doc/alt-libxml2-devel/examples//reader4.c
/**
 * section: xmlReader
 * synopsis: Parse multiple XML files reusing an xmlReader
 * purpose: Demonstrate the use of xmlReaderForFile() and
 * xmlReaderNewFile to parse XML files while reusing the reader object
 * and parser context.  (Note that the XMLReader functions require
 * libxml2 version later than 2.6.)
 * usage: reader4 <filename> [ filename ... ]
 * test: reader4 test1.xml test2.xml test3.xml > reader4.tmp && diff reader4.tmp $(srcdir)/reader4.res
 * author: Graham Bennett
 * copy: see Copyright for the status of this software.
 */

#include <stdio.h>
#include <libxml/xmlreader.h>

#ifdef LIBXML_READER_ENABLED

static void processDoc(xmlTextReaderPtr readerPtr) {
    int ret;
    xmlDocPtr docPtr;
    const xmlChar *URL;

    ret = xmlTextReaderRead(readerPtr);
    while (ret == 1) {
      ret = xmlTextReaderRead(readerPtr);
    }

    /*
     * One can obtain the document pointer to get interesting
     * information about the document like the URL, but one must also
     * be sure to clean it up at the end (see below).
     */
    docPtr = xmlTextReaderCurrentDoc(readerPtr);
    if (NULL == docPtr) {
      fprintf(stderr, "failed to obtain document\n");      
      return;
    }
      
    URL = docPtr->URL;
    if (NULL == URL) {
      fprintf(stderr, "Failed to obtain URL\n");      
    }

    if (ret != 0) {
      fprintf(stderr, "%s: Failed to parse\n", URL);
      return;
    }

    printf("%s: Processed ok\n", (const char *)URL);
}

int main(int argc, char **argv) {
    xmlTextReaderPtr readerPtr;
    int i;
    xmlDocPtr docPtr;

    if (argc < 2)
        return(1);

    /*
     * this initialises the library and check potential ABI mismatches
     * between the version it was compiled for and the actual shared
     * library used.
     */
    LIBXML_TEST_VERSION

    /*
     * Create a new reader for the first file and process the
     * document.
     */
    readerPtr = xmlReaderForFile(argv[1], NULL, 0);
    if (NULL == readerPtr) {
      fprintf(stderr, "%s: failed to create reader\n", argv[1]);      
      return(1);
    }
    processDoc(readerPtr);

    /*
     * The reader can be reused for subsequent files.
     */
    for (i=2; i < argc; ++i) {
      	xmlReaderNewFile(readerPtr, argv[i], NULL, 0);
	if (NULL == readerPtr) {
	  fprintf(stderr, "%s: failed to create reader\n", argv[i]);      
	  return(1);
	}
        processDoc(readerPtr);
    }

    /*
     * Since we've called xmlTextReaderCurrentDoc, we now have to
     * clean up after ourselves.  We only have to do this the last
     * time, because xmlReaderNewFile calls xmlCtxtReset which takes
     * care of it.
     */
    docPtr = xmlTextReaderCurrentDoc(readerPtr);
    if (docPtr != NULL)
      xmlFreeDoc(docPtr);

    /*
     * Clean up the reader.
     */
    xmlFreeTextReader(readerPtr);

    /*
     * Cleanup function for the XML library.
     */
    xmlCleanupParser();
    /*
     * this is to debug memory for regression tests
     */
    xmlMemoryDump();
    return(0);
}

#else
int main(void) {
    fprintf(stderr, "xmlReader support not compiled in\n");
    return(0);
}
#endif


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
1 Apr 2025 8.34 AM
root / root
0755
.libs
--
1 Apr 2025 8.34 AM
root / root
0755
.memdump
0.001 KB
14 Mar 2025 9.52 AM
root / root
0644
Makefile
30.112 KB
14 Mar 2025 9.51 AM
root / root
0644
Makefile.am
3.112 KB
17 Aug 2022 11.22 AM
root / root
0644
Makefile.in
31.111 KB
29 Aug 2022 1.20 PM
root / root
0644
examples.xml
31.661 KB
29 Aug 2022 1.16 PM
root / root
0644
examples.xsl
4.513 KB
25 Aug 2022 11.03 AM
root / root
0644
index.html
38.711 KB
29 Aug 2022 1.16 PM
root / root
0644
index.py
8.946 KB
25 Aug 2022 11.03 AM
root / root
0644
io1
7.712 KB
14 Mar 2025 9.52 AM
root / root
0755
io1.c
3.667 KB
2 May 2022 12.10 PM
root / root
0644
io1.o
30.641 KB
14 Mar 2025 9.52 AM
root / root
0644
io2
7.712 KB
14 Mar 2025 9.52 AM
root / root
0755
io2.c
1.168 KB
28 Jun 2022 5.30 PM
root / root
0644
io2.o
22.039 KB
14 Mar 2025 9.52 AM
root / root
0644
parse1
7.744 KB
14 Mar 2025 9.52 AM
root / root
0755
parse1.c
1.266 KB
6 Aug 2020 9.09 AM
root / root
0644
parse1.o
22.016 KB
14 Mar 2025 9.52 AM
root / root
0644
parse2
7.744 KB
14 Mar 2025 9.52 AM
root / root
0755
parse2.c
1.923 KB
6 Aug 2020 9.09 AM
root / root
0644
parse2.o
43.211 KB
14 Mar 2025 9.52 AM
root / root
0644
parse3
7.744 KB
14 Mar 2025 9.52 AM
root / root
0755
parse3.c
1.467 KB
6 Aug 2020 9.09 AM
root / root
0644
parse3.o
22.023 KB
14 Mar 2025 9.52 AM
root / root
0644
parse4
7.744 KB
14 Mar 2025 9.52 AM
root / root
0755
parse4.c
3.458 KB
2 May 2022 12.10 PM
root / root
0644
parse4.o
47.547 KB
14 Mar 2025 9.52 AM
root / root
0644
reader1
7.755 KB
14 Mar 2025 9.52 AM
root / root
0755
reader1.c
2.472 KB
2 May 2022 12.10 PM
root / root
0644
reader1.o
24.031 KB
14 Mar 2025 9.52 AM
root / root
0644
reader2
7.755 KB
14 Mar 2025 9.52 AM
root / root
0755
reader2.c
3.062 KB
2 May 2022 12.10 PM
root / root
0644
reader2.o
25.969 KB
14 Mar 2025 9.52 AM
root / root
0644
reader3
7.755 KB
14 Mar 2025 9.52 AM
root / root
0755
reader3.c
2.88 KB
2 May 2022 12.10 PM
root / root
0644
reader3.o
26.898 KB
14 Mar 2025 9.52 AM
root / root
0644
reader4
7.755 KB
14 Mar 2025 9.52 AM
root / root
0755
reader4.c
3.056 KB
2 May 2022 12.10 PM
root / root
0644
reader4.o
29.633 KB
14 Mar 2025 9.52 AM
root / root
0644
test1.xml
0.007 KB
26 Jun 2020 12.29 PM
root / root
0644
test2.xml
0.222 KB
26 Jun 2020 12.29 PM
root / root
0644
test3.xml
0.813 KB
26 Jun 2020 12.29 PM
root / root
0644
testWriter
7.787 KB
14 Mar 2025 9.52 AM
root / root
0755
testWriter.c
37.599 KB
2 May 2022 12.10 PM
root / root
0644
testWriter.o
105.344 KB
14 Mar 2025 9.52 AM
root / root
0644
tree1
7.733 KB
14 Mar 2025 9.52 AM
root / root
0755
tree1.c
2.193 KB
2 May 2022 12.10 PM
root / root
0644
tree1.o
24.313 KB
14 Mar 2025 9.52 AM
root / root
0644
tree2
7.733 KB
14 Mar 2025 9.52 AM
root / root
0755
tree2.c
3.372 KB
28 Jun 2022 5.30 PM
root / root
0644
tree2.o
29.445 KB
14 Mar 2025 9.52 AM
root / root
0644
xpath1
7.744 KB
14 Mar 2025 9.52 AM
root / root
0755
xpath1.c
6.47 KB
2 May 2022 12.10 PM
root / root
0644
xpath1.o
58.586 KB
14 Mar 2025 9.52 AM
root / root
0644
xpath2
7.744 KB
14 Mar 2025 9.52 AM
root / root
0755
xpath2.c
5.206 KB
2 May 2022 12.10 PM
root / root
0644
xpath2.o
40.758 KB
14 Mar 2025 9.52 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF