2 * catalog.c: set of generic Catalog related routines
4 * Reference: SGML Open Technical Resolution TR9401:1997.
5 * http://www.jclark.com/sp/catalog.htm
7 * XML Catalogs Working Draft 06 August 2001
8 * http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
10 * See Copyright for the status of this software.
12 * Daniel.Veillard@imag.fr
18 #ifdef LIBXML_CATALOG_ENABLED
19 #ifdef HAVE_SYS_TYPES_H
20 #include <sys/types.h>
22 #ifdef HAVE_SYS_STAT_H
35 #include <libxml/xmlmemory.h>
36 #include <libxml/hash.h>
37 #include <libxml/uri.h>
38 #include <libxml/parserInternals.h>
39 #include <libxml/catalog.h>
40 #include <libxml/xmlerror.h>
41 #include <libxml/threads.h>
42 #include <libxml/globals.h>
46 #define MAX_DELEGATE 50
47 #define MAX_CATAL_DEPTH 50
50 # define PATH_SEPARATOR ';'
52 # define PATH_SEPARATOR ':'
58 * macro to flag unimplemented blocks
59 * XML_CATALOG_PREFER user env to select between system/public prefered
60 * option. C.f. Richard Tobin <richard@cogsci.ed.ac.uk>
61 *> Just FYI, I am using an environment variable XML_CATALOG_PREFER with
62 *> values "system" and "public". I have made the default be "system" to
66 xmlGenericError(xmlGenericErrorContext, \
67 "Unimplemented block at %s:%d\n", \
70 #define XML_URN_PUBID "urn:publicid:"
71 #define XML_CATAL_BREAK ((xmlChar *) -1)
72 #ifndef XML_XML_DEFAULT_CATALOG
73 #define XML_XML_DEFAULT_CATALOG "file:///etc/xml/catalog"
75 #ifndef XML_SGML_DEFAULT_CATALOG
76 #define XML_SGML_DEFAULT_CATALOG "file:///etc/sgml/catalog"
79 #if defined(_WIN32) && defined(_MSC_VER)
80 #undef XML_XML_DEFAULT_CATALOG
81 static char XML_XML_DEFAULT_CATALOG
[256] = "file:///etc/xml/catalog";
82 #if defined(_WIN32_WCE)
83 /* Windows CE don't have a A variant */
84 #define GetModuleHandleA GetModuleHandle
85 #define GetModuleFileNameA GetModuleFileName
87 #if !defined(_WINDOWS_)
88 void* __stdcall
GetModuleHandleA(const char*);
89 unsigned long __stdcall
GetModuleFileNameA(void*, char*, unsigned long);
94 static xmlChar
*xmlCatalogNormalizePublic(const xmlChar
*pubID
);
95 static int xmlExpandCatalog(xmlCatalogPtr catal
, const char *filename
);
97 /************************************************************************
99 * Types, all private *
101 ************************************************************************/
104 XML_CATA_REMOVED
= -1,
107 XML_CATA_BROKEN_CATALOG
,
108 XML_CATA_NEXT_CATALOG
,
112 XML_CATA_REWRITE_SYSTEM
,
113 XML_CATA_DELEGATE_PUBLIC
,
114 XML_CATA_DELEGATE_SYSTEM
,
116 XML_CATA_REWRITE_URI
,
117 XML_CATA_DELEGATE_URI
,
130 } xmlCatalogEntryType
;
132 typedef struct _xmlCatalogEntry xmlCatalogEntry
;
133 typedef xmlCatalogEntry
*xmlCatalogEntryPtr
;
134 struct _xmlCatalogEntry
{
135 struct _xmlCatalogEntry
*next
;
136 struct _xmlCatalogEntry
*parent
;
137 struct _xmlCatalogEntry
*children
;
138 xmlCatalogEntryType type
;
141 xmlChar
*URL
; /* The expanded URL using the base */
142 xmlCatalogPrefer prefer
;
145 struct _xmlCatalogEntry
*group
;
149 XML_XML_CATALOG_TYPE
= 1,
150 XML_SGML_CATALOG_TYPE
153 #define XML_MAX_SGML_CATA_DEPTH 10
155 xmlCatalogType type
; /* either XML or SGML */
158 * SGML Catalogs are stored as a simple hash table of catalog entries
159 * Catalog stack to check against overflows when building the
162 char *catalTab
[XML_MAX_SGML_CATA_DEPTH
]; /* stack of catals */
163 int catalNr
; /* Number of current catal streams */
164 int catalMax
; /* Max number of catal streams */
165 xmlHashTablePtr sgml
;
168 * XML Catalogs are stored as a tree of Catalog entries
170 xmlCatalogPrefer prefer
;
171 xmlCatalogEntryPtr xml
;
174 /************************************************************************
178 ************************************************************************/
181 * Those are preferences
183 static int xmlDebugCatalogs
= 0; /* used for debugging */
184 static xmlCatalogAllow xmlCatalogDefaultAllow
= XML_CATA_ALLOW_ALL
;
185 static xmlCatalogPrefer xmlCatalogDefaultPrefer
= XML_CATA_PREFER_PUBLIC
;
188 * Hash table containing all the trees of XML catalogs parsed by
191 static xmlHashTablePtr xmlCatalogXMLFiles
= NULL
;
194 * The default catalog in use by the application
196 static xmlCatalogPtr xmlDefaultCatalog
= NULL
;
199 * A mutex for modifying the shared global catalog(s)
200 * xmlDefaultCatalog tree.
201 * It also protects xmlCatalogXMLFiles
202 * The core of this readers/writer scheme is in xmlFetchXMLCatalogFile()
204 static xmlRMutexPtr xmlCatalogMutex
= NULL
;
207 * Whether the catalog support was initialized.
209 static int xmlCatalogInitialized
= 0;
211 /************************************************************************
213 * Catalog error handlers *
215 ************************************************************************/
218 * xmlCatalogErrMemory:
219 * @extra: extra informations
221 * Handle an out of memory condition
224 xmlCatalogErrMemory(const char *extra
)
226 __xmlRaiseError(NULL
, NULL
, NULL
, NULL
, NULL
, XML_FROM_CATALOG
,
227 XML_ERR_NO_MEMORY
, XML_ERR_ERROR
, NULL
, 0,
228 extra
, NULL
, NULL
, 0, 0,
229 "Memory allocation failed : %s\n", extra
);
234 * @catal: the Catalog entry
235 * @node: the context node
236 * @msg: the error message
237 * @extra: extra informations
239 * Handle a catalog error
241 static void LIBXML_ATTR_FORMAT(4,0)
242 xmlCatalogErr(xmlCatalogEntryPtr catal
, xmlNodePtr node
, int error
,
243 const char *msg
, const xmlChar
*str1
, const xmlChar
*str2
,
246 __xmlRaiseError(NULL
, NULL
, NULL
, catal
, node
, XML_FROM_CATALOG
,
247 error
, XML_ERR_ERROR
, NULL
, 0,
248 (const char *) str1
, (const char *) str2
,
249 (const char *) str3
, 0, 0,
250 msg
, str1
, str2
, str3
);
254 /************************************************************************
256 * Allocation and Freeing *
258 ************************************************************************/
261 * xmlNewCatalogEntry:
262 * @type: type of entry
263 * @name: name of the entry
264 * @value: value of the entry
265 * @prefer: the PUBLIC vs. SYSTEM current preference value
266 * @group: for members of a group, the group entry
268 * create a new Catalog entry, this type is shared both by XML and
269 * SGML catalogs, but the acceptable types values differs.
271 * Returns the xmlCatalogEntryPtr or NULL in case of error
273 static xmlCatalogEntryPtr
274 xmlNewCatalogEntry(xmlCatalogEntryType type
, const xmlChar
*name
,
275 const xmlChar
*value
, const xmlChar
*URL
, xmlCatalogPrefer prefer
,
276 xmlCatalogEntryPtr group
) {
277 xmlCatalogEntryPtr ret
;
278 xmlChar
*normid
= NULL
;
280 ret
= (xmlCatalogEntryPtr
) xmlMalloc(sizeof(xmlCatalogEntry
));
282 xmlCatalogErrMemory("allocating catalog entry");
287 ret
->children
= NULL
;
289 if (type
== XML_CATA_PUBLIC
|| type
== XML_CATA_DELEGATE_PUBLIC
) {
290 normid
= xmlCatalogNormalizePublic(name
);
292 name
= (*normid
!= 0 ? normid
: NULL
);
295 ret
->name
= xmlStrdup(name
);
301 ret
->value
= xmlStrdup(value
);
307 ret
->URL
= xmlStrdup(URL
);
310 ret
->prefer
= prefer
;
318 xmlFreeCatalogEntryList(xmlCatalogEntryPtr ret
);
321 * xmlFreeCatalogEntry:
322 * @payload: a Catalog entry
324 * Free the memory allocated to a Catalog entry
327 xmlFreeCatalogEntry(void *payload
, const xmlChar
*name ATTRIBUTE_UNUSED
) {
328 xmlCatalogEntryPtr ret
= (xmlCatalogEntryPtr
) payload
;
332 * Entries stored in the file hash must be deallocated
333 * only by the file hash cleaner !
335 if (ret
->dealloc
== 1)
338 if (xmlDebugCatalogs
) {
339 if (ret
->name
!= NULL
)
340 xmlGenericError(xmlGenericErrorContext
,
341 "Free catalog entry %s\n", ret
->name
);
342 else if (ret
->value
!= NULL
)
343 xmlGenericError(xmlGenericErrorContext
,
344 "Free catalog entry %s\n", ret
->value
);
346 xmlGenericError(xmlGenericErrorContext
,
347 "Free catalog entry\n");
350 if (ret
->name
!= NULL
)
352 if (ret
->value
!= NULL
)
354 if (ret
->URL
!= NULL
)
360 * xmlFreeCatalogEntryList:
361 * @ret: a Catalog entry list
363 * Free the memory allocated to a full chained list of Catalog entries
366 xmlFreeCatalogEntryList(xmlCatalogEntryPtr ret
) {
367 xmlCatalogEntryPtr next
;
369 while (ret
!= NULL
) {
371 xmlFreeCatalogEntry(ret
, NULL
);
377 * xmlFreeCatalogHashEntryList:
378 * @payload: a Catalog entry list
380 * Free the memory allocated to list of Catalog entries from the
384 xmlFreeCatalogHashEntryList(void *payload
,
385 const xmlChar
*name ATTRIBUTE_UNUSED
) {
386 xmlCatalogEntryPtr catal
= (xmlCatalogEntryPtr
) payload
;
387 xmlCatalogEntryPtr children
, next
;
392 children
= catal
->children
;
393 while (children
!= NULL
) {
394 next
= children
->next
;
395 children
->dealloc
= 0;
396 children
->children
= NULL
;
397 xmlFreeCatalogEntry(children
, NULL
);
401 xmlFreeCatalogEntry(catal
, NULL
);
405 * xmlCreateNewCatalog:
406 * @type: type of catalog
407 * @prefer: the PUBLIC vs. SYSTEM current preference value
409 * create a new Catalog, this type is shared both by XML and
410 * SGML catalogs, but the acceptable types values differs.
412 * Returns the xmlCatalogPtr or NULL in case of error
415 xmlCreateNewCatalog(xmlCatalogType type
, xmlCatalogPrefer prefer
) {
418 ret
= (xmlCatalogPtr
) xmlMalloc(sizeof(xmlCatalog
));
420 xmlCatalogErrMemory("allocating catalog");
423 memset(ret
, 0, sizeof(xmlCatalog
));
426 ret
->catalMax
= XML_MAX_SGML_CATA_DEPTH
;
427 ret
->prefer
= prefer
;
428 if (ret
->type
== XML_SGML_CATALOG_TYPE
)
429 ret
->sgml
= xmlHashCreate(10);
437 * Free the memory allocated to a Catalog
440 xmlFreeCatalog(xmlCatalogPtr catal
) {
443 if (catal
->xml
!= NULL
)
444 xmlFreeCatalogEntryList(catal
->xml
);
445 if (catal
->sgml
!= NULL
)
446 xmlHashFree(catal
->sgml
, xmlFreeCatalogEntry
);
450 /************************************************************************
452 * Serializing Catalogs *
454 ************************************************************************/
456 #ifdef LIBXML_OUTPUT_ENABLED
458 * xmlCatalogDumpEntry:
459 * @entry: the catalog entry
462 * Serialize an SGML Catalog entry
465 xmlCatalogDumpEntry(void *payload
, void *data
,
466 const xmlChar
*name ATTRIBUTE_UNUSED
) {
467 xmlCatalogEntryPtr entry
= (xmlCatalogEntryPtr
) payload
;
468 FILE *out
= (FILE *) data
;
469 if ((entry
== NULL
) || (out
== NULL
))
471 switch (entry
->type
) {
472 case SGML_CATA_ENTITY
:
473 fprintf(out
, "ENTITY "); break;
474 case SGML_CATA_PENTITY
:
475 fprintf(out
, "ENTITY %%"); break;
476 case SGML_CATA_DOCTYPE
:
477 fprintf(out
, "DOCTYPE "); break;
478 case SGML_CATA_LINKTYPE
:
479 fprintf(out
, "LINKTYPE "); break;
480 case SGML_CATA_NOTATION
:
481 fprintf(out
, "NOTATION "); break;
482 case SGML_CATA_PUBLIC
:
483 fprintf(out
, "PUBLIC "); break;
484 case SGML_CATA_SYSTEM
:
485 fprintf(out
, "SYSTEM "); break;
486 case SGML_CATA_DELEGATE
:
487 fprintf(out
, "DELEGATE "); break;
489 fprintf(out
, "BASE "); break;
490 case SGML_CATA_CATALOG
:
491 fprintf(out
, "CATALOG "); break;
492 case SGML_CATA_DOCUMENT
:
493 fprintf(out
, "DOCUMENT "); break;
494 case SGML_CATA_SGMLDECL
:
495 fprintf(out
, "SGMLDECL "); break;
499 switch (entry
->type
) {
500 case SGML_CATA_ENTITY
:
501 case SGML_CATA_PENTITY
:
502 case SGML_CATA_DOCTYPE
:
503 case SGML_CATA_LINKTYPE
:
504 case SGML_CATA_NOTATION
:
505 fprintf(out
, "%s", (const char *) entry
->name
); break;
506 case SGML_CATA_PUBLIC
:
507 case SGML_CATA_SYSTEM
:
508 case SGML_CATA_SGMLDECL
:
509 case SGML_CATA_DOCUMENT
:
510 case SGML_CATA_CATALOG
:
512 case SGML_CATA_DELEGATE
:
513 fprintf(out
, "\"%s\"", entry
->name
); break;
517 switch (entry
->type
) {
518 case SGML_CATA_ENTITY
:
519 case SGML_CATA_PENTITY
:
520 case SGML_CATA_DOCTYPE
:
521 case SGML_CATA_LINKTYPE
:
522 case SGML_CATA_NOTATION
:
523 case SGML_CATA_PUBLIC
:
524 case SGML_CATA_SYSTEM
:
525 case SGML_CATA_DELEGATE
:
526 fprintf(out
, " \"%s\"", entry
->value
); break;
534 * xmlDumpXMLCatalogNode:
535 * @catal: top catalog entry
536 * @catalog: pointer to the xml tree
537 * @doc: the containing document
538 * @ns: the current namespace
539 * @cgroup: group node for group members
541 * Serializes a Catalog entry, called by xmlDumpXMLCatalog and recursively
544 static void xmlDumpXMLCatalogNode(xmlCatalogEntryPtr catal
, xmlNodePtr catalog
,
545 xmlDocPtr doc
, xmlNsPtr ns
, xmlCatalogEntryPtr cgroup
) {
547 xmlCatalogEntryPtr cur
;
549 * add all the catalog entries
552 while (cur
!= NULL
) {
553 if (cur
->group
== cgroup
) {
555 case XML_CATA_REMOVED
:
557 case XML_CATA_BROKEN_CATALOG
:
558 case XML_CATA_CATALOG
:
564 case XML_CATA_NEXT_CATALOG
:
565 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"nextCatalog", NULL
);
566 xmlSetProp(node
, BAD_CAST
"catalog", cur
->value
);
567 xmlAddChild(catalog
, node
);
572 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"group", NULL
);
573 xmlSetProp(node
, BAD_CAST
"id", cur
->name
);
574 if (cur
->value
!= NULL
) {
576 xns
= xmlSearchNsByHref(doc
, node
, XML_XML_NAMESPACE
);
578 xmlSetNsProp(node
, xns
, BAD_CAST
"base",
581 switch (cur
->prefer
) {
582 case XML_CATA_PREFER_NONE
:
584 case XML_CATA_PREFER_PUBLIC
:
585 xmlSetProp(node
, BAD_CAST
"prefer", BAD_CAST
"public");
587 case XML_CATA_PREFER_SYSTEM
:
588 xmlSetProp(node
, BAD_CAST
"prefer", BAD_CAST
"system");
591 xmlDumpXMLCatalogNode(cur
->next
, node
, doc
, ns
, cur
);
592 xmlAddChild(catalog
, node
);
594 case XML_CATA_PUBLIC
:
595 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"public", NULL
);
596 xmlSetProp(node
, BAD_CAST
"publicId", cur
->name
);
597 xmlSetProp(node
, BAD_CAST
"uri", cur
->value
);
598 xmlAddChild(catalog
, node
);
600 case XML_CATA_SYSTEM
:
601 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"system", NULL
);
602 xmlSetProp(node
, BAD_CAST
"systemId", cur
->name
);
603 xmlSetProp(node
, BAD_CAST
"uri", cur
->value
);
604 xmlAddChild(catalog
, node
);
606 case XML_CATA_REWRITE_SYSTEM
:
607 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"rewriteSystem", NULL
);
608 xmlSetProp(node
, BAD_CAST
"systemIdStartString", cur
->name
);
609 xmlSetProp(node
, BAD_CAST
"rewritePrefix", cur
->value
);
610 xmlAddChild(catalog
, node
);
612 case XML_CATA_DELEGATE_PUBLIC
:
613 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"delegatePublic", NULL
);
614 xmlSetProp(node
, BAD_CAST
"publicIdStartString", cur
->name
);
615 xmlSetProp(node
, BAD_CAST
"catalog", cur
->value
);
616 xmlAddChild(catalog
, node
);
618 case XML_CATA_DELEGATE_SYSTEM
:
619 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"delegateSystem", NULL
);
620 xmlSetProp(node
, BAD_CAST
"systemIdStartString", cur
->name
);
621 xmlSetProp(node
, BAD_CAST
"catalog", cur
->value
);
622 xmlAddChild(catalog
, node
);
625 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"uri", NULL
);
626 xmlSetProp(node
, BAD_CAST
"name", cur
->name
);
627 xmlSetProp(node
, BAD_CAST
"uri", cur
->value
);
628 xmlAddChild(catalog
, node
);
630 case XML_CATA_REWRITE_URI
:
631 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"rewriteURI", NULL
);
632 xmlSetProp(node
, BAD_CAST
"uriStartString", cur
->name
);
633 xmlSetProp(node
, BAD_CAST
"rewritePrefix", cur
->value
);
634 xmlAddChild(catalog
, node
);
636 case XML_CATA_DELEGATE_URI
:
637 node
= xmlNewDocNode(doc
, ns
, BAD_CAST
"delegateURI", NULL
);
638 xmlSetProp(node
, BAD_CAST
"uriStartString", cur
->name
);
639 xmlSetProp(node
, BAD_CAST
"catalog", cur
->value
);
640 xmlAddChild(catalog
, node
);
642 case SGML_CATA_SYSTEM
:
643 case SGML_CATA_PUBLIC
:
644 case SGML_CATA_ENTITY
:
645 case SGML_CATA_PENTITY
:
646 case SGML_CATA_DOCTYPE
:
647 case SGML_CATA_LINKTYPE
:
648 case SGML_CATA_NOTATION
:
649 case SGML_CATA_DELEGATE
:
651 case SGML_CATA_CATALOG
:
652 case SGML_CATA_DOCUMENT
:
653 case SGML_CATA_SGMLDECL
:
662 xmlDumpXMLCatalog(FILE *out
, xmlCatalogEntryPtr catal
) {
668 xmlOutputBufferPtr buf
;
673 doc
= xmlNewDoc(NULL
);
676 dtd
= xmlNewDtd(doc
, BAD_CAST
"catalog",
677 BAD_CAST
"-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN",
678 BAD_CAST
"http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd");
680 xmlAddChild((xmlNodePtr
) doc
, (xmlNodePtr
) dtd
);
682 ns
= xmlNewNs(NULL
, XML_CATALOGS_NAMESPACE
, NULL
);
687 catalog
= xmlNewDocNode(doc
, ns
, BAD_CAST
"catalog", NULL
);
688 if (catalog
== NULL
) {
694 xmlAddChild((xmlNodePtr
) doc
, catalog
);
696 xmlDumpXMLCatalogNode(catal
, catalog
, doc
, ns
, NULL
);
701 buf
= xmlOutputBufferCreateFile(out
, NULL
);
706 ret
= xmlSaveFormatFileTo(buf
, doc
, NULL
, 1);
715 #endif /* LIBXML_OUTPUT_ENABLED */
717 /************************************************************************
719 * Converting SGML Catalogs to XML *
721 ************************************************************************/
724 * xmlCatalogConvertEntry:
726 * @catal: pointer to the catalog being converted
728 * Convert one entry from the catalog
731 xmlCatalogConvertEntry(void *payload
, void *data
,
732 const xmlChar
*name ATTRIBUTE_UNUSED
) {
733 xmlCatalogEntryPtr entry
= (xmlCatalogEntryPtr
) payload
;
734 xmlCatalogPtr catal
= (xmlCatalogPtr
) data
;
735 if ((entry
== NULL
) || (catal
== NULL
) || (catal
->sgml
== NULL
) ||
736 (catal
->xml
== NULL
))
738 switch (entry
->type
) {
739 case SGML_CATA_ENTITY
:
740 entry
->type
= XML_CATA_PUBLIC
;
742 case SGML_CATA_PENTITY
:
743 entry
->type
= XML_CATA_PUBLIC
;
745 case SGML_CATA_DOCTYPE
:
746 entry
->type
= XML_CATA_PUBLIC
;
748 case SGML_CATA_LINKTYPE
:
749 entry
->type
= XML_CATA_PUBLIC
;
751 case SGML_CATA_NOTATION
:
752 entry
->type
= XML_CATA_PUBLIC
;
754 case SGML_CATA_PUBLIC
:
755 entry
->type
= XML_CATA_PUBLIC
;
757 case SGML_CATA_SYSTEM
:
758 entry
->type
= XML_CATA_SYSTEM
;
760 case SGML_CATA_DELEGATE
:
761 entry
->type
= XML_CATA_DELEGATE_PUBLIC
;
763 case SGML_CATA_CATALOG
:
764 entry
->type
= XML_CATA_CATALOG
;
767 xmlHashRemoveEntry(catal
->sgml
, entry
->name
, xmlFreeCatalogEntry
);
771 * Conversion successful, remove from the SGML catalog
772 * and add it to the default XML one
774 xmlHashRemoveEntry(catal
->sgml
, entry
->name
, NULL
);
775 entry
->parent
= catal
->xml
;
777 if (catal
->xml
->children
== NULL
)
778 catal
->xml
->children
= entry
;
780 xmlCatalogEntryPtr prev
;
782 prev
= catal
->xml
->children
;
783 while (prev
->next
!= NULL
)
790 * xmlConvertSGMLCatalog:
791 * @catal: the catalog
793 * Convert all the SGML catalog entries as XML ones
795 * Returns the number of entries converted if successful, -1 otherwise
798 xmlConvertSGMLCatalog(xmlCatalogPtr catal
) {
800 if ((catal
== NULL
) || (catal
->type
!= XML_SGML_CATALOG_TYPE
))
803 if (xmlDebugCatalogs
) {
804 xmlGenericError(xmlGenericErrorContext
,
805 "Converting SGML catalog to XML\n");
807 xmlHashScan(catal
->sgml
, xmlCatalogConvertEntry
, &catal
);
811 /************************************************************************
815 ************************************************************************/
818 * xmlCatalogUnWrapURN:
819 * @urn: an "urn:publicid:" to unwrap
821 * Expand the URN into the equivalent Public Identifier
823 * Returns the new identifier or NULL, the string must be deallocated
827 xmlCatalogUnWrapURN(const xmlChar
*urn
) {
828 xmlChar result
[2000];
831 if (xmlStrncmp(urn
, BAD_CAST XML_URN_PUBID
, sizeof(XML_URN_PUBID
) - 1))
833 urn
+= sizeof(XML_URN_PUBID
) - 1;
836 if (i
> sizeof(result
) - 4)
841 } else if (*urn
== ':') {
845 } else if (*urn
== ';') {
849 } else if (*urn
== '%') {
850 if ((urn
[1] == '2') && (urn
[2] == 'B'))
852 else if ((urn
[1] == '3') && (urn
[2] == 'A'))
854 else if ((urn
[1] == '2') && (urn
[2] == 'F'))
856 else if ((urn
[1] == '3') && (urn
[2] == 'B'))
858 else if ((urn
[1] == '2') && (urn
[2] == '7'))
860 else if ((urn
[1] == '3') && (urn
[2] == 'F'))
862 else if ((urn
[1] == '2') && (urn
[2] == '3'))
864 else if ((urn
[1] == '2') && (urn
[2] == '5'))
879 return(xmlStrdup(result
));
883 * xmlParseCatalogFile:
884 * @filename: the filename
886 * parse an XML file and build a tree. It's like xmlParseFile()
887 * except it bypass all catalog lookups.
889 * Returns the resulting document tree or NULL in case of error
893 xmlParseCatalogFile(const char *filename
) {
895 xmlParserCtxtPtr ctxt
;
896 char *directory
= NULL
;
897 xmlParserInputPtr inputStream
;
898 xmlParserInputBufferPtr buf
;
900 ctxt
= xmlNewParserCtxt();
902 #ifdef LIBXML_SAX1_ENABLED
903 if (xmlDefaultSAXHandler
.error
!= NULL
) {
904 xmlDefaultSAXHandler
.error(NULL
, "out of memory\n");
910 buf
= xmlParserInputBufferCreateFilename(filename
, XML_CHAR_ENCODING_NONE
);
912 xmlFreeParserCtxt(ctxt
);
916 inputStream
= xmlNewInputStream(ctxt
);
917 if (inputStream
== NULL
) {
918 xmlFreeParserCtxt(ctxt
);
922 inputStream
->filename
= (char *) xmlCanonicPath((const xmlChar
*)filename
);
923 inputStream
->buf
= buf
;
924 xmlBufResetInput(buf
->buffer
, inputStream
);
926 inputPush(ctxt
, inputStream
);
927 if ((ctxt
->directory
== NULL
) && (directory
== NULL
))
928 directory
= xmlParserGetDirectory(filename
);
929 if ((ctxt
->directory
== NULL
) && (directory
!= NULL
))
930 ctxt
->directory
= directory
;
933 ctxt
->loadsubset
= 0;
937 xmlParseDocument(ctxt
);
939 if (ctxt
->wellFormed
)
943 xmlFreeDoc(ctxt
->myDoc
);
946 xmlFreeParserCtxt(ctxt
);
952 * xmlLoadFileContent:
953 * @filename: a file path
955 * Load a file content into memory.
957 * Returns a pointer to the 0 terminated string or NULL in case of error
960 xmlLoadFileContent(const char *filename
)
975 if (filename
== NULL
)
979 if (stat(filename
, &info
) < 0)
984 if ((fd
= open(filename
, O_RDONLY
)) < 0)
986 if ((fd
= fopen(filename
, "rb")) == NULL
)
994 if (fseek(fd
, 0, SEEK_END
) || (size
= ftell(fd
)) == EOF
|| fseek(fd
, 0, SEEK_SET
)) { /* File operations denied? ok, just close and return failure */
999 content
= (xmlChar
*)xmlMallocAtomic(size
+ 10);
1000 if (content
== NULL
) {
1001 xmlCatalogErrMemory("allocating catalog data");
1010 len
= read(fd
, content
, size
);
1013 len
= fread(content
, 1, size
, fd
);
1026 * xmlCatalogNormalizePublic:
1027 * @pubID: the public ID string
1029 * Normalizes the Public Identifier
1031 * Implements 6.2. Public Identifier Normalization
1032 * from http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
1034 * Returns the new string or NULL, the string must be deallocated
1038 xmlCatalogNormalizePublic(const xmlChar
*pubID
)
1050 for (p
= pubID
;*p
!= 0 && ok
;p
++) {
1051 if (!xmlIsBlank_ch(*p
))
1053 else if (*p
== 0x20 && !white
)
1058 if (ok
&& !white
) /* is normalized */
1061 ret
= xmlStrdup(pubID
);
1064 for (p
= pubID
;*p
!= 0;p
++) {
1065 if (xmlIsBlank_ch(*p
)) {
1080 /************************************************************************
1082 * The XML Catalog parser *
1084 ************************************************************************/
1086 static xmlCatalogEntryPtr
1087 xmlParseXMLCatalogFile(xmlCatalogPrefer prefer
, const xmlChar
*filename
);
1089 xmlParseXMLCatalogNodeList(xmlNodePtr cur
, xmlCatalogPrefer prefer
,
1090 xmlCatalogEntryPtr parent
, xmlCatalogEntryPtr cgroup
);
1092 xmlCatalogListXMLResolve(xmlCatalogEntryPtr catal
, const xmlChar
*pubID
,
1093 const xmlChar
*sysID
);
1095 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal
, const xmlChar
*URI
);
1099 * xmlGetXMLCatalogEntryType:
1102 * lookup the internal type associated to an XML catalog entry name
1104 * Returns the type associated with that name
1106 static xmlCatalogEntryType
1107 xmlGetXMLCatalogEntryType(const xmlChar
*name
) {
1108 xmlCatalogEntryType type
= XML_CATA_NONE
;
1109 if (xmlStrEqual(name
, (const xmlChar
*) "system"))
1110 type
= XML_CATA_SYSTEM
;
1111 else if (xmlStrEqual(name
, (const xmlChar
*) "public"))
1112 type
= XML_CATA_PUBLIC
;
1113 else if (xmlStrEqual(name
, (const xmlChar
*) "rewriteSystem"))
1114 type
= XML_CATA_REWRITE_SYSTEM
;
1115 else if (xmlStrEqual(name
, (const xmlChar
*) "delegatePublic"))
1116 type
= XML_CATA_DELEGATE_PUBLIC
;
1117 else if (xmlStrEqual(name
, (const xmlChar
*) "delegateSystem"))
1118 type
= XML_CATA_DELEGATE_SYSTEM
;
1119 else if (xmlStrEqual(name
, (const xmlChar
*) "uri"))
1120 type
= XML_CATA_URI
;
1121 else if (xmlStrEqual(name
, (const xmlChar
*) "rewriteURI"))
1122 type
= XML_CATA_REWRITE_URI
;
1123 else if (xmlStrEqual(name
, (const xmlChar
*) "delegateURI"))
1124 type
= XML_CATA_DELEGATE_URI
;
1125 else if (xmlStrEqual(name
, (const xmlChar
*) "nextCatalog"))
1126 type
= XML_CATA_NEXT_CATALOG
;
1127 else if (xmlStrEqual(name
, (const xmlChar
*) "catalog"))
1128 type
= XML_CATA_CATALOG
;
1133 * xmlParseXMLCatalogOneNode:
1134 * @cur: the XML node
1135 * @type: the type of Catalog entry
1136 * @name: the name of the node
1137 * @attrName: the attribute holding the value
1138 * @uriAttrName: the attribute holding the URI-Reference
1139 * @prefer: the PUBLIC vs. SYSTEM current preference value
1140 * @cgroup: the group which includes this node
1142 * Finishes the examination of an XML tree node of a catalog and build
1143 * a Catalog entry from it.
1145 * Returns the new Catalog entry node or NULL in case of error.
1147 static xmlCatalogEntryPtr
1148 xmlParseXMLCatalogOneNode(xmlNodePtr cur
, xmlCatalogEntryType type
,
1149 const xmlChar
*name
, const xmlChar
*attrName
,
1150 const xmlChar
*uriAttrName
, xmlCatalogPrefer prefer
,
1151 xmlCatalogEntryPtr cgroup
) {
1154 xmlChar
*nameValue
= NULL
;
1155 xmlChar
*base
= NULL
;
1156 xmlChar
*URL
= NULL
;
1157 xmlCatalogEntryPtr ret
= NULL
;
1159 if (attrName
!= NULL
) {
1160 nameValue
= xmlGetProp(cur
, attrName
);
1161 if (nameValue
== NULL
) {
1162 xmlCatalogErr(ret
, cur
, XML_CATALOG_MISSING_ATTR
,
1163 "%s entry lacks '%s'\n", name
, attrName
, NULL
);
1167 uriValue
= xmlGetProp(cur
, uriAttrName
);
1168 if (uriValue
== NULL
) {
1169 xmlCatalogErr(ret
, cur
, XML_CATALOG_MISSING_ATTR
,
1170 "%s entry lacks '%s'\n", name
, uriAttrName
, NULL
);
1174 if (nameValue
!= NULL
)
1176 if (uriValue
!= NULL
)
1181 base
= xmlNodeGetBase(cur
->doc
, cur
);
1182 URL
= xmlBuildURI(uriValue
, base
);
1184 if (xmlDebugCatalogs
> 1) {
1185 if (nameValue
!= NULL
)
1186 xmlGenericError(xmlGenericErrorContext
,
1187 "Found %s: '%s' '%s'\n", name
, nameValue
, URL
);
1189 xmlGenericError(xmlGenericErrorContext
,
1190 "Found %s: '%s'\n", name
, URL
);
1192 ret
= xmlNewCatalogEntry(type
, nameValue
, uriValue
, URL
, prefer
, cgroup
);
1194 xmlCatalogErr(ret
, cur
, XML_CATALOG_ENTRY_BROKEN
,
1195 "%s entry '%s' broken ?: %s\n", name
, uriAttrName
, uriValue
);
1197 if (nameValue
!= NULL
)
1199 if (uriValue
!= NULL
)
1209 * xmlParseXMLCatalogNode:
1210 * @cur: the XML node
1211 * @prefer: the PUBLIC vs. SYSTEM current preference value
1212 * @parent: the parent Catalog entry
1213 * @cgroup: the group which includes this node
1215 * Examines an XML tree node of a catalog and build
1216 * a Catalog entry from it adding it to its parent. The examination can
1220 xmlParseXMLCatalogNode(xmlNodePtr cur
, xmlCatalogPrefer prefer
,
1221 xmlCatalogEntryPtr parent
, xmlCatalogEntryPtr cgroup
)
1223 xmlChar
*base
= NULL
;
1224 xmlCatalogEntryPtr entry
= NULL
;
1228 if (xmlStrEqual(cur
->name
, BAD_CAST
"group")) {
1230 xmlCatalogPrefer pref
= XML_CATA_PREFER_NONE
;
1232 prop
= xmlGetProp(cur
, BAD_CAST
"prefer");
1234 if (xmlStrEqual(prop
, BAD_CAST
"system")) {
1235 prefer
= XML_CATA_PREFER_SYSTEM
;
1236 } else if (xmlStrEqual(prop
, BAD_CAST
"public")) {
1237 prefer
= XML_CATA_PREFER_PUBLIC
;
1239 xmlCatalogErr(parent
, cur
, XML_CATALOG_PREFER_VALUE
,
1240 "Invalid value for prefer: '%s'\n",
1246 prop
= xmlGetProp(cur
, BAD_CAST
"id");
1247 base
= xmlGetNsProp(cur
, BAD_CAST
"base", XML_XML_NAMESPACE
);
1248 entry
= xmlNewCatalogEntry(XML_CATA_GROUP
, prop
, base
, NULL
, pref
, cgroup
);
1250 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"public")) {
1251 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_PUBLIC
,
1252 BAD_CAST
"public", BAD_CAST
"publicId", BAD_CAST
"uri", prefer
, cgroup
);
1253 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"system")) {
1254 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_SYSTEM
,
1255 BAD_CAST
"system", BAD_CAST
"systemId", BAD_CAST
"uri", prefer
, cgroup
);
1256 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"rewriteSystem")) {
1257 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_REWRITE_SYSTEM
,
1258 BAD_CAST
"rewriteSystem", BAD_CAST
"systemIdStartString",
1259 BAD_CAST
"rewritePrefix", prefer
, cgroup
);
1260 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"delegatePublic")) {
1261 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_DELEGATE_PUBLIC
,
1262 BAD_CAST
"delegatePublic", BAD_CAST
"publicIdStartString",
1263 BAD_CAST
"catalog", prefer
, cgroup
);
1264 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"delegateSystem")) {
1265 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_DELEGATE_SYSTEM
,
1266 BAD_CAST
"delegateSystem", BAD_CAST
"systemIdStartString",
1267 BAD_CAST
"catalog", prefer
, cgroup
);
1268 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"uri")) {
1269 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_URI
,
1270 BAD_CAST
"uri", BAD_CAST
"name",
1271 BAD_CAST
"uri", prefer
, cgroup
);
1272 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"rewriteURI")) {
1273 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_REWRITE_URI
,
1274 BAD_CAST
"rewriteURI", BAD_CAST
"uriStartString",
1275 BAD_CAST
"rewritePrefix", prefer
, cgroup
);
1276 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"delegateURI")) {
1277 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_DELEGATE_URI
,
1278 BAD_CAST
"delegateURI", BAD_CAST
"uriStartString",
1279 BAD_CAST
"catalog", prefer
, cgroup
);
1280 } else if (xmlStrEqual(cur
->name
, BAD_CAST
"nextCatalog")) {
1281 entry
= xmlParseXMLCatalogOneNode(cur
, XML_CATA_NEXT_CATALOG
,
1282 BAD_CAST
"nextCatalog", NULL
,
1283 BAD_CAST
"catalog", prefer
, cgroup
);
1285 if (entry
!= NULL
) {
1286 if (parent
!= NULL
) {
1287 entry
->parent
= parent
;
1288 if (parent
->children
== NULL
)
1289 parent
->children
= entry
;
1291 xmlCatalogEntryPtr prev
;
1293 prev
= parent
->children
;
1294 while (prev
->next
!= NULL
)
1299 if (entry
->type
== XML_CATA_GROUP
) {
1301 * Recurse to propagate prefer to the subtree
1302 * (xml:base handling is automated)
1304 xmlParseXMLCatalogNodeList(cur
->children
, prefer
, parent
, entry
);
1312 * xmlParseXMLCatalogNodeList:
1313 * @cur: the XML node list of siblings
1314 * @prefer: the PUBLIC vs. SYSTEM current preference value
1315 * @parent: the parent Catalog entry
1316 * @cgroup: the group which includes this list
1318 * Examines a list of XML sibling nodes of a catalog and build
1319 * a list of Catalog entry from it adding it to the parent.
1320 * The examination will recurse to examine node subtrees.
1323 xmlParseXMLCatalogNodeList(xmlNodePtr cur
, xmlCatalogPrefer prefer
,
1324 xmlCatalogEntryPtr parent
, xmlCatalogEntryPtr cgroup
) {
1325 while (cur
!= NULL
) {
1326 if ((cur
->ns
!= NULL
) && (cur
->ns
->href
!= NULL
) &&
1327 (xmlStrEqual(cur
->ns
->href
, XML_CATALOGS_NAMESPACE
))) {
1328 xmlParseXMLCatalogNode(cur
, prefer
, parent
, cgroup
);
1332 /* TODO: sort the list according to REWRITE lengths and prefer value */
1336 * xmlParseXMLCatalogFile:
1337 * @prefer: the PUBLIC vs. SYSTEM current preference value
1338 * @filename: the filename for the catalog
1340 * Parses the catalog file to extract the XML tree and then analyze the
1341 * tree to build a list of Catalog entries corresponding to this catalog
1343 * Returns the resulting Catalog entries list
1345 static xmlCatalogEntryPtr
1346 xmlParseXMLCatalogFile(xmlCatalogPrefer prefer
, const xmlChar
*filename
) {
1350 xmlCatalogEntryPtr parent
= NULL
;
1352 if (filename
== NULL
)
1355 doc
= xmlParseCatalogFile((const char *) filename
);
1357 if (xmlDebugCatalogs
)
1358 xmlGenericError(xmlGenericErrorContext
,
1359 "Failed to parse catalog %s\n", filename
);
1363 if (xmlDebugCatalogs
)
1364 xmlGenericError(xmlGenericErrorContext
,
1365 "%d Parsing catalog %s\n", xmlGetThreadId(), filename
);
1367 cur
= xmlDocGetRootElement(doc
);
1368 if ((cur
!= NULL
) && (xmlStrEqual(cur
->name
, BAD_CAST
"catalog")) &&
1369 (cur
->ns
!= NULL
) && (cur
->ns
->href
!= NULL
) &&
1370 (xmlStrEqual(cur
->ns
->href
, XML_CATALOGS_NAMESPACE
))) {
1372 parent
= xmlNewCatalogEntry(XML_CATA_CATALOG
, NULL
,
1373 (const xmlChar
*)filename
, NULL
, prefer
, NULL
);
1374 if (parent
== NULL
) {
1379 prop
= xmlGetProp(cur
, BAD_CAST
"prefer");
1381 if (xmlStrEqual(prop
, BAD_CAST
"system")) {
1382 prefer
= XML_CATA_PREFER_SYSTEM
;
1383 } else if (xmlStrEqual(prop
, BAD_CAST
"public")) {
1384 prefer
= XML_CATA_PREFER_PUBLIC
;
1386 xmlCatalogErr(NULL
, cur
, XML_CATALOG_PREFER_VALUE
,
1387 "Invalid value for prefer: '%s'\n",
1392 cur
= cur
->children
;
1393 xmlParseXMLCatalogNodeList(cur
, prefer
, parent
, NULL
);
1395 xmlCatalogErr(NULL
, (xmlNodePtr
) doc
, XML_CATALOG_NOT_CATALOG
,
1396 "File %s is not an XML Catalog\n",
1397 filename
, NULL
, NULL
);
1406 * xmlFetchXMLCatalogFile:
1407 * @catal: an existing but incomplete catalog entry
1409 * Fetch and parse the subcatalog referenced by an entry
1411 * Returns 0 in case of success, -1 otherwise
1414 xmlFetchXMLCatalogFile(xmlCatalogEntryPtr catal
) {
1415 xmlCatalogEntryPtr doc
;
1419 if (catal
->URL
== NULL
)
1423 * lock the whole catalog for modification
1425 xmlRMutexLock(xmlCatalogMutex
);
1426 if (catal
->children
!= NULL
) {
1427 /* Okay someone else did it in the meantime */
1428 xmlRMutexUnlock(xmlCatalogMutex
);
1432 if (xmlCatalogXMLFiles
!= NULL
) {
1433 doc
= (xmlCatalogEntryPtr
)
1434 xmlHashLookup(xmlCatalogXMLFiles
, catal
->URL
);
1436 if (xmlDebugCatalogs
)
1437 xmlGenericError(xmlGenericErrorContext
,
1438 "Found %s in file hash\n", catal
->URL
);
1440 if (catal
->type
== XML_CATA_CATALOG
)
1441 catal
->children
= doc
->children
;
1443 catal
->children
= doc
;
1445 xmlRMutexUnlock(xmlCatalogMutex
);
1448 if (xmlDebugCatalogs
)
1449 xmlGenericError(xmlGenericErrorContext
,
1450 "%s not found in file hash\n", catal
->URL
);
1454 * Fetch and parse. Note that xmlParseXMLCatalogFile does not
1455 * use the existing catalog, there is no recursion allowed at
1458 doc
= xmlParseXMLCatalogFile(catal
->prefer
, catal
->URL
);
1460 catal
->type
= XML_CATA_BROKEN_CATALOG
;
1461 xmlRMutexUnlock(xmlCatalogMutex
);
1465 if (catal
->type
== XML_CATA_CATALOG
)
1466 catal
->children
= doc
->children
;
1468 catal
->children
= doc
;
1472 if (xmlCatalogXMLFiles
== NULL
)
1473 xmlCatalogXMLFiles
= xmlHashCreate(10);
1474 if (xmlCatalogXMLFiles
!= NULL
) {
1475 if (xmlDebugCatalogs
)
1476 xmlGenericError(xmlGenericErrorContext
,
1477 "%s added to file hash\n", catal
->URL
);
1478 xmlHashAddEntry(xmlCatalogXMLFiles
, catal
->URL
, doc
);
1480 xmlRMutexUnlock(xmlCatalogMutex
);
1484 /************************************************************************
1486 * XML Catalog handling *
1488 ************************************************************************/
1492 * @catal: top of an XML catalog
1493 * @type: the type of record to add to the catalog
1494 * @orig: the system, public or prefix to match (or NULL)
1495 * @replace: the replacement value for the match
1497 * Add an entry in the XML catalog, it may overwrite existing but
1498 * different entries.
1500 * Returns 0 if successful, -1 otherwise
1503 xmlAddXMLCatalog(xmlCatalogEntryPtr catal
, const xmlChar
*type
,
1504 const xmlChar
*orig
, const xmlChar
*replace
) {
1505 xmlCatalogEntryPtr cur
;
1506 xmlCatalogEntryType typ
;
1509 if ((catal
== NULL
) ||
1510 ((catal
->type
!= XML_CATA_CATALOG
) &&
1511 (catal
->type
!= XML_CATA_BROKEN_CATALOG
)))
1513 if (catal
->children
== NULL
) {
1514 xmlFetchXMLCatalogFile(catal
);
1516 if (catal
->children
== NULL
)
1519 typ
= xmlGetXMLCatalogEntryType(type
);
1520 if (typ
== XML_CATA_NONE
) {
1521 if (xmlDebugCatalogs
)
1522 xmlGenericError(xmlGenericErrorContext
,
1523 "Failed to add unknown element %s to catalog\n", type
);
1527 cur
= catal
->children
;
1529 * Might be a simple "update in place"
1532 while (cur
!= NULL
) {
1533 if ((orig
!= NULL
) && (cur
->type
== typ
) &&
1534 (xmlStrEqual(orig
, cur
->name
))) {
1535 if (xmlDebugCatalogs
)
1536 xmlGenericError(xmlGenericErrorContext
,
1537 "Updating element %s to catalog\n", type
);
1538 if (cur
->value
!= NULL
)
1539 xmlFree(cur
->value
);
1540 if (cur
->URL
!= NULL
)
1542 cur
->value
= xmlStrdup(replace
);
1543 cur
->URL
= xmlStrdup(replace
);
1546 if (cur
->next
== NULL
)
1551 if (xmlDebugCatalogs
)
1552 xmlGenericError(xmlGenericErrorContext
,
1553 "Adding element %s to catalog\n", type
);
1555 catal
->children
= xmlNewCatalogEntry(typ
, orig
, replace
,
1556 NULL
, catal
->prefer
, NULL
);
1558 cur
->next
= xmlNewCatalogEntry(typ
, orig
, replace
,
1559 NULL
, catal
->prefer
, NULL
);
1561 catal
->type
= XML_CATA_CATALOG
;
1562 cur
= (xmlCatalogEntryPtr
)xmlHashLookup(xmlCatalogXMLFiles
, catal
->URL
);
1564 cur
->children
= catal
->children
;
1572 * @catal: top of an XML catalog
1573 * @value: the value to remove from the catalog
1575 * Remove entries in the XML catalog where the value or the URI
1576 * is equal to @value
1578 * Returns the number of entries removed if successful, -1 otherwise
1581 xmlDelXMLCatalog(xmlCatalogEntryPtr catal
, const xmlChar
*value
) {
1582 xmlCatalogEntryPtr cur
;
1585 if ((catal
== NULL
) ||
1586 ((catal
->type
!= XML_CATA_CATALOG
) &&
1587 (catal
->type
!= XML_CATA_BROKEN_CATALOG
)))
1591 if (catal
->children
== NULL
) {
1592 xmlFetchXMLCatalogFile(catal
);
1598 cur
= catal
->children
;
1599 while (cur
!= NULL
) {
1600 if (((cur
->name
!= NULL
) && (xmlStrEqual(value
, cur
->name
))) ||
1601 (xmlStrEqual(value
, cur
->value
))) {
1602 if (xmlDebugCatalogs
) {
1603 if (cur
->name
!= NULL
)
1604 xmlGenericError(xmlGenericErrorContext
,
1605 "Removing element %s from catalog\n", cur
->name
);
1607 xmlGenericError(xmlGenericErrorContext
,
1608 "Removing element %s from catalog\n", cur
->value
);
1610 cur
->type
= XML_CATA_REMOVED
;
1618 * xmlCatalogXMLResolve:
1619 * @catal: a catalog list
1620 * @pubID: the public ID string
1621 * @sysID: the system ID string
1623 * Do a complete resolution lookup of an External Identifier for a
1624 * list of catalog entries.
1626 * Implements (or tries to) 7.1. External Identifier Resolution
1627 * from http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
1629 * Returns the URI of the resource or NULL if not found
1632 xmlCatalogXMLResolve(xmlCatalogEntryPtr catal
, const xmlChar
*pubID
,
1633 const xmlChar
*sysID
) {
1634 xmlChar
*ret
= NULL
;
1635 xmlCatalogEntryPtr cur
;
1636 int haveDelegate
= 0;
1640 * protection against loops
1642 if (catal
->depth
> MAX_CATAL_DEPTH
) {
1643 xmlCatalogErr(catal
, NULL
, XML_CATALOG_RECURSION
,
1644 "Detected recursion in catalog %s\n",
1645 catal
->name
, NULL
, NULL
);
1651 * First tries steps 2/ 3/ 4/ if a system ID is provided.
1653 if (sysID
!= NULL
) {
1654 xmlCatalogEntryPtr rewrite
= NULL
;
1655 int lenrewrite
= 0, len
;
1658 while (cur
!= NULL
) {
1659 switch (cur
->type
) {
1660 case XML_CATA_SYSTEM
:
1661 if (xmlStrEqual(sysID
, cur
->name
)) {
1662 if (xmlDebugCatalogs
)
1663 xmlGenericError(xmlGenericErrorContext
,
1664 "Found system match %s, using %s\n",
1665 cur
->name
, cur
->URL
);
1667 return(xmlStrdup(cur
->URL
));
1670 case XML_CATA_REWRITE_SYSTEM
:
1671 len
= xmlStrlen(cur
->name
);
1672 if ((len
> lenrewrite
) &&
1673 (!xmlStrncmp(sysID
, cur
->name
, len
))) {
1678 case XML_CATA_DELEGATE_SYSTEM
:
1679 if (!xmlStrncmp(sysID
, cur
->name
, xmlStrlen(cur
->name
)))
1682 case XML_CATA_NEXT_CATALOG
:
1690 if (rewrite
!= NULL
) {
1691 if (xmlDebugCatalogs
)
1692 xmlGenericError(xmlGenericErrorContext
,
1693 "Using rewriting rule %s\n", rewrite
->name
);
1694 ret
= xmlStrdup(rewrite
->URL
);
1696 ret
= xmlStrcat(ret
, &sysID
[lenrewrite
]);
1701 const xmlChar
*delegates
[MAX_DELEGATE
];
1705 * Assume the entries have been sorted by decreasing substring
1706 * matches when the list was produced.
1709 while (cur
!= NULL
) {
1710 if ((cur
->type
== XML_CATA_DELEGATE_SYSTEM
) &&
1711 (!xmlStrncmp(sysID
, cur
->name
, xmlStrlen(cur
->name
)))) {
1712 for (i
= 0;i
< nbList
;i
++)
1713 if (xmlStrEqual(cur
->URL
, delegates
[i
]))
1719 if (nbList
< MAX_DELEGATE
)
1720 delegates
[nbList
++] = cur
->URL
;
1722 if (cur
->children
== NULL
) {
1723 xmlFetchXMLCatalogFile(cur
);
1725 if (cur
->children
!= NULL
) {
1726 if (xmlDebugCatalogs
)
1727 xmlGenericError(xmlGenericErrorContext
,
1728 "Trying system delegate %s\n", cur
->URL
);
1729 ret
= xmlCatalogListXMLResolve(
1730 cur
->children
, NULL
, sysID
);
1740 * Apply the cut algorithm explained in 4/
1743 return(XML_CATAL_BREAK
);
1747 * Then tries 5/ 6/ if a public ID is provided
1749 if (pubID
!= NULL
) {
1752 while (cur
!= NULL
) {
1753 switch (cur
->type
) {
1754 case XML_CATA_PUBLIC
:
1755 if (xmlStrEqual(pubID
, cur
->name
)) {
1756 if (xmlDebugCatalogs
)
1757 xmlGenericError(xmlGenericErrorContext
,
1758 "Found public match %s\n", cur
->name
);
1760 return(xmlStrdup(cur
->URL
));
1763 case XML_CATA_DELEGATE_PUBLIC
:
1764 if (!xmlStrncmp(pubID
, cur
->name
, xmlStrlen(cur
->name
)) &&
1765 (cur
->prefer
== XML_CATA_PREFER_PUBLIC
))
1768 case XML_CATA_NEXT_CATALOG
:
1778 const xmlChar
*delegates
[MAX_DELEGATE
];
1782 * Assume the entries have been sorted by decreasing substring
1783 * matches when the list was produced.
1786 while (cur
!= NULL
) {
1787 if ((cur
->type
== XML_CATA_DELEGATE_PUBLIC
) &&
1788 (cur
->prefer
== XML_CATA_PREFER_PUBLIC
) &&
1789 (!xmlStrncmp(pubID
, cur
->name
, xmlStrlen(cur
->name
)))) {
1791 for (i
= 0;i
< nbList
;i
++)
1792 if (xmlStrEqual(cur
->URL
, delegates
[i
]))
1798 if (nbList
< MAX_DELEGATE
)
1799 delegates
[nbList
++] = cur
->URL
;
1801 if (cur
->children
== NULL
) {
1802 xmlFetchXMLCatalogFile(cur
);
1804 if (cur
->children
!= NULL
) {
1805 if (xmlDebugCatalogs
)
1806 xmlGenericError(xmlGenericErrorContext
,
1807 "Trying public delegate %s\n", cur
->URL
);
1808 ret
= xmlCatalogListXMLResolve(
1809 cur
->children
, pubID
, NULL
);
1819 * Apply the cut algorithm explained in 4/
1822 return(XML_CATAL_BREAK
);
1827 while (cur
!= NULL
) {
1828 if (cur
->type
== XML_CATA_NEXT_CATALOG
) {
1829 if (cur
->children
== NULL
) {
1830 xmlFetchXMLCatalogFile(cur
);
1832 if (cur
->children
!= NULL
) {
1833 ret
= xmlCatalogListXMLResolve(cur
->children
, pubID
, sysID
);
1837 } else if (catal
->depth
> MAX_CATAL_DEPTH
) {
1851 * xmlCatalogXMLResolveURI:
1852 * @catal: a catalog list
1854 * @sysID: the system ID string
1856 * Do a complete resolution lookup of an External Identifier for a
1857 * list of catalog entries.
1859 * Implements (or tries to) 7.2.2. URI Resolution
1860 * from http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
1862 * Returns the URI of the resource or NULL if not found
1865 xmlCatalogXMLResolveURI(xmlCatalogEntryPtr catal
, const xmlChar
*URI
) {
1866 xmlChar
*ret
= NULL
;
1867 xmlCatalogEntryPtr cur
;
1868 int haveDelegate
= 0;
1870 xmlCatalogEntryPtr rewrite
= NULL
;
1871 int lenrewrite
= 0, len
;
1879 if (catal
->depth
> MAX_CATAL_DEPTH
) {
1880 xmlCatalogErr(catal
, NULL
, XML_CATALOG_RECURSION
,
1881 "Detected recursion in catalog %s\n",
1882 catal
->name
, NULL
, NULL
);
1887 * First tries steps 2/ 3/ 4/ if a system ID is provided.
1891 while (cur
!= NULL
) {
1892 switch (cur
->type
) {
1894 if (xmlStrEqual(URI
, cur
->name
)) {
1895 if (xmlDebugCatalogs
)
1896 xmlGenericError(xmlGenericErrorContext
,
1897 "Found URI match %s\n", cur
->name
);
1898 return(xmlStrdup(cur
->URL
));
1901 case XML_CATA_REWRITE_URI
:
1902 len
= xmlStrlen(cur
->name
);
1903 if ((len
> lenrewrite
) &&
1904 (!xmlStrncmp(URI
, cur
->name
, len
))) {
1909 case XML_CATA_DELEGATE_URI
:
1910 if (!xmlStrncmp(URI
, cur
->name
, xmlStrlen(cur
->name
)))
1913 case XML_CATA_NEXT_CATALOG
:
1921 if (rewrite
!= NULL
) {
1922 if (xmlDebugCatalogs
)
1923 xmlGenericError(xmlGenericErrorContext
,
1924 "Using rewriting rule %s\n", rewrite
->name
);
1925 ret
= xmlStrdup(rewrite
->URL
);
1927 ret
= xmlStrcat(ret
, &URI
[lenrewrite
]);
1931 const xmlChar
*delegates
[MAX_DELEGATE
];
1935 * Assume the entries have been sorted by decreasing substring
1936 * matches when the list was produced.
1939 while (cur
!= NULL
) {
1940 if (((cur
->type
== XML_CATA_DELEGATE_SYSTEM
) ||
1941 (cur
->type
== XML_CATA_DELEGATE_URI
)) &&
1942 (!xmlStrncmp(URI
, cur
->name
, xmlStrlen(cur
->name
)))) {
1943 for (i
= 0;i
< nbList
;i
++)
1944 if (xmlStrEqual(cur
->URL
, delegates
[i
]))
1950 if (nbList
< MAX_DELEGATE
)
1951 delegates
[nbList
++] = cur
->URL
;
1953 if (cur
->children
== NULL
) {
1954 xmlFetchXMLCatalogFile(cur
);
1956 if (cur
->children
!= NULL
) {
1957 if (xmlDebugCatalogs
)
1958 xmlGenericError(xmlGenericErrorContext
,
1959 "Trying URI delegate %s\n", cur
->URL
);
1960 ret
= xmlCatalogListXMLResolveURI(
1961 cur
->children
, URI
);
1969 * Apply the cut algorithm explained in 4/
1971 return(XML_CATAL_BREAK
);
1975 while (cur
!= NULL
) {
1976 if (cur
->type
== XML_CATA_NEXT_CATALOG
) {
1977 if (cur
->children
== NULL
) {
1978 xmlFetchXMLCatalogFile(cur
);
1980 if (cur
->children
!= NULL
) {
1981 ret
= xmlCatalogListXMLResolveURI(cur
->children
, URI
);
1994 * xmlCatalogListXMLResolve:
1995 * @catal: a catalog list
1996 * @pubID: the public ID string
1997 * @sysID: the system ID string
1999 * Do a complete resolution lookup of an External Identifier for a
2002 * Implements (or tries to) 7.1. External Identifier Resolution
2003 * from http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
2005 * Returns the URI of the resource or NULL if not found
2008 xmlCatalogListXMLResolve(xmlCatalogEntryPtr catal
, const xmlChar
*pubID
,
2009 const xmlChar
*sysID
) {
2010 xmlChar
*ret
= NULL
;
2011 xmlChar
*urnID
= NULL
;
2016 if ((pubID
== NULL
) && (sysID
== NULL
))
2019 normid
= xmlCatalogNormalizePublic(pubID
);
2021 pubID
= (*normid
!= 0 ? normid
: NULL
);
2023 if (!xmlStrncmp(pubID
, BAD_CAST XML_URN_PUBID
, sizeof(XML_URN_PUBID
) - 1)) {
2024 urnID
= xmlCatalogUnWrapURN(pubID
);
2025 if (xmlDebugCatalogs
) {
2027 xmlGenericError(xmlGenericErrorContext
,
2028 "Public URN ID %s expanded to NULL\n", pubID
);
2030 xmlGenericError(xmlGenericErrorContext
,
2031 "Public URN ID expanded to %s\n", urnID
);
2033 ret
= xmlCatalogListXMLResolve(catal
, urnID
, sysID
);
2040 if (!xmlStrncmp(sysID
, BAD_CAST XML_URN_PUBID
, sizeof(XML_URN_PUBID
) - 1)) {
2041 urnID
= xmlCatalogUnWrapURN(sysID
);
2042 if (xmlDebugCatalogs
) {
2044 xmlGenericError(xmlGenericErrorContext
,
2045 "System URN ID %s expanded to NULL\n", sysID
);
2047 xmlGenericError(xmlGenericErrorContext
,
2048 "System URN ID expanded to %s\n", urnID
);
2051 ret
= xmlCatalogListXMLResolve(catal
, urnID
, NULL
);
2052 else if (xmlStrEqual(pubID
, urnID
))
2053 ret
= xmlCatalogListXMLResolve(catal
, pubID
, NULL
);
2055 ret
= xmlCatalogListXMLResolve(catal
, pubID
, urnID
);
2063 while (catal
!= NULL
) {
2064 if (catal
->type
== XML_CATA_CATALOG
) {
2065 if (catal
->children
== NULL
) {
2066 xmlFetchXMLCatalogFile(catal
);
2068 if (catal
->children
!= NULL
) {
2069 ret
= xmlCatalogXMLResolve(catal
->children
, pubID
, sysID
);
2072 } else if ((catal
->children
!= NULL
) &&
2073 (catal
->children
->depth
> MAX_CATAL_DEPTH
)) {
2079 catal
= catal
->next
;
2087 * xmlCatalogListXMLResolveURI:
2088 * @catal: a catalog list
2091 * Do a complete resolution lookup of an URI for a list of catalogs
2093 * Implements (or tries to) 7.2. URI Resolution
2094 * from http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
2096 * Returns the URI of the resource or NULL if not found
2099 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal
, const xmlChar
*URI
) {
2100 xmlChar
*ret
= NULL
;
2101 xmlChar
*urnID
= NULL
;
2108 if (!xmlStrncmp(URI
, BAD_CAST XML_URN_PUBID
, sizeof(XML_URN_PUBID
) - 1)) {
2109 urnID
= xmlCatalogUnWrapURN(URI
);
2110 if (xmlDebugCatalogs
) {
2112 xmlGenericError(xmlGenericErrorContext
,
2113 "URN ID %s expanded to NULL\n", URI
);
2115 xmlGenericError(xmlGenericErrorContext
,
2116 "URN ID expanded to %s\n", urnID
);
2118 ret
= xmlCatalogListXMLResolve(catal
, urnID
, NULL
);
2123 while (catal
!= NULL
) {
2124 if (catal
->type
== XML_CATA_CATALOG
) {
2125 if (catal
->children
== NULL
) {
2126 xmlFetchXMLCatalogFile(catal
);
2128 if (catal
->children
!= NULL
) {
2129 ret
= xmlCatalogXMLResolveURI(catal
->children
, URI
);
2134 catal
= catal
->next
;
2139 /************************************************************************
2141 * The SGML Catalog parser *
2143 ************************************************************************/
2148 #define SKIP(x) cur += x;
2150 #define SKIP_BLANKS while (IS_BLANK_CH(*cur)) NEXT;
2153 * xmlParseSGMLCatalogComment:
2154 * @cur: the current character
2156 * Skip a comment in an SGML catalog
2158 * Returns new current character
2160 static const xmlChar
*
2161 xmlParseSGMLCatalogComment(const xmlChar
*cur
) {
2162 if ((cur
[0] != '-') || (cur
[1] != '-'))
2165 while ((cur
[0] != 0) && ((cur
[0] != '-') || ((cur
[1] != '-'))))
2174 * xmlParseSGMLCatalogPubid:
2175 * @cur: the current character
2176 * @id: the return location
2178 * Parse an SGML catalog ID
2180 * Returns new current character and store the value in @id
2182 static const xmlChar
*
2183 xmlParseSGMLCatalogPubid(const xmlChar
*cur
, xmlChar
**id
) {
2184 xmlChar
*buf
= NULL
, *tmp
;
2195 } else if (RAW
== '\'') {
2201 buf
= (xmlChar
*) xmlMallocAtomic(size
* sizeof(xmlChar
));
2203 xmlCatalogErrMemory("allocating public ID");
2206 while (IS_PUBIDCHAR_CH(*cur
) || (*cur
== '?')) {
2207 if ((*cur
== stop
) && (stop
!= ' '))
2209 if ((stop
== ' ') && (IS_BLANK_CH(*cur
)))
2211 if (len
+ 1 >= size
) {
2213 tmp
= (xmlChar
*) xmlRealloc(buf
, size
* sizeof(xmlChar
));
2215 xmlCatalogErrMemory("allocating public ID");
2227 if (!IS_BLANK_CH(*cur
)) {
2243 * xmlParseSGMLCatalogName:
2244 * @cur: the current character
2245 * @name: the return location
2247 * Parse an SGML catalog name
2249 * Returns new current character and store the value in @name
2251 static const xmlChar
*
2252 xmlParseSGMLCatalogName(const xmlChar
*cur
, xmlChar
**name
) {
2253 xmlChar buf
[XML_MAX_NAMELEN
+ 5];
2260 * Handler for more complex cases
2263 if ((!IS_LETTER(c
) && (c
!= '_') && (c
!= ':'))) {
2267 while (((IS_LETTER(c
)) || (IS_DIGIT(c
)) ||
2268 (c
== '.') || (c
== '-') ||
2269 (c
== '_') || (c
== ':'))) {
2273 if (len
>= XML_MAX_NAMELEN
)
2276 *name
= xmlStrndup(buf
, len
);
2281 * xmlGetSGMLCatalogEntryType:
2282 * @name: the entry name
2284 * Get the Catalog entry type for a given SGML Catalog name
2286 * Returns Catalog entry type
2288 static xmlCatalogEntryType
2289 xmlGetSGMLCatalogEntryType(const xmlChar
*name
) {
2290 xmlCatalogEntryType type
= XML_CATA_NONE
;
2291 if (xmlStrEqual(name
, (const xmlChar
*) "SYSTEM"))
2292 type
= SGML_CATA_SYSTEM
;
2293 else if (xmlStrEqual(name
, (const xmlChar
*) "PUBLIC"))
2294 type
= SGML_CATA_PUBLIC
;
2295 else if (xmlStrEqual(name
, (const xmlChar
*) "DELEGATE"))
2296 type
= SGML_CATA_DELEGATE
;
2297 else if (xmlStrEqual(name
, (const xmlChar
*) "ENTITY"))
2298 type
= SGML_CATA_ENTITY
;
2299 else if (xmlStrEqual(name
, (const xmlChar
*) "DOCTYPE"))
2300 type
= SGML_CATA_DOCTYPE
;
2301 else if (xmlStrEqual(name
, (const xmlChar
*) "LINKTYPE"))
2302 type
= SGML_CATA_LINKTYPE
;
2303 else if (xmlStrEqual(name
, (const xmlChar
*) "NOTATION"))
2304 type
= SGML_CATA_NOTATION
;
2305 else if (xmlStrEqual(name
, (const xmlChar
*) "SGMLDECL"))
2306 type
= SGML_CATA_SGMLDECL
;
2307 else if (xmlStrEqual(name
, (const xmlChar
*) "DOCUMENT"))
2308 type
= SGML_CATA_DOCUMENT
;
2309 else if (xmlStrEqual(name
, (const xmlChar
*) "CATALOG"))
2310 type
= SGML_CATA_CATALOG
;
2311 else if (xmlStrEqual(name
, (const xmlChar
*) "BASE"))
2312 type
= SGML_CATA_BASE
;
2317 * xmlParseSGMLCatalog:
2318 * @catal: the SGML Catalog
2319 * @value: the content of the SGML Catalog serialization
2320 * @file: the filepath for the catalog
2321 * @super: should this be handled as a Super Catalog in which case
2322 * parsing is not recursive
2324 * Parse an SGML catalog content and fill up the @catal hash table with
2325 * the new entries found.
2327 * Returns 0 in case of success, -1 in case of error.
2330 xmlParseSGMLCatalog(xmlCatalogPtr catal
, const xmlChar
*value
,
2331 const char *file
, int super
) {
2332 const xmlChar
*cur
= value
;
2333 xmlChar
*base
= NULL
;
2336 if ((cur
== NULL
) || (file
== NULL
))
2338 base
= xmlStrdup((const xmlChar
*) file
);
2340 while ((cur
!= NULL
) && (cur
[0] != 0)) {
2344 if ((cur
[0] == '-') && (cur
[1] == '-')) {
2345 cur
= xmlParseSGMLCatalogComment(cur
);
2351 xmlChar
*sysid
= NULL
;
2352 xmlChar
*name
= NULL
;
2353 xmlCatalogEntryType type
= XML_CATA_NONE
;
2355 cur
= xmlParseSGMLCatalogName(cur
, &name
);
2360 if (!IS_BLANK_CH(*cur
)) {
2365 if (xmlStrEqual(name
, (const xmlChar
*) "SYSTEM"))
2366 type
= SGML_CATA_SYSTEM
;
2367 else if (xmlStrEqual(name
, (const xmlChar
*) "PUBLIC"))
2368 type
= SGML_CATA_PUBLIC
;
2369 else if (xmlStrEqual(name
, (const xmlChar
*) "DELEGATE"))
2370 type
= SGML_CATA_DELEGATE
;
2371 else if (xmlStrEqual(name
, (const xmlChar
*) "ENTITY"))
2372 type
= SGML_CATA_ENTITY
;
2373 else if (xmlStrEqual(name
, (const xmlChar
*) "DOCTYPE"))
2374 type
= SGML_CATA_DOCTYPE
;
2375 else if (xmlStrEqual(name
, (const xmlChar
*) "LINKTYPE"))
2376 type
= SGML_CATA_LINKTYPE
;
2377 else if (xmlStrEqual(name
, (const xmlChar
*) "NOTATION"))
2378 type
= SGML_CATA_NOTATION
;
2379 else if (xmlStrEqual(name
, (const xmlChar
*) "SGMLDECL"))
2380 type
= SGML_CATA_SGMLDECL
;
2381 else if (xmlStrEqual(name
, (const xmlChar
*) "DOCUMENT"))
2382 type
= SGML_CATA_DOCUMENT
;
2383 else if (xmlStrEqual(name
, (const xmlChar
*) "CATALOG"))
2384 type
= SGML_CATA_CATALOG
;
2385 else if (xmlStrEqual(name
, (const xmlChar
*) "BASE"))
2386 type
= SGML_CATA_BASE
;
2387 else if (xmlStrEqual(name
, (const xmlChar
*) "OVERRIDE")) {
2389 cur
= xmlParseSGMLCatalogName(cur
, &name
);
2401 case SGML_CATA_ENTITY
:
2403 type
= SGML_CATA_PENTITY
;
2404 /* Falls through. */
2405 case SGML_CATA_PENTITY
:
2406 case SGML_CATA_DOCTYPE
:
2407 case SGML_CATA_LINKTYPE
:
2408 case SGML_CATA_NOTATION
:
2409 cur
= xmlParseSGMLCatalogName(cur
, &name
);
2414 if (!IS_BLANK_CH(*cur
)) {
2419 cur
= xmlParseSGMLCatalogPubid(cur
, &sysid
);
2425 case SGML_CATA_PUBLIC
:
2426 case SGML_CATA_SYSTEM
:
2427 case SGML_CATA_DELEGATE
:
2428 cur
= xmlParseSGMLCatalogPubid(cur
, &name
);
2433 if (type
!= SGML_CATA_SYSTEM
) {
2436 normid
= xmlCatalogNormalizePublic(name
);
2437 if (normid
!= NULL
) {
2448 if (!IS_BLANK_CH(*cur
)) {
2453 cur
= xmlParseSGMLCatalogPubid(cur
, &sysid
);
2459 case SGML_CATA_BASE
:
2460 case SGML_CATA_CATALOG
:
2461 case SGML_CATA_DOCUMENT
:
2462 case SGML_CATA_SGMLDECL
:
2463 cur
= xmlParseSGMLCatalogPubid(cur
, &sysid
);
2478 } else if (type
== SGML_CATA_BASE
) {
2481 base
= xmlStrdup(sysid
);
2482 } else if ((type
== SGML_CATA_PUBLIC
) ||
2483 (type
== SGML_CATA_SYSTEM
)) {
2486 filename
= xmlBuildURI(sysid
, base
);
2487 if (filename
!= NULL
) {
2488 xmlCatalogEntryPtr entry
;
2490 entry
= xmlNewCatalogEntry(type
, name
, filename
,
2491 NULL
, XML_CATA_PREFER_NONE
, NULL
);
2492 res
= xmlHashAddEntry(catal
->sgml
, name
, entry
);
2494 xmlFreeCatalogEntry(entry
, NULL
);
2499 } else if (type
== SGML_CATA_CATALOG
) {
2501 xmlCatalogEntryPtr entry
;
2503 entry
= xmlNewCatalogEntry(type
, sysid
, NULL
, NULL
,
2504 XML_CATA_PREFER_NONE
, NULL
);
2505 res
= xmlHashAddEntry(catal
->sgml
, sysid
, entry
);
2507 xmlFreeCatalogEntry(entry
, NULL
);
2512 filename
= xmlBuildURI(sysid
, base
);
2513 if (filename
!= NULL
) {
2514 xmlExpandCatalog(catal
, (const char *)filename
);
2520 * drop anything else we won't handle it
2535 /************************************************************************
2537 * SGML Catalog handling *
2539 ************************************************************************/
2542 * xmlCatalogGetSGMLPublic:
2543 * @catal: an SGML catalog hash
2544 * @pubID: the public ID string
2546 * Try to lookup the catalog local reference associated to a public ID
2548 * Returns the local resource if found or NULL otherwise.
2550 static const xmlChar
*
2551 xmlCatalogGetSGMLPublic(xmlHashTablePtr catal
, const xmlChar
*pubID
) {
2552 xmlCatalogEntryPtr entry
;
2558 normid
= xmlCatalogNormalizePublic(pubID
);
2560 pubID
= (*normid
!= 0 ? normid
: NULL
);
2562 entry
= (xmlCatalogEntryPtr
) xmlHashLookup(catal
, pubID
);
2563 if (entry
== NULL
) {
2568 if (entry
->type
== SGML_CATA_PUBLIC
) {
2579 * xmlCatalogGetSGMLSystem:
2580 * @catal: an SGML catalog hash
2581 * @sysID: the system ID string
2583 * Try to lookup the catalog local reference for a system ID
2585 * Returns the local resource if found or NULL otherwise.
2587 static const xmlChar
*
2588 xmlCatalogGetSGMLSystem(xmlHashTablePtr catal
, const xmlChar
*sysID
) {
2589 xmlCatalogEntryPtr entry
;
2594 entry
= (xmlCatalogEntryPtr
) xmlHashLookup(catal
, sysID
);
2597 if (entry
->type
== SGML_CATA_SYSTEM
)
2603 * xmlCatalogSGMLResolve:
2604 * @catal: the SGML catalog
2605 * @pubID: the public ID string
2606 * @sysID: the system ID string
2608 * Do a complete resolution lookup of an External Identifier
2610 * Returns the URI of the resource or NULL if not found
2612 static const xmlChar
*
2613 xmlCatalogSGMLResolve(xmlCatalogPtr catal
, const xmlChar
*pubID
,
2614 const xmlChar
*sysID
) {
2615 const xmlChar
*ret
= NULL
;
2617 if (catal
->sgml
== NULL
)
2621 ret
= xmlCatalogGetSGMLPublic(catal
->sgml
, pubID
);
2625 ret
= xmlCatalogGetSGMLSystem(catal
->sgml
, sysID
);
2631 /************************************************************************
2633 * Specific Public interfaces *
2635 ************************************************************************/
2638 * xmlLoadSGMLSuperCatalog:
2639 * @filename: a file path
2641 * Load an SGML super catalog. It won't expand CATALOG or DELEGATE
2642 * references. This is only needed for manipulating SGML Super Catalogs
2643 * like adding and removing CATALOG or DELEGATE entries.
2645 * Returns the catalog parsed or NULL in case of error
2648 xmlLoadSGMLSuperCatalog(const char *filename
)
2651 xmlCatalogPtr catal
;
2654 content
= xmlLoadFileContent(filename
);
2655 if (content
== NULL
)
2658 catal
= xmlCreateNewCatalog(XML_SGML_CATALOG_TYPE
, xmlCatalogDefaultPrefer
);
2659 if (catal
== NULL
) {
2664 ret
= xmlParseSGMLCatalog(catal
, content
, filename
, 1);
2667 xmlFreeCatalog(catal
);
2675 * @filename: a file path
2677 * Load the catalog and build the associated data structures.
2678 * This can be either an XML Catalog or an SGML Catalog
2679 * It will recurse in SGML CATALOG entries. On the other hand XML
2680 * Catalogs are not handled recursively.
2682 * Returns the catalog parsed or NULL in case of error
2685 xmlLoadACatalog(const char *filename
)
2689 xmlCatalogPtr catal
;
2692 content
= xmlLoadFileContent(filename
);
2693 if (content
== NULL
)
2699 while ((*first
!= 0) && (*first
!= '-') && (*first
!= '<') &&
2700 (!(((*first
>= 'A') && (*first
<= 'Z')) ||
2701 ((*first
>= 'a') && (*first
<= 'z')))))
2704 if (*first
!= '<') {
2705 catal
= xmlCreateNewCatalog(XML_SGML_CATALOG_TYPE
, xmlCatalogDefaultPrefer
);
2706 if (catal
== NULL
) {
2710 ret
= xmlParseSGMLCatalog(catal
, content
, filename
, 0);
2712 xmlFreeCatalog(catal
);
2717 catal
= xmlCreateNewCatalog(XML_XML_CATALOG_TYPE
, xmlCatalogDefaultPrefer
);
2718 if (catal
== NULL
) {
2722 catal
->xml
= xmlNewCatalogEntry(XML_CATA_CATALOG
, NULL
,
2723 NULL
, BAD_CAST filename
, xmlCatalogDefaultPrefer
, NULL
);
2732 * @filename: a file path
2734 * Load the catalog and expand the existing catal structure.
2735 * This can be either an XML Catalog or an SGML Catalog
2737 * Returns 0 in case of success, -1 in case of error
2740 xmlExpandCatalog(xmlCatalogPtr catal
, const char *filename
)
2744 if ((catal
== NULL
) || (filename
== NULL
))
2748 if (catal
->type
== XML_SGML_CATALOG_TYPE
) {
2751 content
= xmlLoadFileContent(filename
);
2752 if (content
== NULL
)
2755 ret
= xmlParseSGMLCatalog(catal
, content
, filename
, 0);
2762 xmlCatalogEntryPtr tmp
, cur
;
2763 tmp
= xmlNewCatalogEntry(XML_CATA_CATALOG
, NULL
,
2764 NULL
, BAD_CAST filename
, xmlCatalogDefaultPrefer
, NULL
);
2770 while (cur
->next
!= NULL
) cur
= cur
->next
;
2778 * xmlACatalogResolveSystem:
2780 * @sysID: the system ID string
2782 * Try to lookup the catalog resource for a system ID
2784 * Returns the resource if found or NULL otherwise, the value returned
2785 * must be freed by the caller.
2788 xmlACatalogResolveSystem(xmlCatalogPtr catal
, const xmlChar
*sysID
) {
2789 xmlChar
*ret
= NULL
;
2791 if ((sysID
== NULL
) || (catal
== NULL
))
2794 if (xmlDebugCatalogs
)
2795 xmlGenericError(xmlGenericErrorContext
,
2796 "Resolve sysID %s\n", sysID
);
2798 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
2799 ret
= xmlCatalogListXMLResolve(catal
->xml
, NULL
, sysID
);
2800 if (ret
== XML_CATAL_BREAK
)
2803 const xmlChar
*sgml
;
2805 sgml
= xmlCatalogGetSGMLSystem(catal
->sgml
, sysID
);
2807 ret
= xmlStrdup(sgml
);
2813 * xmlACatalogResolvePublic:
2815 * @pubID: the public ID string
2817 * Try to lookup the catalog local reference associated to a public ID in that catalog
2819 * Returns the local resource if found or NULL otherwise, the value returned
2820 * must be freed by the caller.
2823 xmlACatalogResolvePublic(xmlCatalogPtr catal
, const xmlChar
*pubID
) {
2824 xmlChar
*ret
= NULL
;
2826 if ((pubID
== NULL
) || (catal
== NULL
))
2829 if (xmlDebugCatalogs
)
2830 xmlGenericError(xmlGenericErrorContext
,
2831 "Resolve pubID %s\n", pubID
);
2833 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
2834 ret
= xmlCatalogListXMLResolve(catal
->xml
, pubID
, NULL
);
2835 if (ret
== XML_CATAL_BREAK
)
2838 const xmlChar
*sgml
;
2840 sgml
= xmlCatalogGetSGMLPublic(catal
->sgml
, pubID
);
2842 ret
= xmlStrdup(sgml
);
2848 * xmlACatalogResolve:
2850 * @pubID: the public ID string
2851 * @sysID: the system ID string
2853 * Do a complete resolution lookup of an External Identifier
2855 * Returns the URI of the resource or NULL if not found, it must be freed
2859 xmlACatalogResolve(xmlCatalogPtr catal
, const xmlChar
* pubID
,
2860 const xmlChar
* sysID
)
2862 xmlChar
*ret
= NULL
;
2864 if (((pubID
== NULL
) && (sysID
== NULL
)) || (catal
== NULL
))
2867 if (xmlDebugCatalogs
) {
2868 if ((pubID
!= NULL
) && (sysID
!= NULL
)) {
2869 xmlGenericError(xmlGenericErrorContext
,
2870 "Resolve: pubID %s sysID %s\n", pubID
, sysID
);
2871 } else if (pubID
!= NULL
) {
2872 xmlGenericError(xmlGenericErrorContext
,
2873 "Resolve: pubID %s\n", pubID
);
2875 xmlGenericError(xmlGenericErrorContext
,
2876 "Resolve: sysID %s\n", sysID
);
2880 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
2881 ret
= xmlCatalogListXMLResolve(catal
->xml
, pubID
, sysID
);
2882 if (ret
== XML_CATAL_BREAK
)
2885 const xmlChar
*sgml
;
2887 sgml
= xmlCatalogSGMLResolve(catal
, pubID
, sysID
);
2889 ret
= xmlStrdup(sgml
);
2895 * xmlACatalogResolveURI:
2899 * Do a complete resolution lookup of an URI
2901 * Returns the URI of the resource or NULL if not found, it must be freed
2905 xmlACatalogResolveURI(xmlCatalogPtr catal
, const xmlChar
*URI
) {
2906 xmlChar
*ret
= NULL
;
2908 if ((URI
== NULL
) || (catal
== NULL
))
2911 if (xmlDebugCatalogs
)
2912 xmlGenericError(xmlGenericErrorContext
,
2913 "Resolve URI %s\n", URI
);
2915 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
2916 ret
= xmlCatalogListXMLResolveURI(catal
->xml
, URI
);
2917 if (ret
== XML_CATAL_BREAK
)
2920 const xmlChar
*sgml
;
2922 sgml
= xmlCatalogSGMLResolve(catal
, NULL
, URI
);
2924 ret
= xmlStrdup(sgml
);
2929 #ifdef LIBXML_OUTPUT_ENABLED
2935 * Dump the given catalog to the given file.
2938 xmlACatalogDump(xmlCatalogPtr catal
, FILE *out
) {
2939 if ((out
== NULL
) || (catal
== NULL
))
2942 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
2943 xmlDumpXMLCatalog(out
, catal
->xml
);
2945 xmlHashScan(catal
->sgml
, xmlCatalogDumpEntry
, out
);
2948 #endif /* LIBXML_OUTPUT_ENABLED */
2953 * @type: the type of record to add to the catalog
2954 * @orig: the system, public or prefix to match
2955 * @replace: the replacement value for the match
2957 * Add an entry in the catalog, it may overwrite existing but
2958 * different entries.
2960 * Returns 0 if successful, -1 otherwise
2963 xmlACatalogAdd(xmlCatalogPtr catal
, const xmlChar
* type
,
2964 const xmlChar
* orig
, const xmlChar
* replace
)
2971 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
2972 res
= xmlAddXMLCatalog(catal
->xml
, type
, orig
, replace
);
2974 xmlCatalogEntryType cattype
;
2976 cattype
= xmlGetSGMLCatalogEntryType(type
);
2977 if (cattype
!= XML_CATA_NONE
) {
2978 xmlCatalogEntryPtr entry
;
2980 entry
= xmlNewCatalogEntry(cattype
, orig
, replace
, NULL
,
2981 XML_CATA_PREFER_NONE
, NULL
);
2982 if (catal
->sgml
== NULL
)
2983 catal
->sgml
= xmlHashCreate(10);
2984 res
= xmlHashAddEntry(catal
->sgml
, orig
, entry
);
2991 * xmlACatalogRemove:
2993 * @value: the value to remove
2995 * Remove an entry from the catalog
2997 * Returns the number of entries removed if successful, -1 otherwise
3000 xmlACatalogRemove(xmlCatalogPtr catal
, const xmlChar
*value
) {
3003 if ((catal
== NULL
) || (value
== NULL
))
3006 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
3007 res
= xmlDelXMLCatalog(catal
->xml
, value
);
3009 res
= xmlHashRemoveEntry(catal
->sgml
, value
, xmlFreeCatalogEntry
);
3018 * @sgml: should this create an SGML catalog
3020 * create a new Catalog.
3022 * Returns the xmlCatalogPtr or NULL in case of error
3025 xmlNewCatalog(int sgml
) {
3026 xmlCatalogPtr catal
= NULL
;
3029 catal
= xmlCreateNewCatalog(XML_SGML_CATALOG_TYPE
,
3030 xmlCatalogDefaultPrefer
);
3031 if ((catal
!= NULL
) && (catal
->sgml
== NULL
))
3032 catal
->sgml
= xmlHashCreate(10);
3034 catal
= xmlCreateNewCatalog(XML_XML_CATALOG_TYPE
,
3035 xmlCatalogDefaultPrefer
);
3040 * xmlCatalogIsEmpty:
3041 * @catal: should this create an SGML catalog
3043 * Check is a catalog is empty
3045 * Returns 1 if the catalog is empty, 0 if not, amd -1 in case of error.
3048 xmlCatalogIsEmpty(xmlCatalogPtr catal
) {
3052 if (catal
->type
== XML_XML_CATALOG_TYPE
) {
3053 if (catal
->xml
== NULL
)
3055 if ((catal
->xml
->type
!= XML_CATA_CATALOG
) &&
3056 (catal
->xml
->type
!= XML_CATA_BROKEN_CATALOG
))
3058 if (catal
->xml
->children
== NULL
)
3064 if (catal
->sgml
== NULL
)
3066 res
= xmlHashSize(catal
->sgml
);
3075 /************************************************************************
3077 * Public interfaces manipulating the global shared default catalog *
3079 ************************************************************************/
3082 * xmlInitializeCatalogData:
3084 * Do the catalog initialization only of global data, doesn't try to load
3085 * any catalog actually.
3086 * this function is not thread safe, catalog initialization should
3087 * preferably be done once at startup
3090 xmlInitializeCatalogData(void) {
3091 if (xmlCatalogInitialized
!= 0)
3094 if (getenv("XML_DEBUG_CATALOG"))
3095 xmlDebugCatalogs
= 1;
3096 xmlCatalogMutex
= xmlNewRMutex();
3098 xmlCatalogInitialized
= 1;
3101 * xmlInitializeCatalog:
3103 * Do the catalog initialization.
3104 * this function is not thread safe, catalog initialization should
3105 * preferably be done once at startup
3108 xmlInitializeCatalog(void) {
3109 if (xmlCatalogInitialized
!= 0)
3112 xmlInitializeCatalogData();
3113 xmlRMutexLock(xmlCatalogMutex
);
3115 if (getenv("XML_DEBUG_CATALOG"))
3116 xmlDebugCatalogs
= 1;
3118 if (xmlDefaultCatalog
== NULL
) {
3119 const char *catalogs
;
3121 const char *cur
, *paths
;
3122 xmlCatalogPtr catal
;
3123 xmlCatalogEntryPtr
*nextent
;
3125 catalogs
= (const char *) getenv("XML_CATALOG_FILES");
3126 if (catalogs
== NULL
)
3127 #if defined(_WIN32) && defined(_MSC_VER)
3130 hmodule
= GetModuleHandleA("libxml2.dll");
3131 if (hmodule
== NULL
)
3132 hmodule
= GetModuleHandleA(NULL
);
3133 if (hmodule
!= NULL
) {
3135 unsigned long len
= GetModuleFileNameA(hmodule
, buf
, 255);
3137 char* p
= &(buf
[len
]);
3138 while (*p
!= '\\' && p
> buf
)
3142 strncpy(p
, "\\..\\etc\\catalog", 255 - (p
- buf
));
3143 uri
= xmlCanonicPath((const xmlChar
*)buf
);
3145 strncpy(XML_XML_DEFAULT_CATALOG
, uri
, 255);
3151 catalogs
= XML_XML_DEFAULT_CATALOG
;
3154 catalogs
= XML_XML_DEFAULT_CATALOG
;
3157 catal
= xmlCreateNewCatalog(XML_XML_CATALOG_TYPE
,
3158 xmlCatalogDefaultPrefer
);
3159 if (catal
!= NULL
) {
3160 /* the XML_CATALOG_FILES envvar is allowed to contain a
3161 space-separated list of entries. */
3163 nextent
= &catal
->xml
;
3164 while (*cur
!= '\0') {
3165 while (xmlIsBlank_ch(*cur
))
3169 while ((*cur
!= 0) && (!xmlIsBlank_ch(*cur
)))
3171 path
= (char *) xmlStrndup((const xmlChar
*)paths
, cur
- paths
);
3173 *nextent
= xmlNewCatalogEntry(XML_CATA_CATALOG
, NULL
,
3174 NULL
, BAD_CAST path
, xmlCatalogDefaultPrefer
, NULL
);
3175 if (*nextent
!= NULL
)
3176 nextent
= &((*nextent
)->next
);
3181 xmlDefaultCatalog
= catal
;