mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
schemas: Add callbacks for resource loader
This commit is contained in:
parent
fd7d9e5eca
commit
ef8dc4f673
@ -18,6 +18,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <libxml/encoding.h>
|
||||
#include <libxml/parser.h>
|
||||
#include <libxml/tree.h>
|
||||
#include <libxml/xmlerror.h>
|
||||
|
||||
@ -160,6 +161,10 @@ XMLPUBFUN int
|
||||
xmlSchemaValidityErrorFunc * err,
|
||||
xmlSchemaValidityWarningFunc * warn,
|
||||
void **ctx);
|
||||
XMLPUBFUN void
|
||||
xmlSchemaSetResourceLoader (xmlSchemaParserCtxtPtr ctxt,
|
||||
xmlResourceLoader loader,
|
||||
void *data);
|
||||
XMLPUBFUN int
|
||||
xmlSchemaIsValid (xmlSchemaValidCtxtPtr ctxt);
|
||||
|
||||
|
26
xmlschemas.c
26
xmlschemas.c
@ -628,6 +628,9 @@ struct _xmlSchemaParserCtxt {
|
||||
xmlSchemaRedefPtr redef; /* Used for redefinitions. */
|
||||
int redefCounter; /* Used for redefinitions. */
|
||||
xmlSchemaItemListPtr attrProhibs;
|
||||
|
||||
xmlResourceLoader resourceLoader;
|
||||
void *resourceCtxt;
|
||||
};
|
||||
|
||||
/**
|
||||
@ -10506,6 +10509,9 @@ doc_load:
|
||||
|
||||
if (pctxt->serror != NULL)
|
||||
xmlCtxtSetErrorHandler(parserCtxt, pctxt->serror, pctxt->errCtxt);
|
||||
if (pctxt->resourceLoader != NULL)
|
||||
xmlCtxtSetResourceLoader(parserCtxt, pctxt->resourceLoader,
|
||||
pctxt->resourceCtxt);
|
||||
|
||||
if ((pctxt->dict != NULL) && (parserCtxt->dict != NULL)) {
|
||||
/*
|
||||
@ -21413,6 +21419,26 @@ xmlSchemaGetParserErrors(xmlSchemaParserCtxtPtr ctxt,
|
||||
return(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlSchemaSetResourceLoader:
|
||||
* @ctxt: schema parser
|
||||
* @loader: resource loader
|
||||
* @data: user data which will be passed to the loader
|
||||
*
|
||||
* Register a callback function that will be called to load documents
|
||||
* or external entities.
|
||||
*
|
||||
* Available since 2.14.0.
|
||||
*/
|
||||
void
|
||||
xmlSchemaSetResourceLoader(xmlSchemaParserCtxtPtr ctxt,
|
||||
xmlResourceLoader loader, void *data) {
|
||||
if (ctxt == NULL)
|
||||
return;
|
||||
ctxt->resourceLoader = loader;
|
||||
ctxt->resourceCtxt = data;
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlSchemaFacetTypeToString:
|
||||
* @type: the facet type
|
||||
|
Loading…
x
Reference in New Issue
Block a user