⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmllint.c

📁 基于s3c2410芯片的数据采集系统 目标环境:S3C2410芯片、经裁剪后的linux2.6内核、sqlite数据库、cgi库 项目描述:节点端采集数据
💻 C
📖 第 1 页 / 共 5 页
字号:
 * An attribute definition has been parsed */static voidattributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar * elem,                   const xmlChar * name, int type, int def,                   const xmlChar * defaultValue, xmlEnumerationPtr tree){    callbacks++;    if (noout)        return;    if (defaultValue == NULL)        fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, NULL, ...)\n",                elem, name, type, def);    else        fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, %s, ...)\n",                elem, name, type, def, defaultValue);    xmlFreeEnumeration(tree);}/** * elementDeclDebug: * @ctxt:  An XML parser context * @name:  the element name  * @type:  the element type  * @content: the element value (without processing). * * An element definition has been parsed */static voidelementDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type,	    xmlElementContentPtr content ATTRIBUTE_UNUSED){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.elementDecl(%s, %d, ...)\n",            name, type);}/** * notationDeclDebug: * @ctxt:  An XML parser context * @name: The name of the notation * @publicId: The public ID of the entity * @systemId: The system ID of the entity * * What to do when a notation declaration has been parsed. */static voidnotationDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,	     const xmlChar *publicId, const xmlChar *systemId){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.notationDecl(%s, %s, %s)\n",            (char *) name, (char *) publicId, (char *) systemId);}/** * unparsedEntityDeclDebug: * @ctxt:  An XML parser context * @name: The name of the entity * @publicId: The public ID of the entity * @systemId: The system ID of the entity * @notationName: the name of the notation * * What to do when an unparsed entity declaration is parsed */static voidunparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,		   const xmlChar *publicId, const xmlChar *systemId,		   const xmlChar *notationName){const xmlChar *nullstr = BAD_CAST "(null)";    if (publicId == NULL)        publicId = nullstr;    if (systemId == NULL)        systemId = nullstr;    if (notationName == NULL)        notationName = nullstr;    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.unparsedEntityDecl(%s, %s, %s, %s)\n",            (char *) name, (char *) publicId, (char *) systemId,	    (char *) notationName);}/** * setDocumentLocatorDebug: * @ctxt:  An XML parser context * @loc: A SAX Locator * * Receive the document locator at startup, actually xmlDefaultSAXLocator * Everything is available on the context, so this is useless in our case. */static voidsetDocumentLocatorDebug(void *ctx ATTRIBUTE_UNUSED, xmlSAXLocatorPtr loc ATTRIBUTE_UNUSED){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.setDocumentLocator()\n");}/** * startDocumentDebug: * @ctxt:  An XML parser context * * called when the document start being processed. */static voidstartDocumentDebug(void *ctx ATTRIBUTE_UNUSED){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.startDocument()\n");}/** * endDocumentDebug: * @ctxt:  An XML parser context * * called when the document end has been detected. */static voidendDocumentDebug(void *ctx ATTRIBUTE_UNUSED){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.endDocument()\n");}/** * startElementDebug: * @ctxt:  An XML parser context * @name:  The element name * * called when an opening tag has been processed. */static voidstartElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts){    int i;    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.startElement(%s", (char *) name);    if (atts != NULL) {        for (i = 0;(atts[i] != NULL);i++) {	    fprintf(stdout, ", %s='", atts[i++]);	    if (atts[i] != NULL)	        fprintf(stdout, "%s'", atts[i]);	}    }    fprintf(stdout, ")\n");}/** * endElementDebug: * @ctxt:  An XML parser context * @name:  The element name * * called when the end of an element has been detected. */static voidendElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.endElement(%s)\n", (char *) name);}/** * charactersDebug: * @ctxt:  An XML parser context * @ch:  a xmlChar string * @len: the number of xmlChar * * receiving some chars from the parser. * Question: how much at a time ??? */static voidcharactersDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len){    char out[40];    int i;    callbacks++;    if (noout)	return;    for (i = 0;(i<len) && (i < 30);i++)	out[i] = ch[i];    out[i] = 0;    fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);}/** * referenceDebug: * @ctxt:  An XML parser context * @name:  The entity name * * called when an entity reference is detected.  */static voidreferenceDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.reference(%s)\n", name);}/** * ignorableWhitespaceDebug: * @ctxt:  An XML parser context * @ch:  a xmlChar string * @start: the first char in the string * @len: the number of xmlChar * * receiving some ignorable whitespaces from the parser. * Question: how much at a time ??? */static voidignorableWhitespaceDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len){    char out[40];    int i;    callbacks++;    if (noout)	return;    for (i = 0;(i<len) && (i < 30);i++)	out[i] = ch[i];    out[i] = 0;    fprintf(stdout, "SAX.ignorableWhitespace(%s, %d)\n", out, len);}/** * processingInstructionDebug: * @ctxt:  An XML parser context * @target:  the target name * @data: the PI data's * @len: the number of xmlChar * * A processing instruction has been parsed. */static voidprocessingInstructionDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *target,                      const xmlChar *data){    callbacks++;    if (noout)	return;    if (data != NULL)	fprintf(stdout, "SAX.processingInstruction(%s, %s)\n",		(char *) target, (char *) data);    else	fprintf(stdout, "SAX.processingInstruction(%s, NULL)\n",		(char *) target);}/** * cdataBlockDebug: * @ctx: the user data (XML parser context) * @value:  The pcdata content * @len:  the block length * * called when a pcdata block has been parsed */static voidcdataBlockDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *value, int len){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.pcdata(%.20s, %d)\n",	    (char *) value, len);}/** * commentDebug: * @ctxt:  An XML parser context * @value:  the comment content * * A comment has been parsed. */static voidcommentDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *value){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.comment(%s)\n", value);}/** * warningDebug: * @ctxt:  An XML parser context * @msg:  the message to display/transmit * @...:  extra parameters for the message display * * Display and format a warning messages, gives file, line, position and * extra parameters. */static void XMLCDECLwarningDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...){    va_list args;    callbacks++;    if (noout)	return;    va_start(args, msg);    fprintf(stdout, "SAX.warning: ");    vfprintf(stdout, msg, args);    va_end(args);}/** * errorDebug: * @ctxt:  An XML parser context * @msg:  the message to display/transmit * @...:  extra parameters for the message display * * Display and format a error messages, gives file, line, position and * extra parameters. */static void XMLCDECLerrorDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...){    va_list args;    callbacks++;    if (noout)	return;    va_start(args, msg);    fprintf(stdout, "SAX.error: ");    vfprintf(stdout, msg, args);    va_end(args);}/** * fatalErrorDebug: * @ctxt:  An XML parser context * @msg:  the message to display/transmit * @...:  extra parameters for the message display * * Display and format a fatalError messages, gives file, line, position and * extra parameters. */static void XMLCDECLfatalErrorDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...){    va_list args;    callbacks++;    if (noout)	return;    va_start(args, msg);    fprintf(stdout, "SAX.fatalError: ");    vfprintf(stdout, msg, args);    va_end(args);}static xmlSAXHandler debugSAXHandlerStruct = {    internalSubsetDebug,    isStandaloneDebug,    hasInternalSubsetDebug,    hasExternalSubsetDebug,    resolveEntityDebug,    getEntityDebug,    entityDeclDebug,    notationDeclDebug,    attributeDeclDebug,    elementDeclDebug,    unparsedEntityDeclDebug,    setDocumentLocatorDebug,    startDocumentDebug,    endDocumentDebug,    startElementDebug,    endElementDebug,    referenceDebug,    charactersDebug,    ignorableWhitespaceDebug,    processingInstructionDebug,    commentDebug,    warningDebug,    errorDebug,    fatalErrorDebug,    getParameterEntityDebug,    cdataBlockDebug,    externalSubsetDebug,    1,    NULL,    NULL,    NULL,    NULL};xmlSAXHandlerPtr debugSAXHandler = &debugSAXHandlerStruct;/* * SAX2 specific callbacks *//** * startElementNsDebug: * @ctxt:  An XML parser context * @name:  The element name * * called when an opening tag has been processed. */static voidstartElementNsDebug(void *ctx ATTRIBUTE_UNUSED,                    const xmlChar *localname,                    const xmlChar *prefix,                    const xmlChar *URI,		    int nb_namespaces,		    const xmlChar **namespaces,		    int nb_attributes,		    int nb_defaulted,		    const xmlChar **attributes){    int i;    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.startElementNs(%s", (char *) localname);    if (prefix == NULL)	fprintf(stdout, ", NULL");    else	fprintf(stdout, ", %s", (char *) prefix);    if (URI == NULL)	fprintf(stdout, ", NULL");    else	fprintf(stdout, ", '%s'", (char *) URI);    fprintf(stdout, ", %d", nb_namespaces);        if (namespaces != NULL) {        for (i = 0;i < nb_namespaces * 2;i++) {	    fprintf(stdout, ", xmlns");	    if (namespaces[i] != NULL)	        fprintf(stdout, ":%s", namespaces[i]);	    i++;	    fprintf(stdout, "='%s'", namespaces[i]);	}    }    fprintf(stdout, ", %d, %d", nb_attributes, nb_defaulted);    if (attributes != NULL) {        for (i = 0;i < nb_attributes * 5;i += 5) {	    if (attributes[i + 1] != NULL)		fprintf(stdout, ", %s:%s='", attributes[i + 1], attributes[i]);	    else		fprintf(stdout, ", %s='", attributes[i]);	    fprintf(stdout, "%.4s...', %d", attributes[i + 3],		    (int)(attributes[i + 4] - attributes[i + 3]));	}    }    fprintf(stdout, ")\n");}/** * endElementDebug: * @ctxt:  An XML parser context * @name:  The element name * * called when the end of an element has been detected. */static voidendElementNsDebug(void *ctx ATTRIBUTE_UNUSED,                  const xmlChar *localname,                  const xmlChar *prefix,                  const xmlChar *URI){    callbacks++;    if (noout)	return;    fprintf(stdout, "SAX.endElementNs(%s", (char *) localname);    if (prefix == NULL)	fprintf(stdout, ", NULL");    else	fprintf(stdout, ", %s", (char *) prefix);    if (URI == NULL)	fprintf(stdout, ", NULL)\n");    else	fprintf(stdout, ", '%s')\n", (char *) URI);}static xmlSAXHandler debugSAX2HandlerStruct = {    internalSubsetDebug,    isStandaloneDebug,    hasInternalSubsetDebug,    hasExternalSubsetDebug,    resolveEntityDebug,    getEntityDebug,    entityDeclDebug,    notationDeclDebug,    attributeDeclDebug,    elementDeclDebug,    unparsedEntityDeclDebug,    setDocumentLocatorDebug,    startDocumentDebug,    endDocumentDebug,    NULL,    NULL,    referenceDebug,    charactersDebug,    ignorableWhitespaceDebug,    processingInstructionDebug,    commentDebug,    warningDebug,    errorDebug,    fatalErrorDebug,    getParameterEntityDebug,    cdataBlockDebug,    externalSubsetDebug,    XML_SAX2_MAGIC,    NULL,    startElementNsDebug,    endElementNsDebug,    NULL};static xmlSAXHandlerPtr debugSAX2Handler = &debugSAX2HandlerStruct;static voidtestSAX(const char *filename) {    xmlSAXHandlerPtr handler;    const char *user_data = "user_data"; /* mostly for debugging */    xmlParserInputBufferPtr buf = NULL;    xmlParserInputPtr inputStream;    xmlParserCtxtPtr ctxt = NULL;    xmlSAXHandlerPtr old_sax = NULL;    callbacks = 0;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -