- catalog.[ch]: fixes and add xmlLoadCatalogs()

- DOCBparser.c: small cleanup
- xmllint.c: added a --catalogs option to load catalogs from
  $SGML_CATALOG_FILES
- tree.c: cleanup
- configure.in: iconv library fixup, ICONV_LIBS
Daniel
This commit is contained in:
Daniel Veillard 2001-05-22 15:08:55 +00:00
parent af86c7f463
commit 81418e38c8
9 changed files with 77 additions and 26 deletions

View File

@ -1,3 +1,12 @@
Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* catalog.[ch]: fixes and add xmlLoadCatalogs()
* DOCBparser.c: small cleanup
* xmllint.c: added a --catalogs option to load catalogs from
$SGML_CATALOG_FILES
* tree.c: cleanup
* configure.in: iconv library fixup, ICONV_LIBS
Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* catalog.c: handling of CATALOG entries. detection of recursion,

View File

@ -3392,18 +3392,6 @@ docbParseDocTypeDecl(docbParserCtxtPtr ctxt) {
*/
if (RAW != '[') {
return;
/*
* We should be at the end of the DOCTYPE declaration.
*/
if (CUR != '>') {
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
ctxt->sax->error(ctxt->userData,
"DOCTYPE unproperly terminated\n");
ctxt->wellFormed = 0;
/* We shouldn't try to resynchronize ... */
}
NEXT;
}
/*

View File

@ -65,10 +65,9 @@ struct _xmlCatalogEntry {
static xmlHashTablePtr xmlDefaultCatalog;
/* Catalog stack */
const char * catalTab[10]; /* stack of catals */
const char * catal; /* Current catal stream */
int catalNr = 0; /* Number of current catal streams */
int catalMax = 10; /* Max number of catal streams */
static const char * catalTab[10]; /* stack of catals */
static int catalNr = 0; /* Number of current catal streams */
static int catalMax = 10; /* Max number of catal streams */
/************************************************************************
* *
@ -478,8 +477,8 @@ xmlParseCatalog(const xmlChar *value, const char *file) {
* xmlLoadCatalog:
* @filename: a file path
*
* Load the catalog and makes its definition effective for the default
* external entity loader.
* Load the catalog and makes its definitions effective for the default
* external entity loader. It will recuse in CATALOG entries.
* TODO: this function is not thread safe, catalog initialization should
* be done once at startup
*
@ -506,7 +505,8 @@ xmlLoadCatalog(const char *filename) {
* Prevent loops
*/
for (i = 0;i < catalNr;i++) {
if (xmlStrEqual(catalTab[i], filename)) {
if (xmlStrEqual((const xmlChar *)catalTab[i],
(const xmlChar *)filename)) {
xmlGenericError(xmlGenericErrorContext,
"xmlLoadCatalog: %s seems to induce a loop\n",
filename);
@ -548,6 +548,39 @@ xmlLoadCatalog(const char *filename) {
return(ret);
}
/*
* xmlLoadCatalogs:
* @paths: a list of file path separated by ':' or spaces
*
* Load the catalogs and makes their definitions effective for the default
* external entity loader.
* TODO: this function is not thread safe, catalog initialization should
* be done once at startup
*/
void
xmlLoadCatalogs(const char *pathss) {
const char *cur;
const char *paths;
xmlChar *path;
cur = pathss;
while ((cur != NULL) && (*cur != 0)) {
while (IS_BLANK(*cur)) cur++;
if (*cur != 0) {
paths = cur;
while ((*cur != 0) && (*cur != ':') && (!IS_BLANK(*cur)))
cur++;
path = xmlStrndup((const xmlChar *)paths, cur - paths);
if (path != NULL) {
xmlLoadCatalog((const char *) path);
xmlFree(path);
}
}
while (*cur == ':')
cur++;
}
}
/**
* xmlCatalogCleanup:
*

View File

@ -22,6 +22,7 @@ extern "C" {
#endif
int xmlLoadCatalog (const char *URL);
void xmlLoadCatalogs (const char *paths);
void xmlCatalogCleanup (void);
void xmlCatalogDump (FILE *out);
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);

View File

@ -154,7 +154,6 @@ AC_CHECK_FUNC(isinf, AC_DEFINE(HAVE_ISINF) , AC_CHECK_LIB(m, isinf,
XML_LIBDIR='-L${libdir}'
XML_INCLUDEDIR='-I${includedir}/libxml -I${includedir}'
XML_LIBS="-lxml2 $Z_LIBS -lm $LIBS"
dnl
dnl Extra flags
@ -238,6 +237,7 @@ LDFLAGS=${_ldflags}
dnl
dnl specific tests to setup DV's devel environment with debug etc ...
dnl (-Wunreachable-code)
dnl
if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ; then
if test "${with_mem_debug}" = "" ; then
@ -376,7 +376,7 @@ if test "$with_iconv" = "no" ; then
else
AC_CHECK_HEADER(iconv.h,
AC_CHECK_FUNC(iconv, ,
AC_CHECK_LIB(iconv, iconv, XML_LIBS="$XML_LIBS -liconv")))
AC_CHECK_LIB(iconv, iconv, ICONV_LIBS="-liconv")))
if test "$have_iconv" != "" ; then
echo Iconv support not found
WITH_ICONV=0
@ -384,6 +384,7 @@ else
WITH_ICONV=1
fi
fi
XML_LIBS="-lxml2 $Z_LIBS $ICONV_LIBS -lm $LIBS"
AC_SUBST(WITH_ICONV)
AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
@ -412,6 +413,7 @@ AC_SUBST(XML_CFLAGS)
AC_SUBST(XML_LIBDIR)
AC_SUBST(XML_LIBS)
AC_SUBST(ICONV_LIBS)
AC_SUBST(XML_INCLUDEDIR)
AC_SUBST(HTML_DIR)
AC_SUBST(HAVE_ISNAN)

View File

@ -22,6 +22,7 @@ extern "C" {
#endif
int xmlLoadCatalog (const char *URL);
void xmlLoadCatalogs (const char *paths);
void xmlCatalogCleanup (void);
void xmlCatalogDump (FILE *out);
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);

5
tree.c
View File

@ -6271,10 +6271,10 @@ int
xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
xmlOutputBufferPtr buf;
xmlCharEncodingHandlerPtr handler = NULL;
xmlCharEncoding enc;
int ret;
if (encoding != NULL) {
xmlCharEncoding enc;
enc = xmlParseCharEncoding(encoding);
if (cur->charset != XML_CHAR_ENCODING_UTF8) {
@ -6284,9 +6284,8 @@ xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
}
if (enc != XML_CHAR_ENCODING_UTF8) {
handler = xmlFindCharEncodingHandler(encoding);
if (handler == NULL) {
if (handler == NULL)
return(-1);
}
}
}

View File

@ -62,6 +62,9 @@
#ifdef LIBXML_XINCLUDE_ENABLED
#include <libxml/xinclude.h>
#endif
#ifdef LIBXML_CATALOG_ENABLED
#include <libxml/catalog.h>
#endif
#ifdef LIBXML_DEBUG_ENABLED
static int debug = 0;
@ -848,6 +851,19 @@ main(int argc, char **argv) {
debugent++;
xmlParserDebugEntities = 1;
}
#endif
#ifdef LIBXML_CATALOG_ENABLED
else if ((!strcmp(argv[i], "-catalogs")) ||
(!strcmp(argv[i], "--catalogs"))) {
const char *catalogs;
catalogs = getenv("SGML_CATALOG_FILES");
if (catalogs == NULL) {
fprintf(stderr, "Variable $SGML_CATALOG_FILES not set\n");
} else {
xmlLoadCatalogs(catalogs);
}
}
#endif
else if ((!strcmp(argv[i], "-encode")) ||
(!strcmp(argv[i], "--encode"))) {
@ -947,6 +963,9 @@ main(int argc, char **argv) {
printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
printf("\t--testIO : test user I/O support\n");
printf("\t--encode encoding : output in the given encoding\n");
#ifdef LIBXML_CATALOG_ENABLED
printf("\t--catalogs : use the catalogs from $SGML_CATALOG_FILES\n");
#endif
printf("\t--auto : generate a small doc on the fly\n");
#ifdef LIBXML_XINCLUDE_ENABLED
printf("\t--xinclude : do XInclude processing\n");

View File

@ -161,7 +161,7 @@ int isinf(double x)
*/
double
xmlXPathDivideBy(double f, double fzero) {
float ret;
double ret;
#ifdef HAVE_SIGNAL
#ifdef SIGFPE
#ifdef SIG_IGN
@ -3079,7 +3079,6 @@ xmlXPathCompareNodeSets(int inf, int strict,
xmlXPathFreeObject(arg1);
xmlXPathFreeObject(arg2);
return(ret);
return(0);
}
/**