lisp/textmodes/bibtex.el (bibtex-search-entry-globally): New variable
[emacs.git] / src / xml.c
blob63041c96b24ff524332a3eb846d3c43c95a479ae
1 /* Interface to libxml2.
2 Copyright (C) 2010-2011 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19 #include <config.h>
21 #ifdef HAVE_LIBXML2
23 #include <setjmp.h>
24 #include <libxml/tree.h>
25 #include <libxml/parser.h>
26 #include <libxml/HTMLparser.h>
28 #include "lisp.h"
29 #include "buffer.h"
31 static Lisp_Object
32 make_dom (xmlNode *node)
34 if (node->type == XML_ELEMENT_NODE)
36 Lisp_Object result = Fcons (intern ((char *) node->name), Qnil);
37 xmlNode *child;
38 xmlAttr *property;
39 Lisp_Object plist = Qnil;
41 /* First add the attributes. */
42 property = node->properties;
43 while (property != NULL)
45 if (property->children &&
46 property->children->content)
48 char *content = (char *) property->children->content;
49 plist = Fcons (Fcons (intern ((char *) property->name),
50 build_string (content)),
51 plist);
53 property = property->next;
55 result = Fcons (Fnreverse (plist), result);
57 /* Then add the children of the node. */
58 child = node->children;
59 while (child != NULL)
61 result = Fcons (make_dom (child), result);
62 child = child->next;
65 return Fnreverse (result);
67 else if (node->type == XML_TEXT_NODE || node->type == XML_CDATA_SECTION_NODE)
69 if (node->content)
70 return build_string ((char *) node->content);
71 else
72 return Qnil;
74 else
75 return Qnil;
78 static Lisp_Object
79 parse_region (Lisp_Object start, Lisp_Object end, Lisp_Object base_url, int htmlp)
81 xmlDoc *doc;
82 xmlNode *node;
83 Lisp_Object result = Qnil;
84 const char *burl = "";
85 EMACS_INT bytes;
86 EMACS_INT istart, iend;
88 LIBXML_TEST_VERSION;
90 validate_region (&start, &end);
92 istart = XINT (start);
93 iend = XINT (end);
95 if (istart < GPT && GPT < iend)
96 move_gap (iend);
98 if (! NILP (base_url))
100 CHECK_STRING (base_url);
101 burl = SSDATA (base_url);
104 bytes = CHAR_TO_BYTE (iend) - CHAR_TO_BYTE (istart);
106 if (htmlp)
107 doc = htmlReadMemory ((char *) BYTE_POS_ADDR (CHAR_TO_BYTE (istart)),
108 bytes, burl, "utf-8",
109 HTML_PARSE_RECOVER|HTML_PARSE_NONET|
110 HTML_PARSE_NOWARNING|HTML_PARSE_NOERROR|
111 HTML_PARSE_NOBLANKS);
112 else
113 doc = xmlReadMemory ((char *) BYTE_POS_ADDR (CHAR_TO_BYTE (istart)),
114 bytes, burl, "utf-8",
115 XML_PARSE_NONET|XML_PARSE_NOWARNING|
116 XML_PARSE_NOBLANKS |XML_PARSE_NOERROR);
118 if (doc != NULL)
120 node = xmlDocGetRootElement (doc);
121 if (node != NULL)
122 result = make_dom (node);
123 xmlFreeDoc (doc);
124 xmlCleanupParser ();
127 return result;
130 DEFUN ("libxml-parse-html-region", Flibxml_parse_html_region,
131 Slibxml_parse_html_region,
132 2, 3, 0,
133 doc: /* Parse the region as an HTML document and return the parse tree.
134 If BASE-URL is non-nil, it is used to expand relative URLs. */)
135 (Lisp_Object start, Lisp_Object end, Lisp_Object base_url)
137 return parse_region (start, end, base_url, 1);
140 DEFUN ("libxml-parse-xml-region", Flibxml_parse_xml_region,
141 Slibxml_parse_xml_region,
142 2, 3, 0,
143 doc: /* Parse the region as an XML document and return the parse tree.
144 If BASE-URL is non-nil, it is used to expand relative URLs. */)
145 (Lisp_Object start, Lisp_Object end, Lisp_Object base_url)
147 return parse_region (start, end, base_url, 0);
151 /***********************************************************************
152 Initialization
153 ***********************************************************************/
154 void
155 syms_of_xml (void)
157 defsubr (&Slibxml_parse_html_region);
158 defsubr (&Slibxml_parse_xml_region);
161 #endif /* HAVE_LIBXML2 */