all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 9dc09316678e89f05d7673c80f3ae6d65b1c5130 4441 bytes (raw)
name: src/xml.c 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
 
/* Interface to libxml2.
   Copyright (C) 2010 Free Software Foundation, Inc.

This file is part of GNU Emacs.

GNU Emacs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */

#include <config.h>

#ifdef HAVE_LIBXML2

#include <setjmp.h>
#include <libxml/tree.h>
#include <libxml/parser.h>
#include <libxml/HTMLparser.h>

#include "lisp.h"
#include "buffer.h"

static Lisp_Object 
make_dom (xmlNode *node)
{
  if (node->type == XML_ELEMENT_NODE)
    {
      Lisp_Object result = Fcons (intern (node->name), Qnil);
      xmlNode *child;
      xmlAttr *property;
      Lisp_Object plist = Qnil;
      int was_element_node = 0;
      
      /* First add the attributes.  */

      property = node->properties;

      /* Don't add nil if no properties */
      if (property != NULL)
	{
	  /* Add special `@' node containing properties */
	  plist = Fcons(intern("@"),Qnil);

	  while (property != NULL)
	    {
	      if (property->children &&
		  property->children->content)
		{
		  plist = 
		    Fcons 
		    (Fcons (intern (property->name),
			    Fcons (build_string (property->children->content), 
				   Qnil)),
		     plist);
		}
	      property = property->next;
	    }
	  result = Fcons (Fnreverse (plist), result);
	}
      /* Then add the children of the node. */

      child = node->children;

      /* First try to lookup for elements 
	 if any found, prohibit adding any text elements */

      while (child != NULL)
	{
	  if (child->type == XML_ELEMENT_NODE)
	    {
	      was_element_node = 1;
	      result = Fcons (make_dom (child), result);
	    }

	  child = child->next;
	}
      
      child = node->children;
      
      while (!was_element_node && child != NULL)
	{

	  if ( child->type == XML_TEXT_NODE )
	    result = Fcons (make_dom (child), result);

	  child = child->next;
	}

      return Fnreverse (result);
    }
  else if (node->type == XML_TEXT_NODE)
    {
      if (node->content)
	return build_string (node->content);
      else
	return Qnil;
    }
  else
    return Qnil;
}

INLINE static Lisp_Object
parse_string (Lisp_Object string, Lisp_Object base_url, int htmlp)
{
  xmlDoc *doc;
  xmlNode *node;
  Lisp_Object result = Qnil;
  int ibeg, iend;
  char *burl = "";

  LIBXML_TEST_VERSION;

  CHECK_STRING (string);

  if (! NILP (base_url))
    {
      CHECK_STRING (base_url);
      burl = SDATA (base_url);
    }

  doc = htmlp
    ? htmlReadMemory (SDATA (string), SBYTES (string), burl, "utf-8",
		      HTML_PARSE_RECOVER|HTML_PARSE_NONET|
		      HTML_PARSE_NOWARNING|HTML_PARSE_NOERROR)
    : xmlReadMemory (SDATA (string), SBYTES (string), burl, "utf-8",
		     XML_PARSE_NONET|XML_PARSE_NOWARNING|
		     XML_PARSE_NOERROR);

  if (doc != NULL)
    {
      node = xmlDocGetRootElement (doc);
      if (node != NULL)
	result = make_dom (node);
      xmlFreeDoc (doc);
      xmlCleanupParser ();
    }

  return result;
}

DEFUN ("xml-parse-html-string-internal", Fxml_parse_html_string_internal,
       Sxml_parse_html_string_internal,
       1, 2, 0,
       doc: /* Parse STRING as an HTML document and return the parse tree.
If BASE-URL is non-nil, it is used to expand relative URLs.  */)
  (Lisp_Object string, Lisp_Object base_url)
{
  return parse_string (string, base_url, 1);
}

DEFUN ("xml-parse-string-internal", Fxml_parse_string_internal,
       Sxml_parse_string_internal,
       1, 2, 0,
       doc: /* Parse STRING as an XML document and return the parse tree.
If BASE-URL is non-nil, it is used to expand relative URLs.  */)
  (Lisp_Object string, Lisp_Object base_url)
{
  return parse_string (string, base_url, 0);
}

\f
/***********************************************************************
			    Initialization
 ***********************************************************************/
void
syms_of_xml (void)
{
  defsubr (&Sxml_parse_html_string_internal);
  defsubr (&Sxml_parse_string_internal);
}

#endif /* HAVE_LIBXML2 */

debug log:

solving 9dc0931 ...
found 9dc0931 in https://yhetil.org/emacs/87hbhggm15.fsf@gmail.com/
found 5829f1d in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 5829f1da53878c618b897dcbe652111027145448	src/xml.c

applying [1/1] https://yhetil.org/emacs/87hbhggm15.fsf@gmail.com/
diff --git a/src/xml.c b/src/xml.c
index 5829f1d..9dc0931 100644

1:10: trailing whitespace.
static Lisp_Object 
1:20: trailing whitespace.
      
1:43: trailing whitespace.
		  plist = 
1:44: trailing whitespace.
		    Fcons 
1:46: trailing whitespace.
			    Fcons (build_string (property->children->content), 
Checking patch src/xml.c...
Applied patch src/xml.c cleanly.
warning: squelched 3 whitespace errors
warning: 8 lines add whitespace errors.

index at:
100644 9dc09316678e89f05d7673c80f3ae6d65b1c5130	src/xml.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.