2 * xlink.c : implementation of the hyperlinks detection module
3 * This version supports both XML XLinks and HTML simple links
5 * See Copyright for the status of this software.
14 #include <string.h> /* for memset() only */
21 #ifdef HAVE_SYS_STAT_H
34 #include <libxml/xmlmemory.h>
35 #include <libxml/tree.h>
36 #include <libxml/parser.h>
37 #include <libxml/valid.h>
38 #include <libxml/xlink.h>
39 #include <libxml/globals.h>
41 #define XLINK_NAMESPACE (BAD_CAST "http://www.w3.org/1999/xlink/namespace/")
42 #define XHTML_NAMESPACE (BAD_CAST "http://www.w3.org/1999/xhtml/")
44 /****************************************************************
46 * Default setting and related functions *
48 ****************************************************************/
50 static xlinkHandlerPtr xlinkDefaultHandler = NULL;
51 static xlinkNodeDetectFunc xlinkDefaultDetect = NULL;
54 * xlinkGetDefaultHandler:
56 * Get the default xlink handler.
58 * Returns the current xlinkHandlerPtr value.
61 xlinkGetDefaultHandler(void) {
62 return(xlinkDefaultHandler);
67 * xlinkSetDefaultHandler:
68 * @handler: the new value for the xlink handler block
70 * Set the default xlink handlers
73 xlinkSetDefaultHandler(xlinkHandlerPtr handler) {
74 xlinkDefaultHandler = handler;
78 * xlinkGetDefaultDetect:
80 * Get the default xlink detection routine
82 * Returns the current function or NULL;
85 xlinkGetDefaultDetect (void) {
86 return(xlinkDefaultDetect);
90 * xlinkSetDefaultDetect:
91 * @func: pointer to the new detection routine.
93 * Set the default xlink detection routine
96 xlinkSetDefaultDetect (xlinkNodeDetectFunc func) {
97 xlinkDefaultDetect = func;
100 /****************************************************************
102 * The detection routines *
104 ****************************************************************/
109 * @doc: the document containing the node
110 * @node: the node pointer itself
112 * Check whether the given node carries the attributes needed
113 * to be a link element (or is one of the linking elements issued
114 * from the (X)HTML DtDs).
115 * This routine don't try to do full checking of the link validity
116 * but tries to detect and return the appropriate link type.
118 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
122 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) {
123 xmlChar *type = NULL, *role = NULL;
124 xlinkType ret = XLINK_TYPE_NONE;
126 if (node == NULL) return(XLINK_TYPE_NONE);
127 if (doc == NULL) doc = node->doc;
128 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
130 * This is an HTML document.
132 } else if ((node->ns != NULL) &&
133 (xmlStrEqual(node->ns->href, XHTML_NAMESPACE))) {
135 * !!!! We really need an IS_XHTML_ELEMENT function from HTMLtree.h @@@
138 * This is an XHTML element within an XML document
139 * Check whether it's one of the element able to carry links
140 * and in that case if it holds the attributes.
145 * We don't prevent a-priori having XML Linking constructs on
148 type = xmlGetNsProp(node, BAD_CAST"type", XLINK_NAMESPACE);
150 if (xmlStrEqual(type, BAD_CAST "simple")) {
151 ret = XLINK_TYPE_SIMPLE;
152 } if (xmlStrEqual(type, BAD_CAST "extended")) {
153 role = xmlGetNsProp(node, BAD_CAST "role", XLINK_NAMESPACE);
156 xlink = xmlSearchNs(doc, node, XLINK_NAMESPACE);
158 /* Humm, fallback method */
159 if (xmlStrEqual(role, BAD_CAST"xlink:external-linkset"))
160 ret = XLINK_TYPE_EXTENDED_SET;
163 snprintf((char *) buf, sizeof(buf), "%s:external-linkset",
164 (char *) xlink->prefix);
165 buf[sizeof(buf) - 1] = 0;
166 if (xmlStrEqual(role, buf))
167 ret = XLINK_TYPE_EXTENDED_SET;
172 ret = XLINK_TYPE_EXTENDED;
176 if (type != NULL) xmlFree(type);
177 if (role != NULL) xmlFree(role);