1 /* Interface to libxml2.
2 Copyright (C) 2010 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/>. */
24 #include <libxml/tree.h>
25 #include <libxml/parser.h>
26 #include <libxml/HTMLparser.h>
31 Lisp_Object
make_dom (xmlNode
*node
)
33 if (node
->type
== XML_ELEMENT_NODE
)
35 Lisp_Object result
= Fcons (intern (node
->name
), Qnil
);
38 Lisp_Object plist
= Qnil
;
40 /* First add the attributes. */
41 property
= node
->properties
;
42 while (property
!= NULL
)
44 if (property
->children
&&
45 property
->children
->content
)
47 plist
= Fcons (Fcons (intern (property
->name
),
48 build_string (property
->children
->content
)),
51 property
= property
->next
;
53 result
= Fcons (Fnreverse (plist
), result
);
55 /* Then add the children of the node. */
56 child
= node
->children
;
59 result
= Fcons (make_dom (child
), result
);
63 return Fnreverse (result
);
65 else if (node
->type
== XML_TEXT_NODE
|| node
->type
== XML_CDATA_SECTION_NODE
)
68 return build_string (node
->content
);
77 parse_region (Lisp_Object start
, Lisp_Object end
, Lisp_Object base_url
, int htmlp
)
81 Lisp_Object result
= Qnil
;
82 const char *burl
= "";
84 EMACS_INT istart
, iend
;
88 validate_region (&start
, &end
);
90 istart
= XINT (start
);
93 if (istart
< GPT
&& GPT
< iend
)
96 if (! NILP (base_url
))
98 CHECK_STRING (base_url
);
99 burl
= SDATA (base_url
);
102 bytes
= CHAR_TO_BYTE (iend
) - CHAR_TO_BYTE (istart
);
105 doc
= htmlReadMemory (BYTE_POS_ADDR (CHAR_TO_BYTE (istart
)),
106 bytes
, burl
, "utf-8",
107 HTML_PARSE_RECOVER
|HTML_PARSE_NONET
|
108 HTML_PARSE_NOWARNING
|HTML_PARSE_NOERROR
|
109 HTML_PARSE_NOBLANKS
);
111 doc
= xmlReadMemory (BYTE_POS_ADDR (CHAR_TO_BYTE (istart
)),
112 bytes
, burl
, "utf-8",
113 XML_PARSE_NONET
|XML_PARSE_NOWARNING
|
118 node
= xmlDocGetRootElement (doc
);
120 result
= make_dom (node
);
128 DEFUN ("libxml-parse-html-region", Flibxml_parse_html_region
,
129 Slibxml_parse_html_region
,
131 doc
: /* Parse the region as an HTML document and return the parse tree.
132 If BASE-URL is non-nil, it is used to expand relative URLs. */)
133 (Lisp_Object start
, Lisp_Object end
, Lisp_Object base_url
)
135 return parse_region (start
, end
, base_url
, 1);
138 DEFUN ("libxml-parse-xml-region", Flibxml_parse_xml_region
,
139 Slibxml_parse_xml_region
,
141 doc
: /* Parse the region as an XML document and return the parse tree.
142 If BASE-URL is non-nil, it is used to expand relative URLs. */)
143 (Lisp_Object start
, Lisp_Object end
, Lisp_Object base_url
)
145 return parse_region (start
, end
, base_url
, 0);
149 /***********************************************************************
151 ***********************************************************************/
155 defsubr (&Slibxml_parse_html_region
);
156 defsubr (&Slibxml_parse_xml_region
);
159 #endif /* HAVE_LIBXML2 */