$36 GRAYBYTE WORDPRESS FILE MANAGER $26

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

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

HOME
Current File : /opt/alt/libxml2/usr/share/doc/alt-libxml2-devel/examples//parse4.c
/**
 * section: Parsing
 * synopsis: Parse an XML document chunk by chunk to a tree and free it
 * purpose: Demonstrate the use of xmlCreatePushParserCtxt() and
 *          xmlParseChunk() to read an XML file progressively
 *          into a tree and xmlFreeDoc() to free the resulting tree
 * usage: parse4 test3.xml
 * test: parse4 test3.xml
 * author: Daniel Veillard
 * copy: see Copyright for the status of this software.
 */

#include <stdio.h>
#include <libxml/parser.h>
#include <libxml/tree.h>

#ifdef LIBXML_PUSH_ENABLED
static FILE *desc;

/**
 * readPacket:
 * @mem: array to store the packet
 * @size: the packet size
 *
 * read at most @size bytes from the document and store it in @mem
 *
 * Returns the number of bytes read
 */
static int
readPacket(char *mem, int size) {
    int res;

    res = fread(mem, 1, size, desc);
    return(res);
}

/**
 * example4Func:
 * @filename: a filename or an URL
 *
 * Parse the resource and free the resulting tree
 */
static void
example4Func(const char *filename) {
    xmlParserCtxtPtr ctxt;
    char chars[4];
    xmlDocPtr doc; /* the resulting document tree */
    int res;

    /*
     * Read a few first byte to check the input used for the
     * encoding detection at the parser level.
     */
    res = readPacket(chars, 4);
    if (res <= 0) {
        fprintf(stderr, "Failed to parse %s\n", filename);
	return;
    }

    /*
     * Create a progressive parsing context, the 2 first arguments
     * are not used since we want to build a tree and not use a SAX
     * parsing interface. We also pass the first bytes of the document
     * to allow encoding detection when creating the parser but this
     * is optional.
     */
    ctxt = xmlCreatePushParserCtxt(NULL, NULL,
                                   chars, res, filename);
    if (ctxt == NULL) {
        fprintf(stderr, "Failed to create parser context !\n");
	return;
    }

    /*
     * loop on the input getting the document data, of course 4 bytes
     * at a time is not realistic but allows to verify testing on small
     * documents.
     */
    while ((res = readPacket(chars, 4)) > 0) {
        xmlParseChunk(ctxt, chars, res, 0);
    }

    /*
     * there is no more input, indicate the parsing is finished.
     */
    xmlParseChunk(ctxt, chars, 0, 1);

    /*
     * collect the document back and if it was wellformed
     * and destroy the parser context.
     */
    doc = ctxt->myDoc;
    res = ctxt->wellFormed;
    xmlFreeParserCtxt(ctxt);

    if (!res) {
        fprintf(stderr, "Failed to parse %s\n", filename);
    }

    /*
     * since we don't use the document, destroy it now.
     */
    xmlFreeDoc(doc);
}

int main(int argc, char **argv) {
    if (argc != 2)
        return(1);

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

    /*
     * simulate a progressive parsing using the input file.
     */
    desc = fopen(argv[1], "rb");
    if (desc != NULL) {
	example4Func(argv[1]);
	fclose(desc);
    } else {
        fprintf(stderr, "Failed to parse %s\n", argv[1]);
    }

    /*
     * Cleanup function for the XML library.
     */
    xmlCleanupParser();
    /*
     * this is to debug memory for regression tests
     */
    xmlMemoryDump();
    return(0);
}
#else /* ! LIBXML_PUSH_ENABLED */
int main(int argc, char **argv) {
    fprintf(stderr, "Library not compiled with push parser support\n");
    return(0);
}
#endif

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


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

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF