mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Switch to xmlCtxtSetErrorHandler
This commit is contained in:
parent
c5750fc6a7
commit
71eb710914
115
xmllint.c
115
xmllint.c
@ -437,9 +437,19 @@ xmlHTMLBufCat(void *data ATTRIBUTE_UNUSED, const char *fmt, ...) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* xmlHTMLError:
|
||||||
|
* @ctx: an XML parser context
|
||||||
|
* @msg: the message to display/transmit
|
||||||
|
* @...: extra parameters for the message display
|
||||||
|
*
|
||||||
|
* Display and format an error messages, gives file, line, position and
|
||||||
|
* extra parameters.
|
||||||
|
*/
|
||||||
static void
|
static void
|
||||||
xmlHTMLPrintError(void *ctx, const char *level, const char *msg, va_list ap) {
|
xmlHTMLError(void *vctxt, const xmlError *error)
|
||||||
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
|
{
|
||||||
|
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) vctxt;
|
||||||
xmlParserInputPtr input;
|
xmlParserInputPtr input;
|
||||||
xmlGenericErrorFunc oldError;
|
xmlGenericErrorFunc oldError;
|
||||||
void *oldErrorCtxt;
|
void *oldErrorCtxt;
|
||||||
@ -458,9 +468,12 @@ xmlHTMLPrintError(void *ctx, const char *level, const char *msg, va_list ap) {
|
|||||||
xmlParserPrintFileInfo(input);
|
xmlParserPrintFileInfo(input);
|
||||||
xmlHTMLEncodeSend();
|
xmlHTMLEncodeSend();
|
||||||
|
|
||||||
fprintf(ERR_STREAM, "<b>%s</b>: ", level);
|
fprintf(ERR_STREAM, "<b>%s%s</b>: ",
|
||||||
|
(error->domain == XML_FROM_VALID) ||
|
||||||
|
(error->domain == XML_FROM_DTD) ? "validity " : "",
|
||||||
|
error->level == XML_ERR_WARNING ? "warning" : "error");
|
||||||
|
|
||||||
vsnprintf(buffer, sizeof(buffer), msg, ap);
|
snprintf(buffer, sizeof(buffer), "%s", error->message);
|
||||||
xmlHTMLEncodeSend();
|
xmlHTMLEncodeSend();
|
||||||
|
|
||||||
fprintf(ERR_STREAM, "</p>\n");
|
fprintf(ERR_STREAM, "</p>\n");
|
||||||
@ -477,84 +490,6 @@ xmlHTMLPrintError(void *ctx, const char *level, const char *msg, va_list ap) {
|
|||||||
xmlSetGenericErrorFunc(oldErrorCtxt, oldError);
|
xmlSetGenericErrorFunc(oldErrorCtxt, oldError);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* xmlHTMLError:
|
|
||||||
* @ctx: an XML parser context
|
|
||||||
* @msg: the message to display/transmit
|
|
||||||
* @...: extra parameters for the message display
|
|
||||||
*
|
|
||||||
* Display and format an error messages, gives file, line, position and
|
|
||||||
* extra parameters.
|
|
||||||
*/
|
|
||||||
static void LIBXML_ATTR_FORMAT(2,3)
|
|
||||||
xmlHTMLError(void *ctx, const char *msg, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
|
|
||||||
va_start(args, msg);
|
|
||||||
xmlHTMLPrintError(ctx, "error", msg, args);
|
|
||||||
va_end(args);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* xmlHTMLWarning:
|
|
||||||
* @ctx: 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 LIBXML_ATTR_FORMAT(2,3)
|
|
||||||
xmlHTMLWarning(void *ctx, const char *msg, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
|
|
||||||
va_start(args, msg);
|
|
||||||
xmlHTMLPrintError(ctx, "warning", msg, args);
|
|
||||||
va_end(args);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* xmlHTMLValidityError:
|
|
||||||
* @ctx: an XML parser context
|
|
||||||
* @msg: the message to display/transmit
|
|
||||||
* @...: extra parameters for the message display
|
|
||||||
*
|
|
||||||
* Display and format an validity error messages, gives file,
|
|
||||||
* line, position and extra parameters.
|
|
||||||
*/
|
|
||||||
static void LIBXML_ATTR_FORMAT(2,3)
|
|
||||||
xmlHTMLValidityError(void *ctx, const char *msg, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
|
|
||||||
va_start(args, msg);
|
|
||||||
xmlHTMLPrintError(ctx, "validity error", msg, args);
|
|
||||||
va_end(args);
|
|
||||||
|
|
||||||
progresult = XMLLINT_ERR_VALID;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* xmlHTMLValidityWarning:
|
|
||||||
* @ctx: an XML parser context
|
|
||||||
* @msg: the message to display/transmit
|
|
||||||
* @...: extra parameters for the message display
|
|
||||||
*
|
|
||||||
* Display and format a validity warning messages, gives file, line,
|
|
||||||
* position and extra parameters.
|
|
||||||
*/
|
|
||||||
static void LIBXML_ATTR_FORMAT(2,3)
|
|
||||||
xmlHTMLValidityWarning(void *ctx, const char *msg, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
|
|
||||||
va_start(args, msg);
|
|
||||||
xmlHTMLPrintError(ctx, "validity warning", msg, args);
|
|
||||||
va_end(args);
|
|
||||||
}
|
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* I/O Interfaces *
|
* I/O Interfaces *
|
||||||
@ -2046,12 +1981,8 @@ parseFile(const char *filename, xmlParserCtxtPtr rectxt) {
|
|||||||
if (maxAmpl > 0)
|
if (maxAmpl > 0)
|
||||||
xmlCtxtSetMaxAmplification(ctxt, maxAmpl);
|
xmlCtxtSetMaxAmplification(ctxt, maxAmpl);
|
||||||
|
|
||||||
if (htmlout) {
|
if (htmlout)
|
||||||
ctxt->sax->error = xmlHTMLError;
|
xmlCtxtSetErrorHandler(ctxt, xmlHTMLError, ctxt);
|
||||||
ctxt->sax->warning = xmlHTMLWarning;
|
|
||||||
ctxt->vctxt.error = xmlHTMLValidityError;
|
|
||||||
ctxt->vctxt.warning = xmlHTMLValidityWarning;
|
|
||||||
}
|
|
||||||
|
|
||||||
while ((res = fread(chars, 1, pushsize, f)) > 0) {
|
while ((res = fread(chars, 1, pushsize, f)) > 0) {
|
||||||
xmlParseChunk(ctxt, chars, res, 0);
|
xmlParseChunk(ctxt, chars, res, 0);
|
||||||
@ -2078,12 +2009,8 @@ parseFile(const char *filename, xmlParserCtxtPtr rectxt) {
|
|||||||
if (maxAmpl > 0)
|
if (maxAmpl > 0)
|
||||||
xmlCtxtSetMaxAmplification(ctxt, maxAmpl);
|
xmlCtxtSetMaxAmplification(ctxt, maxAmpl);
|
||||||
|
|
||||||
if (htmlout) {
|
if (htmlout)
|
||||||
ctxt->sax->error = xmlHTMLError;
|
xmlCtxtSetErrorHandler(ctxt, xmlHTMLError, ctxt);
|
||||||
ctxt->sax->warning = xmlHTMLWarning;
|
|
||||||
ctxt->vctxt.error = xmlHTMLValidityError;
|
|
||||||
ctxt->vctxt.warning = xmlHTMLValidityWarning;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (testIO) {
|
if (testIO) {
|
||||||
FILE *f;
|
FILE *f;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user